From 2537f20f97d15c868490ad5bb316d13d811d4eba Mon Sep 17 00:00:00 2001 From: yanez2001 Date: Mon, 16 Sep 2024 14:11:20 -0500 Subject: [PATCH 01/10] updated RASL map --- champsim_config.json | 3 +- dram_controller/ramulator/dram_controller.cc | 2 + ramulator.yaml | 5 +- .../src/addr_mapper/impl/champsim_mappers.cpp | 95 +++++++++++++++++++ 4 files changed, 102 insertions(+), 3 deletions(-) diff --git a/champsim_config.json b/champsim_config.json index fcc4ba8ea6..775c282262 100644 --- a/champsim_config.json +++ b/champsim_config.json @@ -159,7 +159,8 @@ }, "physical_memory": { - "model": "integrated", + "model": "ramulator", + "config": "ramulator.yaml", "frequency": 3200, "channels": 1, "ranks": 2, diff --git a/dram_controller/ramulator/dram_controller.cc b/dram_controller/ramulator/dram_controller.cc index 461cf944a8..357b6ff2e9 100644 --- a/dram_controller/ramulator/dram_controller.cc +++ b/dram_controller/ramulator/dram_controller.cc @@ -622,3 +622,5 @@ void MEMORY_CONTROLLER::print_deadlock() { } // LCOV_EXCL_STOP + + diff --git a/ramulator.yaml b/ramulator.yaml index 1ee4371410..9606b30833 100755 --- a/ramulator.yaml +++ b/ramulator.yaml @@ -27,7 +27,8 @@ MemorySystem: impl: FRFCFS RefreshManager: impl: AllBank - plugins: + plugins: + - ControllerPlugin: {impl: "ChampSimStats"} AddrMapper: - impl: RoRaCoBaBgCh + impl: RASL diff --git a/ramulator2ext/src/addr_mapper/impl/champsim_mappers.cpp b/ramulator2ext/src/addr_mapper/impl/champsim_mappers.cpp index baeb191ced..bebed1c199 100644 --- a/ramulator2ext/src/addr_mapper/impl/champsim_mappers.cpp +++ b/ramulator2ext/src/addr_mapper/impl/champsim_mappers.cpp @@ -147,4 +147,99 @@ namespace Ramulator{ } }; + /****************************************This is where I will apply my method RASL*******************************************/ + class RASL final : public IAddrMapper, public Implementation { + RAMULATOR_REGISTER_IMPLEMENTATION(IAddrMapper, RASL, "RASL", "Applies a RASL Mapping to the address. Yanez's Scheme."); + // We will try to increase randomization without using too much power + + public: + IDRAM* m_dram = nullptr; + + int m_num_levels = -1; // How many levels in the hierarchy? + std::vector m_addr_bits; // How many address bits for each level in the hierarchy? + Addr_t m_tx_offset = -1; + + int m_col_bits_idx = -1; + int m_row_bits_idx = -1; + + void init() override { }; + void setup(IFrontEnd* frontend, IMemorySystem* memory_system) { + m_dram = memory_system->get_ifce(); + + // Populate m_addr_bits vector with the number of address bits for each level in the hierachy + const auto& count = m_dram->m_organization.count; + + // count the num of levels in our hierarchy + m_num_levels = count.size(); + m_addr_bits.resize(m_num_levels); + for (size_t level = 0; level < m_addr_bits.size(); level++) { + m_addr_bits[level] = calc_log2(count[level]); + } + + // Last (Column) address have the granularity of the prefetch size + m_addr_bits[m_num_levels - 1] -= calc_log2(m_dram->m_internal_prefetch_size); + + int tx_bytes = m_dram->m_internal_prefetch_size * m_dram->m_channel_width / 8; + m_tx_offset = calc_log2(tx_bytes); + + // Determine where are the row and col bits + try { + m_row_bits_idx = m_dram->m_levels("row"); + } catch (const std::out_of_range& r) { + throw std::runtime_error(fmt::format("Organization \"row\" not found in the spec, cannot use linear mapping!")); + } + + // Assume column is always the last level + m_col_bits_idx = m_num_levels - 1; + } + + void apply(Request& req) override { + // initialize addr_vec and resize to match the number of levels in the DRAM hierarchy + req.addr_vec.resize(m_num_levels, -1); + + //shift the original address to the right by offset bits. + Addr_t addr = req.addr >> m_tx_offset; + + // Generate random address bits for each level (iterate each level) + for(size_t level = 0; level < m_addr_bits.size(); level++){ + + fmt::print("I'm in index {} of the address vector\n", level); + + //retrieve the number of bits for the level currently in + int num_bits = m_addr_bits[level]; + fmt::print("The number of bits in this level is: {}\n", std::cout << std::hex << num_bits); + std::cout << "The number of bits in this level is: " << num_bits << "\n"; + //initialize level_addr to hold the randomized address bits for current level + Addr_t level_addr = 0; + + // loop each bit of the address level currently in to extract + for(int bit = 0;bit < num_bits; bit++){ + //extract the bit at 'bit position, then shift addr right by that 'bit' + // bitwise 1 is to isolate the single bit at that position + + Addr_t extracted_bit = (addr >> bit) & 1; + //place the extracted bit in a new, shuffled position + //add 3 bits to the current bit position and check if new position is within available bits for current level + int new_position = (bit + 3) % num_bits; + //place the extracted bit in level_addr. Shift the extracted bit left by new_position and bitwise OR with + //level_addr to combine with previous bits + level_addr |= (extracted_bit << new_position); + + fmt::print("This is the vector changed: {}\n", level_addr); + std::cout << std::hex << "This is the vector randomized: " << level_addr << "\n"; + } + fmt::print("This is the vector changed: {}\n", level_addr); + + //store the result of RASL to the corresponding level + req.addr_vec[level] = level_addr; + fmt::print("This is the vector mapped back: {}\n", req.addr_vec); + + //prepare 'addr' for the next level by shifting out the bits we've just proccessed + addr >> num_bits; + } + + // Write back to check if RASL is correct + } + + }; } \ No newline at end of file From 65a3f586d4e7822f3976744b4b2daf721d749535 Mon Sep 17 00:00:00 2001 From: yanez2001 Date: Mon, 16 Sep 2024 15:13:58 -0500 Subject: [PATCH 02/10] another recent update 9/6 --- dram_controller/ramulator/dram_controller.cc | 1 - ramulator2ext/src/addr_mapper/impl/champsim_mappers.cpp | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/dram_controller/ramulator/dram_controller.cc b/dram_controller/ramulator/dram_controller.cc index 357b6ff2e9..f28d2cd941 100644 --- a/dram_controller/ramulator/dram_controller.cc +++ b/dram_controller/ramulator/dram_controller.cc @@ -623,4 +623,3 @@ void MEMORY_CONTROLLER::print_deadlock() } // LCOV_EXCL_STOP - diff --git a/ramulator2ext/src/addr_mapper/impl/champsim_mappers.cpp b/ramulator2ext/src/addr_mapper/impl/champsim_mappers.cpp index bebed1c199..2952ce8959 100644 --- a/ramulator2ext/src/addr_mapper/impl/champsim_mappers.cpp +++ b/ramulator2ext/src/addr_mapper/impl/champsim_mappers.cpp @@ -207,7 +207,7 @@ namespace Ramulator{ //retrieve the number of bits for the level currently in int num_bits = m_addr_bits[level]; - fmt::print("The number of bits in this level is: {}\n", std::cout << std::hex << num_bits); + fmt::print("The number of bits in this level is: {}\n", num_bits); std::cout << "The number of bits in this level is: " << num_bits << "\n"; //initialize level_addr to hold the randomized address bits for current level Addr_t level_addr = 0; @@ -232,7 +232,7 @@ namespace Ramulator{ //store the result of RASL to the corresponding level req.addr_vec[level] = level_addr; - fmt::print("This is the vector mapped back: {}\n", req.addr_vec); + //fmt::print("This is the vector mapped back: {}\n", addr_vec); //prepare 'addr' for the next level by shifting out the bits we've just proccessed addr >> num_bits; From 0288ed54b830a7d1efa8e4e2f3a5ae7a81708720 Mon Sep 17 00:00:00 2001 From: yanez2001 Date: Fri, 20 Sep 2024 10:09:19 -0500 Subject: [PATCH 03/10] fixing address indexes --- .../src/addr_mapper/impl/champsim_mappers.cpp | 61 ++++++++++++++----- 1 file changed, 47 insertions(+), 14 deletions(-) diff --git a/ramulator2ext/src/addr_mapper/impl/champsim_mappers.cpp b/ramulator2ext/src/addr_mapper/impl/champsim_mappers.cpp index 2952ce8959..f417b982e7 100644 --- a/ramulator2ext/src/addr_mapper/impl/champsim_mappers.cpp +++ b/ramulator2ext/src/addr_mapper/impl/champsim_mappers.cpp @@ -157,6 +157,7 @@ namespace Ramulator{ int m_num_levels = -1; // How many levels in the hierarchy? std::vector m_addr_bits; // How many address bits for each level in the hierarchy? + Addr_t m_tx_offset = -1; int m_col_bits_idx = -1; @@ -171,9 +172,11 @@ namespace Ramulator{ // count the num of levels in our hierarchy m_num_levels = count.size(); + m_addr_bits.resize(m_num_levels); for (size_t level = 0; level < m_addr_bits.size(); level++) { m_addr_bits[level] = calc_log2(count[level]); + std::cout << "This is the number of bits in [" << level << "]: " << m_addr_bits[level] << std::endl; } // Last (Column) address have the granularity of the prefetch size @@ -200,19 +203,47 @@ namespace Ramulator{ //shift the original address to the right by offset bits. Addr_t addr = req.addr >> m_tx_offset; + //channel + req.addr_vec[m_dram->m_levels("channel")] = slice_lower_bits(addr, m_addr_bits[m_dram->m_levels("channel")]); + std::cout << "This is the current address of the channel: 0x" << std::hex << req.addr_vec[m_dram->m_levels("channel")] << std::endl; + + //bank group + if(m_dram->m_organization.count.size() > 5) + req.addr_vec[m_dram->m_levels("bankgroup")] = slice_lower_bits(addr, m_addr_bits[m_dram->m_levels("bankgroup")]); + std::cout << "This is the current address of the bankgroup: 0x" << std::hex << req.addr_vec[m_dram->m_levels("bankgroup")] << std::endl; + + //bank + req.addr_vec[m_dram->m_levels("bank")] = slice_lower_bits(addr, m_addr_bits[m_dram->m_levels("bank")]); + std::cout << "This is the current address of the bank: 0x" << std::hex << req.addr_vec[m_dram->m_levels("bank")] << std::endl; + + //column + req.addr_vec[m_dram->m_levels("column")] = slice_lower_bits(addr, m_addr_bits[m_dram->m_levels("column")]); + std::cout << "This is the current address of the column: 0x" << std::hex << req.addr_vec[m_dram->m_levels("column")] << std::endl; + + //rank + req.addr_vec[m_dram->m_levels("rank")] = slice_lower_bits(addr, m_addr_bits[m_dram->m_levels("rank")]); + std::cout << "This is the current address of the rank: 0x" << std::hex << req.addr_vec[m_dram->m_levels("rank")] << std::endl; + + //row + req.addr_vec[m_dram->m_levels("row")] = slice_lower_bits(addr, m_addr_bits[m_dram->m_levels("row")]); + std::cout << "This is the current address of the row: 0x" << std::hex << req.addr_vec[m_dram->m_levels("row")] << std::endl; + + std::cout << std::endl; + // Generate random address bits for each level (iterate each level) for(size_t level = 0; level < m_addr_bits.size(); level++){ - fmt::print("I'm in index {} of the address vector\n", level); - //retrieve the number of bits for the level currently in int num_bits = m_addr_bits[level]; - fmt::print("The number of bits in this level is: {}\n", num_bits); - std::cout << "The number of bits in this level is: " << num_bits << "\n"; - //initialize level_addr to hold the randomized address bits for current level - Addr_t level_addr = 0; + //fmt::print("The number of bits in this level is: {}\n", num_bits); + std::cout << "The number of bits in this level is: 0x" << std::hex << num_bits << std::endl; + + //initialize rasl_addr to hold the randomized address bits for current level + Addr_t rasl_addr = 0; // loop each bit of the address level currently in to extract + //fmt::print("This is the current address bit before RASL: {}\n", req.addr_vec[level]); + std::cout << "This is the current address bit before RASL: 0x" << std::hex << req.addr_vec[level] << std::endl; for(int bit = 0;bit < num_bits; bit++){ //extract the bit at 'bit position, then shift addr right by that 'bit' // bitwise 1 is to isolate the single bit at that position @@ -221,18 +252,20 @@ namespace Ramulator{ //place the extracted bit in a new, shuffled position //add 3 bits to the current bit position and check if new position is within available bits for current level int new_position = (bit + 3) % num_bits; - //place the extracted bit in level_addr. Shift the extracted bit left by new_position and bitwise OR with - //level_addr to combine with previous bits - level_addr |= (extracted_bit << new_position); + //place the extracted bit in rasl_addr. Shift the extracted bit left by new_position and bitwise OR with + //rasl_addr to combine with previous bits + rasl_addr |= (extracted_bit << new_position); - fmt::print("This is the vector changed: {}\n", level_addr); - std::cout << std::hex << "This is the vector randomized: " << level_addr << "\n"; + //fmt::print("This is the vector changed: {}\n", rasl_addr); + // std::cout << std::hex << "This is the vector randomized: " << rasl_addr << "\n"; } - fmt::print("This is the vector changed: {}\n", level_addr); + //fmt::print("This is the vector after RASL: {}\n", rasl_addr); + std::cout << "This is the vector after RASL: " << std::hex << "0x" << rasl_addr << std::endl; + //store the result of RASL to the corresponding level - req.addr_vec[level] = level_addr; - //fmt::print("This is the vector mapped back: {}\n", addr_vec); + req.addr_vec[level] = rasl_addr; + std::cout << "This is thhe vector mapped back: req.addr_vec[" << level << "] = 0x" << rasl_addr << ";" << std::endl; //prepare 'addr' for the next level by shifting out the bits we've just proccessed addr >> num_bits; From e882aef5ad841244e1f6ce9b62a6abe7bbde4165 Mon Sep 17 00:00:00 2001 From: yanez2001 Date: Fri, 20 Sep 2024 10:48:13 -0500 Subject: [PATCH 04/10] Fixed the RASL algorithm to change current address bits, now need to continuosly change instead of changing the same address bits --- .../src/addr_mapper/impl/champsim_mappers.cpp | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/ramulator2ext/src/addr_mapper/impl/champsim_mappers.cpp b/ramulator2ext/src/addr_mapper/impl/champsim_mappers.cpp index f417b982e7..f78e80ceb4 100644 --- a/ramulator2ext/src/addr_mapper/impl/champsim_mappers.cpp +++ b/ramulator2ext/src/addr_mapper/impl/champsim_mappers.cpp @@ -172,6 +172,7 @@ namespace Ramulator{ // count the num of levels in our hierarchy m_num_levels = count.size(); + std::cout << "The number of levels in our hierarchy: " << m_num_levels << std::endl; m_addr_bits.resize(m_num_levels); for (size_t level = 0; level < m_addr_bits.size(); level++) { @@ -231,46 +232,40 @@ namespace Ramulator{ std::cout << std::endl; // Generate random address bits for each level (iterate each level) - for(size_t level = 0; level < m_addr_bits.size(); level++){ + for(size_t level = 0; level < m_num_levels; level++){ //retrieve the number of bits for the level currently in int num_bits = m_addr_bits[level]; - //fmt::print("The number of bits in this level is: {}\n", num_bits); - std::cout << "The number of bits in this level is: 0x" << std::hex << num_bits << std::endl; + std::cout << "The number of bits in this level is: " << num_bits << std::endl; //initialize rasl_addr to hold the randomized address bits for current level Addr_t rasl_addr = 0; // loop each bit of the address level currently in to extract - //fmt::print("This is the current address bit before RASL: {}\n", req.addr_vec[level]); std::cout << "This is the current address bit before RASL: 0x" << std::hex << req.addr_vec[level] << std::endl; for(int bit = 0;bit < num_bits; bit++){ //extract the bit at 'bit position, then shift addr right by that 'bit' // bitwise 1 is to isolate the single bit at that position - - Addr_t extracted_bit = (addr >> bit) & 1; + Addr_t extracted_bit = (req.addr_vec[level] >> bit) & 1; //place the extracted bit in a new, shuffled position //add 3 bits to the current bit position and check if new position is within available bits for current level int new_position = (bit + 3) % num_bits; //place the extracted bit in rasl_addr. Shift the extracted bit left by new_position and bitwise OR with //rasl_addr to combine with previous bits rasl_addr |= (extracted_bit << new_position); - - //fmt::print("This is the vector changed: {}\n", rasl_addr); - // std::cout << std::hex << "This is the vector randomized: " << rasl_addr << "\n"; } - //fmt::print("This is the vector after RASL: {}\n", rasl_addr); std::cout << "This is the vector after RASL: " << std::hex << "0x" << rasl_addr << std::endl; //store the result of RASL to the corresponding level req.addr_vec[level] = rasl_addr; - std::cout << "This is thhe vector mapped back: req.addr_vec[" << level << "] = 0x" << rasl_addr << ";" << std::endl; + std::cout << "This is the vector mapped back: req.addr_vec[" << level << "] = 0x" << rasl_addr << ";" << std::endl; //prepare 'addr' for the next level by shifting out the bits we've just proccessed addr >> num_bits; + std::cout << std::endl; } - + std::cout << std::endl; // Write back to check if RASL is correct } From 578d09a794d5e6cccbf8158b8abd0f151ad63af3 Mon Sep 17 00:00:00 2001 From: yanez2001 Date: Fri, 4 Oct 2024 10:41:25 -0500 Subject: [PATCH 05/10] found power consumption for each level --- .../src/addr_mapper/impl/champsim_mappers.cpp | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/ramulator2ext/src/addr_mapper/impl/champsim_mappers.cpp b/ramulator2ext/src/addr_mapper/impl/champsim_mappers.cpp index f78e80ceb4..d9b6008bc2 100644 --- a/ramulator2ext/src/addr_mapper/impl/champsim_mappers.cpp +++ b/ramulator2ext/src/addr_mapper/impl/champsim_mappers.cpp @@ -231,6 +231,9 @@ namespace Ramulator{ std::cout << std::endl; + // initialize xor result to hold power consumption for each level + Addr_t xor_result_power = 0; + // Generate random address bits for each level (iterate each level) for(size_t level = 0; level < m_num_levels; level++){ @@ -254,19 +257,22 @@ namespace Ramulator{ //rasl_addr to combine with previous bits rasl_addr |= (extracted_bit << new_position); } - + // power consumption result for each level + xor_result_power = req.addr_vec[level] ^ rasl_addr; + std::cout << "This is the vector after RASL: " << std::hex << "0x" << rasl_addr << std::endl; //store the result of RASL to the corresponding level req.addr_vec[level] = rasl_addr; std::cout << "This is the vector mapped back: req.addr_vec[" << level << "] = 0x" << rasl_addr << ";" << std::endl; + std::cout << "This is the power consumption at level " << level << ": 0x" << xor_result_power << std::endl; //prepare 'addr' for the next level by shifting out the bits we've just proccessed addr >> num_bits; std::cout << std::endl; } std::cout << std::endl; - // Write back to check if RASL is correct + //std::cout << xor_result_power << std::endl; } }; From 389bd82edb3bcf664fbfa504353b965cedd425d8 Mon Sep 17 00:00:00 2001 From: yanez2001 Date: Fri, 11 Oct 2024 10:43:28 -0500 Subject: [PATCH 06/10] Need to fix pc rate, then done --- .../src/addr_mapper/impl/champsim_mappers.cpp | 44 ++++++++++++++++++- 1 file changed, 43 insertions(+), 1 deletion(-) diff --git a/ramulator2ext/src/addr_mapper/impl/champsim_mappers.cpp b/ramulator2ext/src/addr_mapper/impl/champsim_mappers.cpp index d9b6008bc2..25830e2232 100644 --- a/ramulator2ext/src/addr_mapper/impl/champsim_mappers.cpp +++ b/ramulator2ext/src/addr_mapper/impl/champsim_mappers.cpp @@ -1,4 +1,5 @@ #include +#include #include "base/base.h" #include "dram/dram.h" @@ -195,8 +196,15 @@ namespace Ramulator{ // Assume column is always the last level m_col_bits_idx = m_num_levels - 1; + + //tot power + std::vector tot_power; } + // initialize bit counter + int bit_counter = 0; + int num_bits_pc = 0; + void apply(Request& req) override { // initialize addr_vec and resize to match the number of levels in the DRAM hierarchy req.addr_vec.resize(m_num_levels, -1); @@ -234,6 +242,9 @@ namespace Ramulator{ // initialize xor result to hold power consumption for each level Addr_t xor_result_power = 0; + // initialize power_cons to hold the bit changes for each level + std::vector power_vector; + // Generate random address bits for each level (iterate each level) for(size_t level = 0; level < m_num_levels; level++){ @@ -259,6 +270,9 @@ namespace Ramulator{ } // power consumption result for each level xor_result_power = req.addr_vec[level] ^ rasl_addr; + + // store xor_result into power_vector + power_vector.push_back(xor_result_power); std::cout << "This is the vector after RASL: " << std::hex << "0x" << rasl_addr << std::endl; @@ -270,10 +284,38 @@ namespace Ramulator{ //prepare 'addr' for the next level by shifting out the bits we've just proccessed addr >> num_bits; std::cout << std::endl; + + // power consumption ----------------------------------------------------------------------------- + int bit_one_counter = 0; + + // convert to binary + std::bitset<64> binary_representation(xor_result_power); + + // check if binary representation is correct + std::string binary_str = binary_representation.to_string().substr(64-num_bits); + std::cout << "Power consumption vector in binary: " << binary_str << std::endl; + + // count the total number of 1 bits + for (char bit : binary_str){ + if (bit == '1'){ + bit_one_counter += 1; + } + } + + bit_counter = bit_one_counter + bit_counter; + num_bits_pc = num_bits + num_bits_pc; + + std::cout << "Bit 1 counts: " << bit_one_counter << std::endl; + std::cout << "Total bits: " << num_bits << std::endl; + std::cout << std::endl; } std::cout << std::endl; - //std::cout << xor_result_power << std::endl; + std::cout << "The total number of '1' is: " << std::dec << bit_counter << std::endl; + std::cout << "The total number of bits is: " << std::dec << num_bits_pc << std::endl; + // I need to fix this and convert the hex values into decimal so i can get an accurate pc rate. + std::cout << "The power consumption rate: " << std::dec << (bit_counter / num_bits_pc) * 100 << std::endl; } + }; } \ No newline at end of file From 552a98a3fff6d0164460e64c14efb6667fc755e1 Mon Sep 17 00:00:00 2001 From: yanez2001 Date: Tue, 15 Oct 2024 10:54:51 -0500 Subject: [PATCH 07/10] finish power consumption, added log files --- hammer_test_0_0.hp | 287 + hammer_test_0_0.hr | 267 + hammer_test_0_0.hw | 0 hammer_test_0_0.hwb | 152 + hammer_test_0_0.log | 5847 +++++++++++++++++ ramulator.yaml | 8 +- .../src/addr_mapper/impl/champsim_mappers.cpp | 46 +- 7 files changed, 6584 insertions(+), 23 deletions(-) create mode 100644 hammer_test_0_0.hp create mode 100644 hammer_test_0_0.hr create mode 100644 hammer_test_0_0.hw create mode 100644 hammer_test_0_0.hwb create mode 100644 hammer_test_0_0.log diff --git a/hammer_test_0_0.hp b/hammer_test_0_0.hp new file mode 100644 index 0000000000..464ad13f14 --- /dev/null +++ b/hammer_test_0_0.hp @@ -0,0 +1,287 @@ +1700 90 +1800 60 +1900 94 +2000 64 +2100 4 +2200 190 +2300 108 +2400 138 +2500 4 +2900 2 +3200 92 +3300 86 +3400 68 +3500 18 +3600 268 +3700 90 +3800 70 +3900 78 +4000 150 +4100 88 +4200 4 +4300 128 +6100 84 +6200 134 +6300 4 +6400 116 +6500 172 +6600 48 +6700 54 +6800 88 +7100 128 +7200 76 +7400 124 +7500 92 +7700 100 +8500 184 +8600 38 +9300 88 +9500 82 +9600 208 +9700 32 +9800 204 +9900 50 +10000 108 +10100 62 +10200 2 +10400 72 +10500 62 +10600 154 +10800 328 +10900 180 +11000 74 +11100 106 +11300 44 +11700 1372 +11800 14 +11900 8 +12000 136 +12100 90 +12900 80 +13000 144 +13100 126 +13200 88 +13300 140 +13400 128 +13500 4 +13800 180 +13900 34 +14100 2 +14400 234 +14500 150 +15200 80 +15400 196 +15600 268 +15700 72 +15900 124 +16000 62 +16200 144 +16300 252 +16400 204 +16500 68 +16700 150 +16800 92 +17000 84 +17100 108 +17200 84 +17300 58 +17400 160 +17700 166 +17800 72 +17900 100 +18000 110 +18100 100 +18200 78 +18400 326 +18500 176 +18700 122 +18800 148 +18900 98 +19300 116 +19400 32 +19800 32 +19900 74 +20000 58 +20100 74 +20300 158 +20400 154 +20500 72 +20600 116 +20700 32 +20800 54 +20900 76 +21000 48 +21200 82 +22000 64 +22200 128 +22300 216 +22400 52 +22600 74 +22700 188 +22800 4 +22900 58 +23100 244 +23200 118 +23400 154 +23500 56 +23700 132 +23800 144 +23900 50 +24000 172 +24100 2 +24200 148 +24300 240 +24400 288 +24500 64 +24600 76 +24700 396 +24900 94 +25000 58 +25200 44 +25300 278 +25400 4 +25500 90 +25600 10 +25700 160 +25800 66 +25900 16 +26000 8 +26300 66 +26400 42 +26500 4 +26600 60 +26800 8 +27500 328 +27600 94 +27700 74 +27900 60 +28000 180 +28100 102 +28200 156 +28400 76 +28500 320 +28700 174 +28800 90 +28900 132 +29000 20 +29200 20 +29500 4 +29600 6 +29800 170 +29900 106 +30000 240 +30100 2 +30200 132 +30400 174 +30500 280 +30600 126 +30800 194 +30900 64 +31000 46 +31200 74 +31300 80 +31400 322 +31500 184 +31700 76 +31800 52 +32000 94 +32100 78 +32200 2 +32400 240 +32500 4 +32600 150 +32700 94 +32800 76 +32900 8 +33100 156 +33300 402 +33400 2 +33800 4 +34200 260 +34300 78 +34400 346 +34500 100 +34700 102 +34800 262 +35100 6 +35700 88 +35800 192 +36000 274 +36100 188 +36300 76 +36400 34 +36500 4 +36600 28 +36700 124 +36800 230 +36900 20 +37000 2846 +37100 2774 +37200 2470 +37300 1396 +37400 522 +37500 1094 +37600 660 +37700 88 +37800 4 +37900 24 +38000 254 +38100 816 +38200 586 +38300 378 +38400 98 +38500 298 +38600 18 +38700 176 +38800 340 +38900 34 +39000 120 +39100 16 +39200 2 +39300 56 +39400 14 +39500 2 +39600 2 +39700 224 +39800 138 +39900 6 +40000 264 +40200 264 +40300 294 +40400 366 +40500 452 +40600 324 +40700 250 +40800 8 +40900 16 +41100 6 +41300 116 +41400 1006 +41500 2074 +41600 1586 +41700 746 +41800 722 +41900 1600 +42000 828 +42100 356 +42200 918 +42300 632 +42400 3270 +42500 4366 +42600 2592 +42700 1638 +42800 3042 +42900 2768 +43000 1174 +43100 1484 +43200 436 +43300 168 +43400 150 +43500 44 +43600 38 +43700 28 +43800 30 +43900 32 +44000 46 +44100 118 +44200 20 diff --git a/hammer_test_0_0.hr b/hammer_test_0_0.hr new file mode 100644 index 0000000000..bc533cd641 --- /dev/null +++ b/hammer_test_0_0.hr @@ -0,0 +1,267 @@ +1700 38 +1800 42 +1900 72 +2000 130 +2200 252 +2300 72 +2400 154 +2500 2 +3200 168 +3300 72 +3400 138 +3500 12 +3600 180 +3700 90 +3800 66 +3900 68 +4000 144 +4100 48 +4200 6 +4300 98 +6100 64 +6200 90 +6400 94 +6500 142 +6600 18 +6700 68 +6800 32 +7100 158 +7200 96 +7400 80 +7500 78 +7700 60 +8500 102 +8600 60 +9300 84 +9500 60 +9600 164 +9700 48 +9800 136 +9900 56 +10000 58 +10100 86 +10200 4 +10400 44 +10500 32 +10600 64 +10800 238 +10900 120 +11000 50 +11100 62 +11300 62 +11500 22 +11700 1706 +11900 2 +12000 96 +12100 24 +12300 2 +12900 88 +13000 114 +13100 72 +13200 84 +13300 136 +13400 78 +13800 84 +13900 4 +14400 218 +14500 154 +15200 40 +15400 82 +15600 186 +15700 48 +15900 108 +16000 44 +16200 114 +16300 114 +16400 78 +16500 48 +16700 84 +16800 72 +17000 66 +17100 30 +17200 28 +17300 62 +17400 102 +17700 106 +17800 52 +17900 36 +18000 90 +18100 62 +18200 64 +18400 242 +18500 74 +18700 52 +18800 40 +18900 40 +19300 58 +19400 6 +19800 24 +19900 80 +20000 34 +20100 44 +20300 28 +20400 102 +20500 64 +20600 78 +20800 52 +20900 70 +21000 46 +21200 72 +22000 30 +22200 46 +22300 162 +22400 46 +22600 38 +22700 112 +22800 2 +22900 26 +23100 98 +23200 60 +23400 78 +23500 26 +23700 60 +23800 126 +23900 48 +24000 120 +24200 60 +24300 74 +24400 284 +24500 202 +24600 54 +24700 234 +24900 50 +25000 50 +25200 42 +25300 148 +25500 36 +25600 4 +25700 54 +25800 16 +26300 58 +26400 40 +26500 2 +26600 48 +27500 246 +27600 52 +27700 88 +27900 40 +28000 102 +28100 106 +28200 148 +28400 42 +28500 150 +28700 70 +28800 48 +28900 66 +29000 6 +29200 6 +29800 142 +29900 64 +30000 158 +30200 90 +30400 30 +30500 116 +30600 36 +30800 54 +30900 50 +31000 58 +31200 32 +31300 34 +31400 88 +31500 82 +31700 46 +31800 74 +32000 54 +32100 114 +32200 4 +32400 134 +32600 54 +32700 66 +32800 54 +33100 62 +33300 168 +33800 2 +34200 214 +34300 36 +34400 238 +34500 40 +34700 40 +34800 126 +35700 12 +35800 188 +36000 146 +36100 128 +36200 2 +36300 58 +36400 2 +36600 4 +36700 82 +36800 176 +36900 100 +37000 2686 +37100 2196 +37200 1774 +37300 598 +37400 198 +37500 1610 +37600 1072 +37700 42 +37800 2 +37900 12 +38000 1246 +38100 1074 +38200 1190 +38300 1032 +38400 4 +38500 650 +38700 388 +38800 1014 +38900 62 +39000 128 +39100 26 +39200 32 +39300 162 +39400 142 +39500 62 +39600 86 +39700 732 +39800 556 +39900 2 +40000 436 +40200 348 +40300 384 +40400 344 +40500 346 +40600 250 +40700 256 +40900 2 +41300 110 +41400 2136 +41500 2032 +41600 1852 +41700 1122 +41800 1262 +41900 1806 +42000 1136 +42100 894 +42200 2170 +42300 1036 +42400 2962 +42500 3260 +42600 2208 +42700 3638 +42800 2970 +42900 1456 +43000 698 +43100 760 +43200 100 +43300 70 +43400 10 +43500 24 +43600 38 +43700 4 +43800 18 +43900 32 +44000 10 +44100 2 +44200 34 diff --git a/hammer_test_0_0.hw b/hammer_test_0_0.hw new file mode 100644 index 0000000000..e69de29bb2 diff --git a/hammer_test_0_0.hwb b/hammer_test_0_0.hwb new file mode 100644 index 0000000000..b8ca233fd8 --- /dev/null +++ b/hammer_test_0_0.hwb @@ -0,0 +1,152 @@ +18500 6 +18800 2 +18900 2 +20000 2 +20400 4 +20600 6 +20900 2 +21000 2 +21200 4 +22300 14 +22600 4 +22700 4 +23100 8 +23400 4 +23500 2 +23800 2 +23900 6 +24000 4 +24200 10 +24300 12 +24400 12 +24500 8 +24600 14 +24700 28 +24900 6 +25000 2 +25200 10 +25300 20 +25500 10 +25700 2 +25800 4 +26300 4 +26400 10 +26600 8 +27500 28 +27600 10 +27700 8 +27900 16 +28000 20 +28100 8 +28200 32 +28400 12 +28500 40 +28700 18 +28800 4 +28900 10 +29800 20 +29900 24 +30000 36 +30200 22 +30400 34 +30500 30 +30600 12 +30800 22 +30900 12 +31000 8 +31200 24 +31300 14 +31400 48 +31500 10 +31700 12 +31800 20 +32000 24 +32100 18 +32400 44 +32600 18 +32700 24 +32800 14 +33100 34 +33300 72 +34200 52 +34300 16 +34400 60 +34500 6 +34700 18 +34800 48 +35700 30 +35800 34 +36000 48 +36100 44 +36300 22 +36400 6 +36600 6 +36700 28 +36800 30 +36900 14 +37000 596 +37100 422 +37200 414 +37300 188 +37400 66 +37500 172 +37600 120 +37700 8 +37900 4 +38000 72 +38100 162 +38200 100 +38300 90 +38400 18 +38500 92 +38600 2 +38700 42 +38800 106 +38900 8 +39000 14 +39100 2 +39200 4 +39300 14 +39400 6 +39500 8 +39600 8 +39700 84 +39800 62 +40000 50 +40200 50 +40300 68 +40400 114 +40500 96 +40600 80 +40700 58 +40800 2 +41300 20 +41400 380 +41500 448 +41600 536 +41700 304 +41800 366 +41900 642 +42000 328 +42100 180 +42200 582 +42300 366 +42400 1566 +42500 2606 +42600 1080 +42700 828 +42800 1158 +42900 668 +43000 280 +43100 370 +43200 64 +43300 26 +43400 28 +43500 14 +43600 8 +43700 8 +43800 12 +43900 8 +44000 6 +44100 16 +44200 8 diff --git a/hammer_test_0_0.log b/hammer_test_0_0.log new file mode 100644 index 0000000000..3f6838f1a0 --- /dev/null +++ b/hammer_test_0_0.log @@ -0,0 +1,5847 @@ +ROW-HAMMER STATISTICS +#################################################################################################### +Row Hammers (READ INSTIGATED): 147010 + Normal: 72324 Prefetch: 74686 +Row Hammers (WRITE INSTIGATED): 17810 + Normal: 0 Prefetch: 0 Writeback: 17810 +Row Hammers (REFRESH INSTIGATED): 726512 +Total Row Hammers: 891332 +#################################################################################################### +Channels: 1 +Ranks: 1 +Banks: 16 +Rows: 32768 +Columns: 1024 +Address Space Used: 1.11008% +#################################################################################################### +Refreshes: 5676 +Rows Per Refresh: 4 +Refresh Cycles: 0 +#################################################################################################### +Victim Reads: 2899 +Victim Writes: 11 +Lost Hammers: 366158 + To Refresh: 363248 To Access: 2910 +#################################################################################################### +Stats by Row + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x5f Lifetime Hammers/(Normal:Prefetch:Writeback): 117 (28:85:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 116 (27:85:4) Lost Hammers/(Refresh:Access): 117 (1:116) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x61 Lifetime Hammers/(Normal:Prefetch:Writeback): 117 (28:85:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 116 (27:85:4) Lost Hammers/(Refresh:Access): 117 (1:116) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x5f Lifetime Hammers/(Normal:Prefetch:Writeback): 112 (33:77:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 111 (32:77:2) Lost Hammers/(Refresh:Access): 112 (1:111) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x61 Lifetime Hammers/(Normal:Prefetch:Writeback): 112 (33:77:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 111 (32:77:2) Lost Hammers/(Refresh:Access): 112 (1:111) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x61 Lifetime Hammers/(Normal:Prefetch:Writeback): 111 (22:89:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 110 (21:89:0) Lost Hammers/(Refresh:Access): 111 (1:110) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x5f Lifetime Hammers/(Normal:Prefetch:Writeback): 111 (22:89:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 110 (21:89:0) Lost Hammers/(Refresh:Access): 111 (1:110) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x5f Lifetime Hammers/(Normal:Prefetch:Writeback): 111 (32:77:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 110 (31:77:2) Lost Hammers/(Refresh:Access): 111 (1:110) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x61 Lifetime Hammers/(Normal:Prefetch:Writeback): 111 (32:77:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 110 (31:77:2) Lost Hammers/(Refresh:Access): 111 (1:110) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x61 Lifetime Hammers/(Normal:Prefetch:Writeback): 110 (28:81:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 109 (27:81:1) Lost Hammers/(Refresh:Access): 110 (1:109) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x5f Lifetime Hammers/(Normal:Prefetch:Writeback): 110 (28:81:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 109 (27:81:1) Lost Hammers/(Refresh:Access): 110 (1:109) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x5f Lifetime Hammers/(Normal:Prefetch:Writeback): 109 (35:70:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 108 (34:70:4) Lost Hammers/(Refresh:Access): 109 (1:108) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x61 Lifetime Hammers/(Normal:Prefetch:Writeback): 109 (35:70:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 108 (34:70:4) Lost Hammers/(Refresh:Access): 109 (1:108) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x5f Lifetime Hammers/(Normal:Prefetch:Writeback): 109 (30:77:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 108 (29:77:2) Lost Hammers/(Refresh:Access): 109 (1:108) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x61 Lifetime Hammers/(Normal:Prefetch:Writeback): 109 (30:77:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 108 (29:77:2) Lost Hammers/(Refresh:Access): 109 (1:108) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x61 Lifetime Hammers/(Normal:Prefetch:Writeback): 108 (27:80:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 107 (26:80:1) Lost Hammers/(Refresh:Access): 108 (1:107) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x5f Lifetime Hammers/(Normal:Prefetch:Writeback): 108 (27:80:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 107 (26:80:1) Lost Hammers/(Refresh:Access): 108 (1:107) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x5f Lifetime Hammers/(Normal:Prefetch:Writeback): 106 (25:80:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 105 (24:80:1) Lost Hammers/(Refresh:Access): 106 (1:105) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x5f Lifetime Hammers/(Normal:Prefetch:Writeback): 106 (26:79:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 105 (25:79:1) Lost Hammers/(Refresh:Access): 106 (1:105) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x61 Lifetime Hammers/(Normal:Prefetch:Writeback): 106 (26:79:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 105 (25:79:1) Lost Hammers/(Refresh:Access): 106 (1:105) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x61 Lifetime Hammers/(Normal:Prefetch:Writeback): 106 (25:80:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 105 (24:80:1) Lost Hammers/(Refresh:Access): 106 (1:105) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x61 Lifetime Hammers/(Normal:Prefetch:Writeback): 106 (25:77:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 105 (24:77:4) Lost Hammers/(Refresh:Access): 106 (1:105) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x5f Lifetime Hammers/(Normal:Prefetch:Writeback): 106 (25:77:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 105 (24:77:4) Lost Hammers/(Refresh:Access): 106 (1:105) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 105 (30:68:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 104 (29:68:7) Lost Hammers/(Refresh:Access): 105 (1:104) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 105 (30:68:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 104 (29:68:7) Lost Hammers/(Refresh:Access): 105 (1:104) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 104 (32:62:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 103 (31:62:10) Lost Hammers/(Refresh:Access): 104 (1:103) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 104 (32:62:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 103 (31:62:10) Lost Hammers/(Refresh:Access): 104 (1:103) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 103 (32:60:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 102 (31:60:11) Lost Hammers/(Refresh:Access): 103 (1:102) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x5f Lifetime Hammers/(Normal:Prefetch:Writeback): 103 (29:70:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 102 (28:70:4) Lost Hammers/(Refresh:Access): 103 (1:102) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 103 (32:60:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 102 (31:60:11) Lost Hammers/(Refresh:Access): 103 (1:102) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 103 (30:68:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 102 (29:68:5) Lost Hammers/(Refresh:Access): 103 (1:102) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x61 Lifetime Hammers/(Normal:Prefetch:Writeback): 103 (29:70:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 102 (28:70:4) Lost Hammers/(Refresh:Access): 103 (1:102) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 103 (30:68:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 102 (29:68:5) Lost Hammers/(Refresh:Access): 103 (1:102) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 101 (31:64:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 100 (30:64:6) Lost Hammers/(Refresh:Access): 101 (1:100) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 101 (27:67:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 100 (26:67:7) Lost Hammers/(Refresh:Access): 101 (1:100) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 101 (31:64:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 100 (30:64:6) Lost Hammers/(Refresh:Access): 101 (1:100) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x61 Lifetime Hammers/(Normal:Prefetch:Writeback): 101 (31:67:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 100 (30:67:3) Lost Hammers/(Refresh:Access): 101 (1:100) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x5f Lifetime Hammers/(Normal:Prefetch:Writeback): 101 (31:67:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 100 (30:67:3) Lost Hammers/(Refresh:Access): 101 (1:100) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 101 (27:67:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 100 (26:67:7) Lost Hammers/(Refresh:Access): 101 (1:100) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 99 (22:72:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 98 (21:72:5) Lost Hammers/(Refresh:Access): 99 (1:98) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 99 (22:72:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 98 (21:72:5) Lost Hammers/(Refresh:Access): 99 (1:98) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 98 (24:70:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 97 (23:70:4) Lost Hammers/(Refresh:Access): 98 (1:97) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 98 (24:70:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 97 (23:70:4) Lost Hammers/(Refresh:Access): 98 (1:97) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 98 (25:64:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 97 (24:64:9) Lost Hammers/(Refresh:Access): 98 (1:97) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 98 (25:64:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 97 (24:64:9) Lost Hammers/(Refresh:Access): 98 (1:97) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x5f Lifetime Hammers/(Normal:Prefetch:Writeback): 97 (28:65:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 96 (27:65:4) Lost Hammers/(Refresh:Access): 97 (1:96) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x61 Lifetime Hammers/(Normal:Prefetch:Writeback): 97 (28:65:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 96 (27:65:4) Lost Hammers/(Refresh:Access): 97 (1:96) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x5f Lifetime Hammers/(Normal:Prefetch:Writeback): 97 (20:76:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 96 (19:76:1) Lost Hammers/(Refresh:Access): 97 (1:96) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x61 Lifetime Hammers/(Normal:Prefetch:Writeback): 97 (20:76:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 96 (19:76:1) Lost Hammers/(Refresh:Access): 97 (1:96) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 96 (19:68:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 95 (18:68:9) Lost Hammers/(Refresh:Access): 96 (1:95) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 96 (20:70:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 95 (19:70:6) Lost Hammers/(Refresh:Access): 96 (1:95) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 96 (20:70:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 95 (19:70:6) Lost Hammers/(Refresh:Access): 96 (1:95) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 96 (29:58:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 95 (28:58:9) Lost Hammers/(Refresh:Access): 96 (1:95) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 96 (19:68:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 95 (18:68:9) Lost Hammers/(Refresh:Access): 96 (1:95) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 96 (29:58:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 95 (28:58:9) Lost Hammers/(Refresh:Access): 96 (1:95) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 95 (26:63:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 94 (25:63:6) Lost Hammers/(Refresh:Access): 95 (1:94) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 95 (26:63:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 94 (25:63:6) Lost Hammers/(Refresh:Access): 95 (1:94) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 94 (18:69:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 93 (17:69:7) Lost Hammers/(Refresh:Access): 94 (1:93) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 94 (18:69:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 93 (17:69:7) Lost Hammers/(Refresh:Access): 94 (1:93) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x61 Lifetime Hammers/(Normal:Prefetch:Writeback): 93 (22:70:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 92 (21:70:1) Lost Hammers/(Refresh:Access): 93 (1:92) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x5f Lifetime Hammers/(Normal:Prefetch:Writeback): 93 (22:70:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 92 (21:70:1) Lost Hammers/(Refresh:Access): 93 (1:92) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 92 (22:66:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 91 (21:66:4) Lost Hammers/(Refresh:Access): 92 (1:91) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 92 (22:66:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 91 (21:66:4) Lost Hammers/(Refresh:Access): 92 (1:91) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x30f Lifetime Hammers/(Normal:Prefetch:Writeback): 91 (14:63:14) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 90 (13:63:14) Lost Hammers/(Refresh:Access): 91 (1:90) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x311 Lifetime Hammers/(Normal:Prefetch:Writeback): 91 (14:63:14) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 90 (13:63:14) Lost Hammers/(Refresh:Access): 91 (1:90) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 90 (32:52:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 89 (31:52:6) Lost Hammers/(Refresh:Access): 90 (1:89) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 90 (32:52:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 89 (31:52:6) Lost Hammers/(Refresh:Access): 90 (1:89) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x30f Lifetime Hammers/(Normal:Prefetch:Writeback): 86 (17:54:15) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 85 (16:54:15) Lost Hammers/(Refresh:Access): 86 (1:85) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x311 Lifetime Hammers/(Normal:Prefetch:Writeback): 86 (18:49:19) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 85 (17:49:19) Lost Hammers/(Refresh:Access): 86 (1:85) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x311 Lifetime Hammers/(Normal:Prefetch:Writeback): 86 (17:54:15) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 85 (16:54:15) Lost Hammers/(Refresh:Access): 86 (1:85) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x30f Lifetime Hammers/(Normal:Prefetch:Writeback): 86 (18:49:19) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 85 (17:49:19) Lost Hammers/(Refresh:Access): 86 (1:85) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x30f Lifetime Hammers/(Normal:Prefetch:Writeback): 84 (13:57:14) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 83 (12:57:14) Lost Hammers/(Refresh:Access): 84 (1:83) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x311 Lifetime Hammers/(Normal:Prefetch:Writeback): 84 (13:57:14) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 83 (12:57:14) Lost Hammers/(Refresh:Access): 84 (1:83) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x311 Lifetime Hammers/(Normal:Prefetch:Writeback): 83 (17:52:14) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 82 (16:52:14) Lost Hammers/(Refresh:Access): 83 (1:82) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x30f Lifetime Hammers/(Normal:Prefetch:Writeback): 83 (17:52:14) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 82 (16:52:14) Lost Hammers/(Refresh:Access): 83 (1:82) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 83 (25:45:13) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 82 (24:45:13) Lost Hammers/(Refresh:Access): 83 (1:82) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 83 (25:45:13) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 82 (24:45:13) Lost Hammers/(Refresh:Access): 83 (1:82) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x311 Lifetime Hammers/(Normal:Prefetch:Writeback): 82 (11:59:12) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 81 (10:59:12) Lost Hammers/(Refresh:Access): 82 (1:81) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x30f Lifetime Hammers/(Normal:Prefetch:Writeback): 82 (11:59:12) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 81 (10:59:12) Lost Hammers/(Refresh:Access): 82 (1:81) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x30f Lifetime Hammers/(Normal:Prefetch:Writeback): 81 (14:52:15) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 80 (13:52:15) Lost Hammers/(Refresh:Access): 81 (1:80) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x311 Lifetime Hammers/(Normal:Prefetch:Writeback): 81 (14:52:15) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 80 (13:52:15) Lost Hammers/(Refresh:Access): 81 (1:80) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x311 Lifetime Hammers/(Normal:Prefetch:Writeback): 80 (15:54:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 79 (14:54:11) Lost Hammers/(Refresh:Access): 80 (1:79) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x30f Lifetime Hammers/(Normal:Prefetch:Writeback): 80 (15:54:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 79 (14:54:11) Lost Hammers/(Refresh:Access): 80 (1:79) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 80 (26:44:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 79 (25:44:10) Lost Hammers/(Refresh:Access): 80 (1:79) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 80 (26:44:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 79 (25:44:10) Lost Hammers/(Refresh:Access): 80 (1:79) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 79 (27:41:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 78 (26:41:11) Lost Hammers/(Refresh:Access): 79 (1:78) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 79 (27:41:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 78 (26:41:11) Lost Hammers/(Refresh:Access): 79 (1:78) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x30f Lifetime Hammers/(Normal:Prefetch:Writeback): 78 (15:49:14) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 77 (14:49:14) Lost Hammers/(Refresh:Access): 78 (1:77) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x311 Lifetime Hammers/(Normal:Prefetch:Writeback): 78 (15:49:14) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 77 (14:49:14) Lost Hammers/(Refresh:Access): 78 (1:77) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 77 (27:45:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 76 (26:45:5) Lost Hammers/(Refresh:Access): 77 (1:76) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 77 (20:51:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 76 (19:51:6) Lost Hammers/(Refresh:Access): 77 (1:76) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 77 (27:45:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 76 (26:45:5) Lost Hammers/(Refresh:Access): 77 (1:76) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x30f Lifetime Hammers/(Normal:Prefetch:Writeback): 77 (17:44:16) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 76 (16:44:16) Lost Hammers/(Refresh:Access): 77 (1:76) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x311 Lifetime Hammers/(Normal:Prefetch:Writeback): 77 (17:44:16) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 76 (16:44:16) Lost Hammers/(Refresh:Access): 77 (1:76) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 77 (20:51:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 76 (19:51:6) Lost Hammers/(Refresh:Access): 77 (1:76) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 76 (25:50:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 75 (24:50:1) Lost Hammers/(Refresh:Access): 76 (1:75) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x311 Lifetime Hammers/(Normal:Prefetch:Writeback): 76 (14:51:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 75 (13:51:11) Lost Hammers/(Refresh:Access): 76 (1:75) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 76 (21:47:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 75 (20:47:8) Lost Hammers/(Refresh:Access): 76 (1:75) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x30f Lifetime Hammers/(Normal:Prefetch:Writeback): 76 (14:51:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 75 (13:51:11) Lost Hammers/(Refresh:Access): 76 (1:75) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 76 (21:47:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 75 (20:47:8) Lost Hammers/(Refresh:Access): 76 (1:75) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 76 (27:41:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 75 (26:41:8) Lost Hammers/(Refresh:Access): 76 (1:75) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 76 (25:50:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 75 (24:50:1) Lost Hammers/(Refresh:Access): 76 (1:75) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 76 (27:41:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 75 (26:41:8) Lost Hammers/(Refresh:Access): 76 (1:75) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x30f Lifetime Hammers/(Normal:Prefetch:Writeback): 74 (15:46:13) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 73 (14:46:13) Lost Hammers/(Refresh:Access): 74 (1:73) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x311 Lifetime Hammers/(Normal:Prefetch:Writeback): 74 (15:46:13) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 73 (14:46:13) Lost Hammers/(Refresh:Access): 74 (1:73) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x30f Lifetime Hammers/(Normal:Prefetch:Writeback): 74 (13:47:14) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 73 (12:47:14) Lost Hammers/(Refresh:Access): 74 (1:73) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 74 (16:50:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 73 (15:50:8) Lost Hammers/(Refresh:Access): 74 (1:73) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x311 Lifetime Hammers/(Normal:Prefetch:Writeback): 74 (13:47:14) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 73 (12:47:14) Lost Hammers/(Refresh:Access): 74 (1:73) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 74 (16:50:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 73 (15:50:8) Lost Hammers/(Refresh:Access): 74 (1:73) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 73 (23:42:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 72 (22:42:8) Lost Hammers/(Refresh:Access): 73 (1:72) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 73 (21:43:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 72 (20:43:9) Lost Hammers/(Refresh:Access): 73 (1:72) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 73 (23:42:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 72 (22:42:8) Lost Hammers/(Refresh:Access): 73 (1:72) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 73 (17:52:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 72 (16:52:4) Lost Hammers/(Refresh:Access): 73 (1:72) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 73 (21:43:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 72 (20:43:9) Lost Hammers/(Refresh:Access): 73 (1:72) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 73 (17:52:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 72 (16:52:4) Lost Hammers/(Refresh:Access): 73 (1:72) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 72 (14:57:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 71 (13:57:1) Lost Hammers/(Refresh:Access): 72 (1:71) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x311 Lifetime Hammers/(Normal:Prefetch:Writeback): 72 (12:45:15) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 71 (11:45:15) Lost Hammers/(Refresh:Access): 72 (1:71) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x30f Lifetime Hammers/(Normal:Prefetch:Writeback): 72 (12:45:15) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 71 (11:45:15) Lost Hammers/(Refresh:Access): 72 (1:71) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 72 (14:57:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 71 (13:57:1) Lost Hammers/(Refresh:Access): 72 (1:71) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 72 (22:42:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 71 (21:42:8) Lost Hammers/(Refresh:Access): 72 (1:71) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 72 (22:42:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 71 (21:42:8) Lost Hammers/(Refresh:Access): 72 (1:71) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 71 (18:52:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 70 (17:52:1) Lost Hammers/(Refresh:Access): 71 (1:70) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 71 (20:50:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 70 (19:50:1) Lost Hammers/(Refresh:Access): 71 (1:70) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 71 (20:50:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 70 (19:50:1) Lost Hammers/(Refresh:Access): 71 (1:70) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x157 Lifetime Hammers/(Normal:Prefetch:Writeback): 71 (40:23:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 70 (39:23:8) Lost Hammers/(Refresh:Access): 71 (1:70) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 71 (18:52:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 70 (17:52:1) Lost Hammers/(Refresh:Access): 71 (1:70) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 71 (20:42:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 70 (19:42:9) Lost Hammers/(Refresh:Access): 71 (1:70) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x159 Lifetime Hammers/(Normal:Prefetch:Writeback): 71 (40:23:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 70 (39:23:8) Lost Hammers/(Refresh:Access): 71 (1:70) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 71 (20:42:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 70 (19:42:9) Lost Hammers/(Refresh:Access): 71 (1:70) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 70 (17:50:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 69 (16:50:3) Lost Hammers/(Refresh:Access): 70 (1:69) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 70 (17:50:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 69 (16:50:3) Lost Hammers/(Refresh:Access): 70 (1:69) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x2af Lifetime Hammers/(Normal:Prefetch:Writeback): 69 (45:11:13) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 68 (44:11:13) Lost Hammers/(Refresh:Access): 69 (1:68) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x2b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 69 (45:11:13) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 68 (44:11:13) Lost Hammers/(Refresh:Access): 69 (1:68) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 69 (18:51:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 68 (17:51:0) Lost Hammers/(Refresh:Access): 69 (1:68) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 69 (18:51:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 68 (17:51:0) Lost Hammers/(Refresh:Access): 69 (1:68) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 68 (20:36:12) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 67 (19:36:12) Lost Hammers/(Refresh:Access): 68 (1:67) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 68 (22:42:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 67 (21:42:4) Lost Hammers/(Refresh:Access): 68 (1:67) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 68 (20:36:12) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 67 (19:36:12) Lost Hammers/(Refresh:Access): 68 (1:67) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 68 (22:42:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 67 (21:42:4) Lost Hammers/(Refresh:Access): 68 (1:67) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x2b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 67 (40:14:13) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 66 (39:14:13) Lost Hammers/(Refresh:Access): 67 (1:66) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x5c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 67 (20:47:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 66 (19:47:0) Lost Hammers/(Refresh:Access): 67 (1:66) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x2af Lifetime Hammers/(Normal:Prefetch:Writeback): 67 (40:14:13) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 66 (39:14:13) Lost Hammers/(Refresh:Access): 67 (1:66) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x30f Lifetime Hammers/(Normal:Prefetch:Writeback): 67 (11:45:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 66 (10:45:11) Lost Hammers/(Refresh:Access): 67 (1:66) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x151 Lifetime Hammers/(Normal:Prefetch:Writeback): 67 (31:27:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 66 (30:27:9) Lost Hammers/(Refresh:Access): 67 (1:66) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x5bf Lifetime Hammers/(Normal:Prefetch:Writeback): 67 (20:47:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 66 (19:47:0) Lost Hammers/(Refresh:Access): 67 (1:66) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 67 (18:44:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 66 (17:44:5) Lost Hammers/(Refresh:Access): 67 (1:66) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x14f Lifetime Hammers/(Normal:Prefetch:Writeback): 67 (31:27:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 66 (30:27:9) Lost Hammers/(Refresh:Access): 67 (1:66) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 67 (18:44:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 66 (17:44:5) Lost Hammers/(Refresh:Access): 67 (1:66) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 67 (23:42:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 66 (22:42:2) Lost Hammers/(Refresh:Access): 67 (1:66) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x30f Lifetime Hammers/(Normal:Prefetch:Writeback): 67 (11:47:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 66 (10:47:9) Lost Hammers/(Refresh:Access): 67 (1:66) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 67 (23:42:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 66 (22:42:2) Lost Hammers/(Refresh:Access): 67 (1:66) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x311 Lifetime Hammers/(Normal:Prefetch:Writeback): 67 (11:45:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 66 (10:45:11) Lost Hammers/(Refresh:Access): 67 (1:66) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x5c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 67 (24:43:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 66 (23:43:0) Lost Hammers/(Refresh:Access): 67 (1:66) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x311 Lifetime Hammers/(Normal:Prefetch:Writeback): 67 (11:47:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 66 (10:47:9) Lost Hammers/(Refresh:Access): 67 (1:66) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x5bf Lifetime Hammers/(Normal:Prefetch:Writeback): 67 (24:43:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 66 (23:43:0) Lost Hammers/(Refresh:Access): 67 (1:66) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x5c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 66 (23:43:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 65 (22:43:0) Lost Hammers/(Refresh:Access): 66 (1:65) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x271 Lifetime Hammers/(Normal:Prefetch:Writeback): 66 (26:31:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 65 (25:31:9) Lost Hammers/(Refresh:Access): 66 (1:65) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 66 (16:46:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 65 (15:46:4) Lost Hammers/(Refresh:Access): 66 (1:65) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x5bf Lifetime Hammers/(Normal:Prefetch:Writeback): 66 (23:43:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 65 (22:43:0) Lost Hammers/(Refresh:Access): 66 (1:65) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x5c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 66 (23:43:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 65 (22:43:0) Lost Hammers/(Refresh:Access): 66 (1:65) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 66 (16:46:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 65 (15:46:4) Lost Hammers/(Refresh:Access): 66 (1:65) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x269 Lifetime Hammers/(Normal:Prefetch:Writeback): 66 (26:36:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 65 (25:36:4) Lost Hammers/(Refresh:Access): 66 (1:65) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x2b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 66 (49:8:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 65 (48:8:9) Lost Hammers/(Refresh:Access): 66 (1:65) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x2af Lifetime Hammers/(Normal:Prefetch:Writeback): 66 (49:8:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 65 (48:8:9) Lost Hammers/(Refresh:Access): 66 (1:65) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x26f Lifetime Hammers/(Normal:Prefetch:Writeback): 66 (26:31:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 65 (25:31:9) Lost Hammers/(Refresh:Access): 66 (1:65) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x267 Lifetime Hammers/(Normal:Prefetch:Writeback): 66 (26:36:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 65 (25:36:4) Lost Hammers/(Refresh:Access): 66 (1:65) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x5bf Lifetime Hammers/(Normal:Prefetch:Writeback): 66 (23:43:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 65 (22:43:0) Lost Hammers/(Refresh:Access): 66 (1:65) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x267 Lifetime Hammers/(Normal:Prefetch:Writeback): 66 (23:38:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 65 (22:38:5) Lost Hammers/(Refresh:Access): 66 (1:65) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x269 Lifetime Hammers/(Normal:Prefetch:Writeback): 66 (23:38:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 65 (22:38:5) Lost Hammers/(Refresh:Access): 66 (1:65) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 66 (21:44:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 65 (20:44:1) Lost Hammers/(Refresh:Access): 66 (1:65) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 66 (21:44:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 65 (20:44:1) Lost Hammers/(Refresh:Access): 66 (1:65) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x151 Lifetime Hammers/(Normal:Prefetch:Writeback): 65 (37:22:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 64 (36:22:6) Lost Hammers/(Refresh:Access): 65 (1:64) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x271 Lifetime Hammers/(Normal:Prefetch:Writeback): 65 (32:23:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 64 (31:23:10) Lost Hammers/(Refresh:Access): 65 (1:64) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x26f Lifetime Hammers/(Normal:Prefetch:Writeback): 65 (32:23:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 64 (31:23:10) Lost Hammers/(Refresh:Access): 65 (1:64) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x14f Lifetime Hammers/(Normal:Prefetch:Writeback): 65 (37:22:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 64 (36:22:6) Lost Hammers/(Refresh:Access): 65 (1:64) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x26f Lifetime Hammers/(Normal:Prefetch:Writeback): 64 (27:30:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 63 (26:30:7) Lost Hammers/(Refresh:Access): 64 (1:63) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x5c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 64 (21:43:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 63 (20:43:0) Lost Hammers/(Refresh:Access): 64 (1:63) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 64 (23:36:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 63 (22:36:5) Lost Hammers/(Refresh:Access): 64 (1:63) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x5bf Lifetime Hammers/(Normal:Prefetch:Writeback): 64 (23:41:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 63 (22:41:0) Lost Hammers/(Refresh:Access): 64 (1:63) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 64 (23:36:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 63 (22:36:5) Lost Hammers/(Refresh:Access): 64 (1:63) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x269 Lifetime Hammers/(Normal:Prefetch:Writeback): 64 (28:33:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 63 (27:33:3) Lost Hammers/(Refresh:Access): 64 (1:63) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x271 Lifetime Hammers/(Normal:Prefetch:Writeback): 64 (27:30:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 63 (26:30:7) Lost Hammers/(Refresh:Access): 64 (1:63) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x5c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 64 (23:41:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 63 (22:41:0) Lost Hammers/(Refresh:Access): 64 (1:63) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x5bf Lifetime Hammers/(Normal:Prefetch:Writeback): 64 (21:43:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 63 (20:43:0) Lost Hammers/(Refresh:Access): 64 (1:63) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x267 Lifetime Hammers/(Normal:Prefetch:Writeback): 64 (28:33:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 63 (27:33:3) Lost Hammers/(Refresh:Access): 64 (1:63) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x271 Lifetime Hammers/(Normal:Prefetch:Writeback): 64 (32:25:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 63 (31:25:7) Lost Hammers/(Refresh:Access): 64 (1:63) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x26f Lifetime Hammers/(Normal:Prefetch:Writeback): 64 (32:25:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 63 (31:25:7) Lost Hammers/(Refresh:Access): 64 (1:63) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x267 Lifetime Hammers/(Normal:Prefetch:Writeback): 63 (25:36:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 62 (24:36:2) Lost Hammers/(Refresh:Access): 63 (1:62) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 63 (21:30:12) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 62 (20:30:12) Lost Hammers/(Refresh:Access): 63 (1:62) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 63 (21:30:12) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 62 (20:30:12) Lost Hammers/(Refresh:Access): 63 (1:62) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x269 Lifetime Hammers/(Normal:Prefetch:Writeback): 63 (25:36:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 62 (24:36:2) Lost Hammers/(Refresh:Access): 63 (1:62) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x26f Lifetime Hammers/(Normal:Prefetch:Writeback): 63 (26:29:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 62 (25:29:8) Lost Hammers/(Refresh:Access): 63 (1:62) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x147 Lifetime Hammers/(Normal:Prefetch:Writeback): 63 (25:35:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 62 (24:35:3) Lost Hammers/(Refresh:Access): 63 (1:62) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x149 Lifetime Hammers/(Normal:Prefetch:Writeback): 63 (25:35:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 62 (24:35:3) Lost Hammers/(Refresh:Access): 63 (1:62) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x271 Lifetime Hammers/(Normal:Prefetch:Writeback): 63 (26:29:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 62 (25:29:8) Lost Hammers/(Refresh:Access): 63 (1:62) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 63 (21:35:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 62 (20:35:7) Lost Hammers/(Refresh:Access): 63 (1:62) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 63 (21:35:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 62 (20:35:7) Lost Hammers/(Refresh:Access): 63 (1:62) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x269 Lifetime Hammers/(Normal:Prefetch:Writeback): 63 (30:30:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 62 (29:30:3) Lost Hammers/(Refresh:Access): 63 (1:62) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x267 Lifetime Hammers/(Normal:Prefetch:Writeback): 63 (30:30:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 62 (29:30:3) Lost Hammers/(Refresh:Access): 63 (1:62) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 62 (19:42:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 61 (18:42:1) Lost Hammers/(Refresh:Access): 62 (1:61) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x271 Lifetime Hammers/(Normal:Prefetch:Writeback): 62 (31:22:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 61 (30:22:9) Lost Hammers/(Refresh:Access): 62 (1:61) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x26f Lifetime Hammers/(Normal:Prefetch:Writeback): 62 (31:22:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 61 (30:22:9) Lost Hammers/(Refresh:Access): 62 (1:61) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x99 Lifetime Hammers/(Normal:Prefetch:Writeback): 62 (33:25:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 61 (32:25:4) Lost Hammers/(Refresh:Access): 62 (1:61) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x97 Lifetime Hammers/(Normal:Prefetch:Writeback): 62 (33:25:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 61 (32:25:4) Lost Hammers/(Refresh:Access): 62 (1:61) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 62 (19:42:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 61 (18:42:1) Lost Hammers/(Refresh:Access): 62 (1:61) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x267 Lifetime Hammers/(Normal:Prefetch:Writeback): 61 (30:31:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 60 (29:31:0) Lost Hammers/(Refresh:Access): 61 (1:60) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x97 Lifetime Hammers/(Normal:Prefetch:Writeback): 61 (29:26:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 60 (28:26:6) Lost Hammers/(Refresh:Access): 61 (1:60) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 61 (22:28:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 60 (21:28:11) Lost Hammers/(Refresh:Access): 61 (1:60) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x159 Lifetime Hammers/(Normal:Prefetch:Writeback): 61 (34:21:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 60 (33:21:6) Lost Hammers/(Refresh:Access): 61 (1:60) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 61 (22:28:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 60 (21:28:11) Lost Hammers/(Refresh:Access): 61 (1:60) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x5c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 61 (19:42:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 60 (18:42:0) Lost Hammers/(Refresh:Access): 61 (1:60) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x5bf Lifetime Hammers/(Normal:Prefetch:Writeback): 61 (19:42:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 60 (18:42:0) Lost Hammers/(Refresh:Access): 61 (1:60) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x99 Lifetime Hammers/(Normal:Prefetch:Writeback): 61 (28:26:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 60 (27:26:7) Lost Hammers/(Refresh:Access): 61 (1:60) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x97 Lifetime Hammers/(Normal:Prefetch:Writeback): 61 (28:26:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 60 (27:26:7) Lost Hammers/(Refresh:Access): 61 (1:60) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x5c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 61 (20:41:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 60 (19:41:0) Lost Hammers/(Refresh:Access): 61 (1:60) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x2b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 61 (40:13:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 60 (39:13:8) Lost Hammers/(Refresh:Access): 61 (1:60) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x99 Lifetime Hammers/(Normal:Prefetch:Writeback): 61 (29:26:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 60 (28:26:6) Lost Hammers/(Refresh:Access): 61 (1:60) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x269 Lifetime Hammers/(Normal:Prefetch:Writeback): 61 (30:31:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 60 (29:31:0) Lost Hammers/(Refresh:Access): 61 (1:60) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x5bf Lifetime Hammers/(Normal:Prefetch:Writeback): 61 (20:41:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 60 (19:41:0) Lost Hammers/(Refresh:Access): 61 (1:60) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x157 Lifetime Hammers/(Normal:Prefetch:Writeback): 61 (34:21:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 60 (33:21:6) Lost Hammers/(Refresh:Access): 61 (1:60) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x2af Lifetime Hammers/(Normal:Prefetch:Writeback): 61 (40:13:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 60 (39:13:8) Lost Hammers/(Refresh:Access): 61 (1:60) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x5bf Lifetime Hammers/(Normal:Prefetch:Writeback): 60 (17:43:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 59 (16:43:0) Lost Hammers/(Refresh:Access): 60 (1:59) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x5c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 60 (17:43:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 59 (16:43:0) Lost Hammers/(Refresh:Access): 60 (1:59) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 60 (20:38:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 59 (19:38:2) Lost Hammers/(Refresh:Access): 60 (1:59) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 60 (16:42:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 59 (15:42:2) Lost Hammers/(Refresh:Access): 60 (1:59) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 60 (16:42:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 59 (15:42:2) Lost Hammers/(Refresh:Access): 60 (1:59) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 60 (20:38:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 59 (19:38:2) Lost Hammers/(Refresh:Access): 60 (1:59) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x2b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 60 (38:12:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 59 (37:12:10) Lost Hammers/(Refresh:Access): 60 (1:59) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x271 Lifetime Hammers/(Normal:Prefetch:Writeback): 60 (26:25:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 59 (25:25:9) Lost Hammers/(Refresh:Access): 60 (1:59) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x2af Lifetime Hammers/(Normal:Prefetch:Writeback): 60 (38:12:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 59 (37:12:10) Lost Hammers/(Refresh:Access): 60 (1:59) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x26f Lifetime Hammers/(Normal:Prefetch:Writeback): 60 (26:25:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 59 (25:25:9) Lost Hammers/(Refresh:Access): 60 (1:59) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x5c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 59 (22:37:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 58 (21:37:0) Lost Hammers/(Refresh:Access): 59 (1:58) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x151 Lifetime Hammers/(Normal:Prefetch:Writeback): 59 (39:14:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 58 (38:14:6) Lost Hammers/(Refresh:Access): 59 (1:58) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x5c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 59 (20:39:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 58 (19:39:0) Lost Hammers/(Refresh:Access): 59 (1:58) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x14f Lifetime Hammers/(Normal:Prefetch:Writeback): 59 (39:14:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 58 (38:14:6) Lost Hammers/(Refresh:Access): 59 (1:58) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x5bf Lifetime Hammers/(Normal:Prefetch:Writeback): 59 (22:37:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 58 (21:37:0) Lost Hammers/(Refresh:Access): 59 (1:58) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x5bf Lifetime Hammers/(Normal:Prefetch:Writeback): 59 (20:39:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 58 (19:39:0) Lost Hammers/(Refresh:Access): 59 (1:58) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x5c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 59 (20:39:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 58 (19:39:0) Lost Hammers/(Refresh:Access): 59 (1:58) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 59 (15:42:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 58 (14:42:2) Lost Hammers/(Refresh:Access): 59 (1:58) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 59 (15:42:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 58 (14:42:2) Lost Hammers/(Refresh:Access): 59 (1:58) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x2b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 59 (41:10:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 58 (40:10:8) Lost Hammers/(Refresh:Access): 59 (1:58) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x267 Lifetime Hammers/(Normal:Prefetch:Writeback): 59 (30:26:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 58 (29:26:3) Lost Hammers/(Refresh:Access): 59 (1:58) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x2af Lifetime Hammers/(Normal:Prefetch:Writeback): 59 (42:11:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 58 (41:11:6) Lost Hammers/(Refresh:Access): 59 (1:58) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x147 Lifetime Hammers/(Normal:Prefetch:Writeback): 59 (27:25:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 58 (26:25:7) Lost Hammers/(Refresh:Access): 59 (1:58) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x2b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 59 (42:11:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 58 (41:11:6) Lost Hammers/(Refresh:Access): 59 (1:58) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x2af Lifetime Hammers/(Normal:Prefetch:Writeback): 59 (41:10:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 58 (40:10:8) Lost Hammers/(Refresh:Access): 59 (1:58) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x149 Lifetime Hammers/(Normal:Prefetch:Writeback): 59 (27:25:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 58 (26:25:7) Lost Hammers/(Refresh:Access): 59 (1:58) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x5bf Lifetime Hammers/(Normal:Prefetch:Writeback): 59 (20:39:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 58 (19:39:0) Lost Hammers/(Refresh:Access): 59 (1:58) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x26f Lifetime Hammers/(Normal:Prefetch:Writeback): 59 (36:16:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 58 (35:16:7) Lost Hammers/(Refresh:Access): 59 (1:58) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x269 Lifetime Hammers/(Normal:Prefetch:Writeback): 59 (30:26:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 58 (29:26:3) Lost Hammers/(Refresh:Access): 59 (1:58) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x271 Lifetime Hammers/(Normal:Prefetch:Writeback): 59 (36:16:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 58 (35:16:7) Lost Hammers/(Refresh:Access): 59 (1:58) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x99 Lifetime Hammers/(Normal:Prefetch:Writeback): 59 (31:22:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 58 (30:22:6) Lost Hammers/(Refresh:Access): 59 (1:58) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x97 Lifetime Hammers/(Normal:Prefetch:Writeback): 59 (31:22:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 58 (30:22:6) Lost Hammers/(Refresh:Access): 59 (1:58) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x14f Lifetime Hammers/(Normal:Prefetch:Writeback): 58 (29:25:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 57 (28:25:4) Lost Hammers/(Refresh:Access): 58 (1:57) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 58 (13:43:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 57 (12:43:2) Lost Hammers/(Refresh:Access): 58 (1:57) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x271 Lifetime Hammers/(Normal:Prefetch:Writeback): 58 (20:31:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 57 (19:31:7) Lost Hammers/(Refresh:Access): 58 (1:57) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x157 Lifetime Hammers/(Normal:Prefetch:Writeback): 58 (37:19:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 57 (36:19:2) Lost Hammers/(Refresh:Access): 58 (1:57) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x267 Lifetime Hammers/(Normal:Prefetch:Writeback): 58 (27:29:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 57 (26:29:2) Lost Hammers/(Refresh:Access): 58 (1:57) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x269 Lifetime Hammers/(Normal:Prefetch:Writeback): 58 (27:29:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 57 (26:29:2) Lost Hammers/(Refresh:Access): 58 (1:57) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x151 Lifetime Hammers/(Normal:Prefetch:Writeback): 58 (30:21:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 57 (29:21:7) Lost Hammers/(Refresh:Access): 58 (1:57) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x99 Lifetime Hammers/(Normal:Prefetch:Writeback): 58 (27:26:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 57 (26:26:5) Lost Hammers/(Refresh:Access): 58 (1:57) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x151 Lifetime Hammers/(Normal:Prefetch:Writeback): 58 (29:25:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 57 (28:25:4) Lost Hammers/(Refresh:Access): 58 (1:57) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x14f Lifetime Hammers/(Normal:Prefetch:Writeback): 58 (30:21:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 57 (29:21:7) Lost Hammers/(Refresh:Access): 58 (1:57) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x5c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 58 (17:41:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 57 (16:41:0) Lost Hammers/(Refresh:Access): 58 (1:57) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x159 Lifetime Hammers/(Normal:Prefetch:Writeback): 58 (37:19:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 57 (36:19:2) Lost Hammers/(Refresh:Access): 58 (1:57) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x97 Lifetime Hammers/(Normal:Prefetch:Writeback): 58 (27:26:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 57 (26:26:5) Lost Hammers/(Refresh:Access): 58 (1:57) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x271 Lifetime Hammers/(Normal:Prefetch:Writeback): 58 (24:29:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 57 (23:29:5) Lost Hammers/(Refresh:Access): 58 (1:57) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x5bf Lifetime Hammers/(Normal:Prefetch:Writeback): 58 (17:41:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 57 (16:41:0) Lost Hammers/(Refresh:Access): 58 (1:57) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x15f Lifetime Hammers/(Normal:Prefetch:Writeback): 58 (29:26:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 57 (28:26:3) Lost Hammers/(Refresh:Access): 58 (1:57) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x26f Lifetime Hammers/(Normal:Prefetch:Writeback): 58 (24:29:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 57 (23:29:5) Lost Hammers/(Refresh:Access): 58 (1:57) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x26f Lifetime Hammers/(Normal:Prefetch:Writeback): 58 (20:31:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 57 (19:31:7) Lost Hammers/(Refresh:Access): 58 (1:57) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 58 (13:43:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 57 (12:43:2) Lost Hammers/(Refresh:Access): 58 (1:57) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x161 Lifetime Hammers/(Normal:Prefetch:Writeback): 58 (29:26:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 57 (28:26:3) Lost Hammers/(Refresh:Access): 58 (1:57) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x26f Lifetime Hammers/(Normal:Prefetch:Writeback): 57 (29:20:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 56 (28:20:8) Lost Hammers/(Refresh:Access): 57 (1:56) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x5bf Lifetime Hammers/(Normal:Prefetch:Writeback): 57 (21:36:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 56 (20:36:0) Lost Hammers/(Refresh:Access): 57 (1:56) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x271 Lifetime Hammers/(Normal:Prefetch:Writeback): 57 (29:20:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 56 (28:20:8) Lost Hammers/(Refresh:Access): 57 (1:56) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x2b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 57 (42:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 56 (41:11:4) Lost Hammers/(Refresh:Access): 57 (1:56) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x271 Lifetime Hammers/(Normal:Prefetch:Writeback): 57 (25:25:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 56 (24:25:7) Lost Hammers/(Refresh:Access): 57 (1:56) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x26f Lifetime Hammers/(Normal:Prefetch:Writeback): 57 (25:25:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 56 (24:25:7) Lost Hammers/(Refresh:Access): 57 (1:56) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x71 Lifetime Hammers/(Normal:Prefetch:Writeback): 57 (41:8:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 56 (40:8:8) Lost Hammers/(Refresh:Access): 57 (1:56) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x269 Lifetime Hammers/(Normal:Prefetch:Writeback): 57 (31:24:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 56 (30:24:2) Lost Hammers/(Refresh:Access): 57 (1:56) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x2af Lifetime Hammers/(Normal:Prefetch:Writeback): 57 (42:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 56 (41:11:4) Lost Hammers/(Refresh:Access): 57 (1:56) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x14f Lifetime Hammers/(Normal:Prefetch:Writeback): 57 (37:14:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 56 (36:14:6) Lost Hammers/(Refresh:Access): 57 (1:56) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x13f Lifetime Hammers/(Normal:Prefetch:Writeback): 57 (32:19:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 56 (31:19:6) Lost Hammers/(Refresh:Access): 57 (1:56) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x2d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 57 (26:21:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 56 (25:21:10) Lost Hammers/(Refresh:Access): 57 (1:56) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x2d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 57 (26:21:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 56 (25:21:10) Lost Hammers/(Refresh:Access): 57 (1:56) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x151 Lifetime Hammers/(Normal:Prefetch:Writeback): 57 (37:14:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 56 (36:14:6) Lost Hammers/(Refresh:Access): 57 (1:56) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x2b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 57 (40:11:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 56 (39:11:6) Lost Hammers/(Refresh:Access): 57 (1:56) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x141 Lifetime Hammers/(Normal:Prefetch:Writeback): 57 (32:19:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 56 (31:19:6) Lost Hammers/(Refresh:Access): 57 (1:56) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x2af Lifetime Hammers/(Normal:Prefetch:Writeback): 57 (40:11:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 56 (39:11:6) Lost Hammers/(Refresh:Access): 57 (1:56) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x6f Lifetime Hammers/(Normal:Prefetch:Writeback): 57 (41:8:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 56 (40:8:8) Lost Hammers/(Refresh:Access): 57 (1:56) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x5c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 57 (21:36:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 56 (20:36:0) Lost Hammers/(Refresh:Access): 57 (1:56) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x267 Lifetime Hammers/(Normal:Prefetch:Writeback): 57 (31:24:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 56 (30:24:2) Lost Hammers/(Refresh:Access): 57 (1:56) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x169 Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (36:13:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (35:13:7) Lost Hammers/(Refresh:Access): 56 (1:55) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x169 Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (26:25:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (25:25:5) Lost Hammers/(Refresh:Access): 56 (1:55) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x159 Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (23:28:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (22:28:5) Lost Hammers/(Refresh:Access): 56 (1:55) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x167 Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (36:13:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (35:13:7) Lost Hammers/(Refresh:Access): 56 (1:55) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x157 Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (33:19:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (32:19:4) Lost Hammers/(Refresh:Access): 56 (1:55) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x159 Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (33:19:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (32:19:4) Lost Hammers/(Refresh:Access): 56 (1:55) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x157 Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (23:28:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (22:28:5) Lost Hammers/(Refresh:Access): 56 (1:55) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x167 Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (26:25:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (25:25:5) Lost Hammers/(Refresh:Access): 56 (1:55) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x141 Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (33:16:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (32:16:7) Lost Hammers/(Refresh:Access): 56 (1:55) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x40f Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (36:14:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (35:14:6) Lost Hammers/(Refresh:Access): 56 (1:55) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x26f Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (31:18:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (30:18:7) Lost Hammers/(Refresh:Access): 56 (1:55) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x271 Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (31:18:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (30:18:7) Lost Hammers/(Refresh:Access): 56 (1:55) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x411 Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (36:14:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (35:14:6) Lost Hammers/(Refresh:Access): 56 (1:55) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x97 Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (30:23:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (29:23:3) Lost Hammers/(Refresh:Access): 56 (1:55) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x99 Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (30:23:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (29:23:3) Lost Hammers/(Refresh:Access): 56 (1:55) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x157 Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (34:20:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (33:20:2) Lost Hammers/(Refresh:Access): 56 (1:55) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x5c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (16:40:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (15:40:0) Lost Hammers/(Refresh:Access): 56 (1:55) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x5bf Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (16:40:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (15:40:0) Lost Hammers/(Refresh:Access): 56 (1:55) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x159 Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (34:20:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (33:20:2) Lost Hammers/(Refresh:Access): 56 (1:55) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x151 Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (29:20:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (28:20:7) Lost Hammers/(Refresh:Access): 56 (1:55) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x13f Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (33:16:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (32:16:7) Lost Hammers/(Refresh:Access): 56 (1:55) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x411 Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (33:14:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (32:14:9) Lost Hammers/(Refresh:Access): 56 (1:55) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x40f Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (33:14:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (32:14:9) Lost Hammers/(Refresh:Access): 56 (1:55) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x2b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (43:8:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (42:8:5) Lost Hammers/(Refresh:Access): 56 (1:55) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x2af Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (43:8:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (42:8:5) Lost Hammers/(Refresh:Access): 56 (1:55) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x5c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (23:33:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (22:33:0) Lost Hammers/(Refresh:Access): 56 (1:55) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x14f Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (29:20:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (28:20:7) Lost Hammers/(Refresh:Access): 56 (1:55) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x5bf Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (23:33:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (22:33:0) Lost Hammers/(Refresh:Access): 56 (1:55) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x2af Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (36:11:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (35:11:9) Lost Hammers/(Refresh:Access): 56 (1:55) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x2b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (36:11:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (35:11:9) Lost Hammers/(Refresh:Access): 56 (1:55) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x15f Lifetime Hammers/(Normal:Prefetch:Writeback): 55 (31:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 54 (30:22:2) Lost Hammers/(Refresh:Access): 55 (1:54) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x161 Lifetime Hammers/(Normal:Prefetch:Writeback): 55 (31:19:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 54 (30:19:5) Lost Hammers/(Refresh:Access): 55 (1:54) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x15f Lifetime Hammers/(Normal:Prefetch:Writeback): 55 (31:19:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 54 (30:19:5) Lost Hammers/(Refresh:Access): 55 (1:54) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 55 (18:35:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 54 (17:35:2) Lost Hammers/(Refresh:Access): 55 (1:54) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x161 Lifetime Hammers/(Normal:Prefetch:Writeback): 55 (31:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 54 (30:22:2) Lost Hammers/(Refresh:Access): 55 (1:54) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x97 Lifetime Hammers/(Normal:Prefetch:Writeback): 55 (27:23:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 54 (26:23:5) Lost Hammers/(Refresh:Access): 55 (1:54) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x157 Lifetime Hammers/(Normal:Prefetch:Writeback): 55 (19:32:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 54 (18:32:4) Lost Hammers/(Refresh:Access): 55 (1:54) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x6f Lifetime Hammers/(Normal:Prefetch:Writeback): 55 (38:10:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 54 (37:10:7) Lost Hammers/(Refresh:Access): 55 (1:54) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x159 Lifetime Hammers/(Normal:Prefetch:Writeback): 55 (19:32:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 54 (18:32:4) Lost Hammers/(Refresh:Access): 55 (1:54) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x71 Lifetime Hammers/(Normal:Prefetch:Writeback): 55 (38:10:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 54 (37:10:7) Lost Hammers/(Refresh:Access): 55 (1:54) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x409 Lifetime Hammers/(Normal:Prefetch:Writeback): 55 (13:7:35) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 54 (12:7:35) Lost Hammers/(Refresh:Access): 55 (1:54) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x99 Lifetime Hammers/(Normal:Prefetch:Writeback): 55 (27:23:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 54 (26:23:5) Lost Hammers/(Refresh:Access): 55 (1:54) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x309 Lifetime Hammers/(Normal:Prefetch:Writeback): 55 (19:23:13) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 54 (18:23:13) Lost Hammers/(Refresh:Access): 55 (1:54) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x407 Lifetime Hammers/(Normal:Prefetch:Writeback): 55 (13:7:35) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 54 (12:7:35) Lost Hammers/(Refresh:Access): 55 (1:54) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x307 Lifetime Hammers/(Normal:Prefetch:Writeback): 55 (19:23:13) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 54 (18:23:13) Lost Hammers/(Refresh:Access): 55 (1:54) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x151 Lifetime Hammers/(Normal:Prefetch:Writeback): 55 (32:20:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 54 (31:20:3) Lost Hammers/(Refresh:Access): 55 (1:54) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 55 (18:35:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 54 (17:35:2) Lost Hammers/(Refresh:Access): 55 (1:54) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x14f Lifetime Hammers/(Normal:Prefetch:Writeback): 55 (32:20:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 54 (31:20:3) Lost Hammers/(Refresh:Access): 55 (1:54) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (22:30:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (21:30:2) Lost Hammers/(Refresh:Access): 54 (1:53) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x16f Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (20:30:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (19:30:4) Lost Hammers/(Refresh:Access): 54 (1:53) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x411 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (30:15:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (29:15:9) Lost Hammers/(Refresh:Access): 54 (1:53) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (22:30:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (21:30:2) Lost Hammers/(Refresh:Access): 54 (1:53) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x171 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (20:30:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (19:30:4) Lost Hammers/(Refresh:Access): 54 (1:53) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x2af Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (42:7:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (41:7:5) Lost Hammers/(Refresh:Access): 54 (1:53) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x14f Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (27:24:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (26:24:3) Lost Hammers/(Refresh:Access): 54 (1:53) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x2b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (42:7:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (41:7:5) Lost Hammers/(Refresh:Access): 54 (1:53) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x151 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (27:24:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (26:24:3) Lost Hammers/(Refresh:Access): 54 (1:53) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x157 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (29:20:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (28:20:5) Lost Hammers/(Refresh:Access): 54 (1:53) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x159 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (29:20:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (28:20:5) Lost Hammers/(Refresh:Access): 54 (1:53) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x13f Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (34:13:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (33:13:7) Lost Hammers/(Refresh:Access): 54 (1:53) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x141 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (34:13:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (33:13:7) Lost Hammers/(Refresh:Access): 54 (1:53) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x2d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (24:19:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (23:19:11) Lost Hammers/(Refresh:Access): 54 (1:53) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (22:31:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (21:31:1) Lost Hammers/(Refresh:Access): 54 (1:53) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x2d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (27:20:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (26:20:7) Lost Hammers/(Refresh:Access): 54 (1:53) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (18:30:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (17:30:6) Lost Hammers/(Refresh:Access): 54 (1:53) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x2d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (27:20:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (26:20:7) Lost Hammers/(Refresh:Access): 54 (1:53) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (16:38:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (15:38:0) Lost Hammers/(Refresh:Access): 54 (1:53) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x40f Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (30:15:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (29:15:9) Lost Hammers/(Refresh:Access): 54 (1:53) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x2af Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (34:11:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (33:11:9) Lost Hammers/(Refresh:Access): 54 (1:53) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x2b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (34:11:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (33:11:9) Lost Hammers/(Refresh:Access): 54 (1:53) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (18:30:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (17:30:6) Lost Hammers/(Refresh:Access): 54 (1:53) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x15f Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (26:20:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (25:20:8) Lost Hammers/(Refresh:Access): 54 (1:53) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x2d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (24:19:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (23:19:11) Lost Hammers/(Refresh:Access): 54 (1:53) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x161 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (26:20:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (25:20:8) Lost Hammers/(Refresh:Access): 54 (1:53) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x6f Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (36:6:12) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (35:6:12) Lost Hammers/(Refresh:Access): 54 (1:53) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x2b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (39:9:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (38:9:6) Lost Hammers/(Refresh:Access): 54 (1:53) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x2af Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (39:9:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (38:9:6) Lost Hammers/(Refresh:Access): 54 (1:53) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x71 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (36:6:12) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (35:6:12) Lost Hammers/(Refresh:Access): 54 (1:53) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x151 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (30:20:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (29:20:4) Lost Hammers/(Refresh:Access): 54 (1:53) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x2af Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (40:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (39:11:3) Lost Hammers/(Refresh:Access): 54 (1:53) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x2b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (40:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (39:11:3) Lost Hammers/(Refresh:Access): 54 (1:53) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x407 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (13:8:33) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (12:8:33) Lost Hammers/(Refresh:Access): 54 (1:53) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x409 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (13:8:33) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (12:8:33) Lost Hammers/(Refresh:Access): 54 (1:53) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x149 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (24:27:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (23:27:3) Lost Hammers/(Refresh:Access): 54 (1:53) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x14f Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (30:20:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (29:20:4) Lost Hammers/(Refresh:Access): 54 (1:53) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x147 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (24:27:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (23:27:3) Lost Hammers/(Refresh:Access): 54 (1:53) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (22:31:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (21:31:1) Lost Hammers/(Refresh:Access): 54 (1:53) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x269 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (29:24:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (28:24:1) Lost Hammers/(Refresh:Access): 54 (1:53) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x267 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (29:24:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (28:24:1) Lost Hammers/(Refresh:Access): 54 (1:53) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (17:35:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (16:35:2) Lost Hammers/(Refresh:Access): 54 (1:53) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x269 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (23:29:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (22:29:2) Lost Hammers/(Refresh:Access): 54 (1:53) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x267 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (23:29:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (22:29:2) Lost Hammers/(Refresh:Access): 54 (1:53) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (17:35:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (16:35:2) Lost Hammers/(Refresh:Access): 54 (1:53) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (16:38:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (15:38:0) Lost Hammers/(Refresh:Access): 54 (1:53) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x147 Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (30:20:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (29:20:3) Lost Hammers/(Refresh:Access): 53 (1:52) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x2d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (25:20:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (24:20:8) Lost Hammers/(Refresh:Access): 53 (1:52) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x149 Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (30:20:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (29:20:3) Lost Hammers/(Refresh:Access): 53 (1:52) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x159 Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (18:33:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (17:33:2) Lost Hammers/(Refresh:Access): 53 (1:52) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x2d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (25:20:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (24:20:8) Lost Hammers/(Refresh:Access): 53 (1:52) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x157 Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (18:33:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (17:33:2) Lost Hammers/(Refresh:Access): 53 (1:52) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x171 Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (20:31:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (19:31:2) Lost Hammers/(Refresh:Access): 53 (1:52) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x16f Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (20:31:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (19:31:2) Lost Hammers/(Refresh:Access): 53 (1:52) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x71 Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (38:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (37:13:2) Lost Hammers/(Refresh:Access): 53 (1:52) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x6f Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (38:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (37:13:2) Lost Hammers/(Refresh:Access): 53 (1:52) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (18:34:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (17:34:1) Lost Hammers/(Refresh:Access): 53 (1:52) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (18:34:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (17:34:1) Lost Hammers/(Refresh:Access): 53 (1:52) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x149 Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (24:26:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (23:26:3) Lost Hammers/(Refresh:Access): 53 (1:52) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x147 Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (24:26:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (23:26:3) Lost Hammers/(Refresh:Access): 53 (1:52) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x97 Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (28:22:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (27:22:3) Lost Hammers/(Refresh:Access): 53 (1:52) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x99 Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (28:22:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (27:22:3) Lost Hammers/(Refresh:Access): 53 (1:52) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x26f Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (17:30:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (16:30:6) Lost Hammers/(Refresh:Access): 53 (1:52) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x309 Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (15:27:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (14:27:11) Lost Hammers/(Refresh:Access): 53 (1:52) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x307 Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (15:27:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (14:27:11) Lost Hammers/(Refresh:Access): 53 (1:52) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (20:31:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (19:31:2) Lost Hammers/(Refresh:Access): 53 (1:52) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x1b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (17:29:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (16:29:7) Lost Hammers/(Refresh:Access): 53 (1:52) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x159 Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (21:30:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (20:30:2) Lost Hammers/(Refresh:Access): 53 (1:52) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (16:34:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (15:34:3) Lost Hammers/(Refresh:Access): 53 (1:52) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x157 Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (21:30:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (20:30:2) Lost Hammers/(Refresh:Access): 53 (1:52) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (20:31:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (19:31:2) Lost Hammers/(Refresh:Access): 53 (1:52) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x271 Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (17:30:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (16:30:6) Lost Hammers/(Refresh:Access): 53 (1:52) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x1af Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (17:29:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (16:29:7) Lost Hammers/(Refresh:Access): 53 (1:52) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (16:34:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (15:34:3) Lost Hammers/(Refresh:Access): 53 (1:52) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x99 Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (26:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (25:25:1) Lost Hammers/(Refresh:Access): 52 (1:51) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x1df Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (19:19:14) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (18:19:14) Lost Hammers/(Refresh:Access): 52 (1:51) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x271 Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (21:27:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (20:27:4) Lost Hammers/(Refresh:Access): 52 (1:51) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x219 Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (12:32:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (11:32:8) Lost Hammers/(Refresh:Access): 52 (1:51) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x26f Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (21:27:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (20:27:4) Lost Hammers/(Refresh:Access): 52 (1:51) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x217 Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (12:32:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (11:32:8) Lost Hammers/(Refresh:Access): 52 (1:51) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x99 Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (20:28:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (19:28:4) Lost Hammers/(Refresh:Access): 52 (1:51) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x2d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (37:8:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (36:8:7) Lost Hammers/(Refresh:Access): 52 (1:51) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x157 Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (26:21:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (25:21:5) Lost Hammers/(Refresh:Access): 52 (1:51) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x159 Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (26:21:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (25:21:5) Lost Hammers/(Refresh:Access): 52 (1:51) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x97 Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (26:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (25:25:1) Lost Hammers/(Refresh:Access): 52 (1:51) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x411 Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (30:16:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (29:16:6) Lost Hammers/(Refresh:Access): 52 (1:51) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x40f Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (30:16:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (29:16:6) Lost Hammers/(Refresh:Access): 52 (1:51) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x40f Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (34:11:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (33:11:7) Lost Hammers/(Refresh:Access): 52 (1:51) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x13f Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (34:12:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (33:12:6) Lost Hammers/(Refresh:Access): 52 (1:51) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x99 Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (25:24:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (24:24:3) Lost Hammers/(Refresh:Access): 52 (1:51) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x141 Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (34:12:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (33:12:6) Lost Hammers/(Refresh:Access): 52 (1:51) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (22:29:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (21:29:1) Lost Hammers/(Refresh:Access): 52 (1:51) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (22:29:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (21:29:1) Lost Hammers/(Refresh:Access): 52 (1:51) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x97 Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (25:24:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (24:24:3) Lost Hammers/(Refresh:Access): 52 (1:51) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x411 Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (34:11:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (33:11:7) Lost Hammers/(Refresh:Access): 52 (1:51) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x269 Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (21:31:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (20:31:0) Lost Hammers/(Refresh:Access): 52 (1:51) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x2cf Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (37:8:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (36:8:7) Lost Hammers/(Refresh:Access): 52 (1:51) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x159 Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (22:23:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (21:23:7) Lost Hammers/(Refresh:Access): 52 (1:51) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x1e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (19:19:14) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (18:19:14) Lost Hammers/(Refresh:Access): 52 (1:51) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x269 Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (19:32:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (18:32:1) Lost Hammers/(Refresh:Access): 52 (1:51) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x97 Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (20:28:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (19:28:4) Lost Hammers/(Refresh:Access): 52 (1:51) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x157 Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (22:23:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (21:23:7) Lost Hammers/(Refresh:Access): 52 (1:51) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x267 Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (19:32:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (18:32:1) Lost Hammers/(Refresh:Access): 52 (1:51) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x267 Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (21:31:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (20:31:0) Lost Hammers/(Refresh:Access): 52 (1:51) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x161 Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (24:20:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (23:20:7) Lost Hammers/(Refresh:Access): 51 (1:50) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x13f Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (27:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (26:22:2) Lost Hammers/(Refresh:Access): 51 (1:50) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x141 Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (27:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (26:22:2) Lost Hammers/(Refresh:Access): 51 (1:50) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x71 Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (33:11:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (32:11:7) Lost Hammers/(Refresh:Access): 51 (1:50) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x15f Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (18:30:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (17:30:3) Lost Hammers/(Refresh:Access): 51 (1:50) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x15f Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (24:20:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (23:20:7) Lost Hammers/(Refresh:Access): 51 (1:50) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x6f Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (33:11:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (32:11:7) Lost Hammers/(Refresh:Access): 51 (1:50) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x15f Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (26:23:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (25:23:2) Lost Hammers/(Refresh:Access): 51 (1:50) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (17:33:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (16:33:1) Lost Hammers/(Refresh:Access): 51 (1:50) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x159 Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (21:26:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (20:26:4) Lost Hammers/(Refresh:Access): 51 (1:50) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (17:33:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (16:33:1) Lost Hammers/(Refresh:Access): 51 (1:50) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x2d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (29:15:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (28:15:7) Lost Hammers/(Refresh:Access): 51 (1:50) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (15:35:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (14:35:1) Lost Hammers/(Refresh:Access): 51 (1:50) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x157 Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (21:26:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (20:26:4) Lost Hammers/(Refresh:Access): 51 (1:50) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (15:35:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (14:35:1) Lost Hammers/(Refresh:Access): 51 (1:50) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x2d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (29:15:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (28:15:7) Lost Hammers/(Refresh:Access): 51 (1:50) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x40f Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (36:7:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (35:7:8) Lost Hammers/(Refresh:Access): 51 (1:50) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x16f Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (17:32:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (16:32:2) Lost Hammers/(Refresh:Access): 51 (1:50) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x2d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (27:20:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (26:20:4) Lost Hammers/(Refresh:Access): 51 (1:50) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x2d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (27:20:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (26:20:4) Lost Hammers/(Refresh:Access): 51 (1:50) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x40f Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (28:14:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (27:14:9) Lost Hammers/(Refresh:Access): 51 (1:50) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x411 Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (28:14:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (27:14:9) Lost Hammers/(Refresh:Access): 51 (1:50) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x171 Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (17:32:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (16:32:2) Lost Hammers/(Refresh:Access): 51 (1:50) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x161 Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (18:30:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (17:30:3) Lost Hammers/(Refresh:Access): 51 (1:50) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x161 Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (26:23:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (25:23:2) Lost Hammers/(Refresh:Access): 51 (1:50) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x411 Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (36:7:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (35:7:8) Lost Hammers/(Refresh:Access): 51 (1:50) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x409 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (10:7:33) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (9:7:33) Lost Hammers/(Refresh:Access): 50 (1:49) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x269 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (20:27:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (19:27:3) Lost Hammers/(Refresh:Access): 50 (1:49) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x2d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (26:16:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (25:16:8) Lost Hammers/(Refresh:Access): 50 (1:49) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x309 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (14:24:12) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (13:24:12) Lost Hammers/(Refresh:Access): 50 (1:49) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x259 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (29:11:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (28:11:10) Lost Hammers/(Refresh:Access): 50 (1:49) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x407 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (10:7:33) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (9:7:33) Lost Hammers/(Refresh:Access): 50 (1:49) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x141 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (30:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (29:17:3) Lost Hammers/(Refresh:Access): 50 (1:49) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x71 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (38:7:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (37:7:5) Lost Hammers/(Refresh:Access): 50 (1:49) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x257 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (29:11:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (28:11:10) Lost Hammers/(Refresh:Access): 50 (1:49) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x6f Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (38:7:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (37:7:5) Lost Hammers/(Refresh:Access): 50 (1:49) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x71 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (36:7:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (35:7:7) Lost Hammers/(Refresh:Access): 50 (1:49) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x267 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (20:27:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (19:27:3) Lost Hammers/(Refresh:Access): 50 (1:49) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x15f Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (21:24:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (20:24:5) Lost Hammers/(Refresh:Access): 50 (1:49) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x2d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (26:16:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (25:16:8) Lost Hammers/(Refresh:Access): 50 (1:49) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x161 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (21:24:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (20:24:5) Lost Hammers/(Refresh:Access): 50 (1:49) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x6f Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (36:7:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (35:7:7) Lost Hammers/(Refresh:Access): 50 (1:49) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x271 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (21:24:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (20:24:5) Lost Hammers/(Refresh:Access): 50 (1:49) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x161 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (19:29:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (18:29:2) Lost Hammers/(Refresh:Access): 50 (1:49) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x15f Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (19:29:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (18:29:2) Lost Hammers/(Refresh:Access): 50 (1:49) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x307 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (14:24:12) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (13:24:12) Lost Hammers/(Refresh:Access): 50 (1:49) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x13f Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (30:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (29:17:3) Lost Hammers/(Refresh:Access): 50 (1:49) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x407 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (14:5:31) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (13:5:31) Lost Hammers/(Refresh:Access): 50 (1:49) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x40f Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (32:9:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (31:9:9) Lost Hammers/(Refresh:Access): 50 (1:49) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x411 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (30:13:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (29:13:7) Lost Hammers/(Refresh:Access): 50 (1:49) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x2b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (35:9:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (34:9:6) Lost Hammers/(Refresh:Access): 50 (1:49) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x409 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (14:5:31) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (13:5:31) Lost Hammers/(Refresh:Access): 50 (1:49) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x40f Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (30:13:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (29:13:7) Lost Hammers/(Refresh:Access): 50 (1:49) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x411 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (32:9:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (31:9:9) Lost Hammers/(Refresh:Access): 50 (1:49) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x149 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (25:24:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (24:24:1) Lost Hammers/(Refresh:Access): 50 (1:49) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x2af Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (35:9:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (34:9:6) Lost Hammers/(Refresh:Access): 50 (1:49) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x147 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (25:24:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (24:24:1) Lost Hammers/(Refresh:Access): 50 (1:49) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x141 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (25:20:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (24:20:5) Lost Hammers/(Refresh:Access): 50 (1:49) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xd1 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (22:17:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (21:17:11) Lost Hammers/(Refresh:Access): 50 (1:49) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xcf Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (22:17:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (21:17:11) Lost Hammers/(Refresh:Access): 50 (1:49) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x13f Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (25:20:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (24:20:5) Lost Hammers/(Refresh:Access): 50 (1:49) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x407 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (15:6:29) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (14:6:29) Lost Hammers/(Refresh:Access): 50 (1:49) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x409 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (15:6:29) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (14:6:29) Lost Hammers/(Refresh:Access): 50 (1:49) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x40f Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (30:13:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (29:13:7) Lost Hammers/(Refresh:Access): 50 (1:49) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x2d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (25:18:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (24:18:7) Lost Hammers/(Refresh:Access): 50 (1:49) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x411 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (30:13:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (29:13:7) Lost Hammers/(Refresh:Access): 50 (1:49) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x26f Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (21:24:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (20:24:5) Lost Hammers/(Refresh:Access): 50 (1:49) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x97 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (19:29:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (18:29:2) Lost Hammers/(Refresh:Access): 50 (1:49) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x2d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (25:18:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (24:18:7) Lost Hammers/(Refresh:Access): 50 (1:49) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x2d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (22:20:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (21:20:8) Lost Hammers/(Refresh:Access): 50 (1:49) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x99 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (19:29:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (18:29:2) Lost Hammers/(Refresh:Access): 50 (1:49) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x2d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (22:20:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (21:20:8) Lost Hammers/(Refresh:Access): 50 (1:49) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x219 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (12:34:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (11:34:3) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x269 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (18:30:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (17:30:1) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x407 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (10:6:33) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (9:6:33) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x299 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (15:33:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (14:33:1) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x1b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (9:31:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (8:31:9) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x22f Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (20:22:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (19:22:7) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x169 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (20:28:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (19:28:1) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x167 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (20:28:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (19:28:1) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x297 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (15:31:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (14:31:3) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x147 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (23:23:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (22:23:3) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x40f Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (29:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (28:15:5) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x409 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (10:6:33) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (9:6:33) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x299 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (15:31:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (14:31:3) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x149 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (23:21:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (22:21:5) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x267 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (18:30:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (17:30:1) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x231 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (20:22:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (19:22:7) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x147 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (23:21:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (22:21:5) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x141 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (24:20:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (23:20:5) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x13f Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (24:20:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (23:20:5) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (17:30:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (16:30:2) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x1b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (9:31:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (8:31:9) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x297 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (15:33:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (14:33:1) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x2d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (24:21:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (23:21:4) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x411 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (29:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (28:15:5) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x2d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (24:21:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (23:21:4) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x231 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (16:28:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (15:28:5) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x15f Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (28:17:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (27:17:4) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xd7 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (25:16:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (24:16:8) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x161 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (30:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (29:14:5) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x15f Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (30:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (29:14:5) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x267 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (23:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (22:25:1) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xd9 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (25:16:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (24:16:8) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x27f Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (21:25:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (20:25:3) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x167 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (22:24:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (21:24:3) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x147 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (18:30:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (17:30:1) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x22f Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (16:28:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (15:28:5) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x14f Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (33:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (32:12:4) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x151 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (33:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (32:12:4) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x281 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (21:25:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (20:25:3) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x2cf Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (29:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (28:15:5) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x6f Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (36:8:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (35:8:5) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x71 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (36:8:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (35:8:5) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x149 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (18:30:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (17:30:1) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x161 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (28:17:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (27:17:4) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (17:30:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (16:30:2) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x171 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (22:26:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (21:26:1) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x149 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (23:23:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (22:23:3) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x16f Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (22:26:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (21:26:1) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x217 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (12:34:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (11:34:3) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x169 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (22:24:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (21:24:3) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x269 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (23:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (22:25:1) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x2d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (29:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (28:15:5) Lost Hammers/(Refresh:Access): 49 (1:48) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x409 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (11:7:30) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (10:7:30) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x307 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (13:26:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (12:26:9) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x149 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (22:23:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (21:23:3) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xff Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (18:21:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (17:21:9) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x147 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (22:23:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (21:23:3) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x40f Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (30:10:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (29:10:8) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x309 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (13:26:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (12:26:9) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x309 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (13:27:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (12:27:8) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x407 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (10:6:32) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (9:6:32) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x411 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (30:10:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (29:10:8) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x2cf Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (31:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (30:14:3) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x40f Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (30:9:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (29:9:9) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x407 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (11:7:30) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (10:7:30) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x101 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (18:21:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (17:21:9) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x307 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (13:27:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (12:27:8) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x2d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (31:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (30:14:3) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x409 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (10:6:32) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (9:6:32) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x151 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (30:13:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (29:13:5) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x411 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (30:9:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (29:9:9) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x14f Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (30:13:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (29:13:5) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x409 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (9:8:31) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (8:8:31) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x97 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (20:26:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (19:26:2) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x167 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (22:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (21:25:1) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x14f Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (25:19:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (24:19:4) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (14:32:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (13:32:2) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x231 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (19:24:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (18:24:5) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x22f Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (19:24:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (18:24:5) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x1b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (19:22:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (18:22:7) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x169 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (28:16:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (27:16:4) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (14:32:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (13:32:2) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x97 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (24:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (23:22:2) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x309 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (14:23:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (13:23:11) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x167 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (28:16:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (27:16:4) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x149 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (23:22:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (22:22:3) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x22f Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (16:25:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (15:25:7) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x231 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (16:25:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (15:25:7) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x141 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (28:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (27:17:3) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x147 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (23:22:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (22:22:3) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x407 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (9:8:31) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (8:8:31) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x13f Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (28:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (27:17:3) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x407 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (14:5:29) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (13:5:29) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x297 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (14:32:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (13:32:2) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x299 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (14:32:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (13:32:2) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x169 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (22:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (21:25:1) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x151 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (25:19:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (24:19:4) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x409 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (14:5:29) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (13:5:29) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x1b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (19:22:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (18:22:7) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x99 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (20:26:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (19:26:2) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x99 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (24:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (23:22:2) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x307 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (14:23:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (13:23:11) Lost Hammers/(Refresh:Access): 48 (1:47) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x2d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (24:15:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (23:15:8) Lost Hammers/(Refresh:Access): 47 (1:46) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x1e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (17:22:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (16:22:8) Lost Hammers/(Refresh:Access): 47 (1:46) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x167 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (26:18:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (25:18:3) Lost Hammers/(Refresh:Access): 47 (1:46) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x22f Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (14:28:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (13:28:5) Lost Hammers/(Refresh:Access): 47 (1:46) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x16f Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (18:26:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (17:26:3) Lost Hammers/(Refresh:Access): 47 (1:46) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x171 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (18:26:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (17:26:3) Lost Hammers/(Refresh:Access): 47 (1:46) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x231 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (13:29:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (12:29:5) Lost Hammers/(Refresh:Access): 47 (1:46) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xd9 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (24:18:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (23:18:5) Lost Hammers/(Refresh:Access): 47 (1:46) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x22f Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (13:29:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (12:29:5) Lost Hammers/(Refresh:Access): 47 (1:46) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x77 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (29:4:14) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (28:4:14) Lost Hammers/(Refresh:Access): 47 (1:46) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x157 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (25:20:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (24:20:2) Lost Hammers/(Refresh:Access): 47 (1:46) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x2d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (24:15:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (23:15:8) Lost Hammers/(Refresh:Access): 47 (1:46) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x2b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (25:15:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (24:15:7) Lost Hammers/(Refresh:Access): 47 (1:46) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x1df Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (17:22:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (16:22:8) Lost Hammers/(Refresh:Access): 47 (1:46) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xd7 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (24:18:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (23:18:5) Lost Hammers/(Refresh:Access): 47 (1:46) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x2b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (25:15:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (24:15:7) Lost Hammers/(Refresh:Access): 47 (1:46) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x159 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (25:20:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (24:20:2) Lost Hammers/(Refresh:Access): 47 (1:46) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x1df Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (14:24:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (13:24:9) Lost Hammers/(Refresh:Access): 47 (1:46) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x79 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (29:4:14) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (28:4:14) Lost Hammers/(Refresh:Access): 47 (1:46) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x1af Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (17:26:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (16:26:4) Lost Hammers/(Refresh:Access): 47 (1:46) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x407 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (11:4:32) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (10:4:32) Lost Hammers/(Refresh:Access): 47 (1:46) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x15f Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (27:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (26:18:2) Lost Hammers/(Refresh:Access): 47 (1:46) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x1a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (17:24:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (16:24:6) Lost Hammers/(Refresh:Access): 47 (1:46) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x19f Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (17:24:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (16:24:6) Lost Hammers/(Refresh:Access): 47 (1:46) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x8f Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (32:8:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (31:8:7) Lost Hammers/(Refresh:Access): 47 (1:46) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x231 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (14:28:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (13:28:5) Lost Hammers/(Refresh:Access): 47 (1:46) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x71 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (30:11:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (29:11:6) Lost Hammers/(Refresh:Access): 47 (1:46) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x1af Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (16:24:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (15:24:7) Lost Hammers/(Refresh:Access): 47 (1:46) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x161 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (27:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (26:18:2) Lost Hammers/(Refresh:Access): 47 (1:46) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x169 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (26:18:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (25:18:3) Lost Hammers/(Refresh:Access): 47 (1:46) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x6f Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (30:11:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (29:11:6) Lost Hammers/(Refresh:Access): 47 (1:46) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x1b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (17:26:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (16:26:4) Lost Hammers/(Refresh:Access): 47 (1:46) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x409 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (11:4:32) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (10:4:32) Lost Hammers/(Refresh:Access): 47 (1:46) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x1ef Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (14:31:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (13:31:2) Lost Hammers/(Refresh:Access): 47 (1:46) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x1f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (14:31:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (13:31:2) Lost Hammers/(Refresh:Access): 47 (1:46) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x91 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (32:8:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (31:8:7) Lost Hammers/(Refresh:Access): 47 (1:46) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x79 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (27:3:17) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (26:3:17) Lost Hammers/(Refresh:Access): 47 (1:46) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x77 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (27:3:17) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (26:3:17) Lost Hammers/(Refresh:Access): 47 (1:46) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x40f Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (31:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (30:11:5) Lost Hammers/(Refresh:Access): 47 (1:46) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x1e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (14:24:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (13:24:9) Lost Hammers/(Refresh:Access): 47 (1:46) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x411 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (31:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (30:11:5) Lost Hammers/(Refresh:Access): 47 (1:46) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x1b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (16:24:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (15:24:7) Lost Hammers/(Refresh:Access): 47 (1:46) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x1b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (13:27:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (12:27:6) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x5b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (21:25:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (20:25:0) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x297 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (9:33:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (8:33:4) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x5b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (21:25:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (20:25:0) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x7f Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (25:9:12) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (24:9:12) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x99 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (26:16:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (25:16:4) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x309 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (12:26:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (11:26:8) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x219 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (11:30:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (10:30:5) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x169 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (25:16:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (24:16:5) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x1b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (15:25:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (14:25:6) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x97 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (26:16:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (25:16:4) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x1b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (16:22:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (15:22:8) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x167 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (25:16:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (24:16:5) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x81 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (25:9:12) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (24:9:12) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x307 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (12:26:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (11:26:8) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x1b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (16:22:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (15:22:8) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x1df Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (13:25:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (12:25:8) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x16f Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (19:25:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (18:25:2) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x1af Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (20:19:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (19:19:7) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x97 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (20:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (19:25:1) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x407 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (11:6:29) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (10:6:29) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x99 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (20:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (19:25:1) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x147 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (22:23:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (21:23:1) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x159 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (16:26:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (15:26:4) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x157 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (16:26:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (15:26:4) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x16f Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (21:23:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (20:23:2) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x171 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (21:23:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (20:23:2) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x1af Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (13:27:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (12:27:6) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x171 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (19:25:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (18:25:2) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x259 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (22:14:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (21:14:10) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x149 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (22:23:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (21:23:1) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x257 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (22:14:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (21:14:10) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x299 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (12:33:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (11:33:1) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x309 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (10:26:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (9:26:10) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x297 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (12:33:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (11:33:1) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x307 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (10:26:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (9:26:10) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xd1 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (27:12:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (26:12:7) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x6f Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (32:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (31:10:4) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x217 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (11:30:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (10:30:5) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x307 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (17:22:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (16:22:7) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x1e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (13:25:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (12:25:8) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xcf Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (27:12:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (26:12:7) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x209 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (12:29:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (11:29:5) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x207 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (12:29:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (11:29:5) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x309 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (17:22:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (16:22:7) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x71 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (32:9:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (31:9:5) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x6f Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (32:9:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (31:9:5) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x281 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (23:21:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (22:21:2) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x299 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (9:33:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (8:33:4) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x27f Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (23:21:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (22:21:2) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x409 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (11:6:29) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (10:6:29) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x1af Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (15:25:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (14:25:6) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x71 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (32:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (31:10:4) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x1b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (20:19:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (19:19:7) Lost Hammers/(Refresh:Access): 46 (1:45) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x43f Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (26:12:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (25:12:7) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x219 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (17:23:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (16:23:5) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x257 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (27:11:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (26:11:7) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x167 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (27:17:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (26:17:1) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x217 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (17:23:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (16:23:5) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x259 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (27:11:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (26:11:7) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x16f Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (21:23:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (20:23:1) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x141 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (27:13:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (26:13:5) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x13f Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (27:13:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (26:13:5) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x91 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (30:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (29:10:5) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x8f Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (30:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (29:10:5) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x301 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (23:16:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (22:16:6) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x2ff Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (23:16:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (22:16:6) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x407 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (10:6:29) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (9:6:29) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x149 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (26:18:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (25:18:1) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x409 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (10:6:29) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (9:6:29) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x197 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (15:20:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (14:20:10) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x199 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (15:20:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (14:20:10) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x307 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (12:23:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (11:23:10) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x171 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (21:23:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (20:23:1) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x169 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (27:17:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (26:17:1) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x307 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (13:24:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (12:24:8) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x309 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (12:23:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (11:23:10) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x1e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (18:17:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (17:17:10) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x1df Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (18:17:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (17:17:10) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x219 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (12:27:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (11:27:6) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x147 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (26:18:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (25:18:1) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x217 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (12:27:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (11:27:6) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x231 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (14:26:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (13:26:5) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x22f Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (14:26:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (13:26:5) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x441 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (26:12:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (25:12:7) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x309 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (13:24:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (12:24:8) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x169 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (20:24:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (19:24:1) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x167 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (20:24:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (19:24:1) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x167 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (22:19:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (21:19:4) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x77 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (25:5:15) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (24:5:15) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x197 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (19:20:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (18:20:6) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x1ef Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (14:29:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (13:29:2) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x1f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (14:29:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (13:29:2) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x219 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (15:27:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (14:27:3) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x199 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (19:20:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (18:20:6) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x257 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (22:15:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (21:15:8) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xd9 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (27:14:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (26:14:4) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x309 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (13:23:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (12:23:9) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x157 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (16:27:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (15:27:2) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x259 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (22:15:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (21:15:8) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x169 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (22:19:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (21:19:4) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x159 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (16:27:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (15:27:2) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x409 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (12:6:27) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (11:6:27) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x2d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (25:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (24:15:5) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x147 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (14:29:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (13:29:2) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x307 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (13:24:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (12:24:8) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x309 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (13:24:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (12:24:8) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x2cf Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (25:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (24:15:5) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x141 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (22:17:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (21:17:6) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xd7 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (27:14:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (26:14:4) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x529 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (4:41:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (3:41:0) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x1e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (15:18:12) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (14:18:12) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x1df Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (15:18:12) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (14:18:12) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x527 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (4:41:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (3:41:0) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x13f Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (22:17:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (21:17:6) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x307 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (15:22:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (14:22:8) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x8f Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (28:13:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (27:13:4) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x309 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (15:22:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (14:22:8) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x307 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (13:23:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (12:23:9) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x1b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (15:23:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (14:23:7) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x217 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (15:27:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (14:27:3) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x299 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (20:23:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (19:23:2) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x1b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (15:23:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (14:23:7) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x407 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (12:6:27) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (11:6:27) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x149 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (14:29:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (13:29:2) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x79 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (25:5:15) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (24:5:15) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x297 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (20:23:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (19:23:2) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x91 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (28:13:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (27:13:4) Lost Hammers/(Refresh:Access): 45 (1:44) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x5b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (17:27:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (16:27:0) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x2cf Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (26:16:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (25:16:2) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x40f Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (24:13:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (23:13:7) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x2d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (26:16:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (25:16:2) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x2d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (21:19:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (20:19:4) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x81 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (22:11:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (21:11:11) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x1ef Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (15:26:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (14:26:3) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x79 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (24:7:13) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (23:7:13) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x1a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (17:22:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (16:22:5) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x1f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (15:26:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (14:26:3) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x409 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (10:6:28) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (9:6:28) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x15f Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (21:19:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (20:19:4) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x7f Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (22:11:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (21:11:11) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x1ef Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (16:27:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (15:27:1) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x5b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (17:27:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (16:27:0) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x281 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (24:19:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (23:19:1) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x19f Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (17:22:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (16:22:5) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x27f Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (24:19:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (23:19:1) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x77 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (24:7:13) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (23:7:13) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x259 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (23:13:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (22:13:8) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x1e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (17:19:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (16:19:8) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x2d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (21:19:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (20:19:4) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x161 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (21:19:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (20:19:4) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x29f Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (11:30:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (10:30:3) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x257 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (23:13:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (22:13:8) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x1f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (16:27:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (15:27:1) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x1df Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (17:19:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (16:19:8) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x231 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (18:21:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (17:21:5) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x14f Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (23:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (22:21:0) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x441 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (23:12:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (22:12:9) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x43f Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (23:12:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (22:12:9) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x79 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (29:4:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (28:4:11) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x151 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (19:25:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (18:25:0) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x22f Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (18:21:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (17:21:5) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x14f Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (19:25:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (18:25:0) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x77 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (29:4:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (28:4:11) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x7f Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (23:10:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (22:10:11) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x2b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (27:12:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (26:12:5) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x27f Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (16:25:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (15:25:3) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xff Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (18:16:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (17:16:10) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x281 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (16:25:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (15:25:3) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x101 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (18:16:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (17:16:10) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x251 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (20:18:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (19:18:6) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x24f Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (20:18:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (19:18:6) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x307 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (15:22:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (14:22:7) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x309 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (15:22:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (14:22:7) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x209 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (14:25:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (13:25:5) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x81 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (23:10:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (22:10:11) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x5b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (22:22:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (21:22:0) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x24f Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (18:18:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (17:18:8) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x5b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (22:22:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (21:22:0) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x529 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (4:40:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (3:40:0) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x527 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (4:40:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (3:40:0) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x13f Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (25:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (24:14:5) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x407 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (10:6:28) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (9:6:28) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x411 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (24:13:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (23:13:7) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x207 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (14:25:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (13:25:5) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x251 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (18:18:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (17:18:8) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x141 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (25:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (24:14:5) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x409 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (10:6:28) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (9:6:28) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x151 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (23:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (22:21:0) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x40f Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (28:10:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (27:10:6) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xcf Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (21:15:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (20:15:8) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x411 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (28:10:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (27:10:6) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xd1 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (21:15:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (20:15:8) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x2b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (27:12:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (26:12:5) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x167 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (17:22:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (16:22:5) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x6f Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (28:8:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (27:8:8) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x79 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (22:5:17) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (21:5:17) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x1ef Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (17:24:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (16:24:3) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x1b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (16:24:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (15:24:4) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x77 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (22:5:17) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (21:5:17) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x1af Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (16:24:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (15:24:4) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x2d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (19:16:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (18:16:9) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x2d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (19:16:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (18:16:9) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x20f Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (15:20:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (14:20:9) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x169 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (17:22:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (16:22:5) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x91 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (25:13:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (24:13:6) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x71 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (28:8:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (27:8:8) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x101 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (16:25:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (15:25:3) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xff Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (16:25:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (15:25:3) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x211 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (15:20:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (14:20:9) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x107 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (20:19:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (19:19:5) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (20:18:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (19:18:6) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (20:18:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (19:18:6) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x8f Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (25:13:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (24:13:6) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x141 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (27:13:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (26:13:4) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x109 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (20:19:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (19:19:5) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x2a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (11:30:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (10:30:3) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x407 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (10:6:28) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (9:6:28) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x13f Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (27:13:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (26:13:4) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x1f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (17:24:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (16:24:3) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x251 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (18:17:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (17:17:9) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x24f Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (18:17:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (17:17:9) Lost Hammers/(Refresh:Access): 44 (1:43) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x171 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (16:27:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (15:27:0) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x1e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (18:21:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (17:21:4) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x2b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (28:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (27:11:4) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x217 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (9:31:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (8:31:3) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xd1 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (21:15:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (20:15:7) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x1b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (17:22:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (16:22:4) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x1df Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (16:18:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (15:18:9) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x2a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (13:30:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (12:30:0) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x171 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (15:27:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (14:27:1) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x2b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (25:14:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (24:14:4) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x2b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (25:14:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (24:14:4) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x29f Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (13:30:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (12:30:0) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x171 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (14:29:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (13:29:0) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xd9 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (21:16:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (20:16:6) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x217 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (13:28:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (12:28:2) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x219 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (9:31:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (8:31:3) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x2b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (23:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (22:18:2) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x2b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (23:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (22:18:2) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x1af Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (17:22:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (16:22:4) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x16f Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (14:29:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (13:29:0) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x16f Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (16:27:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (15:27:0) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x1f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (20:21:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (19:21:2) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xd9 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (22:17:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (21:17:4) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x1e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (16:18:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (15:18:9) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x1ef Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (20:21:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (19:21:2) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xd7 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (22:17:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (21:17:4) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x257 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (25:13:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (24:13:5) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xcf Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (21:15:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (20:15:7) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x14f Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (23:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (22:18:2) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x219 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (13:28:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (12:28:2) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x109 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (19:17:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (18:17:7) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x107 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (19:17:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (18:17:7) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xdf Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (29:9:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (28:9:5) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xd7 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (28:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (27:13:2) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x527 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (4:38:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (3:38:1) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x529 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (4:38:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (3:38:1) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x2b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (27:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (26:13:3) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xe1 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (29:9:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (28:9:5) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xd9 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (28:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (27:13:2) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x2b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (27:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (26:13:3) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x7f Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (21:12:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (20:12:10) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x259 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (25:13:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (24:13:5) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x81 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (21:12:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (20:12:10) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x71 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (33:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (32:6:4) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x6f Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (33:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (32:6:4) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x151 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (23:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (22:18:2) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x217 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (11:27:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (10:27:5) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x1e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (18:21:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (17:21:4) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xd7 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (21:16:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (20:16:6) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x2b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (28:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (27:11:4) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x241 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (17:24:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (16:24:2) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x16f Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (15:27:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (14:27:1) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x23f Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (17:24:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (16:24:2) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x219 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (11:27:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (10:27:5) Lost Hammers/(Refresh:Access): 43 (1:42) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x199 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (18:17:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (17:17:7) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x257 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (19:17:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (18:17:6) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x227 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (12:25:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (11:25:5) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x2cf Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (20:18:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (19:18:4) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x1ef Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (12:27:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (11:27:3) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x77 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (25:5:12) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (24:5:12) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x161 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (21:19:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (20:19:2) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x81 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (18:13:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (17:13:11) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x309 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (16:22:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (15:22:4) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x2d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (16:22:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (15:22:4) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x2d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (16:22:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (15:22:4) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x5b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (22:20:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (21:20:0) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x5b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (22:20:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (21:20:0) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x79 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (25:5:12) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (24:5:12) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x251 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (15:22:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (14:22:5) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x1b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (12:24:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (11:24:6) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x24f Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (15:22:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (14:22:5) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x141 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (28:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (27:13:1) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x13f Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (28:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (27:13:1) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x1af Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (12:24:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (11:24:6) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x1e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (22:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (21:18:2) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x1f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (12:27:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (11:27:3) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x7f Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (18:13:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (17:13:11) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x197 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (18:17:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (17:17:7) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x1af Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (14:23:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (13:23:5) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x1b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (14:23:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (13:23:5) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x2d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (20:18:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (19:18:4) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x8f Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (25:12:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (24:12:5) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x1ef Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (15:24:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (14:24:3) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x219 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (12:26:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (11:26:4) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x1af Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (15:23:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (14:23:4) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x229 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (12:25:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (11:25:5) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x197 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (16:20:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (15:20:6) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x259 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (21:15:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (20:15:6) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x257 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (21:15:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (20:15:6) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x299 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (14:26:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (13:26:2) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x91 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (25:12:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (24:12:5) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x297 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (14:26:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (13:26:2) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x237 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (13:22:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (12:22:7) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x121 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (26:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (25:11:5) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x15f Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (21:19:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (20:19:2) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x11f Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (26:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (25:11:5) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x17f Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (18:17:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (17:17:7) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xcf Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (19:16:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (18:16:7) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xd1 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (19:16:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (18:16:7) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x2bf Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (24:16:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (23:16:2) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x2c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (24:16:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (23:16:2) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x181 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (18:17:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (17:17:7) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x237 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (15:20:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (14:20:7) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x239 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (15:20:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (14:20:7) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x1af Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (18:20:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (17:20:4) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x1b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (18:20:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (17:20:4) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x259 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (19:17:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (18:17:6) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x217 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (12:26:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (11:26:4) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x307 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (16:22:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (15:22:4) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xd1 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (23:15:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (22:15:4) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x1af Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (14:20:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (13:20:8) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x239 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (13:22:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (12:22:7) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x2d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (22:14:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (21:14:6) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x2d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (22:14:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (21:14:6) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xcf Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (23:15:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (22:15:4) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x147 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (17:21:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (16:21:4) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x149 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (17:21:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (16:21:4) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x1b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (14:20:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (13:20:8) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x7f Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (18:11:13) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (17:11:13) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x31f Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (28:7:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (27:7:7) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x321 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (28:7:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (27:7:7) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x91 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (27:8:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (26:8:7) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x1e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (22:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (21:18:2) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x199 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (16:20:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (15:20:6) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x257 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (19:15:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (18:15:8) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x199 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (18:18:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (17:18:6) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x1b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (15:23:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (14:23:4) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x259 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (19:15:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (18:15:8) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x1f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (15:24:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (14:24:3) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x197 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (18:18:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (17:18:6) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x81 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (18:11:13) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (17:11:13) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x8f Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (27:8:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (26:8:7) Lost Hammers/(Refresh:Access): 42 (1:41) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x1e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (15:18:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (14:18:8) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x1df Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (15:18:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (14:18:8) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x71 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (31:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (30:5:5) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x24f Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (18:17:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (17:17:6) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x6f Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (30:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (29:7:4) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x21f Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (13:27:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (12:27:1) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x71 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (34:3:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (33:3:4) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x6f Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (34:3:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (33:3:4) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xd1 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (20:15:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (19:15:6) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xcf Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (20:15:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (19:15:6) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x1af Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (13:23:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (12:23:5) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x221 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (13:27:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (12:27:1) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x1b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (13:23:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (12:23:5) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x227 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (13:23:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (12:23:5) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x229 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (13:23:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (12:23:5) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x5b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (23:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (22:18:0) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x5b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (23:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (22:18:0) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x217 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (12:26:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (11:26:3) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x219 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (12:26:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (11:26:3) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x71 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (30:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (29:7:4) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x251 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (18:17:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (17:17:6) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x251 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (23:13:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (22:13:5) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x24f Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (23:13:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (22:13:5) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x22f Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (17:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (16:22:2) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x231 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (17:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (16:22:2) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x237 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (14:23:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (13:23:4) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x239 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (14:23:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (13:23:4) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x169 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (17:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (16:22:2) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x167 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (17:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (16:22:2) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x141 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (27:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (26:13:1) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x13f Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (27:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (26:13:1) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x31f Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (28:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (27:10:3) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x321 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (28:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (27:10:3) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x121 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (19:16:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (18:16:6) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x11f Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (19:16:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (18:16:6) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x16f Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (16:23:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (15:23:2) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x77 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (24:6:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (23:6:11) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x13f Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (25:15:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (24:15:1) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x141 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (25:15:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (24:15:1) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x2d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (25:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (24:13:3) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x2cf Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (25:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (24:13:3) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x23f Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (18:19:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (17:19:4) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x77 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (25:6:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (24:6:10) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x241 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (18:19:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (17:19:4) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x79 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (25:6:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (24:6:10) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x299 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (9:31:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (8:31:1) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x297 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (9:31:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (8:31:1) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x281 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (20:19:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (19:19:2) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x27f Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (20:19:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (19:19:2) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x91 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (25:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (24:14:2) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x8f Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (25:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (24:14:2) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x79 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (24:6:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (23:6:11) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x1e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (24:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (23:15:2) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x171 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (16:23:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (15:23:2) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x1e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (24:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (23:15:2) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xd7 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (22:16:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (21:16:3) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xd9 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (22:16:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (21:16:3) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x219 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (5:33:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (4:33:3) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x217 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (5:33:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (4:33:3) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x81 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (20:10:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (19:10:11) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x2cf Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (27:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (26:10:4) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x2d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (27:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (26:10:4) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x5b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (20:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (19:21:0) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x5b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (20:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (19:21:0) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x229 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (14:22:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (13:22:5) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x227 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (14:22:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (13:22:5) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x7f Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (20:10:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (19:10:11) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x2b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (25:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (24:11:5) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x1df Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (14:18:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (13:18:9) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x27f Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (16:24:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (15:24:1) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x207 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (13:23:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (12:23:5) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x281 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (16:24:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (15:24:1) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x8f Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (25:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (24:12:4) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x2c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (20:14:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (19:14:7) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x27f Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (18:22:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (17:22:1) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x77 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (25:3:13) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (24:3:13) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3df Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (15:20:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (14:20:6) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x2b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (25:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (24:11:5) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x281 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (18:22:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (17:22:1) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x527 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (5:36:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (4:36:0) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xd7 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (24:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (23:14:3) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x529 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (5:36:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (4:36:0) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (25:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (24:11:5) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x109 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (21:14:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (20:14:6) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x81 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (19:11:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (18:11:11) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x2b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (27:9:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (26:9:5) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x197 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (19:15:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (18:15:7) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x7f Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (19:11:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (18:11:11) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x2ff Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (17:20:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (16:20:4) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x91 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (25:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (24:12:4) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x199 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (19:15:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (18:15:7) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x301 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (17:20:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (16:20:4) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x441 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (22:10:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (21:10:9) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (25:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (24:11:5) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (15:20:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (14:20:6) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x79 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (25:3:13) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (24:3:13) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x1e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (14:18:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (13:18:9) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x43f Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (22:10:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (21:10:9) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x2b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (27:9:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (26:9:5) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x107 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (21:14:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (20:14:6) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x2c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (20:14:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (19:14:7) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x6f Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (31:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (30:5:5) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xd9 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (24:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (23:14:3) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x209 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (13:23:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (12:23:5) Lost Hammers/(Refresh:Access): 41 (1:40) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x441 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (28:7:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (27:7:5) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x1b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (9:26:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (8:26:5) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x39f Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (17:8:15) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (16:8:15) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (17:8:15) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (16:8:15) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x417 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (19:18:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (18:18:3) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x199 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (15:17:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (14:17:8) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x297 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (11:26:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (10:26:3) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x8f Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (25:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (24:10:5) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x24f Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (13:22:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (12:22:5) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x251 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (13:22:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (12:22:5) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x1e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (20:16:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (19:16:4) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x1e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (18:15:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (17:15:7) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x91 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (25:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (24:10:5) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x299 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (16:23:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (15:23:1) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x147 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (18:22:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (17:22:0) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x2cf Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (26:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (25:10:4) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xf7 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (26:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (25:10:4) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xf9 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (26:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (25:10:4) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x197 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (15:17:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (14:17:8) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x259 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (26:8:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (25:8:6) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x417 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (21:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (20:19:0) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x299 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (11:26:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (10:26:3) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x1b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (9:26:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (8:26:5) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x139 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (25:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (24:11:4) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x1af Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (14:23:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (13:23:3) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x219 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (11:23:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (10:23:6) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x1f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (12:27:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (11:27:1) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x1ef Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (12:27:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (11:27:1) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xd7 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (25:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (24:11:4) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x211 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (15:17:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (14:17:8) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xd9 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (25:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (24:11:4) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x16f Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (16:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (15:22:2) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x43f Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (23:11:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (22:11:6) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x171 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (16:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (15:22:2) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xd1 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (21:12:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (20:12:7) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x77 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (28:1:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (27:1:11) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xcf Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (21:12:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (20:12:7) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x1a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (15:19:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (14:19:6) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x19f Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (15:19:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (14:19:6) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x419 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (19:18:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (18:18:3) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x221 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (11:27:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (10:27:2) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x81 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (21:10:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (20:10:9) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x257 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (26:8:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (25:8:6) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x1b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (14:23:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (13:23:3) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x2ff Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (23:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (22:15:2) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x229 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (10:23:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (9:23:7) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x227 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (10:23:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (9:23:7) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x22f Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (14:20:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (13:20:6) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x5b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (17:23:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (16:23:0) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x231 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (14:20:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (13:20:6) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x301 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (23:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (22:15:2) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x20f Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (15:17:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (14:17:8) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x219 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (11:26:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (10:26:3) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x217 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (11:26:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (10:26:3) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x161 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (20:16:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (19:16:4) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x15f Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (20:16:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (19:16:4) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x7f Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (21:10:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (20:10:9) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x527 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (10:30:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (9:30:0) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x109 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (19:14:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (18:14:7) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x5b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (17:23:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (16:23:0) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x207 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (15:21:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (14:21:4) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x231 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (9:24:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (8:24:7) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x209 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (15:21:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (14:21:4) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x79 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (28:1:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (27:1:11) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xf9 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (26:9:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (25:9:5) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x2cf Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (27:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (26:11:2) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x529 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (4:36:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (3:36:0) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x149 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (18:22:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (17:22:0) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xf7 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (26:9:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (25:9:5) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x43f Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (28:7:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (27:7:5) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x22f Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (9:24:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (8:24:7) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x441 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (23:11:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (22:11:6) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x21f Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (11:27:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (10:27:2) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x107 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (19:14:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (18:14:7) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x1df Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (18:15:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (17:15:7) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x2b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (23:13:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (22:13:4) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xd1 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (22:14:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (21:14:4) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x321 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (21:13:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (20:13:6) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x1b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (13:22:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (12:22:5) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x209 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (12:22:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (11:22:6) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x2d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (27:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (26:11:2) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x1b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (13:22:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (12:22:5) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x39f Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (18:7:15) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (17:7:15) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x2b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (27:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (26:11:2) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x529 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (10:30:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (9:30:0) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3df Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (13:23:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (12:23:4) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x227 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (8:26:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (7:26:6) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x419 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (21:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (20:19:0) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x1b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (13:22:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (12:22:5) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (18:7:15) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (17:7:15) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x211 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (11:24:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (10:24:5) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xd9 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (21:15:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (20:15:4) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x241 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (18:18:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (17:18:4) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x23f Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (18:18:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (17:18:4) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xcf Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (22:14:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (21:14:4) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x207 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (12:22:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (11:22:6) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x527 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (4:36:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (3:36:0) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x207 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (13:22:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (12:22:5) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x31f Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (21:13:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (20:13:6) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x2b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (27:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (26:11:2) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x209 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (13:22:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (12:22:5) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xcf Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (22:14:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (21:14:4) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xd1 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (22:14:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (21:14:4) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x2d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (24:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (23:14:2) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x217 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (11:23:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (10:23:6) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x2cf Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (24:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (23:14:2) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x297 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (16:23:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (15:23:1) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x137 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (25:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (24:11:4) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x229 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (8:26:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (7:26:6) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x2d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (26:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (25:10:4) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x1b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (13:22:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (12:22:5) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x20f Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (11:24:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (10:24:5) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x2b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (23:13:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (22:13:4) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x107 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (23:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (22:14:3) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xd7 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (21:15:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (20:15:4) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x109 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (23:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (22:14:3) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x1e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (20:16:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (19:16:4) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (13:23:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (12:23:4) Lost Hammers/(Refresh:Access): 40 (1:39) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x259 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (20:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (19:14:5) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x197 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (18:17:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (17:17:4) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x2b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (22:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (21:14:3) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x527 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (5:34:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (4:34:0) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x1f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (13:24:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (12:24:2) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (21:11:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (20:11:7) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x2c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (25:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (24:11:3) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x1ef Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (16:19:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (15:19:4) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x2a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (11:27:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (10:27:1) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x77 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (20:7:12) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (19:7:12) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x529 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (5:34:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (4:34:0) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x221 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (14:23:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (13:23:2) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x527 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (4:35:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (3:35:0) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x20f Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (12:19:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (11:19:8) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x2cf Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (24:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (23:13:2) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x297 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (12:26:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (11:26:1) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x24f Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (16:17:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (15:17:6) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x79 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (20:7:12) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (19:7:12) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x301 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (20:12:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (19:12:7) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x227 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (10:23:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (9:23:6) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x259 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (26:8:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (25:8:5) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x1e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (23:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (22:14:2) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x527 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (5:34:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (4:34:0) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x27f Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (22:17:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (21:17:0) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x179 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (16:16:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (15:16:7) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x527 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (6:33:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (5:33:0) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x529 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (4:35:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (3:35:0) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x299 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (12:26:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (11:26:1) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x39f Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (16:6:17) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (15:6:17) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x5b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (19:20:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (18:20:0) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x1f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (16:19:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (15:19:4) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x1e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (23:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (22:14:2) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (21:11:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (20:11:7) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x5b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (19:20:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (18:20:0) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (16:6:17) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (15:6:17) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x167 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (18:20:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (17:20:1) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x281 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (12:26:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (11:26:1) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x169 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (18:20:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (17:20:1) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x197 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (12:22:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (11:22:5) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x259 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (22:12:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (21:12:5) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x107 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (14:17:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (13:17:8) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x257 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (26:8:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (25:8:5) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x199 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (12:22:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (11:22:5) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x24f Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (13:20:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (12:20:6) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x27f Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (12:26:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (11:26:1) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x21f Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (14:23:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (13:23:2) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x211 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (12:19:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (11:19:8) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x257 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (22:12:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (21:12:5) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x171 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (14:24:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (13:24:1) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (17:15:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (16:15:7) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (17:15:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (16:15:7) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x2d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (24:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (23:13:2) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x19f Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (16:20:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (15:20:3) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x281 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (22:17:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (21:17:0) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x109 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (14:17:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (13:17:8) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x2bf Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (25:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (24:11:3) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x1a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (16:20:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (15:20:3) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x259 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (23:10:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (22:10:6) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xd7 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (20:15:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (19:15:4) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x16f Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (14:24:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (13:24:1) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x251 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (13:20:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (12:20:6) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (25:1:13) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (24:1:13) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x1ef Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (15:20:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (14:20:4) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x23f Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (15:19:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (14:19:5) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x2f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (26:7:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (25:7:6) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x1e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (11:18:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (10:18:10) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xd7 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (24:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (23:13:2) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x5b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (12:27:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (11:27:0) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x1f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (15:20:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (14:20:4) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x227 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (11:24:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (10:24:4) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x5b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (15:24:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (14:24:0) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x5b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (12:27:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (11:27:0) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x229 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (11:24:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (10:24:4) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x257 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (20:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (19:14:5) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x2c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (22:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (21:14:3) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x241 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (15:19:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (14:19:5) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x1df Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (11:18:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (10:18:10) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x1f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (13:24:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (12:24:2) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3af Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (25:1:13) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (24:1:13) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x5b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (15:24:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (14:24:0) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x1ef Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (13:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (12:25:1) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xd9 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (24:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (23:13:2) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x199 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (21:13:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (20:13:5) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x1df Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (14:15:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (13:15:10) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x171 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (13:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (12:25:1) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x29f Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (11:27:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (10:27:1) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xdf Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (28:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (27:7:4) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x241 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (16:19:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (15:19:4) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x23f Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (16:19:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (15:19:4) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x417 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (25:12:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (24:12:2) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x1e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (14:15:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (13:15:10) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x1f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (13:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (12:25:1) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x2d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (25:12:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (24:12:2) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (18:12:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (17:12:9) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x2bf Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (22:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (21:14:3) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x199 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (18:17:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (17:17:4) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x229 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (10:23:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (9:23:6) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x177 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (16:16:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (15:16:7) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x2ef Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (26:7:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (25:7:6) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x209 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (11:23:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (10:23:5) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (14:19:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (13:19:6) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x16f Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (13:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (12:25:1) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x257 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (23:10:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (22:10:6) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x2d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (23:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (22:14:2) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x529 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (5:34:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (4:34:0) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x197 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (21:13:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (20:13:5) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xd9 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (20:15:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (19:15:4) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x2ff Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (20:12:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (19:12:7) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x529 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (6:33:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (5:33:0) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x2b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (22:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (21:14:3) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (18:12:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (17:12:9) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x207 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (11:23:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (10:23:5) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x2cf Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (25:12:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (24:12:2) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xe1 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (28:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (27:7:4) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (14:19:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (13:19:6) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x1ef Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (13:24:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (12:24:2) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x251 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (16:17:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (15:17:6) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x1ef Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (13:24:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (12:24:2) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x419 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (25:12:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (24:12:2) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x2cf Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (23:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (22:14:2) Lost Hammers/(Refresh:Access): 39 (1:38) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x2c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (22:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (21:13:3) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x241 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (14:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (13:22:2) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x79 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (20:5:13) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (19:5:13) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x1b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (13:19:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (12:19:6) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x101 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (18:14:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (17:14:6) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x199 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (16:17:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (15:17:5) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x43f Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (19:13:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (18:13:6) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xff Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (18:14:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (17:14:6) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x399 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (21:8:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (20:8:9) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x199 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (13:21:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (12:21:4) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (21:12:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (20:12:5) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x211 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (12:18:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (11:18:8) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x20f Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (12:20:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (11:20:6) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x1b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (12:20:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (11:20:6) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x5d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (18:20:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (17:20:0) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x211 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (12:20:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (11:20:6) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x109 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (19:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (18:14:5) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x229 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (10:22:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (9:22:6) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x441 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (19:13:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (18:13:6) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x1af Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (14:21:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (13:21:3) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x1b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (11:18:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (10:18:9) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xff Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (17:17:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (16:17:4) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (21:12:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (20:12:5) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x237 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (12:23:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (11:23:3) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x5cf Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (18:20:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (17:20:0) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x101 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (17:17:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (16:17:4) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x1b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (11:18:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (10:18:9) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x207 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (13:20:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (12:20:5) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x2bf Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (22:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (21:13:3) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x107 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (19:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (18:14:5) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x1b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (12:20:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (11:20:6) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x27f Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (16:21:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (15:21:1) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x1e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (16:17:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (15:17:5) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x397 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (21:8:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (20:8:9) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x77 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (20:5:13) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (19:5:13) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x227 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (10:22:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (9:22:6) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x209 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (13:20:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (12:20:5) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x1b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (14:21:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (13:21:3) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x20f Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (12:18:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (11:18:8) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x197 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (16:17:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (15:17:5) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x239 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (12:23:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (11:23:3) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x1e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (16:17:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (15:17:5) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x1b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (13:19:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (12:19:6) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x219 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (11:24:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (10:24:3) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xff Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (19:17:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (18:17:2) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x101 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (19:17:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (18:17:2) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x441 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (25:8:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (24:8:5) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x1b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (11:21:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (10:21:6) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x231 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (15:18:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (14:18:5) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x1b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (11:21:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (10:21:6) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x22f Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (15:18:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (14:18:5) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x2d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (23:14:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (22:14:1) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x2cf Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (23:14:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (22:14:1) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x21f Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (10:24:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (9:24:4) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x101 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (17:14:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (16:14:7) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x221 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (10:24:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (9:24:4) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x217 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (11:24:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (10:24:3) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x109 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (19:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (18:14:5) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x5b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (15:23:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (14:23:0) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xff Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (17:14:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (16:14:7) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x419 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (24:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (23:14:0) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x107 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (19:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (18:14:5) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x417 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (24:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (23:14:0) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x8f Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (22:10:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (21:10:6) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x5b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (16:22:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (15:22:0) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x197 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (13:21:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (12:21:4) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (22:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (21:11:5) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (22:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (21:11:5) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xf7 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (27:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (26:10:1) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x101 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (18:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (17:18:2) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x227 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (14:20:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (13:20:4) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x81 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (19:9:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (18:9:10) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x177 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (22:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (21:11:5) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x241 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (18:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (17:18:2) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x23f Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (10:25:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (9:25:3) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x281 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (16:21:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (15:21:1) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x209 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (14:21:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (13:21:3) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x139 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (18:12:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (17:12:8) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x241 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (10:25:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (9:25:3) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x137 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (18:12:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (17:12:8) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x231 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (10:23:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (9:23:5) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x207 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (14:21:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (13:21:3) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x2c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (28:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (27:6:4) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x2bf Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (28:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (27:6:4) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x1b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (12:22:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (11:22:4) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x1b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (12:22:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (11:22:4) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x2b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (26:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (25:11:1) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x23f Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (18:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (17:18:2) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x5b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (16:22:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (15:22:0) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x43f Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (25:8:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (24:8:5) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x199 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (18:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (17:15:5) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x197 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (18:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (17:15:5) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x259 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (19:11:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (18:11:8) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x1a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (14:17:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (13:17:7) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x2c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (26:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (25:11:1) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x201 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (16:20:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (15:20:2) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x257 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (19:11:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (18:11:8) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x8f Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (23:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (22:11:4) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x2bf Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (26:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (25:11:1) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x1ff Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (16:20:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (15:20:2) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x5b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (15:23:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (14:23:0) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x91 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (23:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (22:11:4) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xff Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (18:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (17:18:2) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x169 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (12:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (11:25:1) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x101 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (16:17:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (15:17:5) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x23f Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (14:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (13:22:2) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x237 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (14:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (13:22:2) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x239 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (14:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (13:22:2) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x299 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (12:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (11:25:1) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x39f Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (18:4:16) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (17:4:16) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x2b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (19:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (18:14:5) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x19f Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (14:17:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (13:17:7) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x101 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (13:20:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (12:20:5) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x2b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (19:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (18:14:5) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xef Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (17:15:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (16:15:6) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x209 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (11:24:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (10:24:3) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x20f Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (14:16:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (13:16:8) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xff Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (13:20:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (12:20:5) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x177 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (23:9:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (22:9:6) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x101 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (15:16:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (14:16:7) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (18:4:16) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (17:4:16) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x179 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (23:9:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (22:9:6) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x169 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (16:22:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (15:22:0) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x207 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (11:24:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (10:24:3) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x167 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (16:22:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (15:22:0) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x1e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (11:20:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (10:20:7) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xd1 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (24:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (23:11:3) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xf1 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (17:15:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (16:15:6) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xcf Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (24:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (23:11:3) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x211 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (12:19:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (11:19:7) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (14:19:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (13:19:5) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x229 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (14:20:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (13:20:4) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x2b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (26:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (25:11:1) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xf9 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (27:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (26:10:1) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x179 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (22:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (21:11:5) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xff Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (15:16:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (14:16:7) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x1df Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (11:20:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (10:20:7) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x91 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (22:10:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (21:10:6) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x301 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (22:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (21:13:3) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xff Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (16:17:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (15:17:5) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x7f Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (19:9:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (18:9:10) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x20f Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (12:19:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (11:19:7) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x211 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (14:16:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (13:16:8) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x297 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (12:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (11:25:1) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (14:19:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (13:19:5) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x22f Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (10:23:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (9:23:5) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x2ff Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (22:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (21:13:3) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x167 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (12:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (11:25:1) Lost Hammers/(Refresh:Access): 38 (1:37) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x1b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (12:19:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (11:19:6) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x21f Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (11:20:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (10:20:6) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x8f Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (24:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (23:10:3) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x201 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (12:19:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (11:19:6) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x1ff Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (12:19:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (11:19:6) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x1d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (17:19:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (16:19:1) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x221 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (11:20:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (10:20:6) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x1b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (12:19:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (11:19:6) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xe1 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (26:6:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (25:6:5) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x24f Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (10:23:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (9:23:4) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x251 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (10:23:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (9:23:4) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x239 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (13:18:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (12:18:6) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x1b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (6:23:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (5:23:8) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x1ff Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (12:20:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (11:20:5) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x1b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (6:23:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (5:23:8) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x237 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (11:22:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (10:22:4) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x31f Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (23:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (22:11:3) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x211 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (12:16:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (11:16:9) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (16:4:17) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (15:4:17) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x20f Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (12:16:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (11:16:9) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x239 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (11:22:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (10:22:4) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x229 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (10:22:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (9:22:5) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x227 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (10:22:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (9:22:5) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x8f Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (25:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (24:8:4) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x91 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (25:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (24:8:4) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x43f Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (21:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (20:12:4) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xdf Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (26:6:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (25:6:5) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x21f Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (11:21:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (10:21:5) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x201 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (12:20:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (11:20:5) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x237 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (16:15:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (15:15:6) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x239 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (16:15:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (15:15:6) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x28f Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (14:21:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (13:21:2) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x221 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (11:21:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (10:21:5) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x321 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (23:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (22:11:3) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x1d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (17:19:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (16:19:1) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x91 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (24:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (23:10:3) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x291 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (14:21:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (13:21:2) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x237 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (13:18:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (12:18:6) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x21f Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (8:28:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (7:28:1) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x209 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (15:20:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (14:20:2) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xd1 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (17:13:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (16:13:7) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x20f Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (14:16:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (13:16:7) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (9:20:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (8:20:8) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x5b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (17:20:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (16:20:0) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x2c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (18:12:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (17:12:7) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x239 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (10:22:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (9:22:5) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x2c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (18:12:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (17:12:7) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x249 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (10:22:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (9:22:5) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x1df Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (15:13:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (14:13:9) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x23f Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (18:17:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (17:17:2) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x221 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (8:28:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (7:28:1) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x117 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (18:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (17:14:5) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x7f Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (16:14:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (15:14:7) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x247 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (10:22:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (9:22:5) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x81 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (14:14:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (13:14:9) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x7f Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (14:14:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (13:14:9) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x241 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (18:17:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (17:17:2) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x297 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (8:27:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (7:27:2) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x291 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (12:23:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (11:23:2) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x28f Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (12:23:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (11:23:2) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x1e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (15:13:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (14:13:9) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x419 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (17:19:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (16:19:1) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x29f Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (11:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (10:25:1) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x21f Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (11:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (10:25:1) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3df Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (9:20:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (8:20:8) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x397 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (21:6:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (20:6:10) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xcf Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (23:9:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (22:9:5) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x207 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (15:20:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (14:20:2) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x221 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (11:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (10:25:1) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x201 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (9:25:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (8:25:3) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x2a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (11:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (10:25:1) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x399 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (21:6:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (20:6:10) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x237 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (10:22:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (9:22:5) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x211 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (14:16:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (13:16:7) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x101 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (16:15:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (15:15:6) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x39f Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (16:4:17) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (15:4:17) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xdf Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (27:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (26:6:4) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x417 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (17:19:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (16:19:1) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x31f Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (21:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (20:12:4) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x21f Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (12:23:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (11:23:2) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xe1 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (27:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (26:6:4) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xcf Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (17:13:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (16:13:7) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x1ff Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (9:25:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (8:25:3) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x1d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (11:19:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (10:19:7) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x91 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (24:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (23:10:3) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x299 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (8:27:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (7:27:2) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xff Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (16:15:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (15:15:6) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x2d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (22:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (21:13:2) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x2cf Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (22:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (21:13:2) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x28f Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (15:19:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (14:19:3) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x1cf Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (11:19:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (10:19:7) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x221 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (12:23:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (11:23:2) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xd1 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (23:9:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (22:9:5) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x5b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (17:20:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (16:20:0) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xd7 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (18:13:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (17:13:6) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x321 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (21:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (20:12:4) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xd9 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (18:13:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (17:13:6) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x441 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (21:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (20:12:4) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x81 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (16:14:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (15:14:7) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x119 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (18:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (17:14:5) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x8f Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (24:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (23:10:3) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x291 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (15:19:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (14:19:3) Lost Hammers/(Refresh:Access): 37 (1:36) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x31f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (25:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (24:8:3) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x10f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (14:13:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (13:13:9) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x16f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (13:22:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (12:22:1) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x29f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (10:26:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (9:26:0) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x77 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (21:3:12) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (20:3:12) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x297 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (7:28:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (6:28:1) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x7f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (15:12:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (14:12:9) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xc7 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (17:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (16:14:5) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x20f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (13:16:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (12:16:7) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x1a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (13:15:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (12:15:8) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x2d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (14:17:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (13:17:5) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x207 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (10:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (9:25:1) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xf1 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (17:12:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (16:12:7) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x319 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (17:16:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (16:16:3) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x237 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (12:18:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (11:18:6) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x81 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (15:12:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (14:12:9) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xf9 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (21:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (20:13:2) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x209 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (10:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (9:25:1) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x79 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (21:3:12) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (20:3:12) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x129 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (16:14:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (15:14:6) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x111 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (14:13:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (13:13:9) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x79 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (20:8:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (19:8:8) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x127 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (16:14:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (15:14:6) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x21f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (11:24:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (10:24:1) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x529 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (6:30:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (5:30:0) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x2d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (14:17:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (13:17:5) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xef Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (17:12:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (16:12:7) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x77 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (20:8:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (19:8:8) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x107 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (15:17:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (14:17:4) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xd7 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (23:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (22:11:2) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3af Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (25:1:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (24:1:10) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (12:18:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (11:18:6) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x109 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (15:17:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (14:17:4) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x43f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (21:8:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (20:8:7) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x32f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (23:5:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (22:5:8) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x19f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (13:20:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (12:20:3) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x331 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (23:5:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (22:5:8) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x19f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (14:20:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (13:20:2) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x1ef Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (16:19:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (15:19:1) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x1a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (14:20:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (13:20:2) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xef Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (19:10:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (18:10:7) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xd9 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (23:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (22:11:2) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (25:1:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (24:1:10) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x1a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (13:20:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (12:20:3) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x531 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (12:24:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (11:24:0) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x441 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (21:8:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (20:8:7) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xcf Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (18:13:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (17:13:5) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xf1 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (19:10:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (18:10:7) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x52f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (12:24:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (11:24:0) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xd1 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (18:13:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (17:13:5) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3df Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (12:18:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (11:18:6) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xf9 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (19:13:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (18:13:4) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xef Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (15:14:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (14:14:7) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xf1 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (15:14:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (14:14:7) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x5cf Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (17:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (16:19:0) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x321 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (25:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (24:8:3) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x1f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (14:14:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (13:14:8) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x1f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (14:14:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (13:14:8) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x211 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (10:18:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (9:18:8) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x2a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (10:26:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (9:26:0) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x251 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (15:16:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (14:16:5) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x24f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (15:16:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (14:16:5) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x20f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (10:18:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (9:18:8) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x249 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (12:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (11:22:2) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x1d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (16:16:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (15:16:4) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x221 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (11:24:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (10:24:1) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xf7 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (19:13:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (18:13:4) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x171 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (13:22:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (12:22:1) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xf7 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (21:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (20:13:2) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x247 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (14:20:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (13:20:2) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x1f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (16:19:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (15:19:1) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x1e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (16:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (15:18:2) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x249 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (14:20:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (13:20:2) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xc9 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (17:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (16:14:5) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x1e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (16:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (15:18:2) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3df Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (10:22:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (9:22:4) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (10:22:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (9:22:4) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x5d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (17:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (16:19:0) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x197 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (15:18:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (14:18:3) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x229 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (9:24:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (8:24:3) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x397 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (19:6:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (18:6:11) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x199 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (15:15:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (14:15:6) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x197 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (15:15:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (14:15:6) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x229 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (13:20:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (12:20:3) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xd9 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (20:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (19:14:2) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x2ef Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (24:4:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (23:4:8) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x29f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (15:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (14:21:0) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x237 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (15:20:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (14:20:1) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x2a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (15:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (14:21:0) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x239 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (15:20:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (14:20:1) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x2f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (24:4:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (23:4:8) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x227 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (13:20:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (12:20:3) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x281 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (11:23:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (10:23:2) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x191 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (12:20:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (11:20:4) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x18f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (12:20:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (11:20:4) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xcf Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (14:16:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (13:16:6) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x1e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (19:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (18:14:3) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x227 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (9:24:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (8:24:3) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x1e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (19:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (18:14:3) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x1ef Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (14:20:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (13:20:2) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x2c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (16:13:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (15:13:7) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x107 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (15:16:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (14:16:5) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x5a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (25:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (24:11:0) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xcf Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (19:12:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (18:12:5) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x241 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (15:19:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (14:19:2) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x1c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (14:20:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (13:20:2) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x177 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (16:16:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (15:16:4) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x1c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (14:20:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (13:20:2) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (17:6:13) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (16:6:13) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x441 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (17:12:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (16:12:7) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x249 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (12:19:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (11:19:5) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x39f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (17:6:13) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (16:6:13) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x43f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (17:12:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (16:12:7) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x247 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (12:19:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (11:19:5) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x21f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (10:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (9:25:1) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x527 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (6:30:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (5:30:0) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x221 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (10:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (9:25:1) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xd1 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (19:12:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (18:12:5) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x179 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (16:16:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (15:16:4) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x2c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (16:13:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (15:13:7) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x397 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (17:9:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (16:9:10) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xd7 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (20:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (19:14:2) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x399 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (17:9:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (16:9:10) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x1a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (13:17:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (12:17:6) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x399 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (19:6:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (18:6:11) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x19f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (13:17:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (12:17:6) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x239 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (12:18:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (11:18:6) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x1c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (15:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (14:21:0) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xd1 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (14:16:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (13:16:6) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x1f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (14:20:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (13:20:2) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x529 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (4:32:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (3:32:0) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x1d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (16:16:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (15:16:4) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x1a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (13:15:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (12:15:8) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x399 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (18:7:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (17:7:11) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x527 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (4:32:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (3:32:0) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x161 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (18:14:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (17:14:4) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x109 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (15:16:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (14:16:5) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x299 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (7:28:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (6:28:1) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x397 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (18:8:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (17:8:10) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x15f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (18:14:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (17:14:4) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x417 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (21:14:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (20:14:1) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x199 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (15:18:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (14:18:3) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x397 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (18:7:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (17:7:11) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x399 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (18:8:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (17:8:10) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x317 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (17:16:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (16:16:3) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x241 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (14:19:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (13:19:3) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x247 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (12:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (11:22:2) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x419 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (21:14:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (20:14:1) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x23f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (14:19:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (13:19:3) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x1c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (15:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (14:21:0) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x5a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (25:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (24:11:0) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x211 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (13:16:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (12:16:7) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x27f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (11:23:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (10:23:2) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x321 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (23:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (22:10:3) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x5a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (17:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (16:19:0) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x261 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (19:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (18:14:3) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x31f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (23:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (22:10:3) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x23f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (15:19:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (14:19:2) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x25f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (19:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (18:14:3) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x5a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (17:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (16:19:0) Lost Hammers/(Refresh:Access): 36 (1:35) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x527 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (3:32:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (2:32:0) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x2e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (12:21:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (11:21:2) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x201 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (14:18:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (13:18:3) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (18:13:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (17:13:4) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (15:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (14:17:3) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (18:13:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (17:13:4) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x27f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (13:21:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (12:21:1) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x261 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (24:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (23:9:2) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x29f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (16:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (15:19:0) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x2c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (24:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (23:8:3) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x201 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (8:24:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (7:24:3) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x1ff Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (8:24:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (7:24:3) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x2df Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (14:16:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (13:16:5) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (15:5:15) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (14:5:15) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x2c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (24:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (23:8:3) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x181 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (11:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (10:22:2) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x2df Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (12:21:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (11:21:2) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x1ff Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (14:18:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (13:18:3) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x249 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (8:24:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (7:24:3) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x281 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (13:21:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (12:21:1) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x52f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (7:28:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (6:28:0) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x87 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (28:2:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (27:2:5) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x5a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (20:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (19:15:0) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x221 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (8:26:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (7:26:1) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x89 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (28:2:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (27:2:5) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x121 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (19:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (18:12:4) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x21f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (8:26:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (7:26:1) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x11f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (19:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (18:12:4) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xdf Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (24:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (23:7:4) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x5a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (20:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (19:15:0) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x1e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (13:15:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (12:15:7) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x2df Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (15:14:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (14:14:6) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x2a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (16:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (15:19:0) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x17f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (11:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (10:22:2) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x239 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (15:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (14:18:2) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x531 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (7:28:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (6:28:0) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3df Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (15:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (14:17:3) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x1c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (12:19:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (11:19:4) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xe1 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (24:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (23:7:4) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x25f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (24:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (23:9:2) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x2e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (15:14:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (14:14:6) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x1c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (12:19:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (11:19:4) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x1df Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (13:15:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (12:15:7) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x20f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (11:19:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (10:19:5) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x247 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (8:24:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (7:24:3) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x237 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (15:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (14:18:2) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x39f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (15:5:15) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (14:5:15) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x211 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (11:19:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (10:19:5) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x197 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (20:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (19:10:5) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x2a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (7:28:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (6:28:0) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (18:2:15) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (17:2:15) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x39f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (18:2:15) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (17:2:15) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x181 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (10:19:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (9:19:6) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x17f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (10:19:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (9:19:6) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x2bf Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (22:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (21:11:2) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x101 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (11:18:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (10:18:6) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x29f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (7:28:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (6:28:0) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xf9 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (17:15:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (16:15:3) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xf7 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (17:15:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (16:15:3) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x239 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (10:22:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (9:22:3) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xff Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (11:18:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (10:18:6) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x237 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (10:22:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (9:22:3) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x1f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (16:17:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (15:17:2) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x199 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (20:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (19:10:5) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x191 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (15:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (14:17:3) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x1a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (7:24:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (6:24:4) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x1f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (16:17:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (15:17:2) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x19f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (7:24:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (6:24:4) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x419 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (17:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (16:18:0) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x417 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (17:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (16:18:0) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x2bf Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (19:15:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (18:15:1) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xf9 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (24:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (23:9:2) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x1b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (7:21:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (6:21:7) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x24f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (13:18:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (12:18:4) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x2c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (19:15:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (18:15:1) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x1e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (17:17:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (16:17:1) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xf7 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (24:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (23:9:2) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x1e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (17:17:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (16:17:1) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x251 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (13:18:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (12:18:4) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x1b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (7:21:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (6:21:7) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x5b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (16:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (15:19:0) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x191 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (13:19:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (12:19:3) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x18f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (13:19:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (12:19:3) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x79 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (23:5:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (22:5:7) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x77 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (23:5:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (22:5:7) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x111 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (13:14:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (12:14:8) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x22f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (11:21:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (10:21:3) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x229 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (14:20:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (13:20:1) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x227 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (14:20:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (13:20:1) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x281 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (11:21:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (10:21:3) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x10f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (13:14:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (12:14:8) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (11:21:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (10:21:3) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x1d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (15:12:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (14:12:8) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x27f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (11:21:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (10:21:3) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3df Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (11:21:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (10:21:3) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x231 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (11:21:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (10:21:3) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x2e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (14:16:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (13:16:5) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x529 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (3:32:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (2:32:0) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x5b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (16:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (15:19:0) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xf7 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (24:6:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (23:6:5) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x1cf Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (15:12:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (14:12:8) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x191 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (13:16:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (12:16:6) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x18f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (13:16:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (12:16:6) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xe1 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (30:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (29:2:3) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xf9 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (24:6:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (23:6:5) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xc1 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (18:11:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (17:11:6) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xdf Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (30:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (29:2:3) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x18f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (16:15:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (15:15:4) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xbf Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (18:11:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (17:11:6) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x191 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (16:15:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (15:15:4) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x529 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (5:30:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (4:30:0) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x527 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (5:30:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (4:30:0) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x191 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (15:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (14:15:5) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x18f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (16:17:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (15:17:2) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x18f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (19:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (18:13:3) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x419 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (23:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (22:11:1) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x2c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (22:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (21:11:2) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x419 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (16:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (15:19:0) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x531 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (12:23:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (11:23:0) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x191 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (16:17:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (15:17:2) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x19f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (12:19:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (11:19:4) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x1a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (12:19:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (11:19:4) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x417 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (23:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (22:11:1) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x291 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (15:19:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (14:19:1) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xef Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (14:16:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (13:16:5) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x1a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (11:21:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (10:21:3) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xf1 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (14:16:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (13:16:5) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x28f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (15:19:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (14:19:1) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x417 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (16:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (15:19:0) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x19f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (11:21:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (10:21:3) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x191 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (19:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (18:13:3) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x18f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (15:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (14:15:5) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (15:6:14) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (14:6:14) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xbf Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (20:8:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (19:8:7) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x18f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (15:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (14:18:2) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3df Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (10:20:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (9:20:5) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x1c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (11:23:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (10:23:1) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x417 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (23:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (22:11:1) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x18f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (15:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (14:17:3) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x81 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (19:9:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (18:9:7) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x419 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (23:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (22:11:1) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x7f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (19:9:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (18:9:7) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x21f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (13:19:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (12:19:3) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x1c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (11:23:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (10:23:1) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x221 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (13:19:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (12:19:3) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (10:20:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (9:20:5) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x52f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (12:23:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (11:23:0) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x39f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (15:6:14) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (14:6:14) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xc1 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (20:8:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (19:8:7) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x191 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (15:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (14:18:2) Lost Hammers/(Refresh:Access): 35 (1:34) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x5b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (16:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (15:18:0) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xaf Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (26:2:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (25:2:6) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xb1 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (26:2:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (25:2:6) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x121 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (21:6:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (20:6:7) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x5b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (16:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (15:18:0) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x23f Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (9:23:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (8:23:2) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x241 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (9:23:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (8:23:2) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x121 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (22:6:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (21:6:6) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x2c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (17:16:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (16:16:1) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x1f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (14:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (13:17:3) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x207 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (9:23:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (8:23:2) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x2bf Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (17:16:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (16:16:1) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x127 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (14:16:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (13:16:4) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x399 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (21:5:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (20:5:8) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x1c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (12:21:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (11:21:1) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (18:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (17:16:0) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x129 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (14:16:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (13:16:4) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x397 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (21:5:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (20:5:8) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x1c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (12:21:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (11:21:1) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x119 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (21:8:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (20:8:5) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x179 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (15:13:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (14:13:6) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x231 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (12:20:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (11:20:2) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x17f Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (12:18:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (11:18:4) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x181 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (12:18:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (11:18:4) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x177 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (15:13:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (14:13:6) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (18:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (17:16:0) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x5a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (23:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (22:11:0) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x1e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (14:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (13:18:2) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x11f Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (23:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (22:8:3) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x27f Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (14:19:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (13:19:1) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x137 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (18:8:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (17:8:8) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x111 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (15:12:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (14:12:7) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x437 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (15:17:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (14:17:2) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x1e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (14:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (13:18:2) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x281 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (14:19:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (13:19:1) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x5a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (23:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (22:11:0) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x121 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (23:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (22:8:3) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x139 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (18:8:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (17:8:8) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x2f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (19:8:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (18:8:7) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x1f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (14:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (13:17:3) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x2f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (19:8:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (18:8:7) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x1e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (17:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (16:15:2) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x1e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (17:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (16:15:2) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x23f Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (13:19:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (12:19:2) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x241 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (13:19:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (12:19:2) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x219 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (10:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (9:22:2) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x10f Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (15:12:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (14:12:7) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x2a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (9:25:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (8:25:0) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x439 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (15:17:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (14:17:2) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x29f Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (9:25:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (8:25:0) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x129 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (12:17:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (11:17:5) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x127 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (12:17:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (11:17:5) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x2f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (16:15:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (15:15:3) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x529 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (8:26:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (7:26:0) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x179 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (18:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (17:12:4) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x11f Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (22:6:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (21:6:6) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x527 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (8:26:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (7:26:0) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x17f Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (10:21:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (9:21:3) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x11f Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (21:6:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (20:6:7) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x217 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (10:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (9:22:2) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x2f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (16:15:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (15:15:3) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x1f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (16:11:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (15:11:7) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x177 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (18:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (17:12:4) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x1f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (16:11:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (15:11:7) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x181 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (10:21:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (9:21:3) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x5a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (16:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (15:18:0) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x20f Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (9:18:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (8:18:7) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x2a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (10:24:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (9:24:0) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (12:19:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (11:19:3) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x1a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (14:14:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (13:14:6) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3df Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (12:19:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (11:19:3) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x229 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (11:20:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (10:20:3) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x1a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (14:14:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (13:14:6) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x227 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (11:20:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (10:20:3) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x1d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (12:20:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (11:20:2) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xef Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (17:12:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (16:12:5) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xf1 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (17:12:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (16:12:5) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x211 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (9:18:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (8:18:7) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (21:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (20:10:3) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (12:15:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (11:15:7) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x1c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (15:18:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (14:18:1) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x287 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (12:18:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (11:18:4) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x29f Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (9:24:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (8:24:1) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x1c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (15:18:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (14:18:1) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (12:15:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (11:15:7) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x22f Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (8:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (7:25:1) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x129 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (14:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (13:15:5) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x11f Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (21:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (20:9:4) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (21:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (20:9:4) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x1c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (13:18:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (12:18:3) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x109 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (15:13:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (14:13:6) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x5a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (16:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (15:18:0) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x7f Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (16:10:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (15:10:8) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x1c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (13:18:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (12:18:3) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xc9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (19:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (18:13:2) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x1e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (16:17:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (15:17:1) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xc7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (19:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (18:13:2) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3df Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (14:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (13:15:5) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x1ff Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (17:16:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (16:16:1) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x201 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (17:16:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (16:16:1) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x1e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (16:17:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (15:17:1) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x29f Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (7:27:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (6:27:0) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (14:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (13:15:5) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x1d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (12:20:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (11:20:2) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x107 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (15:13:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (14:13:6) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x399 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (16:9:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (15:9:9) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x231 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (8:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (7:25:1) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (14:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (13:15:5) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xf9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (18:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (17:12:4) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x397 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (16:9:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (15:9:9) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x29f Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (10:24:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (9:24:0) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x81 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (16:10:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (15:10:8) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (14:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (13:15:5) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x109 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (17:13:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (16:13:4) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x91 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (23:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (22:8:3) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x289 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (12:18:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (11:18:4) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x8f Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (23:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (22:8:3) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x2f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (20:8:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (19:8:6) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x2a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (13:20:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (12:20:1) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x29f Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (13:20:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (12:20:1) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (21:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (20:10:3) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x209 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (9:23:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (8:23:2) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x107 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (17:13:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (16:13:4) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xc1 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (22:6:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (21:6:6) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x2f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (20:8:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (19:8:6) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xbf Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (22:6:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (21:6:6) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x5cf Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (16:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (15:18:0) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x181 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (13:16:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (12:16:5) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x5d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (16:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (15:18:0) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x17f Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (13:16:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (12:16:5) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x43f Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (16:13:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (15:13:5) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x441 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (16:13:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (15:13:5) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x1f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (11:18:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (10:18:5) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x117 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (21:8:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (20:8:5) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x22f Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (12:20:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (11:20:2) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x2a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (9:24:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (8:24:1) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xf7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (21:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (20:11:2) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xf9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (21:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (20:11:2) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (21:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (20:9:4) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x121 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (21:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (20:9:4) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x417 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (18:15:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (17:15:1) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x1c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (14:19:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (13:19:1) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x119 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (18:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (17:11:5) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xf7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (18:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (17:12:4) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x1f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (11:18:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (10:18:5) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x117 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (18:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (17:11:5) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x1bf Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (14:19:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (13:19:1) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x127 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (14:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (13:15:5) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x419 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (18:15:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (17:15:1) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x1d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (18:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (17:13:3) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x1d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (18:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (17:13:3) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x2a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (7:27:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (6:27:0) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x1e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (21:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (20:11:2) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x1e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (21:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (20:11:2) Lost Hammers/(Refresh:Access): 34 (1:33) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x31f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (19:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (18:11:3) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x2ef Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (19:9:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (18:9:5) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x249 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (9:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (8:22:2) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x43f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (17:10:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (16:10:6) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x321 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (19:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (18:11:3) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x179 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (16:12:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (15:12:5) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x21f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (9:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (8:22:2) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x221 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (9:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (8:22:2) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x437 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (17:15:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (16:15:1) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x399 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (16:5:12) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (15:5:12) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x181 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (12:16:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (11:16:5) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3af Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (18:5:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (17:5:10) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x1cf Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (12:16:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (11:16:5) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (18:5:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (17:5:10) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x127 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (11:13:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (10:13:9) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x129 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (11:13:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (10:13:9) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x1d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (12:16:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (11:16:5) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x5a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (21:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (20:12:0) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x17f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (12:16:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (11:16:5) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x247 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (9:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (8:22:2) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x5a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (21:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (20:12:0) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x397 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (16:5:12) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (15:5:12) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x441 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (17:10:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (16:10:6) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x2f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (19:9:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (18:9:5) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x2ff Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (20:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (19:9:4) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x527 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (2:31:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (1:31:0) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x301 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (20:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (19:9:4) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x529 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (2:31:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (1:31:0) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x177 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (16:12:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (15:12:5) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x5a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (16:17:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (15:17:0) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x1cf Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (14:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (13:14:5) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4af Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (19:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (18:11:3) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x1d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (14:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (13:14:5) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (19:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (18:11:3) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (18:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (17:10:5) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x189 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (13:16:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (12:16:4) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (18:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (17:10:5) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xe1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (23:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (22:6:4) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xdf Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (23:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (22:6:4) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x177 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (16:12:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (15:12:5) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x5a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (16:17:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (15:17:0) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xdf Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (21:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (20:8:4) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x187 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (13:16:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (12:16:4) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x39f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (13:6:14) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (12:6:14) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (21:3:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (20:3:9) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (13:6:14) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (12:6:14) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x179 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (16:12:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (15:12:5) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3af Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (21:3:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (20:3:9) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x249 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (15:15:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (14:15:3) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x247 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (15:15:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (14:15:3) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x229 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (10:18:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (9:18:5) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xdf Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (22:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (21:7:4) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x227 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (10:18:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (9:18:5) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xef Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (17:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (16:11:5) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x297 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (11:20:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (10:20:2) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x43f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (16:10:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (15:10:7) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xdf Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (22:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (21:7:4) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x441 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (16:10:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (15:10:7) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xe1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (22:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (21:7:4) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xf7 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (17:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (16:12:4) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x46f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (22:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (21:8:3) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xf9 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (17:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (16:12:4) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x471 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (22:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (21:8:3) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x52f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (12:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (11:21:0) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x129 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (11:15:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (10:15:7) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x29f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (10:23:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (9:23:0) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x127 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (11:15:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (10:15:7) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x531 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (12:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (11:21:0) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x121 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (20:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (19:9:4) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x11f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (20:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (19:9:4) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xf1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (17:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (16:11:5) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x251 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (15:16:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (14:16:2) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x191 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (19:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (18:11:3) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x24f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (15:16:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (14:16:2) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xe1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (21:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (20:8:4) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x18f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (19:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (18:11:3) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xaf Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (24:3:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (23:3:6) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (21:1:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (20:1:11) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x1ff Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (9:20:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (8:20:4) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x11f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (18:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (17:10:5) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x121 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (18:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (17:10:5) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x201 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (9:20:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (8:20:4) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x8f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (24:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (23:9:0) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x91 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (24:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (23:9:0) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x52f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (14:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (13:19:0) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x531 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (14:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (13:19:0) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x2ef Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (19:7:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (18:7:7) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x2f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (19:7:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (18:7:7) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4af Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (15:15:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (14:15:3) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xb1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (24:3:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (23:3:6) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xd9 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (18:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (17:13:2) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xd7 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (18:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (17:13:2) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x52f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (11:22:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (10:22:0) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x531 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (11:22:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (10:22:0) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xaf Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (24:2:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (23:2:7) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xb1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (24:2:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (23:2:7) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xc1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (22:5:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (21:5:6) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x441 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (13:16:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (12:16:4) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x43f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (13:16:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (12:16:4) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xbf Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (22:5:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (21:5:6) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x257 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (17:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (16:11:5) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x2a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (10:23:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (9:23:0) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x189 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (18:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (17:13:2) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x127 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (8:17:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (7:17:8) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x2f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (21:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (20:10:2) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xe1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (22:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (21:7:4) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x187 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (18:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (17:13:2) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x129 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (8:17:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (7:17:8) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x2f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (21:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (20:10:2) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x179 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (19:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (18:10:4) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x177 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (19:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (18:10:4) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x259 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (17:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (16:11:5) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x2f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (18:9:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (17:9:6) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x2ff Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (16:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (15:14:3) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x39f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (15:3:15) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (14:3:15) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x301 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (16:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (15:14:3) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (15:3:15) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (14:3:15) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x201 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (9:23:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (8:23:1) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x2bf Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (22:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (21:8:3) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x2c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (22:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (21:8:3) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x1ff Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (9:23:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (8:23:1) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (15:15:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (14:15:3) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3af Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (21:1:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (20:1:11) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x471 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (20:8:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (19:8:5) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x24f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (11:16:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (10:16:6) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x221 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (10:20:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (9:20:3) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x21f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (10:20:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (9:20:3) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x291 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (18:14:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (17:14:1) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xff Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (13:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (12:15:5) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x28f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (18:14:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (17:14:1) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x441 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (19:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (18:10:4) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x25f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (18:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (17:12:3) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x261 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (18:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (17:12:3) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x101 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (13:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (12:15:5) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x46f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (20:8:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (19:8:5) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x289 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (15:12:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (14:12:6) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x287 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (15:12:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (14:12:6) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x211 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (11:16:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (10:16:6) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x39f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (14:4:15) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (13:4:15) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x20f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (11:16:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (10:16:6) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x18f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (16:12:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (15:12:5) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x191 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (16:12:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (15:12:5) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (14:4:15) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (13:4:15) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x289 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (17:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (16:13:3) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x2f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (18:9:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (17:9:6) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (16:13:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (15:13:4) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (16:13:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (15:13:4) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x439 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (17:15:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (16:15:1) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x31f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (19:9:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (18:9:5) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x321 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (19:9:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (18:9:5) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x43f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (19:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (18:10:4) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4ff Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (6:27:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (5:27:0) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x287 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (17:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (16:13:3) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x5b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (12:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (11:21:0) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xe1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (21:7:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (20:7:5) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x501 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (6:27:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (5:27:0) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (14:5:14) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (13:5:14) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x18f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (12:18:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (11:18:3) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x191 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (12:18:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (11:18:3) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x39f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (14:5:14) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (13:5:14) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x251 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (11:16:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (10:16:6) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xdf Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (21:7:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (20:7:5) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x299 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (11:20:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (10:20:2) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (10:17:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (9:17:6) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x227 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (8:23:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (7:23:2) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x177 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (18:9:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (17:9:6) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x179 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (18:9:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (17:9:6) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x229 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (8:23:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (7:23:2) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3df Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (10:17:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (9:17:6) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x1bf Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (13:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (12:18:2) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xe1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (25:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (24:6:2) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xdf Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (25:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (24:6:2) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x1c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (13:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (12:18:2) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x5b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (12:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (11:21:0) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x2bf Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (21:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (20:12:0) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x2c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (21:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (20:12:0) Lost Hammers/(Refresh:Access): 33 (1:32) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x181 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (16:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (15:14:2) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x2c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:8:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:8:6) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xef Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:15:5) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x331 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (21:6:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (20:6:5) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x2ef Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (20:6:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (19:6:6) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x2e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:16:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:16:4) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x2ff Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:19:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:19:1) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x2df Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:16:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:16:4) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xc9 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (16:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (15:11:5) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x1c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (9:22:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (8:22:1) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xc7 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (16:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (15:11:5) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4ff Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (10:22:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (9:22:0) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (19:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (18:10:3) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x501 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (10:22:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (9:22:0) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x1bf Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (13:17:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (12:17:2) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x5d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:14:0) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (9:22:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (8:22:1) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x17f Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (16:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (15:14:2) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x1c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (13:17:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (12:17:2) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (9:22:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (8:22:1) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x5cf Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:14:0) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x247 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (13:16:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (12:16:3) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x9f Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (21:4:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (20:4:7) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xa1 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (21:4:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (20:4:7) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x2f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (20:6:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (19:6:6) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x201 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:17:3) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xf1 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:15:5) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (19:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (18:10:3) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x1ff Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:17:3) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (14:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (13:18:0) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (24:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (23:7:1) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x18f Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:18:2) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (24:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (23:7:1) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x251 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (6:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (5:25:1) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x191 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (10:18:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (9:18:4) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x18f Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (10:18:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (9:18:4) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x24f Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (6:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (5:25:1) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x419 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (20:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (19:11:1) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x191 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:18:2) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x2c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:8:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:8:6) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x417 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (20:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (19:11:1) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x281 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (14:17:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (13:17:1) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x27f Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (14:17:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (13:17:1) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (14:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (13:18:0) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (20:2:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (19:2:10) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x1c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (9:22:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (8:22:1) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3af Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (20:2:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (19:2:10) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x419 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:13:1) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (9:23:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (8:23:0) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x5a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (19:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (18:13:0) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x249 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (13:17:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (12:17:2) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x5a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (19:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (18:13:0) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x247 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (13:17:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (12:17:2) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x241 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (11:19:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (10:19:2) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x417 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:13:1) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x23f Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (11:19:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (10:19:2) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x301 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:19:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:19:1) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xc7 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (14:15:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (13:15:3) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xc9 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (14:15:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (13:15:3) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x32f Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (21:6:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (20:6:5) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (9:23:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (8:23:0) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x287 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:11:3) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x127 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (11:15:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (10:15:6) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x2df Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:19:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:19:1) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x2e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:19:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:19:1) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x107 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (13:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (12:14:5) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x109 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (13:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (12:14:5) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x241 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (9:19:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (8:19:4) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x23f Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (9:19:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (8:19:4) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x289 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:11:3) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (17:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (16:15:0) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x129 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (11:15:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (10:15:6) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (17:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (16:15:0) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:12:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:12:2) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x5cf Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:20:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:20:0) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x5d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:20:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:20:0) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xc9 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:17:3) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xc7 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:17:3) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (21:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (20:9:2) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:12:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:12:2) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x1bf Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (13:17:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (12:17:2) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x291 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:18:2) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x2b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (22:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (21:10:0) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x2e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (11:16:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (10:16:5) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x2df Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (11:16:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (10:16:5) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x2b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (22:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (21:10:0) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x2ff Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (20:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (19:9:3) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x52f Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (11:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (10:21:0) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x301 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (20:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (19:9:3) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x531 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (11:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (10:21:0) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x2a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (17:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (16:11:4) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x1c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (13:17:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (12:17:2) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x28f Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:18:2) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x289 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (14:15:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (13:15:3) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x2a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (17:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (16:11:4) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x187 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (14:16:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (13:16:2) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x189 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (14:16:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (13:16:2) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x287 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (14:15:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (13:15:3) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x18f Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (13:16:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (12:16:3) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x191 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (13:16:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (12:16:3) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x289 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:11:3) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x201 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:18:2) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x397 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (17:7:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (16:7:8) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x247 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:17:3) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x249 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:17:3) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x1ff Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:18:2) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x2c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:11:3) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x2c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:11:3) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x1a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (9:21:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (8:21:2) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x1a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (9:21:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (8:21:2) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x399 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (17:7:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (16:7:8) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x287 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:11:3) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x419 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (21:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (20:10:1) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x417 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (21:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (20:10:1) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x67 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (16:8:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (15:8:8) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x69 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (16:8:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (15:8:8) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x1cf Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (13:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (12:14:5) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x291 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:18:2) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x1d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (13:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (12:14:5) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x28f Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:18:2) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x28f Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (14:17:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (13:17:1) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (21:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (20:9:2) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x249 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (13:16:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (12:16:3) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x11f Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:10:4) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x121 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:10:4) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x177 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (16:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (15:12:4) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x179 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (16:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (15:12:4) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x1a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (10:18:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (9:18:4) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x1a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (10:18:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (9:18:4) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x5a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (17:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (16:15:0) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x129 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (11:15:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (10:15:6) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x5a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (17:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (16:15:0) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x209 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (11:19:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (10:19:2) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x291 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (14:17:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (13:17:1) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x207 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (11:19:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (10:19:2) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:3:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:3:11) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x2ff Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:13:1) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3af Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:3:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:3:11) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x301 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:13:1) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x31f Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (23:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (22:6:3) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x419 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:14:0) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x29f Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (10:22:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (9:22:0) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x2a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (10:22:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (9:22:0) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x201 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (6:23:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (5:23:3) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x239 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (11:19:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (10:19:2) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x111 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (16:10:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (15:10:6) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (15:13:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (14:13:4) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x10f Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (16:10:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (15:10:6) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x127 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (11:15:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (10:15:6) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x129 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:15:5) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x321 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (23:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (22:6:3) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x1c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (13:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (12:19:0) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x1c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (13:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (12:19:0) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x46f Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:9:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:9:5) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x237 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (11:19:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (10:19:2) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (15:13:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (14:13:4) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x471 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:9:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:9:5) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (13:4:15) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (12:4:15) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xef Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (13:15:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (12:15:4) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (19:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (18:12:1) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x127 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:15:5) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x19f Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (8:21:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (7:21:3) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x417 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:14:0) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x1a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (8:21:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (7:21:3) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x439 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:12:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:12:2) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x1ff Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (6:23:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (5:23:3) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (17:3:12) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (16:3:12) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x329 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (20:6:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (19:6:6) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x437 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:12:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:12:2) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x2a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:10:4) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x327 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (20:6:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (19:6:6) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x39f Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (13:4:15) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (12:4:15) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xf1 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (13:15:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (12:15:4) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x2a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:10:4) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (19:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (18:12:1) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x39f Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (17:3:12) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (16:3:12) Lost Hammers/(Refresh:Access): 32 (1:31) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x29f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (13:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (12:18:0) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x11f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (21:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (20:8:2) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x121 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (21:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (20:8:2) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x2a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (13:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (12:18:0) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x1f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (14:13:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (13:13:4) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x2ff Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (15:15:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (14:15:1) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x1f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (14:13:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (13:13:4) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xc1 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (16:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (15:10:5) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x531 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (10:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (9:21:0) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xdf Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (20:5:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (19:5:6) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x301 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (15:15:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (14:15:1) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xe1 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (20:5:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (19:5:6) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xbf Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (16:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (15:10:5) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xe7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (21:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (20:7:3) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x297 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (8:22:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (7:22:1) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x17f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (15:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (14:13:3) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x247 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (9:21:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (8:21:1) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x181 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (15:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (14:13:3) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x1d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (10:16:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (9:16:5) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x299 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (8:22:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (7:22:1) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x221 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (7:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (6:22:2) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x21f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (7:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (6:22:2) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x5a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (17:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (16:14:0) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x1d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (13:15:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (12:15:3) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x1d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (13:15:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (12:15:3) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x2c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (17:9:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (16:9:5) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x189 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (11:16:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (10:16:4) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x81 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (14:8:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (13:8:9) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x7f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (14:8:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (13:8:9) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x52f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (10:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (9:21:0) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xbf Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (21:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (20:6:4) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (19:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (18:8:4) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x5a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (17:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (16:14:0) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (19:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (18:8:4) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xc1 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (21:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (20:6:4) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xc7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (16:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (15:12:3) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xc9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (16:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (15:12:3) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x181 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (11:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (10:17:3) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x1cf Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (10:18:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (9:18:3) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xc7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (19:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (18:8:4) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xc9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (19:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (18:8:4) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x1d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (10:18:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (9:18:3) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x1cf Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (12:12:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (11:12:7) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x1d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (12:12:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (11:12:7) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x1d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (11:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (10:18:2) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x1cf Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (11:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (10:18:2) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xe9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (21:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (20:7:3) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x1d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (11:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (10:18:2) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x5d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (13:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (12:18:0) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x5cf Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (13:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (12:18:0) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x2c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (17:9:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (16:9:5) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x17f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (11:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (10:17:3) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (13:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (12:18:0) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x2c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (15:15:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (14:15:1) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (13:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (12:18:0) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x291 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (11:19:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (10:19:1) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x489 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (18:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (17:11:2) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x28f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (11:19:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (10:19:1) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x177 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (16:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (15:11:4) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x487 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (18:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (17:11:2) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x179 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (16:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (15:11:4) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x181 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (16:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (15:13:2) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x11f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (21:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (20:8:2) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x1c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (13:16:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (12:16:2) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x121 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (21:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (20:8:2) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (21:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (20:7:3) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (21:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (20:7:3) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x10f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (15:7:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (14:7:9) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (10:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (9:21:0) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x111 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (15:7:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (14:7:9) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x531 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (9:22:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (8:22:0) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x52f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (9:22:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (8:22:0) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x101 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (15:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (14:12:4) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x2c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (15:15:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (14:15:1) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x17f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (16:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (15:13:2) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x1f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (16:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (15:11:4) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x397 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (16:7:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (15:7:8) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xff Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (15:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (14:12:4) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x399 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (16:7:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (15:7:8) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x107 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (15:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (14:13:3) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x109 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (15:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (14:13:3) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x1f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (16:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (15:11:4) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x1a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (10:17:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (9:17:4) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x19f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (10:17:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (9:17:4) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x289 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (18:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (17:10:3) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x10f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (13:8:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (12:8:10) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x1cf Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (10:16:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (9:16:5) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x139 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (14:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (13:15:2) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x137 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (14:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (13:15:2) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x249 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (9:21:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (8:21:1) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (17:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (16:13:1) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x531 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (9:22:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (8:22:0) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x1d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (11:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (10:18:2) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (17:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (16:13:1) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x287 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (18:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (17:10:3) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x1c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (9:21:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (8:21:1) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x1c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (9:21:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (8:21:1) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x1cf Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (14:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (13:14:3) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x1d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (14:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (13:14:3) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x111 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (13:8:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (12:8:10) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x1c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (10:20:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (9:20:1) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x52f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (9:22:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (8:22:0) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x1c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (10:20:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (9:20:1) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x52f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (8:23:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (7:23:0) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x531 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (8:23:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (7:23:0) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x109 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (16:14:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (15:14:1) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x107 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (16:14:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (15:14:1) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (17:12:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (16:12:2) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x209 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (8:21:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (7:21:2) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x207 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (8:21:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (7:21:2) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x1bf Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (13:16:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (12:16:2) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x11f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (20:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (19:9:2) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x1ff Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (10:17:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (9:17:4) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x201 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (10:17:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (9:17:4) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (10:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (9:21:0) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x121 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (20:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (19:9:2) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (17:12:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (16:12:2) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x1e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (12:18:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (11:18:1) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x2f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (17:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (16:10:4) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x32f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (21:3:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (20:3:7) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x1cf Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (11:16:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (10:16:4) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x2c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (17:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (16:13:1) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x1d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (11:16:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (10:16:4) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x1e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (12:18:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (11:18:1) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x17f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (13:14:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (12:14:4) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x181 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (13:14:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (12:14:4) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x2bf Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (17:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (16:13:1) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x287 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (15:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (14:13:3) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x289 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (15:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (14:13:3) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x237 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (12:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (11:14:5) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (10:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (9:21:0) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x31f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (19:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (18:11:1) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x531 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (7:24:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (6:24:0) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x2c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (18:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (17:10:3) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x2c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (18:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (17:10:3) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x52f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (7:24:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (6:24:0) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x399 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (15:8:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (14:8:8) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x2f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (17:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (16:10:4) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x419 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (17:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (16:14:0) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x321 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (19:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (18:11:1) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x2f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (16:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (15:12:3) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x247 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (9:21:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (8:21:1) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x1a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (17:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (16:11:3) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x2f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (16:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (15:12:3) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x2ff Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (17:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (16:13:1) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xa1 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (21:2:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (20:2:8) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x301 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (17:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (16:13:1) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x239 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (12:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (11:14:5) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x249 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (9:21:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (8:21:1) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x417 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (17:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (16:14:0) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (10:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (9:21:0) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x331 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (21:3:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (20:3:7) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x25f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (19:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (18:9:3) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x177 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (14:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (13:14:3) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x9f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (21:2:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (20:2:8) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x179 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (14:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (13:14:3) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x261 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (19:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (18:9:3) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x241 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (17:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (16:13:1) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x39f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (15:2:14) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (14:2:14) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x397 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (13:9:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (12:9:9) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x9f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (19:2:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (18:2:10) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x19f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (12:17:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (11:17:2) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x1f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (16:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (15:11:4) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x119 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (20:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (19:7:4) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x2ff Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (18:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (17:12:1) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x23f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (17:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (16:13:1) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x1f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (16:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (15:11:4) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x1a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (12:17:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (11:17:2) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x129 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (10:14:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (9:14:7) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x1b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (10:15:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (9:15:6) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x187 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (11:16:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (10:16:4) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x1c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (8:22:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (7:22:1) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (11:20:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (10:20:0) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x117 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (20:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (19:7:4) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (11:20:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (10:20:0) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x301 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (18:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (17:12:1) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x5a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (18:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (17:13:0) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x291 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (8:21:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (7:21:2) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x1b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (10:15:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (9:15:6) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xff Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (13:15:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (12:15:3) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xa1 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (19:2:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (18:2:10) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x1c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (8:22:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (7:22:1) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x101 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (13:15:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (12:15:3) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x127 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (10:14:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (9:14:7) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x397 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (15:8:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (14:8:8) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x5a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (18:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (17:13:0) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x121 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (20:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (19:7:4) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x28f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (8:21:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (7:21:2) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x2df Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (11:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (10:17:3) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x11f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (20:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (19:7:4) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x2e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (11:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (10:17:3) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x399 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (13:9:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (12:9:9) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x1a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (17:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (16:11:3) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (15:2:14) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (14:2:14) Lost Hammers/(Refresh:Access): 31 (1:30) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x25f Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (17:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (16:10:3) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x237 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (10:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (9:18:2) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (17:5:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (16:5:8) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x121 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (15:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (14:13:2) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x261 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (21:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (20:8:1) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x2a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (17:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (16:9:4) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x2f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (16:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (15:11:3) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x447 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (17:8:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (16:8:5) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x5cf Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (9:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (8:21:0) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x5d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (9:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (8:21:0) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xef Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (11:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (10:14:5) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xf1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (11:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (10:14:5) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x2bf Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (15:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (14:12:3) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x2f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (16:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (15:11:3) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x25f Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (15:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (14:13:2) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (21:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (20:6:3) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x261 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (15:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (14:13:2) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x501 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (10:20:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (9:20:0) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (17:5:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (16:5:8) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4ff Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (10:20:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (9:20:0) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xf9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (21:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (20:6:3) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xc1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (17:7:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (16:7:6) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x261 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (19:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (18:9:2) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x287 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (13:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (12:14:3) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x1a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (12:16:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (11:16:2) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x2ff Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (11:18:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (10:18:1) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x32f Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (20:3:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (19:3:7) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x449 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (17:8:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (16:8:5) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x69 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (20:4:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (19:4:6) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (21:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (20:6:3) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x281 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (14:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (13:16:0) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x27f Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (14:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (13:16:0) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x331 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (20:3:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (19:3:7) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x11f Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (15:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (14:13:2) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xbf Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (17:7:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (16:7:6) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x67 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (20:4:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (19:4:6) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x2c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (15:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (14:12:3) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x1a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (12:16:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (11:16:2) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x1d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (14:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (13:14:2) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x2a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (17:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (16:9:4) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x1d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (14:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (13:14:2) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x17f Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (15:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (14:10:5) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x179 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (18:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (17:10:2) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xf1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (14:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (13:12:4) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x2f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (18:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (17:8:4) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3df Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (10:14:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (9:14:6) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x1a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (12:13:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (11:13:5) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x181 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (15:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (14:10:5) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x1a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (12:13:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (11:13:5) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x571 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (11:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (10:19:0) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xef Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (14:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (13:12:4) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x177 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (18:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (17:10:2) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x471 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (21:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (20:6:3) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x179 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (13:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (12:14:3) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x131 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (10:12:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (9:12:8) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x177 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (13:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (12:14:3) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x49f Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (19:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (18:11:0) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x12f Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (10:12:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (9:12:8) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (19:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (18:11:0) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x2df Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (11:18:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (10:18:1) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x1c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (11:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (10:19:0) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x457 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (14:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (13:11:5) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x459 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (14:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (13:11:5) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x177 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (18:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (17:10:2) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x1c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (11:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (10:19:0) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x179 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (18:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (17:10:2) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x187 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (13:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (12:14:3) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x189 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (13:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (12:14:3) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x107 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (14:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (13:14:2) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x56f Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (11:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (10:19:0) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xc1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (15:7:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (14:7:8) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xe7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (16:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (15:13:1) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xbf Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (15:7:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (14:7:8) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xe9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (16:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (15:13:1) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x2e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (11:18:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (10:18:1) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x12f Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (14:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (13:11:5) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x1d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (6:19:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (5:19:5) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x2f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (16:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (15:11:3) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x2f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (20:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (19:5:5) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x2f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (16:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (15:11:3) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xaf Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (21:1:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (20:1:8) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xc9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (14:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (13:12:4) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x2b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (20:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (19:7:3) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x301 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (17:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (16:12:1) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x2ef Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (20:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (19:5:5) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x1c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (14:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (13:14:2) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x1cf Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (6:19:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (5:19:5) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x301 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (11:18:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (10:18:1) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x191 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (12:16:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (11:16:2) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x18f Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (12:16:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (11:16:2) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x25f Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (21:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (20:8:1) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (18:3:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (17:3:9) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x261 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (17:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (16:10:3) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x239 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (10:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (9:18:2) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x2c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (18:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (17:10:2) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x46f Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (21:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (20:6:3) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x109 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (14:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (13:14:2) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (12:16:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (11:16:2) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3df Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (12:16:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (11:16:2) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x2f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (18:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (17:8:4) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x2ff Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (17:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (16:12:1) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x2c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (16:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (15:13:1) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x2c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (16:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (15:13:1) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3af Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (18:3:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (17:3:9) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x131 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (14:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (13:11:5) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (10:14:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (9:14:6) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x2bf Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (18:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (17:10:2) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xb1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (21:1:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (20:1:8) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x2b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (20:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (19:7:3) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xc7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (14:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (13:12:4) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x1bf Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (14:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (13:14:2) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xc9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (11:16:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (10:16:3) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x2ef Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (19:6:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (18:6:5) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x1e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (18:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (17:10:2) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (9:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (8:21:0) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3af Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (18:2:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (17:2:10) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x277 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (16:9:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (15:9:5) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (18:2:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (17:2:10) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x67 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (18:5:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (17:5:7) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x279 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (16:9:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (15:9:5) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x2e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (22:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (21:7:1) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x2e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (22:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (21:7:1) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (9:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (8:21:0) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x117 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (16:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (15:10:4) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x2f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (19:6:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (18:6:5) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x69 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (18:5:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (17:5:7) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x331 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (19:6:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (18:6:5) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x317 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (14:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (13:12:4) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xc1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (18:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (17:9:3) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x1cf Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (10:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (9:17:3) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x5cf Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (15:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (14:15:0) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xc7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (11:16:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (10:16:3) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (16:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (15:11:3) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (12:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (11:18:0) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x399 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (14:7:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (13:7:9) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xaf Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (22:1:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (21:1:7) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xb1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (22:1:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (21:1:7) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x1f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (16:12:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (15:12:2) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (12:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (11:18:0) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xaf Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (22:1:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (21:1:7) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xdf Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (20:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (19:7:3) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xe1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (20:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (19:7:3) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x1e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (18:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (17:10:2) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x181 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (15:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (14:12:3) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x1d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (10:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (9:17:3) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x1f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (16:12:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (15:12:2) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xb1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (22:1:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (21:1:7) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x28f Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (11:18:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (10:18:1) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (13:17:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (12:17:0) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (16:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (15:11:3) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (13:17:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (12:17:0) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xef Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (13:12:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (12:12:5) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x291 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (11:18:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (10:18:1) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xe7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (18:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (17:9:3) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x119 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (16:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (15:10:4) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x17f Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (15:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (14:12:3) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xe9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (19:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (18:9:2) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x2f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (13:12:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (12:12:5) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x2f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (17:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (16:9:4) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x397 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (14:7:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (13:7:9) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x2f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (17:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (16:9:4) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x1d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (13:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (12:15:2) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x1d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (13:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (12:15:2) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xe7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (19:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (18:9:2) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x25f Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (19:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (18:9:2) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x289 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (13:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (12:14:3) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xf7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (21:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (20:6:3) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x2c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (19:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (18:11:0) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xe9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (18:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (17:9:3) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x2bf Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (19:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (18:11:0) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x28f Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (7:21:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (6:21:2) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x319 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (14:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (13:12:4) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xf1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (13:12:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (12:12:5) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x189 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (14:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (13:13:3) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x187 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (14:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (13:13:3) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x32f Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (19:6:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (18:6:5) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x5d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (15:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (14:15:0) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x2f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (13:12:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (12:12:5) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x19f Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (10:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (9:15:5) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x1a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (10:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (9:15:5) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x291 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (7:21:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (6:21:2) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xbf Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (18:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (17:9:3) Lost Hammers/(Refresh:Access): 30 (1:29) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x2df Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (8:18:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (7:18:3) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x331 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (17:5:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (16:5:7) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x319 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (14:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (13:12:3) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x127 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (11:16:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (10:16:2) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3af Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (18:4:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (17:4:7) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x2a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (15:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (14:11:3) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xb1 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (23:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (22:3:3) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x1cf Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (8:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (7:21:0) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x439 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (17:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (16:10:2) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x447 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (11:12:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (10:12:6) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x509 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (11:17:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (10:17:1) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x129 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (11:16:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (10:16:2) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x449 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (11:12:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (10:12:6) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xf1 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (11:13:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (10:13:5) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x2e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (14:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (13:11:4) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xf9 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (16:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (15:12:1) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x111 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (13:9:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (12:9:7) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xf7 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (16:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (15:12:1) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x317 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (14:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (13:12:3) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x10f Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (13:9:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (12:9:7) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x5d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (14:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (13:15:0) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x291 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (10:17:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (9:17:2) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x28f Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (10:17:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (9:17:2) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x2e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (14:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (13:11:4) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x1bf Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (9:19:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (8:19:1) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x1c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (14:14:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (13:14:1) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x471 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (16:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (15:11:2) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x19f Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (6:19:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (5:19:4) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x46f Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (16:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (15:11:2) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x1d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (11:17:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (10:17:1) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x89 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (25:1:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (24:1:3) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xef Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (11:15:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (10:15:3) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x137 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (17:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (16:8:4) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x1c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (7:20:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (6:20:2) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x139 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (17:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (16:8:4) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x2a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (16:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (15:9:4) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x1d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (11:17:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (10:17:1) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x321 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (23:4:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (22:4:2) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x2a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (16:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (15:9:4) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x1c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (9:19:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (8:19:1) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x1a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (10:16:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (9:16:3) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x1cf Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (12:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (11:14:3) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x1d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (12:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (11:14:3) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x31f Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (23:4:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (22:4:2) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x399 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (13:7:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (12:7:9) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x1a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (10:16:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (9:16:3) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x1a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (6:19:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (5:19:4) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x397 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (13:7:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (12:7:9) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x507 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (11:17:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (10:17:1) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x2e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (8:18:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (7:18:3) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x41f Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (11:12:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (10:12:6) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x421 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (11:12:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (10:12:6) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x87 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (25:1:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (24:1:3) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x2df Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (8:17:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (7:17:4) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x2e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (8:17:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (7:17:4) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xaf Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (23:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (22:3:3) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (12:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (11:14:3) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3df Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (12:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (11:14:3) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x2a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (15:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (14:11:3) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x28f Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (11:15:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (10:15:3) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (20:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (19:8:1) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4ff Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (7:22:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (6:22:0) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xf1 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (11:15:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (10:15:3) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (20:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (19:8:1) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x1f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (16:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (15:11:2) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x1bf Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (14:14:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (13:14:1) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x1f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (16:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (15:11:2) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x1c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (7:20:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (6:20:2) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x501 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (7:22:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (6:22:0) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x89 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (26:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (25:1:2) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x28f Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (12:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (11:15:2) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x127 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (14:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (13:12:3) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x1f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (13:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (12:13:3) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x87 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (26:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (25:1:2) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x1f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (13:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (12:13:3) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x17f Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (9:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (8:15:5) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x181 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (9:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (8:15:5) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x69 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (21:4:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (20:4:4) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x5d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (12:17:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (11:17:0) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x5cf Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (12:17:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (11:17:0) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x189 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (13:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (12:13:3) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x291 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (12:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (11:15:2) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x187 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (13:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (12:13:3) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x181 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (13:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (12:13:3) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xc1 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (13:9:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (12:9:7) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x17f Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (13:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (12:13:3) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x287 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (15:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (14:11:3) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x289 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (15:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (14:11:3) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xbf Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (13:9:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (12:9:7) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x2f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (15:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (14:10:4) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x12f Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (13:10:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (12:10:6) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xbf Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (17:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (16:8:4) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x189 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (12:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (11:15:2) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x9f Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (16:5:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (15:5:8) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xa1 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (16:5:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (15:5:8) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4ff Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (5:24:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (4:24:0) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xc7 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (12:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (11:14:3) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x501 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (5:24:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (4:24:0) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x1c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (10:17:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (9:17:2) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x1bf Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (10:17:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (9:17:2) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4af Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (18:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (17:9:2) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x129 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (14:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (13:12:3) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (18:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (17:9:2) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xef Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (11:13:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (10:13:5) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x10f Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (14:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (13:10:5) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (13:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (12:13:3) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x247 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (6:22:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (5:22:1) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x187 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (12:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (11:15:2) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x249 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (6:22:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (5:22:1) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (13:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (12:13:3) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (23:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (22:3:3) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x111 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (14:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (13:10:5) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (23:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (22:3:3) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x67 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (21:4:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (20:4:4) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x117 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (17:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (16:10:2) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xa1 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (20:4:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (19:4:5) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x5cf Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (10:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (9:19:0) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x5a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (17:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (16:12:0) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xc1 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (17:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (16:8:4) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x117 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (18:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (17:10:1) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x119 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (17:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (16:10:2) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x43f Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (21:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (20:5:3) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x131 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (13:10:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (12:10:6) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x437 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (17:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (16:10:2) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x251 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (8:19:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (7:19:2) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x441 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (21:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (20:5:3) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xe7 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (19:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (18:6:4) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x5d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (10:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (9:19:0) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x24f Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (8:19:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (7:19:2) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xe9 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (19:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (18:6:4) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x119 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (18:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (17:10:1) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x5a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (17:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (16:12:0) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xc9 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (12:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (11:14:3) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (18:4:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (17:4:7) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x291 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (11:15:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (10:15:3) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x1d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (8:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (7:21:0) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x9f Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (20:4:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (19:4:5) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x32f Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (17:5:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (16:5:7) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x5cf Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (14:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (13:15:0) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x2f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (15:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (14:10:4) Lost Hammers/(Refresh:Access): 29 (1:28) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x321 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (18:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (17:8:2) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (13:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (12:12:3) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x1a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (14:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (13:11:3) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x137 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (15:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (14:12:1) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x31f Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (18:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (17:8:2) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (11:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (10:15:2) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x471 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (16:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (15:10:2) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x5d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (13:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (12:15:0) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x5cf Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (13:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (12:15:0) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x127 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (10:13:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (9:13:5) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x111 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (14:9:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (13:9:5) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x129 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (10:13:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (9:13:5) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x261 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (19:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (18:9:0) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x521 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (9:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (8:19:0) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x25f Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (21:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (20:5:2) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x12f Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (6:17:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (5:17:5) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (11:17:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (10:17:0) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x279 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (13:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (12:10:5) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (13:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (12:12:3) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (10:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (9:18:0) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4ff Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (10:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (9:18:0) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (10:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (9:18:0) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x46f Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (16:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (15:10:2) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x51f Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (9:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (8:19:0) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x1a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (14:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (13:11:3) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x277 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (13:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (12:10:5) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x277 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (12:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (11:12:4) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x447 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (17:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (16:9:2) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x131 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (6:17:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (5:17:5) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x49f Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (18:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (17:8:2) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x501 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (10:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (9:18:0) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xe9 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (12:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (11:14:2) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (11:17:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (10:17:0) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x1d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (10:15:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (9:15:3) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x52f Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (10:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (9:18:0) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x539 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (14:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (13:14:0) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x531 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (10:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (9:18:0) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x449 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (17:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (16:9:2) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (18:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (17:8:2) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3df Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (11:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (10:15:2) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x139 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (15:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (14:12:1) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x287 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (13:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (12:12:3) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x289 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (13:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (12:12:3) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x5cf Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (8:20:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (7:20:0) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x47f Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (8:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (7:15:5) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3af Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (18:2:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (17:2:8) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x25f Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (19:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (18:9:0) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x2c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (13:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (12:13:2) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x5d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (8:20:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (7:20:0) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x9f Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (17:3:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (16:3:8) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x1d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (10:15:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (9:15:3) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xe7 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (12:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (11:14:2) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (18:2:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (17:2:8) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x481 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (8:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (7:15:5) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x1ff Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (9:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (8:19:0) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x10f Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (14:9:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (13:9:5) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x201 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (9:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (8:19:0) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xa1 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (17:3:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (16:3:8) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x2c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (13:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (12:13:2) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x261 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (21:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (20:5:2) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x537 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (14:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (13:14:0) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x5a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (16:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (15:12:0) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x397 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (13:6:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (12:6:9) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (13:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (12:10:5) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (13:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (12:10:5) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xc7 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (10:13:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (9:13:5) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x2e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (16:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (15:10:2) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x421 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (12:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (11:13:3) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x2e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (16:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (15:10:2) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x1f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (10:13:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (9:13:5) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x399 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (13:6:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (12:6:9) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xc9 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (10:13:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (9:13:5) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x1f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (10:13:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (9:13:5) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xb1 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (20:1:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (19:1:7) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x1a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (12:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (11:13:3) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x5a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (16:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (15:12:0) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x247 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (8:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (7:18:2) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xc9 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (14:12:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (13:12:2) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x1a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (12:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (11:13:3) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xf7 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (18:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (17:9:1) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xf9 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (18:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (17:9:1) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xc7 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (14:12:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (13:12:2) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x201 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (8:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (7:18:2) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x1ff Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (8:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (7:18:2) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x1c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (9:18:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (8:18:1) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x1c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (9:18:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (8:18:1) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x287 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (13:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (12:12:3) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x261 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (17:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (16:11:0) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4af Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (17:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (16:9:2) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x289 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (13:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (12:12:3) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x2a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (16:7:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (15:7:5) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (17:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (16:9:2) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x481 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (19:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (18:6:3) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (12:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (11:13:3) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xe7 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (17:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (16:8:3) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xe9 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (17:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (16:8:3) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (12:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (11:13:3) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x289 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (12:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (11:13:3) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xc9 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (13:14:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (12:14:1) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xc7 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (13:14:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (12:14:1) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x287 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (12:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (11:13:3) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x487 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (11:13:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (10:13:4) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x279 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (12:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (11:12:4) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x489 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (11:13:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (10:13:4) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x2a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (16:7:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (15:7:5) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x41f Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (12:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (11:13:3) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xe1 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (17:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (16:8:3) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xdf Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (17:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (16:8:3) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xaf Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (20:1:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (19:1:7) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x449 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (17:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (16:7:4) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x447 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (17:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (16:7:4) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4ff Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (10:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (9:18:0) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x501 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (10:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (9:18:0) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x28f Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (10:17:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (9:17:1) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x291 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (10:17:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (9:17:1) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x5d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (8:20:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (7:20:0) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x249 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (8:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (7:18:2) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x5cf Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (8:20:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (7:20:0) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x47f Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (19:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (18:6:3) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x127 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (8:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (7:17:3) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x25f Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (17:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (16:11:0) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x1d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (12:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (11:14:2) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x449 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (18:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (17:8:2) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x111 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (17:6:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (16:6:5) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x117 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (16:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (15:9:3) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x421 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (14:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (13:11:3) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x119 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (16:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (15:9:3) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x447 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (18:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (17:8:2) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x331 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (18:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (17:6:4) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x41f Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (14:12:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (13:12:2) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x1d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (12:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (11:14:2) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x41f Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (14:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (13:11:3) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x209 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (11:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (10:15:2) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x32f Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (18:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (17:6:4) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x1d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (15:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (14:11:2) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x421 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (14:12:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (13:12:2) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x5a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (11:17:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (10:17:0) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x1d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (15:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (14:11:2) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x439 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (12:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (11:14:2) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x449 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (16:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (15:9:3) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x437 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (12:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (11:14:2) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x447 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (16:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (15:9:3) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x207 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (11:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (10:15:2) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x129 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (8:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (7:17:3) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x10f Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (17:6:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (16:6:5) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x5a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (11:17:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (10:17:0) Lost Hammers/(Refresh:Access): 28 (1:27) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x139 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (12:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (11:10:5) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x2a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (17:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (16:7:3) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x5a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (15:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (14:12:0) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x137 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (12:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (11:10:5) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x1f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (16:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (15:10:1) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x489 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (15:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (14:10:2) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x501 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (8:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (7:19:0) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x487 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (15:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (14:10:2) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x1f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (16:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (15:10:1) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (12:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (11:11:4) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x2c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (13:9:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (12:9:5) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x2f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (16:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (15:9:2) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (12:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (11:11:4) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x31f Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (19:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (18:7:1) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x2f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (16:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (15:9:2) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x5a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (15:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (14:12:0) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x321 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (19:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (18:7:1) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x89 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (24:0:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (23:0:3) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x87 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (24:0:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (23:0:3) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x2a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (17:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (16:7:3) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x32f Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (23:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (22:2:2) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xc7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (11:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (10:13:3) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xb1 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (22:0:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (21:0:5) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x1c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (12:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (11:13:2) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xaf Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (22:0:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (21:0:5) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xf7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (16:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (15:11:0) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xf9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (16:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (15:11:0) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x261 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (20:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (19:5:2) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x1c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (8:18:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (7:18:1) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4af Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (15:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (14:10:2) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x1bf Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (12:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (11:13:2) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x25f Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (17:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (16:7:3) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x25f Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (20:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (19:5:2) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x1a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (14:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (13:9:4) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x261 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (17:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (16:7:3) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x1a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (14:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (13:9:4) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x20f Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (11:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (10:14:2) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x47f Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (16:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (15:8:3) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x481 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (16:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (15:8:3) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x52f Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (11:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (10:16:0) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x1bf Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (8:18:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (7:18:1) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x2c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (13:9:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (12:9:5) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x247 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (9:16:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (8:16:2) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4ff Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (8:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (7:19:0) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x249 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (9:16:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (8:16:2) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x2df Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (13:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (12:10:4) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x2e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (13:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (12:10:4) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xc9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (11:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (10:13:3) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x211 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (11:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (10:14:2) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (9:14:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (8:14:4) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x51f Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (13:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (12:13:1) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (15:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (14:10:2) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (9:14:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (8:14:4) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x2a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (14:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (13:11:2) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x1a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (8:16:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (7:16:3) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x2a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (14:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (13:11:2) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x5cf Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (14:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (13:13:0) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x5d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (14:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (13:13:0) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x1a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (8:16:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (7:16:3) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (12:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (11:12:3) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (12:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (11:12:3) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x2e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (13:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (12:10:4) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x67 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (14:7:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (13:7:6) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x69 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (14:7:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (13:7:6) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x2df Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (13:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (12:10:4) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (17:2:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (16:2:8) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x111 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (10:9:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (9:9:8) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x521 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (13:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (12:13:1) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x10f Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (10:9:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (9:9:8) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x547 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (11:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (10:16:0) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (14:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (13:9:4) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (16:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (15:9:2) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x329 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (21:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (20:3:3) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x327 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (21:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (20:3:3) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (14:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (13:9:4) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x2b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (18:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (17:6:3) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x139 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (14:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (13:11:2) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x2b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (18:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (17:6:3) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xaf Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (22:0:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (21:0:5) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4af Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (16:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (15:9:2) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x2ef Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (17:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (16:6:4) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (11:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (10:16:0) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x277 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (16:6:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (15:6:5) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3cf Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (17:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (16:7:3) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x69 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (14:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (13:9:4) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x139 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (13:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (12:13:1) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (17:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (16:7:3) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xb1 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (22:0:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (21:0:5) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x331 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (23:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (22:2:2) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x67 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (14:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (13:9:4) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x137 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (13:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (12:13:1) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x531 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (11:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (10:16:0) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x2f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (17:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (16:6:4) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x87 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (20:3:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (19:3:4) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x189 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (11:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (10:14:2) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x279 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (16:6:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (15:6:5) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x89 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (20:3:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (19:3:4) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x187 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (11:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (10:14:2) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x2e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (14:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (13:9:4) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x2df Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (14:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (13:9:4) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x2c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (19:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (18:6:2) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x2c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (19:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (18:6:2) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x261 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (20:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (19:6:1) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x25f Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (20:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (19:6:1) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x137 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (14:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (13:11:2) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xbf Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (15:7:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (14:7:5) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x549 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (11:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (10:16:0) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xc1 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (15:7:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (14:7:5) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3af Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (17:2:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (16:2:8) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x489 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (15:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (14:9:3) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x1c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (7:20:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (6:20:0) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x1c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (10:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (9:15:2) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x547 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (12:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (11:15:0) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x12f Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (13:12:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (12:12:2) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xc7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (14:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (13:12:1) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x487 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (15:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (14:9:3) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x537 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (16:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (15:11:0) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (17:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (16:6:4) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x539 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (16:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (15:11:0) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x131 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (13:12:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (12:12:2) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x119 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (15:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (14:8:4) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x1d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (10:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (9:15:2) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x539 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (12:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (11:15:0) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x1d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (10:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (9:15:2) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x139 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (16:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (15:8:3) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x439 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (15:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (14:11:1) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x437 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (15:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (14:11:1) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x137 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (16:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (15:8:3) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xc1 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (12:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (11:11:4) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x481 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (15:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (14:10:2) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x571 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (9:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (8:18:0) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x56f Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (9:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (8:18:0) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xef Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (11:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (10:13:3) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x449 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (14:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (13:9:4) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xf1 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (11:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (10:13:3) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x47f Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (15:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (14:10:2) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x537 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (12:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (11:15:0) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x331 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (20:4:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (19:4:3) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x1d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (10:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (9:15:2) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x471 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (20:3:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (19:3:4) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x32f Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (20:4:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (19:4:3) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x447 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (14:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (13:9:4) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x1c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (7:20:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (6:20:0) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x1d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (10:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (9:15:2) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xe7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (15:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (14:11:1) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xc9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (14:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (13:12:1) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xe9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (15:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (14:11:1) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x1bf Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (10:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (9:15:2) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x549 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (12:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (11:15:0) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x277 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (16:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (15:7:4) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x46f Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (20:3:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (19:3:4) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (17:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (16:6:4) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x41f Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (12:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (11:11:4) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (11:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (10:16:0) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x421 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (12:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (11:11:4) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x129 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (12:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (11:11:4) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x1f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (13:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (12:10:4) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x5a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (13:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (12:14:0) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x5a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (13:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (12:14:0) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x127 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (12:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (11:11:4) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x1f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (13:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (12:10:4) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x117 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (15:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (14:8:4) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xbf Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (12:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (11:11:4) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x457 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (19:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (18:5:3) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x459 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (19:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (18:5:3) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x279 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (16:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (15:7:4) Lost Hammers/(Refresh:Access): 27 (1:26) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x131 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (11:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (10:10:5) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x279 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (17:4:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (16:4:5) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x277 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (17:4:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (16:4:5) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x571 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (9:17:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (8:17:0) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x12f Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (10:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (9:13:3) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xf1 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (9:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (8:15:2) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3cf Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (14:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (13:8:4) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x2df Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (8:15:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (7:15:3) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xef Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (9:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (8:15:2) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x56f Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (9:17:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (8:17:0) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x131 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (10:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (9:13:3) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x1f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (15:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (14:8:3) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x549 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (12:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (11:14:0) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (11:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (10:10:5) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (11:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (10:10:5) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x5c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (11:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (10:15:0) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x5c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (7:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (6:19:0) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x431 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (15:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (14:9:2) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4cf Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (11:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (10:11:4) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x317 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (14:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (13:11:1) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x5c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (7:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (6:19:0) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x319 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (14:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (13:11:1) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (11:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (10:10:5) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xf7 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (18:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (17:8:0) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x1e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (13:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (12:13:0) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x279 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (14:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (13:9:3) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x2e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (8:15:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (7:15:3) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x449 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (10:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (9:11:5) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x447 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (10:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (9:11:5) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x121 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (15:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (14:7:4) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x11f Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (15:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (14:7:4) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x2ef Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (17:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (16:6:3) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (16:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (15:7:3) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x2f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (17:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (16:6:3) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x1bf Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (13:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (12:13:0) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x5c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (11:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (10:15:0) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4af Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (16:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (15:7:3) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (11:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (10:13:2) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x337 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (18:3:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (17:3:5) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x327 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (21:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (20:3:2) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x1c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (13:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (12:13:0) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x327 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (18:4:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (17:4:4) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x339 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (18:3:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (17:3:5) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x12f Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (11:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (10:10:5) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x2e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (18:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (17:8:0) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x2e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (18:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (17:8:0) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x287 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (10:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (9:13:3) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xc7 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (16:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (15:7:3) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x2e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (7:15:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (6:15:4) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xc9 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (16:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (15:7:3) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x2df Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (7:15:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (6:15:4) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x289 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (10:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (9:13:3) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x317 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (13:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (12:11:2) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x1bf Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (12:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (11:14:0) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (11:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (10:11:4) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x52f Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (14:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (13:12:0) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x357 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (16:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (15:8:2) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x1a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (8:17:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (7:17:1) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x531 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (14:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (13:12:0) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x89 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (20:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (19:3:3) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x289 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (10:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (9:13:3) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x1a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (8:17:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (7:17:1) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x359 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (16:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (15:8:2) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4ff Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (4:22:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (3:22:0) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x329 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (21:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (20:3:2) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x319 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (13:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (12:11:2) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x2a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (15:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (14:9:2) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x119 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (16:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (15:6:4) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x42f Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (15:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (14:9:2) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x547 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (12:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (11:14:0) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x117 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (16:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (15:6:4) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x1d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (11:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (10:13:2) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x131 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (9:13:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (8:13:4) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (12:8:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (11:8:6) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x1d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (11:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (10:13:2) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x111 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (12:8:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (11:8:6) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (12:8:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (11:8:6) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x501 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (4:22:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (3:22:0) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x12f Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (9:13:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (8:13:4) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x137 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (13:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (12:9:4) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x139 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (13:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (12:9:4) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x277 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (14:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (13:9:3) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xf9 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (18:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (17:8:0) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4af Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (17:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (16:7:2) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (14:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (13:8:4) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x47f Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (12:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (11:10:4) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x1e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (13:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (12:13:0) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x447 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (15:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (14:7:4) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x261 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (14:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (13:10:2) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x25f Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (14:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (13:10:2) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x1f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (15:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (14:8:3) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x89 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (21:1:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (20:1:4) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x481 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (12:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (11:10:4) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (11:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (10:10:5) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x33f Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (15:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (14:7:4) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x2a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (15:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (14:9:2) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x87 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (20:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (19:3:3) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (17:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (16:7:2) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x341 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (15:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (14:7:4) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x87 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (21:1:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (20:1:4) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x287 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (10:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (9:13:3) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x449 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (15:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (14:7:4) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xb1 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (20:2:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (19:2:4) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x1c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (12:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (11:14:0) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xaf Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (20:2:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (19:2:4) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x119 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (12:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (11:11:3) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x2ff Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (13:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (12:13:0) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x48f Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (14:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (13:11:1) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x491 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (14:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (13:11:1) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x1a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (7:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (6:14:5) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x499 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (13:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (12:12:1) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x1a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (7:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (6:14:5) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x497 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (13:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (12:12:1) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x301 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (13:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (12:13:0) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x2df Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (9:13:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (8:13:4) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x117 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (12:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (11:11:3) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x549 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (11:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (10:15:0) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x137 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (11:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (10:13:2) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (17:3:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (16:3:6) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x571 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (11:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (10:15:0) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3af Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (17:3:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (16:3:6) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x10f Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (12:8:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (11:8:6) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x289 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (11:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (10:12:3) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x1d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (11:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (10:12:3) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x2e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (9:13:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (8:13:4) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x1cf Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (11:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (10:12:3) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (16:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (15:6:4) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x319 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (14:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (13:11:1) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x317 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (14:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (13:11:1) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x329 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (18:4:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (17:4:4) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (16:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (15:6:4) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x189 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (13:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (12:11:2) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4af Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (15:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (14:10:1) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (15:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (14:10:1) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x111 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (13:8:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (12:8:5) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x319 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (16:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (15:10:0) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x317 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (16:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (15:10:0) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x187 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (13:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (12:11:2) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x201 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (7:17:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (6:17:2) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x67 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (16:3:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (15:3:7) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x2bf Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (17:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (16:9:0) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x10f Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (13:8:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (12:8:5) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x489 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (18:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (17:5:3) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x487 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (18:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (17:5:3) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (11:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (10:13:2) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x139 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (11:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (10:13:2) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x2c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (17:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (16:9:0) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x56f Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (11:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (10:15:0) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x69 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (16:3:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (15:3:7) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x547 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (11:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (10:15:0) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x1ff Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (7:17:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (6:17:2) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x287 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (11:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (10:12:3) Lost Hammers/(Refresh:Access): 26 (1:25) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (17:3:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (16:3:5) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x1f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (9:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (8:13:3) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x87 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (23:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (22:1:1) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x489 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (15:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (14:7:3) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x439 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (10:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (9:15:0) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x521 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (6:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (5:19:0) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x41f Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:9:3) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x447 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (15:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (14:8:2) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x459 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:8:4) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x31f Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (19:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (18:5:1) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x457 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:8:4) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (17:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (16:6:2) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x9f Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:4:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:4:8) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x69 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (17:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (16:5:3) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3af Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (17:3:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (16:3:5) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4af Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (15:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (14:8:2) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x137 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (12:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (11:11:2) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x249 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (9:15:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (8:15:1) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x247 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (9:15:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (8:15:1) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x489 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (17:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (16:7:1) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x42f Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (17:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (16:7:1) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x571 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (9:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (8:16:0) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x487 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (15:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (14:9:1) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x131 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (9:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (8:13:3) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x2c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (16:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (15:8:1) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x67 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (17:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (16:5:3) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x2c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (16:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (15:8:1) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x439 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (17:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (16:8:0) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:8:4) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x67 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (16:5:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (15:5:4) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:9:3) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:8:4) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4ff Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (8:17:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (7:17:0) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xe7 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:11:1) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:9:3) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x449 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (15:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (14:8:2) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x69 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (16:5:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (15:5:4) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x321 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (19:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (18:5:1) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4af Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (14:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (13:9:2) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x539 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:12:0) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x89 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (23:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (22:2:0) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:8:4) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x491 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (12:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (11:11:2) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x327 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (17:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (16:5:3) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x48f Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (12:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (11:11:2) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x87 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (22:0:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (21:0:3) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x1bf Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (10:14:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (9:14:1) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x2f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (15:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (14:7:3) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x89 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (22:0:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (21:0:3) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x547 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (12:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (11:13:0) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x549 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (12:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (11:13:0) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x69 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (14:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (13:7:4) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x437 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (10:14:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (9:14:1) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xe9 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:11:1) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x12f Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:9:3) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x2ef Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (15:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (14:7:3) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x131 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (11:8:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (10:8:6) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x439 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (10:14:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (9:14:1) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x12f Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (11:8:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (10:8:6) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x89 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (24:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (23:0:1) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x1c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (10:14:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (9:14:1) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xb9 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (15:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (14:5:5) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:11:1) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x89 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (23:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (22:1:1) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x2c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (17:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (16:7:1) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (15:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (14:8:2) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x487 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (15:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (14:7:3) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x2c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (17:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (16:7:1) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x489 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (15:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (14:9:1) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (14:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (13:9:2) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4af Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:11:1) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x51f Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (6:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (5:19:0) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:8:4) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x56f Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (11:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (10:14:0) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x1f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (9:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (8:13:3) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4cf Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (12:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (11:10:3) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x317 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (12:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (11:11:2) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x319 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (12:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (11:11:2) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x131 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:9:3) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x12f Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (10:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (9:12:3) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xb7 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (15:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (14:5:5) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x329 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (17:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (16:5:3) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x131 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (10:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (9:12:3) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x87 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (23:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (22:2:0) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x67 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (14:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (13:7:4) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x1a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (5:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (4:17:3) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x139 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (11:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (10:10:4) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x2a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:11:1) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x329 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (18:3:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (17:3:4) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x69 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:4:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:4:8) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x1a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (10:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (9:12:3) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x187 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (9:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (8:14:2) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x2a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:11:1) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x119 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (14:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (13:9:2) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x501 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (8:17:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (7:17:0) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x501 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (10:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (9:15:0) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3df Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (8:16:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (7:16:1) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x327 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (18:3:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (17:3:4) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x437 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (10:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (9:15:0) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x1a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (10:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (9:12:3) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4ff Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (7:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (6:18:0) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x507 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (8:17:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (7:17:0) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x117 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (14:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (13:9:2) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x571 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (11:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (10:14:0) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x41f Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (10:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (9:13:2) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x421 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (10:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (9:13:2) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x329 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (15:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (14:5:5) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x1a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (5:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (4:17:3) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x277 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (14:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (13:8:3) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x2f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:6:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:6:6) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x279 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (14:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (13:8:3) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4cf Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (17:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (16:6:2) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x2ef Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:6:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:6:6) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xa1 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:4:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:4:8) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xe9 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (12:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (11:9:4) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xaf Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (18:1:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (17:1:6) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xe7 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (12:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (11:9:4) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x189 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (9:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (8:14:2) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x501 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (7:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (6:18:0) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x137 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (11:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (10:10:4) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x47f Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:11:1) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x571 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (11:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (10:14:0) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x67 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:4:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:4:8) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x481 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:11:1) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x87 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (24:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (23:0:1) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x537 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:12:0) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (15:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (14:5:5) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (15:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (14:5:5) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x42f Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (18:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (17:7:0) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xb1 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (18:1:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (17:1:6) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (15:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (14:10:0) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xa7 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (17:3:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (16:3:5) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (12:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (11:10:3) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x49f Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (15:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (14:10:0) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (8:16:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (7:16:1) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x431 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (18:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (17:7:0) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x421 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:9:3) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4ff Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (10:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (9:15:0) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x1bf Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (12:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (11:12:1) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xa9 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (17:3:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (16:3:5) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x531 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (9:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (8:16:0) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x487 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (17:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (16:7:1) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x1c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (12:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (11:12:1) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x52f Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (9:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (8:16:0) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x12f Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (9:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (8:13:3) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x431 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (17:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (16:7:1) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x327 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (16:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (15:7:2) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x139 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (12:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (11:11:2) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (9:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (8:12:4) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (9:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (8:12:4) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x329 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (16:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (15:7:2) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x327 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (15:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (14:5:5) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x56f Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (9:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (8:16:0) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x56f Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (11:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (10:14:0) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x437 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (17:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (16:8:0) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x509 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (8:17:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (7:17:0) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x2f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (19:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (18:5:1) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x2ef Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (19:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (18:5:1) Lost Hammers/(Refresh:Access): 25 (1:24) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xb9 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:4:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:4:6) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x317 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (12:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (11:10:2) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (12:5:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (11:5:7) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:6:4) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:5:5) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x331 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (17:3:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (16:3:4) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x277 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (11:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (10:10:3) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x5c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (12:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (11:12:0) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x321 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:9:1) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (13:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (12:7:4) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (12:5:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (11:5:7) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x361 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (17:4:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (16:4:3) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xe1 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (16:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (15:7:1) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x47f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:7:3) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:5:5) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x279 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (11:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (10:10:3) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x35f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (17:4:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (16:4:3) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x437 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (15:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (14:9:0) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x481 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:7:3) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xb7 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:4:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:4:6) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:9:1) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xdf Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (16:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (15:7:1) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x549 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (10:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (9:14:0) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x47f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (16:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (15:7:1) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (12:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (11:9:3) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x5c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (12:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (11:12:0) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x521 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:10:0) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x547 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (10:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (9:14:0) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x31f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:9:1) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x319 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (12:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (11:10:2) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x437 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (13:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (12:11:0) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x261 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (15:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (14:7:2) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x279 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (11:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (10:9:4) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x67 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (16:2:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (15:2:6) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x9f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:3:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:3:7) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xa1 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:3:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:3:7) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x131 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (11:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (10:10:3) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3af Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:3:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:3:7) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x12f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (11:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (10:10:3) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x439 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (15:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (14:9:0) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4ff Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (5:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (4:19:0) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (12:7:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (11:7:5) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (12:7:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (11:7:5) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:3:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:3:7) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x69 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (16:2:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (15:2:6) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x501 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (5:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (4:19:0) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x25f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (15:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (14:7:2) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (12:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (11:10:2) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x10f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (10:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (9:10:4) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x12f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (8:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (7:13:3) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x2c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (11:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (10:12:1) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x2c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (11:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (10:12:1) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4af Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:9:1) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x331 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (17:4:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (16:4:3) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x32f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (17:4:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (16:4:3) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4ef Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (9:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (8:15:0) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x439 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (13:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (12:11:0) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3cf Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (13:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (12:7:4) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x187 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (10:12:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (9:12:2) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (16:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (15:5:3) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x189 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (10:12:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (9:12:2) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (12:6:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (11:6:6) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:6:4) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3cf Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (16:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (15:5:3) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (12:6:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (11:6:6) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (9:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (8:15:0) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x481 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (16:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (15:7:1) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xb1 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (19:1:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (18:1:4) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3ef Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (15:3:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (14:3:6) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xe7 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:9:1) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x277 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (11:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (10:9:4) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x131 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (8:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (7:13:3) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (12:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (11:10:2) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x111 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (10:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (9:10:4) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (15:3:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (14:3:6) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x51f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:10:0) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xe9 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:9:1) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (13:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (12:9:2) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x317 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (16:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (15:5:3) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x571 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (10:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (9:14:0) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x56f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (10:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (9:14:0) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x319 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (16:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (15:5:3) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x571 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (10:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (9:14:0) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (15:3:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (14:3:6) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (12:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (11:8:4) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x12f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:5:5) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x131 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:5:5) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xaf Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (19:1:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (18:1:4) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x32f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (18:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (17:3:3) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xc1 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (13:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (12:9:2) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x331 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (18:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (17:3:3) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x56f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (8:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (7:16:0) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x489 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (17:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (16:5:2) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (16:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (15:7:1) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (16:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (15:7:1) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x571 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (8:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (7:16:0) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x5d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (10:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (9:14:0) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x5cf Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (10:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (9:14:0) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x117 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (10:12:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (9:12:2) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x119 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (10:12:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (9:12:2) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x49f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (17:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (16:5:2) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x359 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (15:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (14:8:1) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x471 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (15:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (14:8:1) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xbf Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (13:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (12:9:2) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4cf Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (12:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (11:9:3) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (12:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (11:9:3) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x357 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (15:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (14:8:1) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (8:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (7:16:0) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x331 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (18:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (17:3:3) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (13:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (12:10:1) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x509 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (6:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (5:18:0) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3af Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (15:3:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (14:3:6) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x56f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (11:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (10:13:0) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x49f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (13:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (12:10:1) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x32f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (18:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (17:3:3) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x547 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (8:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (7:16:0) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x571 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (11:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (10:13:0) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x507 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (6:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (5:18:0) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (16:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (15:6:2) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x549 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (8:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (7:16:0) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x5c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (10:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (9:14:0) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x447 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (16:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (15:6:2) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x46f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (15:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (14:8:1) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x5c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (10:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (9:14:0) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3ef Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (16:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (15:6:2) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x497 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (12:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (11:9:3) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x449 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (16:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (15:6:2) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x447 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (18:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (17:3:3) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x449 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (18:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (17:3:3) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x67 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (16:4:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (15:4:4) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x42f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (16:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (15:8:0) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x499 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (12:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (11:9:3) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4ef Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (8:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (7:16:0) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4ff Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (9:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (8:15:0) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x457 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (13:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (12:9:2) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x69 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (16:4:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (15:4:4) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x459 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (13:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (12:9:2) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4cf Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (9:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (8:11:4) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x42f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:8:2) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x5c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (11:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (10:13:0) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x117 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:8:2) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (12:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (11:8:4) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x5c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (11:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (10:13:0) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x119 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:8:2) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x431 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:8:2) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xa9 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:3:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:3:7) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (9:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (8:11:4) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x2e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:10:0) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x459 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (12:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (11:8:4) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x501 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (9:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (8:15:0) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xa9 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:3:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:3:7) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xa7 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:3:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:3:7) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x487 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (17:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (16:5:2) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x56f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (10:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (9:14:0) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x431 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (16:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (15:8:0) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x549 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (8:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (7:16:0) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xa7 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:3:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:3:7) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x457 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (12:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (11:8:4) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x547 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (8:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (7:16:0) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x487 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (17:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (16:5:2) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xa1 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (16:3:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (15:3:5) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x9f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (16:3:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (15:3:5) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x2e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:10:0) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (16:3:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (15:3:5) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (16:3:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (15:3:5) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (17:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (16:5:2) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x489 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (17:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (16:5:2) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x2e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (13:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (12:10:1) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (12:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (11:9:3) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x2e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (13:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (12:10:1) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x457 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:8:2) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (13:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (12:9:2) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x32f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (17:3:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (16:3:4) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x459 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:8:2) Lost Hammers/(Refresh:Access): 24 (1:23) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x5c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (10:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (9:13:0) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4cf Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:10:2) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x317 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (15:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (14:5:3) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x42f Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (14:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (13:9:0) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x431 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (14:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (13:9:0) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x449 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (13:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (12:8:2) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (14:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (13:7:2) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x32f Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (16:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (15:5:2) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x471 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (16:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (15:6:1) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x521 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (10:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (9:13:0) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x42f Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (16:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (15:6:1) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x431 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (16:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (15:6:1) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x539 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (9:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (8:14:0) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x41f Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:11:1) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x2e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:8:4) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x329 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (14:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (13:6:3) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x2e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:8:4) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x327 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (14:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (13:6:3) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x50f Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (4:18:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (3:18:1) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:10:2) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x32f Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (14:4:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (13:4:5) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x319 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (15:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (14:5:3) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x421 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:11:1) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x511 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (4:18:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (3:18:1) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (15:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (14:5:3) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x537 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (9:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (8:14:0) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x471 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:7:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:7:5) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x5c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (10:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (9:13:0) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x331 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (14:4:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (13:4:5) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (15:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (14:5:3) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x5c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (6:17:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (5:17:0) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x2e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (15:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (14:7:1) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x487 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (16:4:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (15:4:3) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x491 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (10:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (9:10:3) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x5c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (6:17:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (5:17:0) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x48f Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (10:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (9:10:3) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x337 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (16:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (15:5:2) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x549 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (10:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (9:13:0) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x339 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (16:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (15:5:2) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x461 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (13:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (12:5:5) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x42f Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (12:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (11:11:0) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x2e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (15:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (14:7:1) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x379 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (19:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (18:4:0) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x2f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (18:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (17:4:1) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x377 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (19:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (18:4:0) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xb1 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (17:1:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (16:1:5) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (13:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (12:6:4) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x2f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (18:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (17:4:1) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x51f Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (10:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (9:13:0) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4cf Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (13:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (12:6:4) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x431 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (12:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (11:11:0) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x547 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (10:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (9:13:0) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (8:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (7:15:0) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x459 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (13:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (12:8:2) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x459 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (18:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (17:3:2) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x46f Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (16:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (15:6:1) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x317 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (15:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (14:5:3) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xe9 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (10:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (9:9:4) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x319 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (15:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (14:5:3) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x41f Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (15:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (14:8:0) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (8:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (7:15:0) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x45f Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (13:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (12:5:5) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xaf Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (17:1:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (16:1:5) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x45f Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (13:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (12:8:2) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x331 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (16:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (15:5:2) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x457 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (18:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (17:3:2) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x46f Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:7:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:7:5) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x10f Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (6:11:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (5:11:6) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x111 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (6:11:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (5:11:6) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x489 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (16:4:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (15:4:3) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xe7 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (10:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (9:9:4) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x509 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (4:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (3:19:0) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x507 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (4:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (3:19:0) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (14:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (13:7:2) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x139 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (15:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (14:7:1) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x137 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (15:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (14:7:1) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (8:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (7:13:2) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x499 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (15:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (14:8:0) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x5c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (8:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (7:15:0) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x447 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (13:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (12:8:2) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:11:1) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4cf Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (8:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (7:13:2) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xe7 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:11:1) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x497 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (15:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (14:8:0) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x187 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (10:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (9:10:3) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x501 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (8:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (7:15:0) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x549 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (12:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (11:11:0) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x56f Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (10:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (9:13:0) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x489 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (10:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (9:9:4) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x487 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (10:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (9:9:4) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (14:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (13:7:2) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x481 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (8:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (7:13:2) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x47f Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (8:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (7:13:2) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x87 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (18:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (17:2:3) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x49f Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:11:1) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xb9 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:6:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:6:6) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4ff Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (8:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (7:15:0) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x45f Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (14:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (13:6:3) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x87 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (22:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (21:0:1) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x511 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (4:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (3:19:0) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (12:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (11:7:4) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xb7 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:6:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:6:6) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x50f Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (4:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (3:19:0) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x2f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (14:5:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (13:5:4) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x2ef Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (14:5:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (13:5:4) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (13:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (12:8:2) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3ef Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:8:4) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x461 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (14:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (13:6:3) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x89 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (22:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (21:0:1) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (13:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (12:8:2) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4cf Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (12:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (11:7:4) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x5c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (10:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (9:13:0) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x437 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (9:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (8:14:0) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x457 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (13:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (12:8:2) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x439 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (9:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (8:14:0) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x5c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (8:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (7:15:0) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x189 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (10:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (9:10:3) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x421 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (15:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (14:8:0) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x461 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (13:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (12:8:2) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x431 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (16:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (15:6:1) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x571 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (10:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (9:13:0) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x359 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (14:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (13:6:3) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x5c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:12:0) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x41f Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:9:3) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xe9 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:11:1) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x421 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:9:3) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xe7 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:11:1) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x5b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:12:0) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x5af Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:12:0) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x489 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (16:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (15:5:2) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x357 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (14:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (13:6:3) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x5c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:12:0) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x547 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:11:1) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x2a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (13:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (12:7:3) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x42f Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (16:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (15:6:1) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x549 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:11:1) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x2a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (13:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (12:7:3) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4cf Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (14:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (13:7:2) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x481 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (8:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (7:10:5) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x47f Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (8:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (7:10:5) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x189 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:11:1) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x5c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (10:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (9:13:0) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x547 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (12:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (11:11:0) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x459 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:8:4) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x471 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (12:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (11:11:0) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:8:4) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x46f Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (12:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (11:11:0) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x457 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:8:4) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x187 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:11:1) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xe9 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:11:1) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (17:2:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (16:2:4) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x487 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (16:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (15:5:2) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x89 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (18:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (17:2:3) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3cf Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (17:2:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (16:2:4) Lost Hammers/(Refresh:Access): 23 (1:22) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (10:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (9:12:0) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (10:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (9:11:1) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x357 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (14:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (13:7:1) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x571 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (8:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (7:14:0) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x549 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:10:0) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x497 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (11:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (10:11:0) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4ff Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (8:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (7:14:0) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x2e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (10:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (9:9:3) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x56f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (8:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (7:14:0) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x357 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (14:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (13:6:2) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4cf Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (10:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (9:12:0) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x2e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (10:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (9:9:3) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (10:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (9:11:1) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x319 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (11:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (10:9:2) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x499 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (11:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (10:11:0) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x481 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:5:5) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x319 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (14:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (13:8:0) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x47f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (11:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (10:9:2) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x471 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (15:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (14:7:0) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3ef Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:8:2) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x48f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:7:3) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x1d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:9:1) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x457 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (14:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (13:5:3) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x1d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:9:1) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3ff Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (14:3:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (13:3:5) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x317 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (14:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (13:8:0) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xa1 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (11:5:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (10:5:6) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x47f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:5:5) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x459 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (14:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (13:5:3) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (8:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (7:14:0) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:8:2) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x491 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:7:3) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x46f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (15:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (14:7:0) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x359 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (14:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (13:6:2) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x521 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (10:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (9:12:0) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x33f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (11:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (10:8:3) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (15:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (14:5:2) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x341 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (11:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (10:8:3) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x9f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (11:5:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (10:5:6) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x501 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (8:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (7:14:0) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x317 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (11:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (10:9:2) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x111 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (11:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (10:7:4) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x35f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (8:12:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (7:12:2) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x361 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (8:12:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (7:12:2) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x49f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:10:0) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x359 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (14:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (13:7:1) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x481 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (11:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (10:9:2) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:10:0) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x10f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (11:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (10:7:4) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x49f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (15:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (14:5:2) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x42f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (13:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (12:9:0) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x431 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (13:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (12:9:0) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x401 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (14:3:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (13:3:5) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4ef Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (8:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (7:14:0) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (13:5:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (12:5:4) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x359 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (13:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (12:8:1) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xaf Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (17:1:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (16:1:4) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xb1 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (17:1:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (16:1:4) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x491 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:8:2) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x48f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:8:2) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x357 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (13:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (12:8:1) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x359 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (10:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (9:9:3) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4ef Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (7:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (6:15:0) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x461 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (14:4:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (13:4:4) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x45f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (14:4:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (13:4:4) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x357 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (10:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (9:9:3) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x119 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (11:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (10:10:1) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (13:5:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (12:5:4) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x117 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (11:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (10:10:1) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (14:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (13:6:2) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (13:5:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (12:5:4) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (10:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (9:10:2) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3cf Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (10:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (9:10:2) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3cf Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (11:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (10:8:3) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (13:5:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (12:5:4) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (18:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (17:4:0) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (11:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (10:8:3) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (14:4:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (13:4:4) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (14:4:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (13:4:4) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x371 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (16:4:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (15:4:2) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xc1 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (10:6:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (9:6:6) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x36f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (16:4:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (15:4:2) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xbf Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (10:6:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (9:6:6) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x549 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (7:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (6:15:0) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xa1 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (15:3:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (14:3:4) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x9f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (15:3:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (14:3:4) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xa9 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (10:6:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (9:6:6) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xa7 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (10:6:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (9:6:6) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4af Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:8:2) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:8:2) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (14:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (13:8:0) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xa1 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (14:3:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (13:3:5) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x49f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (14:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (13:8:0) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (7:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (6:15:0) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x367 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:10:0) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x331 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (15:3:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (14:3:4) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x369 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:10:0) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x32f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (15:3:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (14:3:4) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x42f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (14:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (13:8:0) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x9f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (14:3:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (13:3:5) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x5c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (9:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (8:13:0) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x5c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (9:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (8:13:0) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x457 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (13:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (12:6:3) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x459 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (13:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (12:6:3) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:6:4) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:6:4) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x41f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (11:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (10:9:2) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x45f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:7:3) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x461 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:7:3) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x369 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (13:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (12:6:3) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x367 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (13:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (12:6:3) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (14:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (13:6:2) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x439 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (13:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (12:8:1) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x137 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (13:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (12:8:1) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:5:5) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x431 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (14:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (13:8:0) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x89 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (21:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (20:0:1) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x87 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (21:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (20:0:1) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x547 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (7:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (6:15:0) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:4:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:4:6) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x547 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:10:0) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4ef Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (8:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (7:14:0) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (8:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (7:14:0) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x437 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (13:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (12:8:1) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x2ef Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (15:2:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (14:2:5) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x2e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:7:3) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x421 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (11:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (10:9:2) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x2f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (15:2:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (14:2:5) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x2e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:7:3) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x339 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (15:1:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (14:1:6) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x337 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (15:1:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (14:1:6) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x369 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:9:1) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x367 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:9:1) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x357 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (13:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (12:6:3) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x51f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (10:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (9:12:0) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x359 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (13:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (12:6:3) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x487 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:8:2) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x357 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (10:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (9:9:3) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x489 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:8:2) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x359 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (10:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (9:9:3) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x139 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (13:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (12:8:1) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x571 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (9:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (8:13:0) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x2e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (13:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (12:7:2) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x56f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (9:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (8:13:0) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xb9 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (13:5:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (12:5:4) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x2f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:5:5) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x2f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:5:5) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xb7 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (13:5:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (12:5:4) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x2e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (13:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (12:7:2) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (18:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (17:4:0) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x439 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (10:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (9:12:0) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x439 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (8:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (7:14:0) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x437 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (10:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (9:12:0) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x437 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (8:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (7:14:0) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x489 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (13:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (12:8:1) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x361 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (15:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (14:5:2) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x487 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (13:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (12:8:1) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:4:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:4:6) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x35f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (15:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (14:5:2) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3ef Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:5:5) Lost Hammers/(Refresh:Access): 22 (1:21) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xa9 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (14:3:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (13:3:4) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x451 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (14:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (13:6:1) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x33f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (12:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (11:8:1) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x42f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (17:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (16:4:0) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x359 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (17:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (16:4:0) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xa7 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (14:3:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (13:3:4) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x49f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (13:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (12:6:2) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x499 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (14:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (13:5:2) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (10:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (9:7:4) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x449 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (12:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (11:6:3) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x447 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (12:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (11:6:3) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x357 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (17:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (16:4:0) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x44f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (14:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (13:6:1) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x279 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (11:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (10:7:3) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x2f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (11:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (10:8:2) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x507 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (5:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (4:16:0) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x2ef Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (11:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (10:8:2) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (10:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (9:7:4) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x509 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (5:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (4:16:0) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x481 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (12:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (11:7:2) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x47f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (12:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (11:7:2) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (5:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (4:16:0) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x277 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (11:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (10:7:3) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x339 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (15:2:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (14:2:4) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x337 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (15:2:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (14:2:4) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x457 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (12:5:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (11:5:4) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x2e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (10:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (9:8:3) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4ef Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (5:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (4:16:0) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x471 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (14:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (13:6:1) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x431 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (17:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (16:4:0) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x46f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (14:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (13:6:1) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (13:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (12:7:1) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x2e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (10:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (9:8:3) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (13:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (12:7:1) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (13:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (12:6:2) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x341 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (12:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (11:8:1) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x459 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (12:5:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (11:5:4) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xa9 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (13:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (12:5:3) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x48f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (7:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (6:10:4) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xb9 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (7:7:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (6:7:7) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x481 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (13:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (12:6:2) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x47f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (13:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (12:6:2) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xb7 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (7:7:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (6:7:7) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x49f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (10:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (9:11:0) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x499 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (9:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (8:9:3) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4bf Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (15:4:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (14:4:2) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (10:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (9:11:0) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x507 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (4:17:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (3:17:0) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x497 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (9:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (8:9:3) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x117 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (13:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (12:6:2) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x33f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (13:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (12:6:2) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x509 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (4:17:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (3:17:0) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x5af Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (9:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (8:12:0) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x539 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (11:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (10:10:0) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x489 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (14:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (13:5:2) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xb7 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (11:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (10:5:5) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3ef Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (10:6:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (9:6:5) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (15:4:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (14:4:2) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xb9 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (11:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (10:5:5) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x491 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (10:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (9:10:1) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x491 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (9:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (8:9:3) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x119 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (13:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (12:6:2) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x5b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (9:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (8:12:0) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x2e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (13:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (12:7:1) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x447 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (9:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (8:10:2) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xa7 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (13:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (12:5:3) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x279 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (10:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (9:7:4) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x2e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (13:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (12:7:1) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x371 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (16:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (15:4:1) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x5af Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (14:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (13:7:0) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x521 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (8:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (7:12:1) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x5c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (9:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (8:12:0) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x51f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (8:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (7:12:1) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x50f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (8:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (7:13:0) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x491 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (7:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (6:10:4) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x571 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (8:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (7:13:0) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x59f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (17:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (16:4:0) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x56f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (8:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (7:13:0) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x497 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (14:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (13:5:2) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (9:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (8:12:0) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4cf Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (9:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (8:12:0) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x511 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (8:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (7:13:0) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x36f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (16:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (15:4:1) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x277 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (10:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (9:7:4) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (10:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (9:10:1) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x49f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (10:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (9:10:1) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x5c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (9:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (8:12:0) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x5b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (14:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (13:7:0) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x389 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (17:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (16:4:0) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x521 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (3:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (2:18:0) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x537 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (11:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (10:10:0) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x51f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (3:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (2:18:0) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x387 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (17:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (16:4:0) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x48f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (12:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (11:9:0) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x5a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (17:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (16:4:0) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xb7 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (9:7:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (8:7:5) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x491 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (12:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (11:9:0) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xb9 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (9:7:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (8:7:5) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x521 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (9:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (8:11:1) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x44f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (13:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (12:6:2) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x401 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (15:2:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (14:2:4) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x341 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (13:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (12:6:2) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x48f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (10:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (9:10:1) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x51f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (9:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (8:12:0) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x449 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (9:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (8:10:2) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x459 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (12:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (11:7:2) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x457 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (12:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (11:7:2) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x50f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (5:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (4:16:0) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xb7 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (9:6:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (8:6:6) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x507 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (8:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (7:12:1) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x329 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (17:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (16:2:2) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x327 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (17:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (16:2:2) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x511 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (5:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (4:16:0) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x41f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (13:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (12:7:1) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x337 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (11:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (10:6:4) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x51f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (9:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (8:11:1) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x539 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (8:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (7:13:0) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x421 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (13:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (12:7:1) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x507 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (4:17:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (3:17:0) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x509 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (4:17:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (3:17:0) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x359 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (15:4:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (14:4:2) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x359 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (12:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (11:7:2) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x357 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (15:4:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (14:4:2) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x357 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (12:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (11:7:2) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xb9 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (9:6:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (8:6:6) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x571 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (8:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (7:13:0) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x56f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (8:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (7:13:0) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x327 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (14:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (13:5:2) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x329 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (14:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (13:5:2) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x45f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (12:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (11:6:3) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xa1 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (15:1:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (14:1:5) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x471 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (13:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (12:8:0) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x9f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (15:1:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (14:1:5) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x327 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (18:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (17:2:1) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x487 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (14:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (13:5:2) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x329 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (18:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (17:2:1) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (10:6:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (9:6:5) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x2ef Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (16:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (15:2:3) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x2f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (16:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (15:2:3) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x12f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (8:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (7:10:3) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x461 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (12:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (11:6:3) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x339 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (11:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (10:6:4) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x48f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (9:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (8:9:3) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x131 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (8:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (7:10:3) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x2e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (10:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (9:10:1) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x521 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (9:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (8:12:0) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x509 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (8:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (7:12:1) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x451 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (13:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (12:6:2) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x537 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (8:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (7:13:0) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x46f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (13:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (12:8:0) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x2e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (10:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (9:10:1) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3ff Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (15:2:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (14:2:4) Lost Hammers/(Refresh:Access): 21 (1:20) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x44f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (15:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (14:5:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (4:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (3:16:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xb1 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (14:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (13:3:3) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xb7 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:6:3) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x38f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (15:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (14:5:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (9:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (8:10:1) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xb9 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:6:3) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:8:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x509 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (6:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (5:14:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x499 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:6:2) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x507 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (6:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (5:14:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4cf Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:7:2) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x5b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (9:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (8:11:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4af Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:8:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x391 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (15:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (14:5:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x499 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:8:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:7:1) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x499 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:7:2) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x277 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:7:2) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x279 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:7:2) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x431 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (15:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (14:5:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x42f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (15:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (14:5:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3ff Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (13:3:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (12:3:4) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x481 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:8:1) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x401 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (13:3:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (12:3:4) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x447 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:6:2) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x459 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (9:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (8:9:2) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x47f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:8:1) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x497 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:8:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x521 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (9:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (8:11:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x497 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:7:2) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x51f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (9:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (8:11:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x2e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (13:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (12:5:2) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x499 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:7:2) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x449 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:6:2) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x2e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (13:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (12:5:2) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x5b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (9:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (8:11:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x5c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (9:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (8:11:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x497 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:7:2) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x539 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (13:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (12:7:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x5af Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (9:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (8:11:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x537 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (13:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (12:7:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x511 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (5:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (4:15:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x491 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:8:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xaf Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (14:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (13:3:3) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xa9 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:5:3) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xa7 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:5:3) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3cf Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:8:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:8:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x451 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (15:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (14:5:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x50f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (6:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (5:14:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x511 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (6:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (5:14:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x329 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (14:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (13:3:3) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x89 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (20:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (19:0:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x327 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (14:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (13:3:3) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x50f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (5:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (4:15:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x87 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (20:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (19:0:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4ef Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (4:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (3:16:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x5c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (9:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (8:11:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x48f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:8:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x539 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:9:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4cf Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (9:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (8:10:1) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xe9 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:8:1) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xe7 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:8:1) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x507 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (5:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (4:15:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x457 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (9:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (8:9:2) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4af Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:7:1) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:6:2) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x49f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:6:2) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x509 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (5:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (4:15:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x2a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:9:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x507 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (6:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (5:14:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x389 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (16:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (15:3:1) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:8:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x387 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (16:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (15:3:1) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x5af Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:8:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3ef Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:8:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (13:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (12:7:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x381 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (14:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (13:3:3) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x37f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (15:0:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (14:0:5) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x37f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (14:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (13:3:3) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:7:1) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x2a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:9:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x371 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (13:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (12:6:1) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x5b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:8:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x381 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (15:0:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (14:0:5) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x49f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (13:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (12:7:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x277 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (9:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (8:9:2) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x279 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (9:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (8:9:2) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x521 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (7:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (6:12:1) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x371 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (13:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (12:6:1) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (10:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (9:9:1) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x36f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (13:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (12:6:1) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (10:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (9:9:1) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x51f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (7:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (6:12:1) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x50f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (4:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (3:16:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x511 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (4:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (3:16:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x50f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (4:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (3:16:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3ef Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (9:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (8:9:2) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (9:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (8:9:2) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x69 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (13:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (12:6:1) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (17:0:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (16:0:3) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (17:0:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (16:0:3) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x67 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (13:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (12:6:1) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3ff Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (13:2:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (12:2:5) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x401 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (13:2:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (12:2:5) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x537 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:9:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x369 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:7:1) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x371 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (14:4:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (13:4:2) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x471 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (13:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (12:6:1) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x189 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (7:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (6:12:1) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x537 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:9:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x36f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (14:4:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (13:4:2) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x539 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:9:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x187 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (7:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (6:12:1) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:9:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:9:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x367 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:7:1) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x509 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (6:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (5:14:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:7:1) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x36f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (13:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (12:6:1) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x421 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (8:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (7:11:1) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x457 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (13:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (12:5:2) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x187 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (7:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (6:13:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x547 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (9:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (8:11:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x189 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (7:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (6:13:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x539 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (9:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (8:11:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x537 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (9:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (8:11:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x2a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:7:2) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xb7 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:4:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:4:4) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xb9 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:4:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:4:4) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x5af Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (9:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (8:11:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x2a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:7:2) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x497 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:6:2) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3cf Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:8:1) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x51f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (10:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (9:10:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:8:1) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x549 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (6:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (5:14:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x497 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (14:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (13:5:1) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x547 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (6:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (5:14:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x49f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:8:1) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x499 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (14:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (13:5:1) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:8:1) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:7:2) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x521 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (10:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (9:10:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x38f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (16:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (15:2:2) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x511 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (4:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (3:16:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x471 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:9:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x9f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:5:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:5:4) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x391 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (16:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (15:2:2) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x46f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:9:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x46f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (13:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (12:6:1) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x41f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (8:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (7:11:1) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x459 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (13:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (12:5:2) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x59f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (16:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (15:4:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x511 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (4:15:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (3:15:1) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x549 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (9:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (8:11:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x50f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (4:15:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (3:15:1) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x5a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (16:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (15:4:0) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xa1 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:5:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:5:4) Lost Hammers/(Refresh:Access): 20 (1:19) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x439 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (9:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (8:10:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xa9 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (11:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (10:5:3) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xa7 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (11:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (10:5:3) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (6:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (5:13:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x341 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (11:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (10:7:1) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x539 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (13:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (12:6:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x48f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (6:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (5:11:2) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x451 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (12:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (11:6:1) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x36f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (10:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (9:6:3) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x33f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (11:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (10:7:1) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4ef Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (6:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (5:13:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x437 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (9:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (8:10:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x491 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (6:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (5:11:2) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xa1 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (11:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (10:5:3) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x50f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (5:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (4:14:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xa9 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (13:2:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (12:2:4) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x497 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (10:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (9:8:1) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (8:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (7:8:3) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3ef Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (11:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (10:5:3) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x499 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (10:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (9:8:1) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x511 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (5:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (4:14:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xa7 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (13:2:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (12:2:4) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x509 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (6:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (5:13:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xe9 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (9:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (8:10:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xe7 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (9:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (8:10:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x451 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (12:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (11:5:2) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x9f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (11:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (10:5:3) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x537 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (13:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (12:6:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (11:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (10:5:3) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x277 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (10:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (9:7:2) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x44f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (12:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (11:5:2) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x279 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (10:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (9:7:2) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x327 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (15:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (14:3:1) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x329 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (15:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (14:3:1) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (8:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (7:8:3) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x507 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (6:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (5:13:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x59f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (17:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (16:2:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x9f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (12:2:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (11:2:5) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x5a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (17:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (16:2:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x35f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (13:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (12:3:3) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xa1 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (12:2:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (11:2:5) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x361 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (13:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (12:3:3) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x5d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (6:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (5:13:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4ef Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (8:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (7:11:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (8:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (7:11:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x59f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (16:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (15:3:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x5a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (16:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (15:3:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x341 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (12:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (11:5:2) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x33f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (12:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (11:5:2) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x361 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (13:4:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (12:4:2) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x35f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (13:4:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (12:4:2) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xc1 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (11:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (10:7:1) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x5af Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (9:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (8:10:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xbf Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (11:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (10:7:1) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x5b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (9:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (8:10:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (9:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (8:10:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x5d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (6:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (5:13:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x511 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (4:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (3:15:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x329 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (14:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (13:5:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x551 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (9:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (8:10:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x54f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (9:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (8:10:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (10:5:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (9:5:4) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x33f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (10:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (9:9:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x341 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (10:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (9:9:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x327 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (14:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (13:5:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x389 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (12:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (11:6:1) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x50f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (4:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (3:15:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (17:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (16:1:1) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3ff Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (14:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (13:2:3) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x341 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (14:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (13:3:2) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x5af Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (9:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (8:10:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x33f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (14:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (13:3:2) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x377 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (15:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (14:2:2) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x401 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (14:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (13:2:3) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x379 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (15:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (14:2:2) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x5c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (6:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (5:13:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x5c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (6:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (5:13:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x401 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (14:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (13:2:3) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x319 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (11:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (10:7:1) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4bf Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (17:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (16:1:1) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x44f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (12:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (11:6:1) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x317 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (11:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (10:7:1) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x461 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (12:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (11:6:1) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (13:4:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (12:4:2) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x2a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (9:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (8:9:1) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (13:4:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (12:4:2) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x2a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (9:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (8:9:1) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x45f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (12:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (11:6:1) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3ff Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (14:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (13:2:3) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x391 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (14:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (13:4:1) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x38f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (14:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (13:4:1) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (9:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (8:10:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x36f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (14:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (13:5:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xa7 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (10:5:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (9:5:4) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x387 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (13:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (12:6:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xa9 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (10:5:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (9:5:4) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x49f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (11:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (10:7:1) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x537 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (12:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (11:7:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (10:5:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (9:5:4) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x51f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (9:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (8:10:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3cf Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (12:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (11:6:1) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (12:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (11:6:1) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x2e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (11:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (10:7:1) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x521 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (9:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (8:10:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x2e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (11:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (10:7:1) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (14:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (13:5:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x387 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (12:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (11:6:1) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (14:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (13:5:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x371 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (14:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (13:5:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x41f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (9:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (8:7:3) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x401 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (13:2:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (12:2:4) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x371 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (10:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (9:6:3) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x48f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (6:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (5:11:2) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x491 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (6:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (5:11:2) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3ff Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (13:2:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (12:2:4) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x349 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (14:1:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (13:1:4) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x347 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (14:1:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (13:1:4) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x389 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (17:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (16:2:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x387 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (17:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (16:2:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x387 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (15:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (14:4:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x277 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (10:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (9:6:3) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x5af Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (11:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (10:8:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x421 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (9:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (8:7:3) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x5b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (11:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (10:8:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x509 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (4:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (3:15:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x451 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (13:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (12:5:1) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x279 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (10:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (9:6:3) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x507 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (4:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (3:15:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x389 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (13:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (12:6:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x54f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (12:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (11:7:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x5c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (5:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (4:14:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x389 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (15:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (14:4:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x5c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (5:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (4:14:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x539 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (12:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (11:7:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x5b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (9:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (8:10:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x38f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (17:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (16:2:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x551 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (12:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (11:7:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x44f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (13:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (12:5:1) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x391 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (17:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (16:2:0) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (11:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (10:7:1) Lost Hammers/(Refresh:Access): 19 (1:18) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x5b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (9:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (8:9:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x36f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:6:1) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x379 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (13:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (12:4:1) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x551 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (9:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (8:8:1) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x371 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:6:1) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x431 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:7:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x551 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (10:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (9:8:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x377 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (13:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (12:4:1) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x54f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (9:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (8:8:1) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x337 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:5:2) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x42f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:7:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x339 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:5:2) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xa7 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:5:2) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x55f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:7:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4cf Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (8:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (7:9:1) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4cf Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (10:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (9:7:1) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (5:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (4:13:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4ef Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (5:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (4:13:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (8:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (7:9:1) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (10:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (9:7:1) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x561 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:7:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x341 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (12:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (11:5:1) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (14:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (13:4:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x511 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (5:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (4:13:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x44f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (10:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (9:7:1) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x50f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (5:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (4:13:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x33f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (12:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (11:5:1) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x371 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:6:1) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x451 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (10:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (9:7:1) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xa9 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:5:2) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (14:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (13:4:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x5af Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (9:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (8:9:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (7:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (6:11:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4ef Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (7:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (6:11:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x367 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:6:1) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x5af Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (7:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (6:11:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x369 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:6:1) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x5b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (7:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (6:11:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x507 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (4:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (3:14:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x54f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (10:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (9:8:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x36f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:6:1) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x509 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (4:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (3:14:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x559 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (9:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (8:9:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xa9 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (14:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (13:2:2) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (13:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (12:3:2) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (13:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (12:3:2) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x5a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (14:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (13:4:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x59f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (14:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (13:4:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x5a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (14:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (13:4:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x587 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (14:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (13:4:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x557 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (9:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (8:9:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xa7 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (14:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (13:2:2) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x5b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (9:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (8:9:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x5af Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (9:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (8:9:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x461 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:5:2) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x45f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:5:2) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:6:1) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:6:1) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x339 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:3:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:3:4) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x337 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:3:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:3:4) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x51f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (6:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (5:12:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x587 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (15:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (14:3:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x589 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (15:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (14:3:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x361 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (5:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (4:12:1) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x35f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (5:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (4:12:1) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x539 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (9:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (8:9:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x537 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (9:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (8:9:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x521 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (6:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (5:12:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (14:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (13:2:2) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x461 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:4:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:4:3) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (14:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (13:2:2) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x361 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (12:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (11:3:3) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x35f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (12:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (11:3:3) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x551 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (9:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (8:9:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x48f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (12:4:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (11:4:2) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x54f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (9:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (8:9:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x59f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (14:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (13:4:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x491 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (12:4:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (11:4:2) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xa9 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (12:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (11:5:1) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x48f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (8:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (7:8:2) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x359 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:5:2) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x357 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:5:2) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x341 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:7:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x33f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:7:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x69 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (14:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (13:2:2) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x67 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (14:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (13:2:2) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xa7 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (12:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (11:5:1) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x491 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (8:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (7:8:2) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4bf Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (15:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (14:2:1) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (15:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (14:2:1) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3cf Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:5:2) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:5:2) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x54f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (9:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (8:9:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x551 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (9:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (8:9:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x45f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:2:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:2:5) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x461 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:2:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:2:5) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x5af Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (12:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (11:6:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x589 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (14:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (13:4:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4ef Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (5:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (4:13:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (16:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (15:1:1) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4bf Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (16:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (15:1:1) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (5:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (4:13:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x45f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:4:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:4:3) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x429 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (8:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (7:8:2) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x427 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (8:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (7:8:2) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3ff Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (13:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (12:2:3) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (13:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (12:3:2) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3ef Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (13:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (12:3:2) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x5b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (12:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (11:6:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x541 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (7:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (6:11:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x53f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (7:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (6:11:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x369 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:7:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x367 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:7:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x36f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (13:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (12:3:2) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x50f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (3:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (2:15:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x359 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (17:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (16:1:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xa9 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (12:4:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (11:4:2) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xa7 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (12:4:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (11:4:2) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xa9 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (9:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (8:7:2) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x35f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (8:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (7:10:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x561 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (7:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (6:11:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x509 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (6:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (5:12:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x47f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (10:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (9:7:1) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xb9 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (9:5:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (8:5:4) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x371 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (13:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (12:3:2) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xb7 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (9:5:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (8:5:4) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x461 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (13:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (12:2:3) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (12:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (11:5:1) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3ef Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (12:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (11:5:1) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x481 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (10:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (9:7:1) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x511 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (3:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (2:15:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x507 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (6:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (5:12:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x361 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (8:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (7:10:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x55f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (7:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (6:11:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x41f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (12:4:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (11:4:2) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (8:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (7:9:1) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x491 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (6:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (5:9:3) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x38f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (13:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (12:3:2) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x521 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (4:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (3:13:1) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x48f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (6:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (5:9:3) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x391 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (13:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (12:3:2) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x421 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (12:4:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (11:4:2) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x341 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (9:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (8:9:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x51f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (4:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (3:13:1) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3cf Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (8:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (7:9:1) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x401 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (13:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (12:2:3) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x45f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (13:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (12:2:3) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x357 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (17:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (16:1:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x33f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (9:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (8:9:0) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xa7 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (9:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (8:7:2) Lost Hammers/(Refresh:Access): 18 (1:17) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (10:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (9:7:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xa7 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (12:1:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (11:1:4) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x48f Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (11:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (10:5:1) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x371 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (12:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (11:5:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (11:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (10:5:1) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3ef Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (10:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (9:7:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x511 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (3:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (2:14:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x36f Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (12:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (11:5:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xb9 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (8:5:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (7:5:4) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x327 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (13:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (12:2:2) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x387 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (15:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (14:2:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x329 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (13:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (12:2:2) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x389 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (15:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (14:2:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x5a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (13:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (12:4:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4ef Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (6:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (5:11:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3ff Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (11:2:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (10:2:4) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x401 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (11:2:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (10:2:4) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x59f Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (13:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (12:4:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (6:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (5:11:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (6:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (5:11:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x50f Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (3:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (2:14:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (9:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (8:5:3) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x5b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (11:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (10:6:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x427 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (8:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (7:7:2) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x401 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (12:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (11:2:3) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x33f Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (10:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (9:7:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x341 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (10:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (9:7:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x319 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (10:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (9:6:1) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x317 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (10:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (9:6:1) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x69 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (12:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (11:3:2) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (9:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (8:7:1) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x461 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (9:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (8:6:2) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x5af Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (11:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (10:6:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x377 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (14:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (13:2:1) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x379 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (14:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (13:2:1) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x429 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (8:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (7:7:2) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x5a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (13:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (12:4:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x59f Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (13:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (12:4:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (4:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (3:13:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (4:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (3:13:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x477 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (14:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (13:2:1) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x491 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (11:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (10:5:1) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (11:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (10:5:1) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x391 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (12:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (11:4:1) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x38f Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (12:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (11:4:1) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3ff Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (12:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (11:2:3) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (9:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (8:7:1) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x67 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (12:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (11:3:2) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (8:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (7:9:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (11:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (10:5:1) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x369 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (12:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (11:5:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (8:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (7:9:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x367 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (12:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (11:5:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xa9 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (12:1:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (11:1:4) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x479 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (14:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (13:2:1) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x457 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (11:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (10:6:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x459 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (11:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (10:6:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x45f Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (9:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (8:6:2) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x50f Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (5:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (4:12:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4df Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (15:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (14:2:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x541 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (9:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (8:8:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (12:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (11:5:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (15:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (14:2:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xb7 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (8:5:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (7:5:4) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x561 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (10:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (9:7:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (6:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (5:11:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x55f Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (10:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (9:7:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x511 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (5:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (4:12:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x451 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (10:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (9:7:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x537 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (7:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (6:10:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (10:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (9:5:2) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3cf Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (10:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (9:5:2) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x5b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (9:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (8:8:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x539 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (7:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (6:10:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (7:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (6:10:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (7:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (6:10:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x5af Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (9:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (8:8:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (12:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (11:5:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x387 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (13:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (12:4:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x389 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (13:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (12:3:1) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x387 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (13:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (12:3:1) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (9:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (8:5:3) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (11:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (10:6:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (11:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (10:6:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x53f Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (9:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (8:8:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x41f Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (7:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (6:9:1) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x421 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (7:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (6:9:1) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x339 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (12:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (11:3:2) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x35f Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (9:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (8:8:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x427 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (4:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (3:11:2) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x389 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (13:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (12:4:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x541 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (11:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (10:6:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (12:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (11:5:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x429 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (4:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (3:11:2) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x337 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (12:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (11:3:2) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x53f Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (11:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (10:6:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x44f Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (10:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (9:7:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x5d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (5:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (4:12:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x5a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (13:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (12:4:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x5af Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (9:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (8:8:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (8:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (7:9:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x361 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (10:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (9:5:2) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x55f Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (7:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (6:10:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x561 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (7:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (6:10:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x35f Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (10:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (9:5:2) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x5a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (15:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (14:2:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x59f Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (15:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (14:2:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (12:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (11:5:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (8:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (7:9:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x59f Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (13:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (12:4:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x53f Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (10:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (9:7:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (6:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (5:11:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (6:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (5:11:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x89 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (14:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (13:1:2) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x87 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (14:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (13:1:2) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x5d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (5:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (4:12:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x361 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (9:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (8:8:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x541 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (10:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (9:7:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (12:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (11:5:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4bf Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (12:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (11:5:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3cf Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (11:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (10:5:1) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3cf Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (11:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (10:5:1) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (11:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (10:5:1) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x5c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (6:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (5:11:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x497 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (10:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (9:7:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x427 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (5:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (4:10:2) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x499 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (10:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (9:7:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x429 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (5:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (4:10:2) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x5c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (6:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (5:11:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x341 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (11:4:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (10:4:2) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x549 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (7:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (6:10:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x547 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (7:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (6:10:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x33f Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (11:4:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (10:4:2) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x5b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (9:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (8:8:0) Lost Hammers/(Refresh:Access): 17 (1:16) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x569 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (16:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (15:0:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x361 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (6:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (5:9:1) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x567 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (16:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (15:0:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4ef Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (4:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (3:12:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x371 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (9:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (8:7:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (13:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (12:1:2) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x567 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (16:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (15:0:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x36f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (9:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (8:7:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x569 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (16:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (15:0:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:5:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:5:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (13:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (12:1:2) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x567 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (16:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (15:0:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x569 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (16:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (15:0:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x477 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:3:1) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x479 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:3:1) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x451 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (10:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (9:5:1) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (4:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (3:12:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (3:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (2:13:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x38f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (14:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (13:2:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (3:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (2:13:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x391 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (14:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (13:2:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x5a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (14:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (13:2:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x59f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (14:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (13:2:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (6:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (5:10:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x59f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:4:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x5a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:4:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x44f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (10:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (9:5:1) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x387 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (10:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (9:6:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x401 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:2:3) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x451 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:2:2) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3ff Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:2:3) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x429 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (7:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (6:7:2) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x44f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:2:2) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x427 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (7:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (6:7:2) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x401 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:2:3) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3ff Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:2:3) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x389 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (10:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (9:6:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x361 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:3:2) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x55f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (7:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (6:9:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x561 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (7:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (6:9:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x467 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (10:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (9:3:3) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4ef Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (4:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (3:11:1) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x429 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (9:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (8:6:1) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (4:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (3:11:1) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x337 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:0:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:0:5) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x427 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (5:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (4:10:1) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x427 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (9:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (8:6:1) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xb7 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (6:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (5:5:5) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (10:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (9:6:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:3:1) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4bf Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:3:1) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x2a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (10:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (9:5:1) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x2a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (10:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (9:5:1) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x431 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (9:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (8:7:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x369 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (8:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (7:7:1) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x42f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (9:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (8:7:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xb9 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (6:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (5:5:5) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x469 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (10:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (9:3:3) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x379 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:4:1) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x507 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (5:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (4:11:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x509 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (5:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (4:11:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (10:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (9:5:1) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3ef Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (10:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (9:5:1) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x35f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:3:1) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x361 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:3:1) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x35f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:3:2) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x387 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:4:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x337 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (9:3:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (8:3:4) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x357 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (13:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (12:2:1) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x369 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:5:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x367 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:5:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x477 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:2:2) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:0:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:0:4) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x479 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:2:2) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:0:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:0:4) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x389 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:4:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x339 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (9:3:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (8:3:4) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (6:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (5:10:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (6:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (5:10:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x359 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (13:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (12:2:1) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4bf Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (15:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (14:0:1) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (15:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (14:0:1) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (7:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (6:9:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (7:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (6:9:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x567 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (16:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (15:0:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x569 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (16:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (15:0:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x429 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (6:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (5:8:2) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x369 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (9:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (8:7:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x367 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (9:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (8:7:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x381 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (14:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (13:1:1) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x339 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:0:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:0:5) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x37f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (14:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (13:1:1) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x429 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (5:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (4:10:1) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x5a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (14:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (13:2:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x427 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (6:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (5:8:2) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x59f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (14:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (13:2:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x377 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:4:1) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x44f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:2:2) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x451 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:2:2) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x55f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (9:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (8:7:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x561 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (9:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (8:7:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x59f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:5:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x5a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:5:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x551 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (7:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (6:9:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x54f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (7:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (6:9:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x377 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:1:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:1:3) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x387 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:4:1) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:3:2) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x569 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (16:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (15:0:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:3:2) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x567 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (16:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (15:0:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x561 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (8:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (7:8:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x55f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (8:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (7:8:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x379 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:1:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:1:3) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x389 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:4:1) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x50f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (3:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (2:13:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (14:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (13:1:1) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x5a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (15:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (14:1:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x5d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (6:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (5:10:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x5d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (6:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (5:10:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x511 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (3:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (2:13:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x59f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:4:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x5a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:4:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x587 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:4:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x35f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (6:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (5:9:1) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x567 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (16:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (15:0:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:0:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:0:5) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x569 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (16:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (15:0:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3bf Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:0:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:0:5) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (6:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (5:10:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (6:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (5:10:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (6:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (5:10:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4bf Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (14:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (13:1:1) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x589 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:4:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3ff Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:2:3) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x401 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:2:3) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x391 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:5:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x38f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:5:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x54f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (8:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (7:8:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x551 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (8:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (7:8:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x59f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (15:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (14:1:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x45f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (7:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (6:6:3) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x461 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (7:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (6:6:3) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x589 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:4:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x587 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:4:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x497 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (9:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (8:7:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x499 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (9:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (8:7:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x561 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:5:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x431 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (9:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (8:7:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x5d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (7:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (6:9:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (10:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (9:6:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x55f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:5:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x5d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (7:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (6:9:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (10:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (9:6:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (10:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (9:6:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (10:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (9:5:1) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x42f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (9:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (8:7:0) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3ef Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (10:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (9:5:1) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x367 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (8:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (7:7:1) Lost Hammers/(Refresh:Access): 16 (1:15) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x497 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (6:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (5:9:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x499 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (6:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (5:9:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4bf Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (14:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (13:1:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xb9 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (7:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (6:5:3) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x579 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (7:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (6:8:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x347 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (10:1:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (9:1:4) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x351 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (10:1:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (9:1:4) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x577 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (8:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (7:7:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (14:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (13:1:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x349 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (10:1:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (9:1:4) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x391 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (10:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (9:5:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x38f Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (10:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (9:5:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x541 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (5:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (4:10:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x35f Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (5:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (4:9:1) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x55f Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (11:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (10:4:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x53f Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (5:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (4:10:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x361 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (5:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (4:9:1) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x561 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (11:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (10:4:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x569 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (15:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (14:0:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x567 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (15:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (14:0:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xb7 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (7:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (6:5:3) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x379 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (12:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (11:2:1) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x54f Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (9:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (8:6:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x551 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (9:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (8:6:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x44f Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (12:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (11:2:1) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x451 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (12:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (11:2:1) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x429 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (5:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (4:7:3) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x479 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (12:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (11:2:1) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x569 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (15:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (14:0:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x477 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (12:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (11:2:1) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x427 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (5:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (4:7:3) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x589 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (12:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (11:3:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x587 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (12:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (11:3:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x499 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (13:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (12:1:1) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x579 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (8:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (7:7:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x561 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (7:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (6:8:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x389 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (12:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (11:2:1) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x387 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (12:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (11:2:1) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x377 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (12:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (11:2:1) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x33f Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (10:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (9:5:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x341 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (10:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (9:5:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x371 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (7:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (6:7:1) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x55f Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (7:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (6:8:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x36f Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (7:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (6:7:1) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x567 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (15:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (14:0:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x497 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (13:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (12:1:1) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x34f Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (10:1:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (9:1:4) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x479 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (10:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (9:4:1) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x479 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (13:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (12:1:1) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x5d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (8:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (7:7:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x44f Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (11:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (10:4:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x469 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (10:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (9:3:2) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x467 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (10:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (9:3:2) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (10:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (9:4:1) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x451 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (9:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (8:6:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x44f Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (9:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (8:6:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (12:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (11:2:1) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (12:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (11:2:1) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3cf Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (10:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (9:4:1) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x5d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (8:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (7:7:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x477 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (13:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (12:1:1) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x477 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (10:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (9:4:1) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x44f Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (6:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (5:9:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x5e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (7:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (6:8:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x5df Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (7:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (6:8:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x577 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (7:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (6:8:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (11:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (10:4:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x579 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (8:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (7:7:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x451 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (6:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (5:9:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (10:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (9:5:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3ef Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (10:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (9:5:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x34f Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (11:1:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (10:1:3) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x391 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (13:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (12:1:1) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x567 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (15:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (14:0:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x569 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (15:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (14:0:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x401 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (10:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (9:2:3) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3ff Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (10:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (9:2:3) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (13:0:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (12:0:2) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (13:0:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (12:0:2) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (9:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (8:6:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (9:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (8:6:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x577 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (9:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (8:6:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x579 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (9:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (8:6:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x45f Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (10:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (9:5:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x577 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (8:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (7:7:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x38f Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (13:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (12:1:1) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x5d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (7:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (6:8:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x461 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (10:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (9:5:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x429 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (5:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (4:6:4) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x5d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (7:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (6:8:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x5df Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (6:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (5:9:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x427 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (5:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (4:6:4) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x5e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (6:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (5:9:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x461 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (7:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (6:6:2) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x45f Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (7:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (6:6:2) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x451 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (11:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (10:4:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x429 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (5:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (4:10:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (11:1:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (10:1:3) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x569 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (15:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (14:0:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x567 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (15:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (14:0:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x561 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (7:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (6:8:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x55f Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (7:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (6:8:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x427 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (5:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (4:10:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x341 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (6:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (5:8:1) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x33f Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (6:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (5:8:1) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x379 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (13:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (12:2:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x377 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (13:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (12:2:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x361 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (8:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (7:7:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x351 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (11:1:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (10:1:3) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x35f Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (8:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (7:7:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x387 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (12:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (11:3:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x351 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (12:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (11:1:2) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x34f Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (12:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (11:1:2) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x389 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (12:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (11:3:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x379 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (10:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (9:4:1) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x377 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (10:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (9:4:1) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x537 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (8:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (7:7:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x539 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (8:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (7:7:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x53f Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (8:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (7:7:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x541 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (8:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (7:7:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x391 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (11:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (10:4:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4bf Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (11:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (10:4:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x367 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (6:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (5:9:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x369 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (6:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (5:9:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x589 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (12:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (11:3:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x587 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (12:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (11:3:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4bf Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (11:1:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (10:1:3) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x38f Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (11:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (10:4:0) Lost Hammers/(Refresh:Access): 15 (1:14) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x551 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (6:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (5:7:1) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x567 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (14:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (13:0:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x561 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (8:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (7:6:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x541 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (6:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (5:8:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x569 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (14:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (13:0:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x54f Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (6:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (5:7:1) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x567 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (14:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (13:0:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (10:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (9:4:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (10:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (9:4:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x517 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (7:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (6:7:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x5d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (4:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (3:10:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x579 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (8:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (7:6:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x519 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (7:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (6:7:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x561 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (7:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (6:7:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x5d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (4:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (3:10:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x381 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (10:1:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (9:1:3) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x577 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (8:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (7:6:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x391 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (9:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (8:5:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x55f Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (8:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (7:6:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x37f Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (10:1:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (9:1:3) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x5d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (5:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (4:9:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x53f Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (6:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (5:8:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x519 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (5:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (4:9:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x5d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (5:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (4:9:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x429 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (4:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (3:10:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x427 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (4:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (3:10:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x55f Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (7:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (6:7:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x517 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (5:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (4:9:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x587 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (11:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (10:3:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x589 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (11:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (10:3:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x339 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (9:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (8:3:2) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x337 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (9:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (8:3:2) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x38f Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (9:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (8:5:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x569 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (14:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (13:0:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x357 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (11:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (10:2:1) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x379 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (10:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (9:2:2) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x377 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (10:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (9:2:2) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (5:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (4:9:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x5d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (4:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (3:10:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x53f Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (8:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (7:6:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x349 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (11:0:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (10:0:3) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4df Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (11:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (10:1:2) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x541 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (8:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (7:6:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (5:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (4:9:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x359 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (11:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (10:2:1) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x347 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (11:0:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (10:0:3) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x371 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (9:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (8:4:1) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (11:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (10:1:2) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x36f Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (9:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (8:4:1) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x479 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (9:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (8:4:1) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x477 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (9:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (8:4:1) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x561 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (7:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (6:7:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x577 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (9:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (8:5:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x579 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (9:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (8:5:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x5d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (4:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (3:10:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (11:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (10:3:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (11:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (10:3:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x367 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (8:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (7:6:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x369 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (8:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (7:6:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x361 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (10:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (9:3:1) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x36f Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (9:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (8:3:2) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x371 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (9:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (8:3:2) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x35f Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (10:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (9:3:1) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x5d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (7:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (6:7:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4bf Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (11:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (10:3:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (11:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (10:3:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x5d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (7:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (6:7:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x429 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (6:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (5:6:2) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x541 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (5:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (4:9:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x5e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (8:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (7:6:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x53f Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (5:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (4:9:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x5df Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (8:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (7:6:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x589 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (10:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (9:4:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x587 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (10:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (9:4:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x519 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (5:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (4:8:1) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x517 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (5:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (4:8:1) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x44f Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (7:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (6:6:1) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x577 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (9:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (8:5:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x579 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (9:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (8:5:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x451 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (7:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (6:6:1) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x579 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (9:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (8:5:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x427 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (6:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (5:6:2) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x577 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (9:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (8:5:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xb9 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (7:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (6:5:2) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x517 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (5:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (4:9:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x517 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (8:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (7:6:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x519 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (8:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (7:6:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x519 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (5:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (4:9:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x569 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (14:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (13:0:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x567 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (14:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (13:0:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x557 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (10:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (9:4:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x559 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (10:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (9:4:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x5e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (9:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (8:5:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x559 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (10:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (9:4:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x569 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (14:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (13:0:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x567 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (14:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (13:0:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x5df Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (9:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (8:5:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x557 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (10:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (9:4:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x55f Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (7:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (6:7:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (4:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (3:10:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (9:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (8:5:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x559 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (11:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (10:3:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x367 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (8:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (7:6:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x391 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (10:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (9:3:1) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x369 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (8:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (7:6:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x38f Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (10:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (9:3:1) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4df Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (11:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (10:3:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (4:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (3:10:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x54f Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (8:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (7:6:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x579 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (8:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (7:6:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x589 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (12:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (11:2:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (11:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (10:3:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x587 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (10:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (9:4:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (9:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (8:5:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x587 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (12:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (11:2:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x567 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (14:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (13:0:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x569 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (14:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (13:0:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x589 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (10:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (9:4:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x401 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (8:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (7:3:3) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x557 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (11:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (10:3:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x551 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (8:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (7:6:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xb9 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (6:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (5:6:2) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3ff Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (8:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (7:3:3) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xb7 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (6:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (5:6:2) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x53f Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (7:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (6:7:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x577 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (8:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (7:6:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x541 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (7:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (6:7:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x33f Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (8:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (7:6:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x5d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (5:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (4:9:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x5d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (5:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (4:9:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xb7 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (7:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (6:5:2) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x371 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (5:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (4:7:2) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x341 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (8:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (7:6:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x2a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (7:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (6:7:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (7:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (6:7:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x36f Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (5:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (4:7:2) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3ff Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (9:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (8:2:3) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x401 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (9:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (8:2:3) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x377 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (10:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (9:3:1) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x2a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (7:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (6:7:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x379 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (10:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (9:3:1) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (7:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (6:7:0) Lost Hammers/(Refresh:Access): 14 (1:13) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x569 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (13:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (12:0:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x5d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (5:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (4:8:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x567 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (13:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (12:0:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x519 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:5:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x517 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:5:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x349 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (9:1:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (8:1:3) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x347 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (9:1:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (8:1:3) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x561 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (6:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (5:7:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x55f Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (6:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (5:7:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4bf Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (9:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (8:3:1) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4df Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (11:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (10:1:1) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x581 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (11:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (10:2:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x57f Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (11:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (10:2:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x5df Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:5:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x5e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:5:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x391 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:5:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x5e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:5:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x351 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (10:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (9:1:2) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x34f Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (10:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (9:1:2) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (11:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (10:1:1) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x5df Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:5:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (9:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (8:3:1) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x581 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (11:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (10:2:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x579 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:5:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x369 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (4:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (3:9:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x367 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (4:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (3:9:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x38f Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:5:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (9:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (8:3:1) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x577 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:5:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4df Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (9:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (8:3:1) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (13:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (12:0:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x519 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (6:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (5:7:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x561 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (6:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (5:7:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (9:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (8:3:1) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x517 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (6:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (5:7:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (10:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (9:2:1) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (9:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (8:3:1) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x541 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:5:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4bf Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (10:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (9:2:1) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (9:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (8:3:1) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4df Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (13:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (12:0:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x53f Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:5:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:4:1) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (9:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (8:3:1) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (9:1:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (8:1:3) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x5d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (5:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (4:8:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x5d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (4:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (3:9:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x5d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (4:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (3:9:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (9:1:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (8:1:3) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x38f Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (12:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (11:1:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x57f Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (10:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (9:3:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x391 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (12:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (11:1:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x581 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (10:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (9:3:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (11:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (10:2:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x467 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (6:4:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (5:4:3) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x367 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (7:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (6:5:1) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x369 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (7:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (6:5:1) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x469 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (6:4:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (5:4:3) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x379 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (9:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (8:3:1) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x551 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (5:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (4:8:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (10:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (9:3:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (10:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (9:3:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x467 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (6:4:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (5:4:3) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x54f Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (5:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (4:8:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x469 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (6:4:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (5:4:3) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x377 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (9:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (8:3:1) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x589 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (10:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (9:3:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x55f Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (6:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (5:7:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x337 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:3:2) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x339 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:3:2) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (12:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (11:0:1) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (12:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (11:0:1) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x587 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (10:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (9:3:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4df Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:4:1) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4bf Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (11:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (10:2:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3bf Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (9:0:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (8:0:4) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:5:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x519 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (5:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (4:8:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x517 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (5:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (4:8:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x5d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (5:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (4:8:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x577 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:5:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x5e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (3:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (2:10:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x579 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:5:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x339 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:4:1) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x337 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:4:1) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x5d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (4:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (3:9:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:5:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x5d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (4:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (3:9:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (12:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (11:0:1) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (9:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (8:2:2) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (12:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (11:0:1) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (9:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (8:2:2) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x5df Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (6:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (5:7:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x387 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (12:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (11:1:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x389 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (12:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (11:1:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (11:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (10:2:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x5e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (6:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (5:7:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x53f Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (10:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (9:3:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x379 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (11:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (10:2:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x57f Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (11:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (10:2:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x377 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (11:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (10:2:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x541 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (10:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (9:3:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:4:1) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x541 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:5:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x559 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (10:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (9:3:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:4:1) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x53f Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:5:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (9:0:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (8:0:4) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x5d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (5:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (4:8:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:5:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:5:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x557 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (10:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (9:3:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x5df Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (3:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (2:10:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (11:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (10:2:0) Lost Hammers/(Refresh:Access): 13 (1:12) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x5df Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (6:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (5:6:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x429 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (3:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (2:9:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x577 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (5:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (4:7:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x339 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (7:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (6:3:2) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4df Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (10:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (9:2:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x517 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (5:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (4:6:1) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x5e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (6:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (5:6:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x469 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:3:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x337 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (7:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (6:3:2) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x589 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (10:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (9:2:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x579 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (5:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (4:7:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x467 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:3:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x467 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (7:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (6:2:3) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x469 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (7:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (6:2:3) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x477 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (8:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (7:3:1) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x479 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (8:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (7:3:1) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x349 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:0:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:0:3) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x347 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:0:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:0:3) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x5e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (6:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (5:6:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x541 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (8:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (7:4:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x589 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (7:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (6:5:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x5df Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (6:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (5:6:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x587 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (7:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (6:5:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x577 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (7:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (6:5:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x5e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (6:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (5:6:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (8:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (7:4:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (8:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (7:4:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x391 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (8:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (7:4:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x469 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:2:1) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x467 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:2:1) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x541 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (5:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (4:7:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x38f Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (8:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (7:4:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x53f Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (5:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (4:7:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x557 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (8:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (7:4:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x34f Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:1:2) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x559 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (8:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (7:4:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:0:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:0:3) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3bf Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:0:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:0:3) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x579 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (7:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (6:5:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x517 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (4:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (3:8:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x519 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (4:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (3:8:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x427 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (5:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (4:7:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x429 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (5:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (4:7:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (8:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (7:4:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (8:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (7:4:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x557 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (7:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (6:5:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x54f Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (6:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (5:6:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (6:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (5:6:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x551 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (6:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (5:6:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x427 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (3:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (2:9:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3ef Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (6:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (5:6:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x519 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (5:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (4:6:1) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x339 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (10:0:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (9:0:2) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x53f Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (8:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (7:4:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x337 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (10:0:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (9:0:2) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x559 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (7:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (6:5:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x587 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (10:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (9:2:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x517 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (6:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (5:6:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x519 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (6:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (5:6:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x381 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:0:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:0:3) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x37f Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:0:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:0:3) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x5df Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (6:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (5:6:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (10:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (9:2:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x589 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:3:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x587 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:3:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x351 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:1:2) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x377 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:2:1) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x519 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (3:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (2:9:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x57f Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:3:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x347 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (11:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (10:0:1) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x581 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:3:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x351 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (10:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (9:1:1) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x367 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (7:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (6:5:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (12:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (11:0:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x34f Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (10:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (9:1:1) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x369 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (7:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (6:5:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x349 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (11:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (10:0:1) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x379 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:2:1) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x579 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (7:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (6:5:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x587 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:3:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x577 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (7:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (6:5:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x589 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:3:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x467 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (8:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (7:2:2) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:1:2) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:0:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:0:3) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (11:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (10:1:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x559 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (8:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (7:4:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x349 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (11:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (10:0:1) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x429 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (6:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (5:6:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x427 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (6:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (5:6:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x557 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (8:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (7:4:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4bf Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (11:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (10:0:1) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x347 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (11:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (10:0:1) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (11:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (10:0:1) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x557 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (8:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (7:4:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x559 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (8:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (7:4:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (12:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (11:0:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x577 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (6:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (5:6:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:1:2) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x579 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (6:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (5:6:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (11:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (10:1:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x581 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (12:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (11:0:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x517 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (3:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (2:9:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:1:2) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x57f Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (12:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (11:0:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4df Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (11:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (10:1:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3bf Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:0:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:0:3) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x559 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (7:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (6:5:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x557 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (7:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (6:5:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x5df Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (5:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (4:7:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x5e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (5:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (4:7:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x5d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (5:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (4:7:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x347 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (11:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (10:0:1) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x349 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (11:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (10:0:1) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x577 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (5:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (4:7:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x5d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (5:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (4:7:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x579 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (5:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (4:7:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x337 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:1:2) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:1:2) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (11:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (10:1:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (11:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (10:1:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x339 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:1:2) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x587 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (8:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (7:4:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (5:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (4:7:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x589 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (8:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (7:4:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (5:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (4:7:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x469 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (8:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (7:2:2) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4df Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (11:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (10:1:0) Lost Hammers/(Refresh:Access): 12 (1:11) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x54f Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (8:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (7:3:0) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x581 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (8:2:0) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x5df Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (7:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (6:4:0) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x5e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (7:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (6:4:0) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x519 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (4:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (3:7:0) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x467 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (8:1:1) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x469 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (8:1:1) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x57f Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (8:2:0) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x517 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (4:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (3:7:0) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (10:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (9:1:0) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x551 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (8:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (7:3:0) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x349 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:0:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (8:0:2) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (8:1:1) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x351 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (8:1:1) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (10:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (9:1:0) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4df Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (8:1:1) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x57f Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (8:2:0) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (8:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (7:3:0) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (8:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (7:2:1) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (8:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (7:3:0) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x5e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (5:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (4:6:0) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x37f Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (8:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (7:1:2) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x381 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (8:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (7:1:2) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x34f Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (8:1:1) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4df Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (8:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (7:2:1) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (4:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (3:7:0) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x519 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (5:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (4:6:0) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x517 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (5:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (4:6:0) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x477 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (7:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (6:4:0) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x517 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (4:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (3:7:0) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (6:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (5:5:0) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (8:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (7:1:2) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3bf Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (8:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (7:1:2) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (6:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (5:5:0) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x477 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (6:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (5:4:1) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x519 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (4:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (3:7:0) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x479 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (6:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (5:4:1) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x479 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (7:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (6:4:0) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x54f Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (5:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (4:6:0) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x351 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:0:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (8:0:2) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x559 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (8:2:0) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (8:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (7:2:1) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x557 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (8:2:0) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x34f Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:0:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (8:0:2) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (8:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (7:1:2) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (8:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (7:2:1) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x347 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:0:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (8:0:2) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x551 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (5:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (4:6:0) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4ef Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (4:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (3:7:0) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x581 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (8:2:0) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (8:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (7:1:2) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x477 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (6:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (5:5:0) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x559 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (8:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (7:3:0) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x347 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (10:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (9:0:1) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x467 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (8:1:1) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (7:1:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (6:1:3) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x45f Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (5:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (4:5:1) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x581 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (11:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (10:0:0) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x479 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (6:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (5:3:2) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x477 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (6:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (5:3:2) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x479 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (10:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (9:0:1) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (8:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (7:1:2) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (8:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (7:2:1) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x57f Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (11:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (10:0:0) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (8:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (7:1:2) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x557 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (8:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (7:3:0) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x479 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (6:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (5:5:0) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (8:1:1) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x477 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (10:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (9:0:1) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x347 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (10:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (9:0:1) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3bf Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (8:1:1) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (6:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (5:3:2) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3bf Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (7:1:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (6:1:3) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x57f Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (8:2:0) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x559 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (8:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (7:3:0) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x349 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (10:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (9:0:1) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x5df Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (5:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (4:6:0) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (8:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (7:3:0) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (8:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (7:2:1) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x461 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (5:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (4:5:1) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x377 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (8:2:0) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (6:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (5:3:2) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x581 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (8:2:0) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x557 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (8:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (7:3:0) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (8:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (7:3:0) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x469 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (8:1:1) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x349 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (10:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (9:0:1) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x379 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (8:2:0) Lost Hammers/(Refresh:Access): 11 (1:10) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x581 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (7:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (6:3:0) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x351 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (10:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (9:0:0) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x57f Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (9:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (8:1:0) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x37f Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (8:0:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (7:0:2) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (9:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (8:0:1) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (7:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (6:1:2) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x519 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (5:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (4:5:0) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (8:0:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (7:0:2) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (8:0:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (7:0:2) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3bf Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (9:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (8:0:1) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x5e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (4:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (3:6:0) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x351 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (9:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (8:0:1) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (7:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (6:3:0) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x53f Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (6:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (5:4:0) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (10:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (9:0:0) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x541 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (6:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (5:4:0) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4df Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (7:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (6:3:0) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3bf Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (7:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (6:1:2) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (7:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (6:3:0) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x34f Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (9:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (8:0:1) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x5df Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (4:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (3:6:0) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (8:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (7:2:0) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (8:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (7:2:0) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (8:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (7:1:1) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x34f Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (10:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (9:0:0) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4df Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (10:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (9:0:0) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x581 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (9:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (8:1:0) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x559 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (6:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (5:4:0) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (7:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (6:3:0) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x57f Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (9:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (8:1:0) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4df Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (8:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (7:2:0) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x581 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (9:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (8:1:0) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x5e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (5:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (4:5:0) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x5df Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (5:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (4:5:0) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3bf Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (8:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (7:1:1) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x57f Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (8:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (7:2:0) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x469 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (6:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (5:3:1) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (9:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (8:1:0) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (9:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (8:1:0) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x381 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (8:0:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (7:0:2) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x351 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (8:0:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (7:0:2) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (8:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (7:2:0) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (9:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (8:1:0) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x477 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (6:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (5:3:1) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (9:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (8:1:0) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x34f Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (8:0:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (7:0:2) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (7:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (6:1:2) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x479 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (6:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (5:3:1) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x551 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (8:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (7:2:0) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (9:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (8:0:1) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x517 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (5:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (4:5:0) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x557 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (6:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (5:4:0) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x34f Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (8:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (7:1:1) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x581 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (8:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (7:2:0) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (9:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (8:1:0) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (9:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (8:0:1) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (9:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (8:0:1) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (9:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (8:1:0) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x581 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (6:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (5:4:0) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x57f Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (7:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (6:3:0) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3bf Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (9:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (8:0:1) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x57f Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (6:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (5:4:0) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x351 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (8:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (7:1:1) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (7:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (6:1:2) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x54f Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (8:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (7:2:0) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x467 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (6:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (5:3:1) Lost Hammers/(Refresh:Access): 10 (1:9) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x387 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (7:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (6:2:0) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (5:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (4:4:0) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (8:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (7:0:1) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (9:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (8:0:0) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (8:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (7:0:1) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x469 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (5:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (4:3:1) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x347 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (9:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (8:0:0) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (8:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (7:0:1) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x599 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (9:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (8:0:0) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (9:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (8:0:0) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (8:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (7:0:1) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (6:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (5:3:0) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (9:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (8:0:0) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (6:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (5:3:0) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (6:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (5:3:0) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (6:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (5:1:2) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x381 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (9:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (8:0:0) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4df Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (9:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (8:0:0) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3bf Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (8:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (7:1:0) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (6:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (5:3:0) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x37f Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (9:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (8:0:0) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x599 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (9:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (8:0:0) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (6:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (5:3:0) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x597 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (9:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (8:0:0) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x581 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (8:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (7:1:0) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (8:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (7:1:0) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (6:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (5:3:0) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (6:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (5:1:2) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (6:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (5:3:0) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x467 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (6:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (5:3:0) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x57f Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (8:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (7:1:0) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x381 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (8:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (7:0:1) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x469 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (6:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (5:3:0) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x37f Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (8:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (7:0:1) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x351 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (7:0:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (6:0:2) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x477 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (6:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (5:3:0) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x469 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (5:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (4:3:1) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x597 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (9:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (8:0:0) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x477 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (5:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (4:4:0) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x467 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (5:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (4:3:1) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x467 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (5:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (4:3:1) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (6:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (5:3:0) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (5:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (4:4:0) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (7:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (6:1:1) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x349 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (9:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (8:0:0) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (7:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (6:1:1) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x479 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (6:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (5:3:0) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x34f Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (7:0:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (6:0:2) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x479 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (5:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (4:4:0) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x389 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (7:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (6:2:0) Lost Hammers/(Refresh:Access): 9 (1:8) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x581 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (5:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (4:3:0) Lost Hammers/(Refresh:Access): 8 (1:7) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x57f Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (5:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (4:3:0) Lost Hammers/(Refresh:Access): 8 (1:7) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x469 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (5:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (4:2:1) Lost Hammers/(Refresh:Access): 8 (1:7) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x37f Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (7:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (6:1:0) Lost Hammers/(Refresh:Access): 8 (1:7) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (8:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (7:0:0) Lost Hammers/(Refresh:Access): 8 (1:7) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3bf Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (8:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (7:0:0) Lost Hammers/(Refresh:Access): 8 (1:7) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x591 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (8:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (7:0:0) Lost Hammers/(Refresh:Access): 8 (1:7) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x467 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (5:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (4:2:1) Lost Hammers/(Refresh:Access): 8 (1:7) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x381 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (7:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (6:0:1) Lost Hammers/(Refresh:Access): 8 (1:7) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x347 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (6:0:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (5:0:2) Lost Hammers/(Refresh:Access): 8 (1:7) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x559 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (6:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (5:2:0) Lost Hammers/(Refresh:Access): 8 (1:7) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x58f Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (8:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (7:0:0) Lost Hammers/(Refresh:Access): 8 (1:7) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (5:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (4:3:0) Lost Hammers/(Refresh:Access): 8 (1:7) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (5:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (4:3:0) Lost Hammers/(Refresh:Access): 8 (1:7) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x349 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (6:0:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (5:0:2) Lost Hammers/(Refresh:Access): 8 (1:7) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x557 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (6:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (5:2:0) Lost Hammers/(Refresh:Access): 8 (1:7) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x377 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (5:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (4:2:1) Lost Hammers/(Refresh:Access): 8 (1:7) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3bf Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (6:0:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (5:0:2) Lost Hammers/(Refresh:Access): 8 (1:7) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (8:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (7:0:0) Lost Hammers/(Refresh:Access): 8 (1:7) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x381 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (7:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (6:1:0) Lost Hammers/(Refresh:Access): 8 (1:7) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (6:0:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (5:0:2) Lost Hammers/(Refresh:Access): 8 (1:7) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (8:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (7:0:0) Lost Hammers/(Refresh:Access): 8 (1:7) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x381 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (6:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (5:1:1) Lost Hammers/(Refresh:Access): 8 (1:7) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x347 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (7:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (6:0:1) Lost Hammers/(Refresh:Access): 8 (1:7) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x37f Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (6:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (5:1:1) Lost Hammers/(Refresh:Access): 8 (1:7) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x349 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (7:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (6:0:1) Lost Hammers/(Refresh:Access): 8 (1:7) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3bf Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (6:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (5:1:1) Lost Hammers/(Refresh:Access): 8 (1:7) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (6:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (5:1:1) Lost Hammers/(Refresh:Access): 8 (1:7) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x559 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (5:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (4:3:0) Lost Hammers/(Refresh:Access): 8 (1:7) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x557 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (5:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (4:3:0) Lost Hammers/(Refresh:Access): 8 (1:7) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (8:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (7:0:0) Lost Hammers/(Refresh:Access): 8 (1:7) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x351 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (7:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (6:1:0) Lost Hammers/(Refresh:Access): 8 (1:7) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x599 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (8:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (7:0:0) Lost Hammers/(Refresh:Access): 8 (1:7) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (8:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (7:0:0) Lost Hammers/(Refresh:Access): 8 (1:7) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x379 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (5:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (4:2:1) Lost Hammers/(Refresh:Access): 8 (1:7) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (8:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (7:0:0) Lost Hammers/(Refresh:Access): 8 (1:7) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (8:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (7:0:0) Lost Hammers/(Refresh:Access): 8 (1:7) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x37f Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (7:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (6:0:1) Lost Hammers/(Refresh:Access): 8 (1:7) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (8:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (7:0:0) Lost Hammers/(Refresh:Access): 8 (1:7) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x597 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (8:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (7:0:0) Lost Hammers/(Refresh:Access): 8 (1:7) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3bf Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (7:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (6:1:0) Lost Hammers/(Refresh:Access): 8 (1:7) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x34f Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (7:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (6:1:0) Lost Hammers/(Refresh:Access): 8 (1:7) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (7:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (6:1:0) Lost Hammers/(Refresh:Access): 8 (1:7) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (8:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (7:0:0) Lost Hammers/(Refresh:Access): 8 (1:7) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x591 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (5:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (4:2:0) Lost Hammers/(Refresh:Access): 7 (1:6) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x58f Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (5:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (4:2:0) Lost Hammers/(Refresh:Access): 7 (1:6) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x591 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (5:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (4:2:0) Lost Hammers/(Refresh:Access): 7 (1:6) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x349 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (7:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (6:0:0) Lost Hammers/(Refresh:Access): 7 (1:6) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x351 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (7:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (6:0:0) Lost Hammers/(Refresh:Access): 7 (1:6) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (6:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (5:0:1) Lost Hammers/(Refresh:Access): 7 (1:6) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x37f Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (6:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (5:0:1) Lost Hammers/(Refresh:Access): 7 (1:6) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (7:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (6:0:0) Lost Hammers/(Refresh:Access): 7 (1:6) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x591 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (6:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (5:1:0) Lost Hammers/(Refresh:Access): 7 (1:6) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (7:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (6:0:0) Lost Hammers/(Refresh:Access): 7 (1:6) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x58f Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (6:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (5:1:0) Lost Hammers/(Refresh:Access): 7 (1:6) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x34f Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (7:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (6:0:0) Lost Hammers/(Refresh:Access): 7 (1:6) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x34f Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (7:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (6:0:0) Lost Hammers/(Refresh:Access): 7 (1:6) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x58f Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (5:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (4:2:0) Lost Hammers/(Refresh:Access): 7 (1:6) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x381 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (6:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (5:0:1) Lost Hammers/(Refresh:Access): 7 (1:6) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x351 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (7:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (6:0:0) Lost Hammers/(Refresh:Access): 7 (1:6) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x5e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (7:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (6:0:0) Lost Hammers/(Refresh:Access): 7 (1:6) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x58f Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (6:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (5:1:0) Lost Hammers/(Refresh:Access): 7 (1:6) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x5e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (7:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (6:0:0) Lost Hammers/(Refresh:Access): 7 (1:6) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x591 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (6:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (5:1:0) Lost Hammers/(Refresh:Access): 7 (1:6) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x381 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (4:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (3:2:1) Lost Hammers/(Refresh:Access): 7 (1:6) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x599 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (7:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (6:0:0) Lost Hammers/(Refresh:Access): 7 (1:6) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (7:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (6:0:0) Lost Hammers/(Refresh:Access): 7 (1:6) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x58f Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (6:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (5:1:0) Lost Hammers/(Refresh:Access): 7 (1:6) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x37f Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (4:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (3:2:1) Lost Hammers/(Refresh:Access): 7 (1:6) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x597 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (7:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (6:0:0) Lost Hammers/(Refresh:Access): 7 (1:6) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (6:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (5:0:1) Lost Hammers/(Refresh:Access): 7 (1:6) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x591 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (6:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (5:1:0) Lost Hammers/(Refresh:Access): 7 (1:6) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x347 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (7:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (6:0:0) Lost Hammers/(Refresh:Access): 7 (1:6) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (7:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (6:0:0) Lost Hammers/(Refresh:Access): 7 (1:6) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x469 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (5:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 6 (1:5) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x599 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (6:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 5 (5:0:0) Lost Hammers/(Refresh:Access): 6 (1:5) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x58f Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (5:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 6 (1:5) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x37f Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (4:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 5 (3:1:1) Lost Hammers/(Refresh:Access): 6 (1:5) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (6:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 5 (5:0:0) Lost Hammers/(Refresh:Access): 6 (1:5) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x599 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (5:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 6 (1:5) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x381 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (4:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 5 (3:1:1) Lost Hammers/(Refresh:Access): 6 (1:5) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x467 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (5:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 6 (1:5) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x58f Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (5:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 6 (1:5) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x591 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (5:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 6 (1:5) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x597 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (5:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 6 (1:5) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x597 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (6:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 5 (5:0:0) Lost Hammers/(Refresh:Access): 6 (1:5) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x599 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (6:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 5 (5:0:0) Lost Hammers/(Refresh:Access): 6 (1:5) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (5:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 6 (1:5) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (6:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 5 (5:0:0) Lost Hammers/(Refresh:Access): 6 (1:5) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x597 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (6:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 5 (5:0:0) Lost Hammers/(Refresh:Access): 6 (1:5) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (5:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 6 (1:5) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (6:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 5 (5:0:0) Lost Hammers/(Refresh:Access): 6 (1:5) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x599 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (6:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 5 (5:0:0) Lost Hammers/(Refresh:Access): 6 (1:5) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x597 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (6:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 5 (5:0:0) Lost Hammers/(Refresh:Access): 6 (1:5) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x591 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (5:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 6 (1:5) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (6:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 5 (5:0:0) Lost Hammers/(Refresh:Access): 6 (1:5) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x599 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x58f Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (3:1:0) Lost Hammers/(Refresh:Access): 5 (1:4) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x597 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x58f Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x5e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x599 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x597 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x597 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x591 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x599 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x58f Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (3:1:0) Lost Hammers/(Refresh:Access): 5 (1:4) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x5e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x591 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (3:1:0) Lost Hammers/(Refresh:Access): 5 (1:4) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x597 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x597 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x599 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x58f Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (3:1:0) Lost Hammers/(Refresh:Access): 5 (1:4) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x591 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (3:1:0) Lost Hammers/(Refresh:Access): 5 (1:4) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x599 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x597 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x591 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (3:1:0) Lost Hammers/(Refresh:Access): 5 (1:4) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x5e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x5e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x597 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x599 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x597 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x5e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x5e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x37f Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (3:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (2:1:1) Lost Hammers/(Refresh:Access): 5 (1:4) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x599 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x599 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x381 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (3:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (2:1:1) Lost Hammers/(Refresh:Access): 5 (1:4) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x5e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (4:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 4 (1:3) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x5e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (4:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 4 (1:3) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x5e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (4:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 4 (1:3) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x58f Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (4:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 4 (1:3) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x591 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (4:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 4 (1:3) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x5e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (4:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 4 (1:3) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x5e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (4:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 4 (1:3) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x5e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (4:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 4 (1:3) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x5e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 3 (1:2) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x5e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 3 (1:2) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x591 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 3 (1:2) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x5e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 3 (1:2) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x58f Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 3 (1:2) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x5e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 3 (1:2) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x58f Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 3 (1:2) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x5e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 3 (1:2) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x591 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 3 (1:2) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x5e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 3 (1:2) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x58f Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 3 (1:2) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x591 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 3 (1:2) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x5e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 3 (1:2) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x5e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 3 (1:2) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x5e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 3 (1:2) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x5e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 3 (1:2) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x349 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 3 (1:2) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x347 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 3 (1:2) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x5e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 3 (1:2) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x5e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 3 (1:2) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x5e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 3 (1:2) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x5e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 3 (1:2) +#################################################################################################### diff --git a/ramulator.yaml b/ramulator.yaml index 9606b30833..a395471ac6 100755 --- a/ramulator.yaml +++ b/ramulator.yaml @@ -28,7 +28,13 @@ MemorySystem: RefreshManager: impl: AllBank plugins: - - ControllerPlugin: {impl: "ChampSimStats"} + - ControllerPlugin: {impl: ChampSimStats} + - ControllerPlugin: {impl: HammerCounter, + output_file: hammer_test, + cycles_per_heartbeat: 1000000, + histogram_period: 100e-6, + refresh_period: 64e-3, + target_cycle: 0} AddrMapper: impl: RASL diff --git a/ramulator2ext/src/addr_mapper/impl/champsim_mappers.cpp b/ramulator2ext/src/addr_mapper/impl/champsim_mappers.cpp index 25830e2232..f64abb142c 100644 --- a/ramulator2ext/src/addr_mapper/impl/champsim_mappers.cpp +++ b/ramulator2ext/src/addr_mapper/impl/champsim_mappers.cpp @@ -173,12 +173,12 @@ namespace Ramulator{ // count the num of levels in our hierarchy m_num_levels = count.size(); - std::cout << "The number of levels in our hierarchy: " << m_num_levels << std::endl; + //std::cout << "The number of levels in our hierarchy: " << m_num_levels << std::endl; m_addr_bits.resize(m_num_levels); for (size_t level = 0; level < m_addr_bits.size(); level++) { m_addr_bits[level] = calc_log2(count[level]); - std::cout << "This is the number of bits in [" << level << "]: " << m_addr_bits[level] << std::endl; + //std::cout << "This is the number of bits in [" << level << "]: " << m_addr_bits[level] << std::endl; } // Last (Column) address have the granularity of the prefetch size @@ -214,28 +214,28 @@ namespace Ramulator{ //channel req.addr_vec[m_dram->m_levels("channel")] = slice_lower_bits(addr, m_addr_bits[m_dram->m_levels("channel")]); - std::cout << "This is the current address of the channel: 0x" << std::hex << req.addr_vec[m_dram->m_levels("channel")] << std::endl; + //std::cout << "This is the current address of the channel: 0x" << std::hex << req.addr_vec[m_dram->m_levels("channel")] << std::endl; //bank group if(m_dram->m_organization.count.size() > 5) req.addr_vec[m_dram->m_levels("bankgroup")] = slice_lower_bits(addr, m_addr_bits[m_dram->m_levels("bankgroup")]); - std::cout << "This is the current address of the bankgroup: 0x" << std::hex << req.addr_vec[m_dram->m_levels("bankgroup")] << std::endl; + //std::cout << "This is the current address of the bankgroup: 0x" << std::hex << req.addr_vec[m_dram->m_levels("bankgroup")] << std::endl; //bank req.addr_vec[m_dram->m_levels("bank")] = slice_lower_bits(addr, m_addr_bits[m_dram->m_levels("bank")]); - std::cout << "This is the current address of the bank: 0x" << std::hex << req.addr_vec[m_dram->m_levels("bank")] << std::endl; + //std::cout << "This is the current address of the bank: 0x" << std::hex << req.addr_vec[m_dram->m_levels("bank")] << std::endl; //column req.addr_vec[m_dram->m_levels("column")] = slice_lower_bits(addr, m_addr_bits[m_dram->m_levels("column")]); - std::cout << "This is the current address of the column: 0x" << std::hex << req.addr_vec[m_dram->m_levels("column")] << std::endl; + //std::cout << "This is the current address of the column: 0x" << std::hex << req.addr_vec[m_dram->m_levels("column")] << std::endl; //rank req.addr_vec[m_dram->m_levels("rank")] = slice_lower_bits(addr, m_addr_bits[m_dram->m_levels("rank")]); - std::cout << "This is the current address of the rank: 0x" << std::hex << req.addr_vec[m_dram->m_levels("rank")] << std::endl; + //std::cout << "This is the current address of the rank: 0x" << std::hex << req.addr_vec[m_dram->m_levels("rank")] << std::endl; //row req.addr_vec[m_dram->m_levels("row")] = slice_lower_bits(addr, m_addr_bits[m_dram->m_levels("row")]); - std::cout << "This is the current address of the row: 0x" << std::hex << req.addr_vec[m_dram->m_levels("row")] << std::endl; + //std::cout << "This is the current address of the row: 0x" << std::hex << req.addr_vec[m_dram->m_levels("row")] << std::endl; std::cout << std::endl; @@ -250,13 +250,13 @@ namespace Ramulator{ //retrieve the number of bits for the level currently in int num_bits = m_addr_bits[level]; - std::cout << "The number of bits in this level is: " << num_bits << std::endl; + //std::cout << "The number of bits in this level is: " << num_bits << std::endl; //initialize rasl_addr to hold the randomized address bits for current level Addr_t rasl_addr = 0; // loop each bit of the address level currently in to extract - std::cout << "This is the current address bit before RASL: 0x" << std::hex << req.addr_vec[level] << std::endl; + //std::cout << "This is the current address bit before RASL: 0x" << std::hex << req.addr_vec[level] << std::endl; for(int bit = 0;bit < num_bits; bit++){ //extract the bit at 'bit position, then shift addr right by that 'bit' // bitwise 1 is to isolate the single bit at that position @@ -274,16 +274,16 @@ namespace Ramulator{ // store xor_result into power_vector power_vector.push_back(xor_result_power); - std::cout << "This is the vector after RASL: " << std::hex << "0x" << rasl_addr << std::endl; + //std::cout << "This is the vector after RASL: " << std::hex << "0x" << rasl_addr << std::endl; //store the result of RASL to the corresponding level req.addr_vec[level] = rasl_addr; - std::cout << "This is the vector mapped back: req.addr_vec[" << level << "] = 0x" << rasl_addr << ";" << std::endl; - std::cout << "This is the power consumption at level " << level << ": 0x" << xor_result_power << std::endl; + //std::cout << "This is the vector mapped back: req.addr_vec[" << level << "] = 0x" << rasl_addr << ";" << std::endl; + //std::cout << "This is the power consumption at level " << level << ": 0x" << xor_result_power << std::endl; //prepare 'addr' for the next level by shifting out the bits we've just proccessed addr >> num_bits; - std::cout << std::endl; + //std::cout << std::endl; // power consumption ----------------------------------------------------------------------------- int bit_one_counter = 0; @@ -293,7 +293,7 @@ namespace Ramulator{ // check if binary representation is correct std::string binary_str = binary_representation.to_string().substr(64-num_bits); - std::cout << "Power consumption vector in binary: " << binary_str << std::endl; + //std::cout << "Power consumption vector in binary: " << binary_str << std::endl; // count the total number of 1 bits for (char bit : binary_str){ @@ -305,15 +305,17 @@ namespace Ramulator{ bit_counter = bit_one_counter + bit_counter; num_bits_pc = num_bits + num_bits_pc; - std::cout << "Bit 1 counts: " << bit_one_counter << std::endl; - std::cout << "Total bits: " << num_bits << std::endl; - std::cout << std::endl; + //std::cout << "Bit 1 counts: " << bit_one_counter << std::endl; + //std::cout << "Total bits: " << num_bits << std::endl; + //std::cout << std::endl; } - std::cout << std::endl; - std::cout << "The total number of '1' is: " << std::dec << bit_counter << std::endl; - std::cout << "The total number of bits is: " << std::dec << num_bits_pc << std::endl; + //std::cout << std::endl; + // Cast to float for proper decimal division + double power_consumption_rate = (static_cast(bit_counter) / static_cast(num_bits_pc)) * 100; + //std::cout << "The total number of '1' is: " << std::dec << bit_counter << std::endl; + //std::cout << "The total number of bits is: " << std::dec << num_bits_pc << std::endl; // I need to fix this and convert the hex values into decimal so i can get an accurate pc rate. - std::cout << "The power consumption rate: " << std::dec << (bit_counter / num_bits_pc) * 100 << std::endl; + std::cout << "The power consumption rate: " << std::dec << power_consumption_rate << "%" << std::endl << std::endl; } From b8957ea427a7a5dccbc4fd1d39e4c8dc2b0a337c Mon Sep 17 00:00:00 2001 From: yanez2001 Date: Sat, 26 Oct 2024 21:33:42 -0500 Subject: [PATCH 08/10] final changes, fixed pc rate and added txt file --- hammer_test_0_0.hp | 288 +- hammer_test_0_0.hr | 268 +- hammer_test_0_0.hwb | 152 - hammer_test_0_0.log | 5964 +---------------- power_consumption_rates_rasl.txt | 311 + .../src/addr_mapper/impl/champsim_mappers.cpp | 80 +- 6 files changed, 506 insertions(+), 6557 deletions(-) create mode 100644 power_consumption_rates_rasl.txt diff --git a/hammer_test_0_0.hp b/hammer_test_0_0.hp index 464ad13f14..8841faa97f 100644 --- a/hammer_test_0_0.hp +++ b/hammer_test_0_0.hp @@ -1,287 +1 @@ -1700 90 -1800 60 -1900 94 -2000 64 -2100 4 -2200 190 -2300 108 -2400 138 -2500 4 -2900 2 -3200 92 -3300 86 -3400 68 -3500 18 -3600 268 -3700 90 -3800 70 -3900 78 -4000 150 -4100 88 -4200 4 -4300 128 -6100 84 -6200 134 -6300 4 -6400 116 -6500 172 -6600 48 -6700 54 -6800 88 -7100 128 -7200 76 -7400 124 -7500 92 -7700 100 -8500 184 -8600 38 -9300 88 -9500 82 -9600 208 -9700 32 -9800 204 -9900 50 -10000 108 -10100 62 -10200 2 -10400 72 -10500 62 -10600 154 -10800 328 -10900 180 -11000 74 -11100 106 -11300 44 -11700 1372 -11800 14 -11900 8 -12000 136 -12100 90 -12900 80 -13000 144 -13100 126 -13200 88 -13300 140 -13400 128 -13500 4 -13800 180 -13900 34 -14100 2 -14400 234 -14500 150 -15200 80 -15400 196 -15600 268 -15700 72 -15900 124 -16000 62 -16200 144 -16300 252 -16400 204 -16500 68 -16700 150 -16800 92 -17000 84 -17100 108 -17200 84 -17300 58 -17400 160 -17700 166 -17800 72 -17900 100 -18000 110 -18100 100 -18200 78 -18400 326 -18500 176 -18700 122 -18800 148 -18900 98 -19300 116 -19400 32 -19800 32 -19900 74 -20000 58 -20100 74 -20300 158 -20400 154 -20500 72 -20600 116 -20700 32 -20800 54 -20900 76 -21000 48 -21200 82 -22000 64 -22200 128 -22300 216 -22400 52 -22600 74 -22700 188 -22800 4 -22900 58 -23100 244 -23200 118 -23400 154 -23500 56 -23700 132 -23800 144 -23900 50 -24000 172 -24100 2 -24200 148 -24300 240 -24400 288 -24500 64 -24600 76 -24700 396 -24900 94 -25000 58 -25200 44 -25300 278 -25400 4 -25500 90 -25600 10 -25700 160 -25800 66 -25900 16 -26000 8 -26300 66 -26400 42 -26500 4 -26600 60 -26800 8 -27500 328 -27600 94 -27700 74 -27900 60 -28000 180 -28100 102 -28200 156 -28400 76 -28500 320 -28700 174 -28800 90 -28900 132 -29000 20 -29200 20 -29500 4 -29600 6 -29800 170 -29900 106 -30000 240 -30100 2 -30200 132 -30400 174 -30500 280 -30600 126 -30800 194 -30900 64 -31000 46 -31200 74 -31300 80 -31400 322 -31500 184 -31700 76 -31800 52 -32000 94 -32100 78 -32200 2 -32400 240 -32500 4 -32600 150 -32700 94 -32800 76 -32900 8 -33100 156 -33300 402 -33400 2 -33800 4 -34200 260 -34300 78 -34400 346 -34500 100 -34700 102 -34800 262 -35100 6 -35700 88 -35800 192 -36000 274 -36100 188 -36300 76 -36400 34 -36500 4 -36600 28 -36700 124 -36800 230 -36900 20 -37000 2846 -37100 2774 -37200 2470 -37300 1396 -37400 522 -37500 1094 -37600 660 -37700 88 -37800 4 -37900 24 -38000 254 -38100 816 -38200 586 -38300 378 -38400 98 -38500 298 -38600 18 -38700 176 -38800 340 -38900 34 -39000 120 -39100 16 -39200 2 -39300 56 -39400 14 -39500 2 -39600 2 -39700 224 -39800 138 -39900 6 -40000 264 -40200 264 -40300 294 -40400 366 -40500 452 -40600 324 -40700 250 -40800 8 -40900 16 -41100 6 -41300 116 -41400 1006 -41500 2074 -41600 1586 -41700 746 -41800 722 -41900 1600 -42000 828 -42100 356 -42200 918 -42300 632 -42400 3270 -42500 4366 -42600 2592 -42700 1638 -42800 3042 -42900 2768 -43000 1174 -43100 1484 -43200 436 -43300 168 -43400 150 -43500 44 -43600 38 -43700 28 -43800 30 -43900 32 -44000 46 -44100 118 -44200 20 +0 138 diff --git a/hammer_test_0_0.hr b/hammer_test_0_0.hr index bc533cd641..ac8ebe5cca 100644 --- a/hammer_test_0_0.hr +++ b/hammer_test_0_0.hr @@ -1,267 +1 @@ -1700 38 -1800 42 -1900 72 -2000 130 -2200 252 -2300 72 -2400 154 -2500 2 -3200 168 -3300 72 -3400 138 -3500 12 -3600 180 -3700 90 -3800 66 -3900 68 -4000 144 -4100 48 -4200 6 -4300 98 -6100 64 -6200 90 -6400 94 -6500 142 -6600 18 -6700 68 -6800 32 -7100 158 -7200 96 -7400 80 -7500 78 -7700 60 -8500 102 -8600 60 -9300 84 -9500 60 -9600 164 -9700 48 -9800 136 -9900 56 -10000 58 -10100 86 -10200 4 -10400 44 -10500 32 -10600 64 -10800 238 -10900 120 -11000 50 -11100 62 -11300 62 -11500 22 -11700 1706 -11900 2 -12000 96 -12100 24 -12300 2 -12900 88 -13000 114 -13100 72 -13200 84 -13300 136 -13400 78 -13800 84 -13900 4 -14400 218 -14500 154 -15200 40 -15400 82 -15600 186 -15700 48 -15900 108 -16000 44 -16200 114 -16300 114 -16400 78 -16500 48 -16700 84 -16800 72 -17000 66 -17100 30 -17200 28 -17300 62 -17400 102 -17700 106 -17800 52 -17900 36 -18000 90 -18100 62 -18200 64 -18400 242 -18500 74 -18700 52 -18800 40 -18900 40 -19300 58 -19400 6 -19800 24 -19900 80 -20000 34 -20100 44 -20300 28 -20400 102 -20500 64 -20600 78 -20800 52 -20900 70 -21000 46 -21200 72 -22000 30 -22200 46 -22300 162 -22400 46 -22600 38 -22700 112 -22800 2 -22900 26 -23100 98 -23200 60 -23400 78 -23500 26 -23700 60 -23800 126 -23900 48 -24000 120 -24200 60 -24300 74 -24400 284 -24500 202 -24600 54 -24700 234 -24900 50 -25000 50 -25200 42 -25300 148 -25500 36 -25600 4 -25700 54 -25800 16 -26300 58 -26400 40 -26500 2 -26600 48 -27500 246 -27600 52 -27700 88 -27900 40 -28000 102 -28100 106 -28200 148 -28400 42 -28500 150 -28700 70 -28800 48 -28900 66 -29000 6 -29200 6 -29800 142 -29900 64 -30000 158 -30200 90 -30400 30 -30500 116 -30600 36 -30800 54 -30900 50 -31000 58 -31200 32 -31300 34 -31400 88 -31500 82 -31700 46 -31800 74 -32000 54 -32100 114 -32200 4 -32400 134 -32600 54 -32700 66 -32800 54 -33100 62 -33300 168 -33800 2 -34200 214 -34300 36 -34400 238 -34500 40 -34700 40 -34800 126 -35700 12 -35800 188 -36000 146 -36100 128 -36200 2 -36300 58 -36400 2 -36600 4 -36700 82 -36800 176 -36900 100 -37000 2686 -37100 2196 -37200 1774 -37300 598 -37400 198 -37500 1610 -37600 1072 -37700 42 -37800 2 -37900 12 -38000 1246 -38100 1074 -38200 1190 -38300 1032 -38400 4 -38500 650 -38700 388 -38800 1014 -38900 62 -39000 128 -39100 26 -39200 32 -39300 162 -39400 142 -39500 62 -39600 86 -39700 732 -39800 556 -39900 2 -40000 436 -40200 348 -40300 384 -40400 344 -40500 346 -40600 250 -40700 256 -40900 2 -41300 110 -41400 2136 -41500 2032 -41600 1852 -41700 1122 -41800 1262 -41900 1806 -42000 1136 -42100 894 -42200 2170 -42300 1036 -42400 2962 -42500 3260 -42600 2208 -42700 3638 -42800 2970 -42900 1456 -43000 698 -43100 760 -43200 100 -43300 70 -43400 10 -43500 24 -43600 38 -43700 4 -43800 18 -43900 32 -44000 10 -44100 2 -44200 34 +0 266 diff --git a/hammer_test_0_0.hwb b/hammer_test_0_0.hwb index b8ca233fd8..e69de29bb2 100644 --- a/hammer_test_0_0.hwb +++ b/hammer_test_0_0.hwb @@ -1,152 +0,0 @@ -18500 6 -18800 2 -18900 2 -20000 2 -20400 4 -20600 6 -20900 2 -21000 2 -21200 4 -22300 14 -22600 4 -22700 4 -23100 8 -23400 4 -23500 2 -23800 2 -23900 6 -24000 4 -24200 10 -24300 12 -24400 12 -24500 8 -24600 14 -24700 28 -24900 6 -25000 2 -25200 10 -25300 20 -25500 10 -25700 2 -25800 4 -26300 4 -26400 10 -26600 8 -27500 28 -27600 10 -27700 8 -27900 16 -28000 20 -28100 8 -28200 32 -28400 12 -28500 40 -28700 18 -28800 4 -28900 10 -29800 20 -29900 24 -30000 36 -30200 22 -30400 34 -30500 30 -30600 12 -30800 22 -30900 12 -31000 8 -31200 24 -31300 14 -31400 48 -31500 10 -31700 12 -31800 20 -32000 24 -32100 18 -32400 44 -32600 18 -32700 24 -32800 14 -33100 34 -33300 72 -34200 52 -34300 16 -34400 60 -34500 6 -34700 18 -34800 48 -35700 30 -35800 34 -36000 48 -36100 44 -36300 22 -36400 6 -36600 6 -36700 28 -36800 30 -36900 14 -37000 596 -37100 422 -37200 414 -37300 188 -37400 66 -37500 172 -37600 120 -37700 8 -37900 4 -38000 72 -38100 162 -38200 100 -38300 90 -38400 18 -38500 92 -38600 2 -38700 42 -38800 106 -38900 8 -39000 14 -39100 2 -39200 4 -39300 14 -39400 6 -39500 8 -39600 8 -39700 84 -39800 62 -40000 50 -40200 50 -40300 68 -40400 114 -40500 96 -40600 80 -40700 58 -40800 2 -41300 20 -41400 380 -41500 448 -41600 536 -41700 304 -41800 366 -41900 642 -42000 328 -42100 180 -42200 582 -42300 366 -42400 1566 -42500 2606 -42600 1080 -42700 828 -42800 1158 -42900 668 -43000 280 -43100 370 -43200 64 -43300 26 -43400 28 -43500 14 -43600 8 -43700 8 -43800 12 -43900 8 -44000 6 -44100 16 -44200 8 diff --git a/hammer_test_0_0.log b/hammer_test_0_0.log index 3f6838f1a0..fce1e97e70 100644 --- a/hammer_test_0_0.log +++ b/hammer_test_0_0.log @@ -1,5847 +1,147 @@ ROW-HAMMER STATISTICS #################################################################################################### -Row Hammers (READ INSTIGATED): 147010 - Normal: 72324 Prefetch: 74686 -Row Hammers (WRITE INSTIGATED): 17810 - Normal: 0 Prefetch: 0 Writeback: 17810 -Row Hammers (REFRESH INSTIGATED): 726512 -Total Row Hammers: 891332 +Row Hammers (READ INSTIGATED): 404 + Normal: 266 Prefetch: 138 +Row Hammers (WRITE INSTIGATED): 0 + Normal: 0 Prefetch: 0 Writeback: 0 +Row Hammers (REFRESH INSTIGATED): 112 +Total Row Hammers: 516 #################################################################################################### Channels: 1 Ranks: 1 Banks: 16 Rows: 32768 Columns: 1024 -Address Space Used: 1.11008% +Address Space Used: 0.0228882% #################################################################################################### -Refreshes: 5676 +Refreshes: 1 Rows Per Refresh: 4 Refresh Cycles: 0 #################################################################################################### -Victim Reads: 2899 -Victim Writes: 11 -Lost Hammers: 366158 - To Refresh: 363248 To Access: 2910 +Victim Reads: 0 +Victim Writes: 0 +Lost Hammers: 48 + To Refresh: 48 To Access: 0 #################################################################################################### Stats by Row - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x5f Lifetime Hammers/(Normal:Prefetch:Writeback): 117 (28:85:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 116 (27:85:4) Lost Hammers/(Refresh:Access): 117 (1:116) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x61 Lifetime Hammers/(Normal:Prefetch:Writeback): 117 (28:85:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 116 (27:85:4) Lost Hammers/(Refresh:Access): 117 (1:116) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x5f Lifetime Hammers/(Normal:Prefetch:Writeback): 112 (33:77:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 111 (32:77:2) Lost Hammers/(Refresh:Access): 112 (1:111) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x61 Lifetime Hammers/(Normal:Prefetch:Writeback): 112 (33:77:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 111 (32:77:2) Lost Hammers/(Refresh:Access): 112 (1:111) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x61 Lifetime Hammers/(Normal:Prefetch:Writeback): 111 (22:89:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 110 (21:89:0) Lost Hammers/(Refresh:Access): 111 (1:110) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x5f Lifetime Hammers/(Normal:Prefetch:Writeback): 111 (22:89:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 110 (21:89:0) Lost Hammers/(Refresh:Access): 111 (1:110) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x5f Lifetime Hammers/(Normal:Prefetch:Writeback): 111 (32:77:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 110 (31:77:2) Lost Hammers/(Refresh:Access): 111 (1:110) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x61 Lifetime Hammers/(Normal:Prefetch:Writeback): 111 (32:77:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 110 (31:77:2) Lost Hammers/(Refresh:Access): 111 (1:110) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x61 Lifetime Hammers/(Normal:Prefetch:Writeback): 110 (28:81:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 109 (27:81:1) Lost Hammers/(Refresh:Access): 110 (1:109) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x5f Lifetime Hammers/(Normal:Prefetch:Writeback): 110 (28:81:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 109 (27:81:1) Lost Hammers/(Refresh:Access): 110 (1:109) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x5f Lifetime Hammers/(Normal:Prefetch:Writeback): 109 (35:70:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 108 (34:70:4) Lost Hammers/(Refresh:Access): 109 (1:108) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x61 Lifetime Hammers/(Normal:Prefetch:Writeback): 109 (35:70:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 108 (34:70:4) Lost Hammers/(Refresh:Access): 109 (1:108) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x5f Lifetime Hammers/(Normal:Prefetch:Writeback): 109 (30:77:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 108 (29:77:2) Lost Hammers/(Refresh:Access): 109 (1:108) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x61 Lifetime Hammers/(Normal:Prefetch:Writeback): 109 (30:77:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 108 (29:77:2) Lost Hammers/(Refresh:Access): 109 (1:108) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x61 Lifetime Hammers/(Normal:Prefetch:Writeback): 108 (27:80:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 107 (26:80:1) Lost Hammers/(Refresh:Access): 108 (1:107) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x5f Lifetime Hammers/(Normal:Prefetch:Writeback): 108 (27:80:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 107 (26:80:1) Lost Hammers/(Refresh:Access): 108 (1:107) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x5f Lifetime Hammers/(Normal:Prefetch:Writeback): 106 (25:80:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 105 (24:80:1) Lost Hammers/(Refresh:Access): 106 (1:105) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x5f Lifetime Hammers/(Normal:Prefetch:Writeback): 106 (26:79:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 105 (25:79:1) Lost Hammers/(Refresh:Access): 106 (1:105) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x61 Lifetime Hammers/(Normal:Prefetch:Writeback): 106 (26:79:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 105 (25:79:1) Lost Hammers/(Refresh:Access): 106 (1:105) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x61 Lifetime Hammers/(Normal:Prefetch:Writeback): 106 (25:80:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 105 (24:80:1) Lost Hammers/(Refresh:Access): 106 (1:105) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x61 Lifetime Hammers/(Normal:Prefetch:Writeback): 106 (25:77:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 105 (24:77:4) Lost Hammers/(Refresh:Access): 106 (1:105) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x5f Lifetime Hammers/(Normal:Prefetch:Writeback): 106 (25:77:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 105 (24:77:4) Lost Hammers/(Refresh:Access): 106 (1:105) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 105 (30:68:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 104 (29:68:7) Lost Hammers/(Refresh:Access): 105 (1:104) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 105 (30:68:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 104 (29:68:7) Lost Hammers/(Refresh:Access): 105 (1:104) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 104 (32:62:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 103 (31:62:10) Lost Hammers/(Refresh:Access): 104 (1:103) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 104 (32:62:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 103 (31:62:10) Lost Hammers/(Refresh:Access): 104 (1:103) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 103 (32:60:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 102 (31:60:11) Lost Hammers/(Refresh:Access): 103 (1:102) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x5f Lifetime Hammers/(Normal:Prefetch:Writeback): 103 (29:70:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 102 (28:70:4) Lost Hammers/(Refresh:Access): 103 (1:102) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 103 (32:60:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 102 (31:60:11) Lost Hammers/(Refresh:Access): 103 (1:102) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 103 (30:68:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 102 (29:68:5) Lost Hammers/(Refresh:Access): 103 (1:102) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x61 Lifetime Hammers/(Normal:Prefetch:Writeback): 103 (29:70:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 102 (28:70:4) Lost Hammers/(Refresh:Access): 103 (1:102) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 103 (30:68:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 102 (29:68:5) Lost Hammers/(Refresh:Access): 103 (1:102) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 101 (31:64:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 100 (30:64:6) Lost Hammers/(Refresh:Access): 101 (1:100) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 101 (27:67:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 100 (26:67:7) Lost Hammers/(Refresh:Access): 101 (1:100) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 101 (31:64:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 100 (30:64:6) Lost Hammers/(Refresh:Access): 101 (1:100) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x61 Lifetime Hammers/(Normal:Prefetch:Writeback): 101 (31:67:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 100 (30:67:3) Lost Hammers/(Refresh:Access): 101 (1:100) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x5f Lifetime Hammers/(Normal:Prefetch:Writeback): 101 (31:67:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 100 (30:67:3) Lost Hammers/(Refresh:Access): 101 (1:100) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 101 (27:67:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 100 (26:67:7) Lost Hammers/(Refresh:Access): 101 (1:100) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 99 (22:72:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 98 (21:72:5) Lost Hammers/(Refresh:Access): 99 (1:98) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 99 (22:72:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 98 (21:72:5) Lost Hammers/(Refresh:Access): 99 (1:98) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 98 (24:70:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 97 (23:70:4) Lost Hammers/(Refresh:Access): 98 (1:97) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 98 (24:70:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 97 (23:70:4) Lost Hammers/(Refresh:Access): 98 (1:97) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 98 (25:64:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 97 (24:64:9) Lost Hammers/(Refresh:Access): 98 (1:97) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 98 (25:64:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 97 (24:64:9) Lost Hammers/(Refresh:Access): 98 (1:97) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x5f Lifetime Hammers/(Normal:Prefetch:Writeback): 97 (28:65:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 96 (27:65:4) Lost Hammers/(Refresh:Access): 97 (1:96) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x61 Lifetime Hammers/(Normal:Prefetch:Writeback): 97 (28:65:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 96 (27:65:4) Lost Hammers/(Refresh:Access): 97 (1:96) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x5f Lifetime Hammers/(Normal:Prefetch:Writeback): 97 (20:76:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 96 (19:76:1) Lost Hammers/(Refresh:Access): 97 (1:96) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x61 Lifetime Hammers/(Normal:Prefetch:Writeback): 97 (20:76:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 96 (19:76:1) Lost Hammers/(Refresh:Access): 97 (1:96) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 96 (19:68:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 95 (18:68:9) Lost Hammers/(Refresh:Access): 96 (1:95) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 96 (20:70:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 95 (19:70:6) Lost Hammers/(Refresh:Access): 96 (1:95) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 96 (20:70:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 95 (19:70:6) Lost Hammers/(Refresh:Access): 96 (1:95) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 96 (29:58:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 95 (28:58:9) Lost Hammers/(Refresh:Access): 96 (1:95) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 96 (19:68:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 95 (18:68:9) Lost Hammers/(Refresh:Access): 96 (1:95) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 96 (29:58:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 95 (28:58:9) Lost Hammers/(Refresh:Access): 96 (1:95) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 95 (26:63:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 94 (25:63:6) Lost Hammers/(Refresh:Access): 95 (1:94) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 95 (26:63:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 94 (25:63:6) Lost Hammers/(Refresh:Access): 95 (1:94) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 94 (18:69:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 93 (17:69:7) Lost Hammers/(Refresh:Access): 94 (1:93) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 94 (18:69:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 93 (17:69:7) Lost Hammers/(Refresh:Access): 94 (1:93) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x61 Lifetime Hammers/(Normal:Prefetch:Writeback): 93 (22:70:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 92 (21:70:1) Lost Hammers/(Refresh:Access): 93 (1:92) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x5f Lifetime Hammers/(Normal:Prefetch:Writeback): 93 (22:70:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 92 (21:70:1) Lost Hammers/(Refresh:Access): 93 (1:92) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 92 (22:66:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 91 (21:66:4) Lost Hammers/(Refresh:Access): 92 (1:91) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 92 (22:66:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 91 (21:66:4) Lost Hammers/(Refresh:Access): 92 (1:91) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x30f Lifetime Hammers/(Normal:Prefetch:Writeback): 91 (14:63:14) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 90 (13:63:14) Lost Hammers/(Refresh:Access): 91 (1:90) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x311 Lifetime Hammers/(Normal:Prefetch:Writeback): 91 (14:63:14) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 90 (13:63:14) Lost Hammers/(Refresh:Access): 91 (1:90) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 90 (32:52:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 89 (31:52:6) Lost Hammers/(Refresh:Access): 90 (1:89) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 90 (32:52:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 89 (31:52:6) Lost Hammers/(Refresh:Access): 90 (1:89) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x30f Lifetime Hammers/(Normal:Prefetch:Writeback): 86 (17:54:15) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 85 (16:54:15) Lost Hammers/(Refresh:Access): 86 (1:85) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x311 Lifetime Hammers/(Normal:Prefetch:Writeback): 86 (18:49:19) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 85 (17:49:19) Lost Hammers/(Refresh:Access): 86 (1:85) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x311 Lifetime Hammers/(Normal:Prefetch:Writeback): 86 (17:54:15) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 85 (16:54:15) Lost Hammers/(Refresh:Access): 86 (1:85) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x30f Lifetime Hammers/(Normal:Prefetch:Writeback): 86 (18:49:19) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 85 (17:49:19) Lost Hammers/(Refresh:Access): 86 (1:85) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x30f Lifetime Hammers/(Normal:Prefetch:Writeback): 84 (13:57:14) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 83 (12:57:14) Lost Hammers/(Refresh:Access): 84 (1:83) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x311 Lifetime Hammers/(Normal:Prefetch:Writeback): 84 (13:57:14) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 83 (12:57:14) Lost Hammers/(Refresh:Access): 84 (1:83) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x311 Lifetime Hammers/(Normal:Prefetch:Writeback): 83 (17:52:14) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 82 (16:52:14) Lost Hammers/(Refresh:Access): 83 (1:82) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x30f Lifetime Hammers/(Normal:Prefetch:Writeback): 83 (17:52:14) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 82 (16:52:14) Lost Hammers/(Refresh:Access): 83 (1:82) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 83 (25:45:13) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 82 (24:45:13) Lost Hammers/(Refresh:Access): 83 (1:82) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 83 (25:45:13) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 82 (24:45:13) Lost Hammers/(Refresh:Access): 83 (1:82) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x311 Lifetime Hammers/(Normal:Prefetch:Writeback): 82 (11:59:12) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 81 (10:59:12) Lost Hammers/(Refresh:Access): 82 (1:81) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x30f Lifetime Hammers/(Normal:Prefetch:Writeback): 82 (11:59:12) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 81 (10:59:12) Lost Hammers/(Refresh:Access): 82 (1:81) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x30f Lifetime Hammers/(Normal:Prefetch:Writeback): 81 (14:52:15) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 80 (13:52:15) Lost Hammers/(Refresh:Access): 81 (1:80) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x311 Lifetime Hammers/(Normal:Prefetch:Writeback): 81 (14:52:15) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 80 (13:52:15) Lost Hammers/(Refresh:Access): 81 (1:80) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x311 Lifetime Hammers/(Normal:Prefetch:Writeback): 80 (15:54:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 79 (14:54:11) Lost Hammers/(Refresh:Access): 80 (1:79) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x30f Lifetime Hammers/(Normal:Prefetch:Writeback): 80 (15:54:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 79 (14:54:11) Lost Hammers/(Refresh:Access): 80 (1:79) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 80 (26:44:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 79 (25:44:10) Lost Hammers/(Refresh:Access): 80 (1:79) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 80 (26:44:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 79 (25:44:10) Lost Hammers/(Refresh:Access): 80 (1:79) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 79 (27:41:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 78 (26:41:11) Lost Hammers/(Refresh:Access): 79 (1:78) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 79 (27:41:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 78 (26:41:11) Lost Hammers/(Refresh:Access): 79 (1:78) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x30f Lifetime Hammers/(Normal:Prefetch:Writeback): 78 (15:49:14) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 77 (14:49:14) Lost Hammers/(Refresh:Access): 78 (1:77) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x311 Lifetime Hammers/(Normal:Prefetch:Writeback): 78 (15:49:14) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 77 (14:49:14) Lost Hammers/(Refresh:Access): 78 (1:77) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 77 (27:45:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 76 (26:45:5) Lost Hammers/(Refresh:Access): 77 (1:76) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 77 (20:51:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 76 (19:51:6) Lost Hammers/(Refresh:Access): 77 (1:76) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 77 (27:45:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 76 (26:45:5) Lost Hammers/(Refresh:Access): 77 (1:76) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x30f Lifetime Hammers/(Normal:Prefetch:Writeback): 77 (17:44:16) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 76 (16:44:16) Lost Hammers/(Refresh:Access): 77 (1:76) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x311 Lifetime Hammers/(Normal:Prefetch:Writeback): 77 (17:44:16) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 76 (16:44:16) Lost Hammers/(Refresh:Access): 77 (1:76) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 77 (20:51:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 76 (19:51:6) Lost Hammers/(Refresh:Access): 77 (1:76) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 76 (25:50:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 75 (24:50:1) Lost Hammers/(Refresh:Access): 76 (1:75) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x311 Lifetime Hammers/(Normal:Prefetch:Writeback): 76 (14:51:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 75 (13:51:11) Lost Hammers/(Refresh:Access): 76 (1:75) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 76 (21:47:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 75 (20:47:8) Lost Hammers/(Refresh:Access): 76 (1:75) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x30f Lifetime Hammers/(Normal:Prefetch:Writeback): 76 (14:51:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 75 (13:51:11) Lost Hammers/(Refresh:Access): 76 (1:75) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 76 (21:47:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 75 (20:47:8) Lost Hammers/(Refresh:Access): 76 (1:75) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 76 (27:41:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 75 (26:41:8) Lost Hammers/(Refresh:Access): 76 (1:75) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 76 (25:50:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 75 (24:50:1) Lost Hammers/(Refresh:Access): 76 (1:75) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 76 (27:41:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 75 (26:41:8) Lost Hammers/(Refresh:Access): 76 (1:75) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x30f Lifetime Hammers/(Normal:Prefetch:Writeback): 74 (15:46:13) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 73 (14:46:13) Lost Hammers/(Refresh:Access): 74 (1:73) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x311 Lifetime Hammers/(Normal:Prefetch:Writeback): 74 (15:46:13) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 73 (14:46:13) Lost Hammers/(Refresh:Access): 74 (1:73) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x30f Lifetime Hammers/(Normal:Prefetch:Writeback): 74 (13:47:14) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 73 (12:47:14) Lost Hammers/(Refresh:Access): 74 (1:73) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 74 (16:50:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 73 (15:50:8) Lost Hammers/(Refresh:Access): 74 (1:73) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x311 Lifetime Hammers/(Normal:Prefetch:Writeback): 74 (13:47:14) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 73 (12:47:14) Lost Hammers/(Refresh:Access): 74 (1:73) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 74 (16:50:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 73 (15:50:8) Lost Hammers/(Refresh:Access): 74 (1:73) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 73 (23:42:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 72 (22:42:8) Lost Hammers/(Refresh:Access): 73 (1:72) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 73 (21:43:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 72 (20:43:9) Lost Hammers/(Refresh:Access): 73 (1:72) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 73 (23:42:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 72 (22:42:8) Lost Hammers/(Refresh:Access): 73 (1:72) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 73 (17:52:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 72 (16:52:4) Lost Hammers/(Refresh:Access): 73 (1:72) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 73 (21:43:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 72 (20:43:9) Lost Hammers/(Refresh:Access): 73 (1:72) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 73 (17:52:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 72 (16:52:4) Lost Hammers/(Refresh:Access): 73 (1:72) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 72 (14:57:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 71 (13:57:1) Lost Hammers/(Refresh:Access): 72 (1:71) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x311 Lifetime Hammers/(Normal:Prefetch:Writeback): 72 (12:45:15) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 71 (11:45:15) Lost Hammers/(Refresh:Access): 72 (1:71) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x30f Lifetime Hammers/(Normal:Prefetch:Writeback): 72 (12:45:15) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 71 (11:45:15) Lost Hammers/(Refresh:Access): 72 (1:71) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 72 (14:57:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 71 (13:57:1) Lost Hammers/(Refresh:Access): 72 (1:71) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 72 (22:42:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 71 (21:42:8) Lost Hammers/(Refresh:Access): 72 (1:71) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 72 (22:42:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 71 (21:42:8) Lost Hammers/(Refresh:Access): 72 (1:71) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 71 (18:52:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 70 (17:52:1) Lost Hammers/(Refresh:Access): 71 (1:70) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 71 (20:50:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 70 (19:50:1) Lost Hammers/(Refresh:Access): 71 (1:70) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 71 (20:50:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 70 (19:50:1) Lost Hammers/(Refresh:Access): 71 (1:70) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x157 Lifetime Hammers/(Normal:Prefetch:Writeback): 71 (40:23:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 70 (39:23:8) Lost Hammers/(Refresh:Access): 71 (1:70) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 71 (18:52:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 70 (17:52:1) Lost Hammers/(Refresh:Access): 71 (1:70) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 71 (20:42:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 70 (19:42:9) Lost Hammers/(Refresh:Access): 71 (1:70) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x159 Lifetime Hammers/(Normal:Prefetch:Writeback): 71 (40:23:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 70 (39:23:8) Lost Hammers/(Refresh:Access): 71 (1:70) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 71 (20:42:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 70 (19:42:9) Lost Hammers/(Refresh:Access): 71 (1:70) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 70 (17:50:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 69 (16:50:3) Lost Hammers/(Refresh:Access): 70 (1:69) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 70 (17:50:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 69 (16:50:3) Lost Hammers/(Refresh:Access): 70 (1:69) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x2af Lifetime Hammers/(Normal:Prefetch:Writeback): 69 (45:11:13) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 68 (44:11:13) Lost Hammers/(Refresh:Access): 69 (1:68) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x2b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 69 (45:11:13) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 68 (44:11:13) Lost Hammers/(Refresh:Access): 69 (1:68) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 69 (18:51:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 68 (17:51:0) Lost Hammers/(Refresh:Access): 69 (1:68) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 69 (18:51:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 68 (17:51:0) Lost Hammers/(Refresh:Access): 69 (1:68) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 68 (20:36:12) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 67 (19:36:12) Lost Hammers/(Refresh:Access): 68 (1:67) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 68 (22:42:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 67 (21:42:4) Lost Hammers/(Refresh:Access): 68 (1:67) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 68 (20:36:12) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 67 (19:36:12) Lost Hammers/(Refresh:Access): 68 (1:67) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 68 (22:42:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 67 (21:42:4) Lost Hammers/(Refresh:Access): 68 (1:67) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x2b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 67 (40:14:13) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 66 (39:14:13) Lost Hammers/(Refresh:Access): 67 (1:66) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x5c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 67 (20:47:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 66 (19:47:0) Lost Hammers/(Refresh:Access): 67 (1:66) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x2af Lifetime Hammers/(Normal:Prefetch:Writeback): 67 (40:14:13) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 66 (39:14:13) Lost Hammers/(Refresh:Access): 67 (1:66) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x30f Lifetime Hammers/(Normal:Prefetch:Writeback): 67 (11:45:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 66 (10:45:11) Lost Hammers/(Refresh:Access): 67 (1:66) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x151 Lifetime Hammers/(Normal:Prefetch:Writeback): 67 (31:27:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 66 (30:27:9) Lost Hammers/(Refresh:Access): 67 (1:66) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x5bf Lifetime Hammers/(Normal:Prefetch:Writeback): 67 (20:47:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 66 (19:47:0) Lost Hammers/(Refresh:Access): 67 (1:66) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 67 (18:44:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 66 (17:44:5) Lost Hammers/(Refresh:Access): 67 (1:66) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x14f Lifetime Hammers/(Normal:Prefetch:Writeback): 67 (31:27:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 66 (30:27:9) Lost Hammers/(Refresh:Access): 67 (1:66) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 67 (18:44:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 66 (17:44:5) Lost Hammers/(Refresh:Access): 67 (1:66) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 67 (23:42:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 66 (22:42:2) Lost Hammers/(Refresh:Access): 67 (1:66) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x30f Lifetime Hammers/(Normal:Prefetch:Writeback): 67 (11:47:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 66 (10:47:9) Lost Hammers/(Refresh:Access): 67 (1:66) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 67 (23:42:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 66 (22:42:2) Lost Hammers/(Refresh:Access): 67 (1:66) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x311 Lifetime Hammers/(Normal:Prefetch:Writeback): 67 (11:45:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 66 (10:45:11) Lost Hammers/(Refresh:Access): 67 (1:66) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x5c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 67 (24:43:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 66 (23:43:0) Lost Hammers/(Refresh:Access): 67 (1:66) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x311 Lifetime Hammers/(Normal:Prefetch:Writeback): 67 (11:47:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 66 (10:47:9) Lost Hammers/(Refresh:Access): 67 (1:66) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x5bf Lifetime Hammers/(Normal:Prefetch:Writeback): 67 (24:43:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 66 (23:43:0) Lost Hammers/(Refresh:Access): 67 (1:66) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x5c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 66 (23:43:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 65 (22:43:0) Lost Hammers/(Refresh:Access): 66 (1:65) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x271 Lifetime Hammers/(Normal:Prefetch:Writeback): 66 (26:31:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 65 (25:31:9) Lost Hammers/(Refresh:Access): 66 (1:65) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 66 (16:46:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 65 (15:46:4) Lost Hammers/(Refresh:Access): 66 (1:65) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x5bf Lifetime Hammers/(Normal:Prefetch:Writeback): 66 (23:43:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 65 (22:43:0) Lost Hammers/(Refresh:Access): 66 (1:65) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x5c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 66 (23:43:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 65 (22:43:0) Lost Hammers/(Refresh:Access): 66 (1:65) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 66 (16:46:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 65 (15:46:4) Lost Hammers/(Refresh:Access): 66 (1:65) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x269 Lifetime Hammers/(Normal:Prefetch:Writeback): 66 (26:36:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 65 (25:36:4) Lost Hammers/(Refresh:Access): 66 (1:65) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x2b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 66 (49:8:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 65 (48:8:9) Lost Hammers/(Refresh:Access): 66 (1:65) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x2af Lifetime Hammers/(Normal:Prefetch:Writeback): 66 (49:8:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 65 (48:8:9) Lost Hammers/(Refresh:Access): 66 (1:65) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x26f Lifetime Hammers/(Normal:Prefetch:Writeback): 66 (26:31:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 65 (25:31:9) Lost Hammers/(Refresh:Access): 66 (1:65) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x267 Lifetime Hammers/(Normal:Prefetch:Writeback): 66 (26:36:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 65 (25:36:4) Lost Hammers/(Refresh:Access): 66 (1:65) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x5bf Lifetime Hammers/(Normal:Prefetch:Writeback): 66 (23:43:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 65 (22:43:0) Lost Hammers/(Refresh:Access): 66 (1:65) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x267 Lifetime Hammers/(Normal:Prefetch:Writeback): 66 (23:38:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 65 (22:38:5) Lost Hammers/(Refresh:Access): 66 (1:65) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x269 Lifetime Hammers/(Normal:Prefetch:Writeback): 66 (23:38:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 65 (22:38:5) Lost Hammers/(Refresh:Access): 66 (1:65) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 66 (21:44:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 65 (20:44:1) Lost Hammers/(Refresh:Access): 66 (1:65) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 66 (21:44:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 65 (20:44:1) Lost Hammers/(Refresh:Access): 66 (1:65) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x151 Lifetime Hammers/(Normal:Prefetch:Writeback): 65 (37:22:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 64 (36:22:6) Lost Hammers/(Refresh:Access): 65 (1:64) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x271 Lifetime Hammers/(Normal:Prefetch:Writeback): 65 (32:23:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 64 (31:23:10) Lost Hammers/(Refresh:Access): 65 (1:64) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x26f Lifetime Hammers/(Normal:Prefetch:Writeback): 65 (32:23:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 64 (31:23:10) Lost Hammers/(Refresh:Access): 65 (1:64) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x14f Lifetime Hammers/(Normal:Prefetch:Writeback): 65 (37:22:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 64 (36:22:6) Lost Hammers/(Refresh:Access): 65 (1:64) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x26f Lifetime Hammers/(Normal:Prefetch:Writeback): 64 (27:30:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 63 (26:30:7) Lost Hammers/(Refresh:Access): 64 (1:63) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x5c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 64 (21:43:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 63 (20:43:0) Lost Hammers/(Refresh:Access): 64 (1:63) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 64 (23:36:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 63 (22:36:5) Lost Hammers/(Refresh:Access): 64 (1:63) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x5bf Lifetime Hammers/(Normal:Prefetch:Writeback): 64 (23:41:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 63 (22:41:0) Lost Hammers/(Refresh:Access): 64 (1:63) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 64 (23:36:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 63 (22:36:5) Lost Hammers/(Refresh:Access): 64 (1:63) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x269 Lifetime Hammers/(Normal:Prefetch:Writeback): 64 (28:33:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 63 (27:33:3) Lost Hammers/(Refresh:Access): 64 (1:63) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x271 Lifetime Hammers/(Normal:Prefetch:Writeback): 64 (27:30:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 63 (26:30:7) Lost Hammers/(Refresh:Access): 64 (1:63) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x5c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 64 (23:41:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 63 (22:41:0) Lost Hammers/(Refresh:Access): 64 (1:63) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x5bf Lifetime Hammers/(Normal:Prefetch:Writeback): 64 (21:43:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 63 (20:43:0) Lost Hammers/(Refresh:Access): 64 (1:63) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x267 Lifetime Hammers/(Normal:Prefetch:Writeback): 64 (28:33:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 63 (27:33:3) Lost Hammers/(Refresh:Access): 64 (1:63) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x271 Lifetime Hammers/(Normal:Prefetch:Writeback): 64 (32:25:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 63 (31:25:7) Lost Hammers/(Refresh:Access): 64 (1:63) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x26f Lifetime Hammers/(Normal:Prefetch:Writeback): 64 (32:25:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 63 (31:25:7) Lost Hammers/(Refresh:Access): 64 (1:63) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x267 Lifetime Hammers/(Normal:Prefetch:Writeback): 63 (25:36:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 62 (24:36:2) Lost Hammers/(Refresh:Access): 63 (1:62) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 63 (21:30:12) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 62 (20:30:12) Lost Hammers/(Refresh:Access): 63 (1:62) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 63 (21:30:12) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 62 (20:30:12) Lost Hammers/(Refresh:Access): 63 (1:62) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x269 Lifetime Hammers/(Normal:Prefetch:Writeback): 63 (25:36:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 62 (24:36:2) Lost Hammers/(Refresh:Access): 63 (1:62) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x26f Lifetime Hammers/(Normal:Prefetch:Writeback): 63 (26:29:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 62 (25:29:8) Lost Hammers/(Refresh:Access): 63 (1:62) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x147 Lifetime Hammers/(Normal:Prefetch:Writeback): 63 (25:35:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 62 (24:35:3) Lost Hammers/(Refresh:Access): 63 (1:62) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x149 Lifetime Hammers/(Normal:Prefetch:Writeback): 63 (25:35:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 62 (24:35:3) Lost Hammers/(Refresh:Access): 63 (1:62) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x271 Lifetime Hammers/(Normal:Prefetch:Writeback): 63 (26:29:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 62 (25:29:8) Lost Hammers/(Refresh:Access): 63 (1:62) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 63 (21:35:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 62 (20:35:7) Lost Hammers/(Refresh:Access): 63 (1:62) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 63 (21:35:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 62 (20:35:7) Lost Hammers/(Refresh:Access): 63 (1:62) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x269 Lifetime Hammers/(Normal:Prefetch:Writeback): 63 (30:30:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 62 (29:30:3) Lost Hammers/(Refresh:Access): 63 (1:62) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x267 Lifetime Hammers/(Normal:Prefetch:Writeback): 63 (30:30:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 62 (29:30:3) Lost Hammers/(Refresh:Access): 63 (1:62) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 62 (19:42:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 61 (18:42:1) Lost Hammers/(Refresh:Access): 62 (1:61) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x271 Lifetime Hammers/(Normal:Prefetch:Writeback): 62 (31:22:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 61 (30:22:9) Lost Hammers/(Refresh:Access): 62 (1:61) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x26f Lifetime Hammers/(Normal:Prefetch:Writeback): 62 (31:22:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 61 (30:22:9) Lost Hammers/(Refresh:Access): 62 (1:61) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x99 Lifetime Hammers/(Normal:Prefetch:Writeback): 62 (33:25:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 61 (32:25:4) Lost Hammers/(Refresh:Access): 62 (1:61) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x97 Lifetime Hammers/(Normal:Prefetch:Writeback): 62 (33:25:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 61 (32:25:4) Lost Hammers/(Refresh:Access): 62 (1:61) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 62 (19:42:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 61 (18:42:1) Lost Hammers/(Refresh:Access): 62 (1:61) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x267 Lifetime Hammers/(Normal:Prefetch:Writeback): 61 (30:31:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 60 (29:31:0) Lost Hammers/(Refresh:Access): 61 (1:60) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x97 Lifetime Hammers/(Normal:Prefetch:Writeback): 61 (29:26:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 60 (28:26:6) Lost Hammers/(Refresh:Access): 61 (1:60) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 61 (22:28:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 60 (21:28:11) Lost Hammers/(Refresh:Access): 61 (1:60) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x159 Lifetime Hammers/(Normal:Prefetch:Writeback): 61 (34:21:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 60 (33:21:6) Lost Hammers/(Refresh:Access): 61 (1:60) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 61 (22:28:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 60 (21:28:11) Lost Hammers/(Refresh:Access): 61 (1:60) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x5c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 61 (19:42:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 60 (18:42:0) Lost Hammers/(Refresh:Access): 61 (1:60) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x5bf Lifetime Hammers/(Normal:Prefetch:Writeback): 61 (19:42:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 60 (18:42:0) Lost Hammers/(Refresh:Access): 61 (1:60) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x99 Lifetime Hammers/(Normal:Prefetch:Writeback): 61 (28:26:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 60 (27:26:7) Lost Hammers/(Refresh:Access): 61 (1:60) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x97 Lifetime Hammers/(Normal:Prefetch:Writeback): 61 (28:26:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 60 (27:26:7) Lost Hammers/(Refresh:Access): 61 (1:60) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x5c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 61 (20:41:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 60 (19:41:0) Lost Hammers/(Refresh:Access): 61 (1:60) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x2b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 61 (40:13:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 60 (39:13:8) Lost Hammers/(Refresh:Access): 61 (1:60) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x99 Lifetime Hammers/(Normal:Prefetch:Writeback): 61 (29:26:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 60 (28:26:6) Lost Hammers/(Refresh:Access): 61 (1:60) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x269 Lifetime Hammers/(Normal:Prefetch:Writeback): 61 (30:31:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 60 (29:31:0) Lost Hammers/(Refresh:Access): 61 (1:60) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x5bf Lifetime Hammers/(Normal:Prefetch:Writeback): 61 (20:41:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 60 (19:41:0) Lost Hammers/(Refresh:Access): 61 (1:60) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x157 Lifetime Hammers/(Normal:Prefetch:Writeback): 61 (34:21:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 60 (33:21:6) Lost Hammers/(Refresh:Access): 61 (1:60) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x2af Lifetime Hammers/(Normal:Prefetch:Writeback): 61 (40:13:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 60 (39:13:8) Lost Hammers/(Refresh:Access): 61 (1:60) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x5bf Lifetime Hammers/(Normal:Prefetch:Writeback): 60 (17:43:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 59 (16:43:0) Lost Hammers/(Refresh:Access): 60 (1:59) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x5c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 60 (17:43:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 59 (16:43:0) Lost Hammers/(Refresh:Access): 60 (1:59) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 60 (20:38:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 59 (19:38:2) Lost Hammers/(Refresh:Access): 60 (1:59) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 60 (16:42:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 59 (15:42:2) Lost Hammers/(Refresh:Access): 60 (1:59) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 60 (16:42:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 59 (15:42:2) Lost Hammers/(Refresh:Access): 60 (1:59) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 60 (20:38:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 59 (19:38:2) Lost Hammers/(Refresh:Access): 60 (1:59) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x2b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 60 (38:12:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 59 (37:12:10) Lost Hammers/(Refresh:Access): 60 (1:59) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x271 Lifetime Hammers/(Normal:Prefetch:Writeback): 60 (26:25:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 59 (25:25:9) Lost Hammers/(Refresh:Access): 60 (1:59) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x2af Lifetime Hammers/(Normal:Prefetch:Writeback): 60 (38:12:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 59 (37:12:10) Lost Hammers/(Refresh:Access): 60 (1:59) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x26f Lifetime Hammers/(Normal:Prefetch:Writeback): 60 (26:25:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 59 (25:25:9) Lost Hammers/(Refresh:Access): 60 (1:59) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x5c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 59 (22:37:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 58 (21:37:0) Lost Hammers/(Refresh:Access): 59 (1:58) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x151 Lifetime Hammers/(Normal:Prefetch:Writeback): 59 (39:14:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 58 (38:14:6) Lost Hammers/(Refresh:Access): 59 (1:58) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x5c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 59 (20:39:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 58 (19:39:0) Lost Hammers/(Refresh:Access): 59 (1:58) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x14f Lifetime Hammers/(Normal:Prefetch:Writeback): 59 (39:14:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 58 (38:14:6) Lost Hammers/(Refresh:Access): 59 (1:58) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x5bf Lifetime Hammers/(Normal:Prefetch:Writeback): 59 (22:37:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 58 (21:37:0) Lost Hammers/(Refresh:Access): 59 (1:58) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x5bf Lifetime Hammers/(Normal:Prefetch:Writeback): 59 (20:39:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 58 (19:39:0) Lost Hammers/(Refresh:Access): 59 (1:58) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x5c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 59 (20:39:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 58 (19:39:0) Lost Hammers/(Refresh:Access): 59 (1:58) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 59 (15:42:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 58 (14:42:2) Lost Hammers/(Refresh:Access): 59 (1:58) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 59 (15:42:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 58 (14:42:2) Lost Hammers/(Refresh:Access): 59 (1:58) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x2b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 59 (41:10:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 58 (40:10:8) Lost Hammers/(Refresh:Access): 59 (1:58) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x267 Lifetime Hammers/(Normal:Prefetch:Writeback): 59 (30:26:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 58 (29:26:3) Lost Hammers/(Refresh:Access): 59 (1:58) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x2af Lifetime Hammers/(Normal:Prefetch:Writeback): 59 (42:11:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 58 (41:11:6) Lost Hammers/(Refresh:Access): 59 (1:58) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x147 Lifetime Hammers/(Normal:Prefetch:Writeback): 59 (27:25:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 58 (26:25:7) Lost Hammers/(Refresh:Access): 59 (1:58) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x2b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 59 (42:11:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 58 (41:11:6) Lost Hammers/(Refresh:Access): 59 (1:58) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x2af Lifetime Hammers/(Normal:Prefetch:Writeback): 59 (41:10:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 58 (40:10:8) Lost Hammers/(Refresh:Access): 59 (1:58) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x149 Lifetime Hammers/(Normal:Prefetch:Writeback): 59 (27:25:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 58 (26:25:7) Lost Hammers/(Refresh:Access): 59 (1:58) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x5bf Lifetime Hammers/(Normal:Prefetch:Writeback): 59 (20:39:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 58 (19:39:0) Lost Hammers/(Refresh:Access): 59 (1:58) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x26f Lifetime Hammers/(Normal:Prefetch:Writeback): 59 (36:16:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 58 (35:16:7) Lost Hammers/(Refresh:Access): 59 (1:58) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x269 Lifetime Hammers/(Normal:Prefetch:Writeback): 59 (30:26:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 58 (29:26:3) Lost Hammers/(Refresh:Access): 59 (1:58) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x271 Lifetime Hammers/(Normal:Prefetch:Writeback): 59 (36:16:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 58 (35:16:7) Lost Hammers/(Refresh:Access): 59 (1:58) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x99 Lifetime Hammers/(Normal:Prefetch:Writeback): 59 (31:22:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 58 (30:22:6) Lost Hammers/(Refresh:Access): 59 (1:58) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x97 Lifetime Hammers/(Normal:Prefetch:Writeback): 59 (31:22:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 58 (30:22:6) Lost Hammers/(Refresh:Access): 59 (1:58) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x14f Lifetime Hammers/(Normal:Prefetch:Writeback): 58 (29:25:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 57 (28:25:4) Lost Hammers/(Refresh:Access): 58 (1:57) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 58 (13:43:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 57 (12:43:2) Lost Hammers/(Refresh:Access): 58 (1:57) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x271 Lifetime Hammers/(Normal:Prefetch:Writeback): 58 (20:31:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 57 (19:31:7) Lost Hammers/(Refresh:Access): 58 (1:57) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x157 Lifetime Hammers/(Normal:Prefetch:Writeback): 58 (37:19:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 57 (36:19:2) Lost Hammers/(Refresh:Access): 58 (1:57) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x267 Lifetime Hammers/(Normal:Prefetch:Writeback): 58 (27:29:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 57 (26:29:2) Lost Hammers/(Refresh:Access): 58 (1:57) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x269 Lifetime Hammers/(Normal:Prefetch:Writeback): 58 (27:29:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 57 (26:29:2) Lost Hammers/(Refresh:Access): 58 (1:57) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x151 Lifetime Hammers/(Normal:Prefetch:Writeback): 58 (30:21:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 57 (29:21:7) Lost Hammers/(Refresh:Access): 58 (1:57) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x99 Lifetime Hammers/(Normal:Prefetch:Writeback): 58 (27:26:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 57 (26:26:5) Lost Hammers/(Refresh:Access): 58 (1:57) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x151 Lifetime Hammers/(Normal:Prefetch:Writeback): 58 (29:25:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 57 (28:25:4) Lost Hammers/(Refresh:Access): 58 (1:57) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x14f Lifetime Hammers/(Normal:Prefetch:Writeback): 58 (30:21:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 57 (29:21:7) Lost Hammers/(Refresh:Access): 58 (1:57) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x5c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 58 (17:41:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 57 (16:41:0) Lost Hammers/(Refresh:Access): 58 (1:57) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x159 Lifetime Hammers/(Normal:Prefetch:Writeback): 58 (37:19:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 57 (36:19:2) Lost Hammers/(Refresh:Access): 58 (1:57) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x97 Lifetime Hammers/(Normal:Prefetch:Writeback): 58 (27:26:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 57 (26:26:5) Lost Hammers/(Refresh:Access): 58 (1:57) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x271 Lifetime Hammers/(Normal:Prefetch:Writeback): 58 (24:29:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 57 (23:29:5) Lost Hammers/(Refresh:Access): 58 (1:57) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x5bf Lifetime Hammers/(Normal:Prefetch:Writeback): 58 (17:41:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 57 (16:41:0) Lost Hammers/(Refresh:Access): 58 (1:57) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x15f Lifetime Hammers/(Normal:Prefetch:Writeback): 58 (29:26:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 57 (28:26:3) Lost Hammers/(Refresh:Access): 58 (1:57) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x26f Lifetime Hammers/(Normal:Prefetch:Writeback): 58 (24:29:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 57 (23:29:5) Lost Hammers/(Refresh:Access): 58 (1:57) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x26f Lifetime Hammers/(Normal:Prefetch:Writeback): 58 (20:31:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 57 (19:31:7) Lost Hammers/(Refresh:Access): 58 (1:57) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 58 (13:43:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 57 (12:43:2) Lost Hammers/(Refresh:Access): 58 (1:57) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x161 Lifetime Hammers/(Normal:Prefetch:Writeback): 58 (29:26:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 57 (28:26:3) Lost Hammers/(Refresh:Access): 58 (1:57) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x26f Lifetime Hammers/(Normal:Prefetch:Writeback): 57 (29:20:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 56 (28:20:8) Lost Hammers/(Refresh:Access): 57 (1:56) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x5bf Lifetime Hammers/(Normal:Prefetch:Writeback): 57 (21:36:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 56 (20:36:0) Lost Hammers/(Refresh:Access): 57 (1:56) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x271 Lifetime Hammers/(Normal:Prefetch:Writeback): 57 (29:20:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 56 (28:20:8) Lost Hammers/(Refresh:Access): 57 (1:56) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x2b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 57 (42:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 56 (41:11:4) Lost Hammers/(Refresh:Access): 57 (1:56) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x271 Lifetime Hammers/(Normal:Prefetch:Writeback): 57 (25:25:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 56 (24:25:7) Lost Hammers/(Refresh:Access): 57 (1:56) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x26f Lifetime Hammers/(Normal:Prefetch:Writeback): 57 (25:25:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 56 (24:25:7) Lost Hammers/(Refresh:Access): 57 (1:56) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x71 Lifetime Hammers/(Normal:Prefetch:Writeback): 57 (41:8:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 56 (40:8:8) Lost Hammers/(Refresh:Access): 57 (1:56) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x269 Lifetime Hammers/(Normal:Prefetch:Writeback): 57 (31:24:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 56 (30:24:2) Lost Hammers/(Refresh:Access): 57 (1:56) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x2af Lifetime Hammers/(Normal:Prefetch:Writeback): 57 (42:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 56 (41:11:4) Lost Hammers/(Refresh:Access): 57 (1:56) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x14f Lifetime Hammers/(Normal:Prefetch:Writeback): 57 (37:14:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 56 (36:14:6) Lost Hammers/(Refresh:Access): 57 (1:56) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x13f Lifetime Hammers/(Normal:Prefetch:Writeback): 57 (32:19:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 56 (31:19:6) Lost Hammers/(Refresh:Access): 57 (1:56) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x2d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 57 (26:21:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 56 (25:21:10) Lost Hammers/(Refresh:Access): 57 (1:56) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x2d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 57 (26:21:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 56 (25:21:10) Lost Hammers/(Refresh:Access): 57 (1:56) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x151 Lifetime Hammers/(Normal:Prefetch:Writeback): 57 (37:14:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 56 (36:14:6) Lost Hammers/(Refresh:Access): 57 (1:56) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x2b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 57 (40:11:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 56 (39:11:6) Lost Hammers/(Refresh:Access): 57 (1:56) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x141 Lifetime Hammers/(Normal:Prefetch:Writeback): 57 (32:19:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 56 (31:19:6) Lost Hammers/(Refresh:Access): 57 (1:56) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x2af Lifetime Hammers/(Normal:Prefetch:Writeback): 57 (40:11:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 56 (39:11:6) Lost Hammers/(Refresh:Access): 57 (1:56) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x6f Lifetime Hammers/(Normal:Prefetch:Writeback): 57 (41:8:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 56 (40:8:8) Lost Hammers/(Refresh:Access): 57 (1:56) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x5c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 57 (21:36:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 56 (20:36:0) Lost Hammers/(Refresh:Access): 57 (1:56) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x267 Lifetime Hammers/(Normal:Prefetch:Writeback): 57 (31:24:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 56 (30:24:2) Lost Hammers/(Refresh:Access): 57 (1:56) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x169 Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (36:13:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (35:13:7) Lost Hammers/(Refresh:Access): 56 (1:55) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x169 Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (26:25:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (25:25:5) Lost Hammers/(Refresh:Access): 56 (1:55) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x159 Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (23:28:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (22:28:5) Lost Hammers/(Refresh:Access): 56 (1:55) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x167 Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (36:13:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (35:13:7) Lost Hammers/(Refresh:Access): 56 (1:55) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x157 Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (33:19:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (32:19:4) Lost Hammers/(Refresh:Access): 56 (1:55) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x159 Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (33:19:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (32:19:4) Lost Hammers/(Refresh:Access): 56 (1:55) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x157 Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (23:28:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (22:28:5) Lost Hammers/(Refresh:Access): 56 (1:55) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x167 Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (26:25:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (25:25:5) Lost Hammers/(Refresh:Access): 56 (1:55) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x141 Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (33:16:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (32:16:7) Lost Hammers/(Refresh:Access): 56 (1:55) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x40f Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (36:14:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (35:14:6) Lost Hammers/(Refresh:Access): 56 (1:55) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x26f Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (31:18:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (30:18:7) Lost Hammers/(Refresh:Access): 56 (1:55) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x271 Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (31:18:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (30:18:7) Lost Hammers/(Refresh:Access): 56 (1:55) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x411 Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (36:14:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (35:14:6) Lost Hammers/(Refresh:Access): 56 (1:55) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x97 Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (30:23:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (29:23:3) Lost Hammers/(Refresh:Access): 56 (1:55) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x99 Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (30:23:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (29:23:3) Lost Hammers/(Refresh:Access): 56 (1:55) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x157 Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (34:20:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (33:20:2) Lost Hammers/(Refresh:Access): 56 (1:55) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x5c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (16:40:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (15:40:0) Lost Hammers/(Refresh:Access): 56 (1:55) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x5bf Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (16:40:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (15:40:0) Lost Hammers/(Refresh:Access): 56 (1:55) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x159 Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (34:20:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (33:20:2) Lost Hammers/(Refresh:Access): 56 (1:55) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x151 Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (29:20:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (28:20:7) Lost Hammers/(Refresh:Access): 56 (1:55) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x13f Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (33:16:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (32:16:7) Lost Hammers/(Refresh:Access): 56 (1:55) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x411 Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (33:14:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (32:14:9) Lost Hammers/(Refresh:Access): 56 (1:55) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x40f Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (33:14:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (32:14:9) Lost Hammers/(Refresh:Access): 56 (1:55) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x2b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (43:8:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (42:8:5) Lost Hammers/(Refresh:Access): 56 (1:55) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x2af Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (43:8:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (42:8:5) Lost Hammers/(Refresh:Access): 56 (1:55) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x5c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (23:33:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (22:33:0) Lost Hammers/(Refresh:Access): 56 (1:55) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x14f Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (29:20:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (28:20:7) Lost Hammers/(Refresh:Access): 56 (1:55) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x5bf Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (23:33:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (22:33:0) Lost Hammers/(Refresh:Access): 56 (1:55) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x2af Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (36:11:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (35:11:9) Lost Hammers/(Refresh:Access): 56 (1:55) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x2b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 56 (36:11:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 55 (35:11:9) Lost Hammers/(Refresh:Access): 56 (1:55) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x15f Lifetime Hammers/(Normal:Prefetch:Writeback): 55 (31:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 54 (30:22:2) Lost Hammers/(Refresh:Access): 55 (1:54) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x161 Lifetime Hammers/(Normal:Prefetch:Writeback): 55 (31:19:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 54 (30:19:5) Lost Hammers/(Refresh:Access): 55 (1:54) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x15f Lifetime Hammers/(Normal:Prefetch:Writeback): 55 (31:19:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 54 (30:19:5) Lost Hammers/(Refresh:Access): 55 (1:54) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 55 (18:35:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 54 (17:35:2) Lost Hammers/(Refresh:Access): 55 (1:54) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x161 Lifetime Hammers/(Normal:Prefetch:Writeback): 55 (31:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 54 (30:22:2) Lost Hammers/(Refresh:Access): 55 (1:54) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x97 Lifetime Hammers/(Normal:Prefetch:Writeback): 55 (27:23:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 54 (26:23:5) Lost Hammers/(Refresh:Access): 55 (1:54) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x157 Lifetime Hammers/(Normal:Prefetch:Writeback): 55 (19:32:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 54 (18:32:4) Lost Hammers/(Refresh:Access): 55 (1:54) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x6f Lifetime Hammers/(Normal:Prefetch:Writeback): 55 (38:10:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 54 (37:10:7) Lost Hammers/(Refresh:Access): 55 (1:54) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x159 Lifetime Hammers/(Normal:Prefetch:Writeback): 55 (19:32:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 54 (18:32:4) Lost Hammers/(Refresh:Access): 55 (1:54) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x71 Lifetime Hammers/(Normal:Prefetch:Writeback): 55 (38:10:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 54 (37:10:7) Lost Hammers/(Refresh:Access): 55 (1:54) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x409 Lifetime Hammers/(Normal:Prefetch:Writeback): 55 (13:7:35) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 54 (12:7:35) Lost Hammers/(Refresh:Access): 55 (1:54) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x99 Lifetime Hammers/(Normal:Prefetch:Writeback): 55 (27:23:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 54 (26:23:5) Lost Hammers/(Refresh:Access): 55 (1:54) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x309 Lifetime Hammers/(Normal:Prefetch:Writeback): 55 (19:23:13) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 54 (18:23:13) Lost Hammers/(Refresh:Access): 55 (1:54) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x407 Lifetime Hammers/(Normal:Prefetch:Writeback): 55 (13:7:35) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 54 (12:7:35) Lost Hammers/(Refresh:Access): 55 (1:54) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x307 Lifetime Hammers/(Normal:Prefetch:Writeback): 55 (19:23:13) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 54 (18:23:13) Lost Hammers/(Refresh:Access): 55 (1:54) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x151 Lifetime Hammers/(Normal:Prefetch:Writeback): 55 (32:20:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 54 (31:20:3) Lost Hammers/(Refresh:Access): 55 (1:54) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 55 (18:35:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 54 (17:35:2) Lost Hammers/(Refresh:Access): 55 (1:54) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x14f Lifetime Hammers/(Normal:Prefetch:Writeback): 55 (32:20:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 54 (31:20:3) Lost Hammers/(Refresh:Access): 55 (1:54) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (22:30:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (21:30:2) Lost Hammers/(Refresh:Access): 54 (1:53) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x16f Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (20:30:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (19:30:4) Lost Hammers/(Refresh:Access): 54 (1:53) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x411 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (30:15:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (29:15:9) Lost Hammers/(Refresh:Access): 54 (1:53) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (22:30:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (21:30:2) Lost Hammers/(Refresh:Access): 54 (1:53) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x171 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (20:30:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (19:30:4) Lost Hammers/(Refresh:Access): 54 (1:53) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x2af Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (42:7:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (41:7:5) Lost Hammers/(Refresh:Access): 54 (1:53) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x14f Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (27:24:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (26:24:3) Lost Hammers/(Refresh:Access): 54 (1:53) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x2b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (42:7:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (41:7:5) Lost Hammers/(Refresh:Access): 54 (1:53) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x151 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (27:24:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (26:24:3) Lost Hammers/(Refresh:Access): 54 (1:53) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x157 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (29:20:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (28:20:5) Lost Hammers/(Refresh:Access): 54 (1:53) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x159 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (29:20:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (28:20:5) Lost Hammers/(Refresh:Access): 54 (1:53) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x13f Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (34:13:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (33:13:7) Lost Hammers/(Refresh:Access): 54 (1:53) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x141 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (34:13:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (33:13:7) Lost Hammers/(Refresh:Access): 54 (1:53) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x2d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (24:19:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (23:19:11) Lost Hammers/(Refresh:Access): 54 (1:53) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (22:31:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (21:31:1) Lost Hammers/(Refresh:Access): 54 (1:53) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x2d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (27:20:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (26:20:7) Lost Hammers/(Refresh:Access): 54 (1:53) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (18:30:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (17:30:6) Lost Hammers/(Refresh:Access): 54 (1:53) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x2d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (27:20:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (26:20:7) Lost Hammers/(Refresh:Access): 54 (1:53) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (16:38:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (15:38:0) Lost Hammers/(Refresh:Access): 54 (1:53) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x40f Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (30:15:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (29:15:9) Lost Hammers/(Refresh:Access): 54 (1:53) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x2af Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (34:11:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (33:11:9) Lost Hammers/(Refresh:Access): 54 (1:53) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x2b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (34:11:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (33:11:9) Lost Hammers/(Refresh:Access): 54 (1:53) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (18:30:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (17:30:6) Lost Hammers/(Refresh:Access): 54 (1:53) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x15f Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (26:20:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (25:20:8) Lost Hammers/(Refresh:Access): 54 (1:53) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x2d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (24:19:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (23:19:11) Lost Hammers/(Refresh:Access): 54 (1:53) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x161 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (26:20:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (25:20:8) Lost Hammers/(Refresh:Access): 54 (1:53) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x6f Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (36:6:12) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (35:6:12) Lost Hammers/(Refresh:Access): 54 (1:53) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x2b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (39:9:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (38:9:6) Lost Hammers/(Refresh:Access): 54 (1:53) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x2af Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (39:9:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (38:9:6) Lost Hammers/(Refresh:Access): 54 (1:53) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x71 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (36:6:12) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (35:6:12) Lost Hammers/(Refresh:Access): 54 (1:53) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x151 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (30:20:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (29:20:4) Lost Hammers/(Refresh:Access): 54 (1:53) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x2af Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (40:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (39:11:3) Lost Hammers/(Refresh:Access): 54 (1:53) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x2b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (40:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (39:11:3) Lost Hammers/(Refresh:Access): 54 (1:53) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x407 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (13:8:33) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (12:8:33) Lost Hammers/(Refresh:Access): 54 (1:53) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x409 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (13:8:33) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (12:8:33) Lost Hammers/(Refresh:Access): 54 (1:53) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x149 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (24:27:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (23:27:3) Lost Hammers/(Refresh:Access): 54 (1:53) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x14f Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (30:20:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (29:20:4) Lost Hammers/(Refresh:Access): 54 (1:53) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x147 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (24:27:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (23:27:3) Lost Hammers/(Refresh:Access): 54 (1:53) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (22:31:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (21:31:1) Lost Hammers/(Refresh:Access): 54 (1:53) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x269 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (29:24:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (28:24:1) Lost Hammers/(Refresh:Access): 54 (1:53) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x267 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (29:24:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (28:24:1) Lost Hammers/(Refresh:Access): 54 (1:53) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (17:35:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (16:35:2) Lost Hammers/(Refresh:Access): 54 (1:53) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x269 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (23:29:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (22:29:2) Lost Hammers/(Refresh:Access): 54 (1:53) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x267 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (23:29:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (22:29:2) Lost Hammers/(Refresh:Access): 54 (1:53) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (17:35:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (16:35:2) Lost Hammers/(Refresh:Access): 54 (1:53) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 54 (16:38:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 53 (15:38:0) Lost Hammers/(Refresh:Access): 54 (1:53) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x147 Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (30:20:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (29:20:3) Lost Hammers/(Refresh:Access): 53 (1:52) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x2d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (25:20:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (24:20:8) Lost Hammers/(Refresh:Access): 53 (1:52) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x149 Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (30:20:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (29:20:3) Lost Hammers/(Refresh:Access): 53 (1:52) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x159 Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (18:33:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (17:33:2) Lost Hammers/(Refresh:Access): 53 (1:52) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x2d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (25:20:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (24:20:8) Lost Hammers/(Refresh:Access): 53 (1:52) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x157 Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (18:33:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (17:33:2) Lost Hammers/(Refresh:Access): 53 (1:52) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x171 Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (20:31:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (19:31:2) Lost Hammers/(Refresh:Access): 53 (1:52) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x16f Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (20:31:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (19:31:2) Lost Hammers/(Refresh:Access): 53 (1:52) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x71 Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (38:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (37:13:2) Lost Hammers/(Refresh:Access): 53 (1:52) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x6f Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (38:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (37:13:2) Lost Hammers/(Refresh:Access): 53 (1:52) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (18:34:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (17:34:1) Lost Hammers/(Refresh:Access): 53 (1:52) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (18:34:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (17:34:1) Lost Hammers/(Refresh:Access): 53 (1:52) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x149 Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (24:26:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (23:26:3) Lost Hammers/(Refresh:Access): 53 (1:52) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x147 Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (24:26:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (23:26:3) Lost Hammers/(Refresh:Access): 53 (1:52) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x97 Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (28:22:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (27:22:3) Lost Hammers/(Refresh:Access): 53 (1:52) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x99 Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (28:22:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (27:22:3) Lost Hammers/(Refresh:Access): 53 (1:52) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x26f Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (17:30:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (16:30:6) Lost Hammers/(Refresh:Access): 53 (1:52) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x309 Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (15:27:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (14:27:11) Lost Hammers/(Refresh:Access): 53 (1:52) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x307 Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (15:27:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (14:27:11) Lost Hammers/(Refresh:Access): 53 (1:52) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (20:31:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (19:31:2) Lost Hammers/(Refresh:Access): 53 (1:52) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x1b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (17:29:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (16:29:7) Lost Hammers/(Refresh:Access): 53 (1:52) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x159 Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (21:30:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (20:30:2) Lost Hammers/(Refresh:Access): 53 (1:52) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (16:34:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (15:34:3) Lost Hammers/(Refresh:Access): 53 (1:52) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x157 Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (21:30:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (20:30:2) Lost Hammers/(Refresh:Access): 53 (1:52) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (20:31:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (19:31:2) Lost Hammers/(Refresh:Access): 53 (1:52) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x271 Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (17:30:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (16:30:6) Lost Hammers/(Refresh:Access): 53 (1:52) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x1af Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (17:29:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (16:29:7) Lost Hammers/(Refresh:Access): 53 (1:52) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 53 (16:34:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 52 (15:34:3) Lost Hammers/(Refresh:Access): 53 (1:52) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x99 Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (26:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (25:25:1) Lost Hammers/(Refresh:Access): 52 (1:51) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x1df Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (19:19:14) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (18:19:14) Lost Hammers/(Refresh:Access): 52 (1:51) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x271 Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (21:27:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (20:27:4) Lost Hammers/(Refresh:Access): 52 (1:51) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x219 Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (12:32:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (11:32:8) Lost Hammers/(Refresh:Access): 52 (1:51) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x26f Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (21:27:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (20:27:4) Lost Hammers/(Refresh:Access): 52 (1:51) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x217 Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (12:32:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (11:32:8) Lost Hammers/(Refresh:Access): 52 (1:51) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x99 Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (20:28:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (19:28:4) Lost Hammers/(Refresh:Access): 52 (1:51) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x2d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (37:8:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (36:8:7) Lost Hammers/(Refresh:Access): 52 (1:51) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x157 Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (26:21:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (25:21:5) Lost Hammers/(Refresh:Access): 52 (1:51) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x159 Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (26:21:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (25:21:5) Lost Hammers/(Refresh:Access): 52 (1:51) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x97 Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (26:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (25:25:1) Lost Hammers/(Refresh:Access): 52 (1:51) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x411 Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (30:16:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (29:16:6) Lost Hammers/(Refresh:Access): 52 (1:51) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x40f Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (30:16:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (29:16:6) Lost Hammers/(Refresh:Access): 52 (1:51) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x40f Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (34:11:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (33:11:7) Lost Hammers/(Refresh:Access): 52 (1:51) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x13f Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (34:12:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (33:12:6) Lost Hammers/(Refresh:Access): 52 (1:51) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x99 Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (25:24:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (24:24:3) Lost Hammers/(Refresh:Access): 52 (1:51) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x141 Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (34:12:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (33:12:6) Lost Hammers/(Refresh:Access): 52 (1:51) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (22:29:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (21:29:1) Lost Hammers/(Refresh:Access): 52 (1:51) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (22:29:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (21:29:1) Lost Hammers/(Refresh:Access): 52 (1:51) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x97 Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (25:24:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (24:24:3) Lost Hammers/(Refresh:Access): 52 (1:51) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x411 Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (34:11:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (33:11:7) Lost Hammers/(Refresh:Access): 52 (1:51) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x269 Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (21:31:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (20:31:0) Lost Hammers/(Refresh:Access): 52 (1:51) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x2cf Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (37:8:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (36:8:7) Lost Hammers/(Refresh:Access): 52 (1:51) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x159 Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (22:23:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (21:23:7) Lost Hammers/(Refresh:Access): 52 (1:51) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x1e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (19:19:14) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (18:19:14) Lost Hammers/(Refresh:Access): 52 (1:51) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x269 Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (19:32:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (18:32:1) Lost Hammers/(Refresh:Access): 52 (1:51) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x97 Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (20:28:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (19:28:4) Lost Hammers/(Refresh:Access): 52 (1:51) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x157 Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (22:23:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (21:23:7) Lost Hammers/(Refresh:Access): 52 (1:51) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x267 Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (19:32:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (18:32:1) Lost Hammers/(Refresh:Access): 52 (1:51) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x267 Lifetime Hammers/(Normal:Prefetch:Writeback): 52 (21:31:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 51 (20:31:0) Lost Hammers/(Refresh:Access): 52 (1:51) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x161 Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (24:20:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (23:20:7) Lost Hammers/(Refresh:Access): 51 (1:50) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x13f Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (27:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (26:22:2) Lost Hammers/(Refresh:Access): 51 (1:50) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x141 Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (27:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (26:22:2) Lost Hammers/(Refresh:Access): 51 (1:50) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x71 Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (33:11:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (32:11:7) Lost Hammers/(Refresh:Access): 51 (1:50) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x15f Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (18:30:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (17:30:3) Lost Hammers/(Refresh:Access): 51 (1:50) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x15f Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (24:20:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (23:20:7) Lost Hammers/(Refresh:Access): 51 (1:50) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x6f Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (33:11:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (32:11:7) Lost Hammers/(Refresh:Access): 51 (1:50) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x15f Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (26:23:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (25:23:2) Lost Hammers/(Refresh:Access): 51 (1:50) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (17:33:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (16:33:1) Lost Hammers/(Refresh:Access): 51 (1:50) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x159 Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (21:26:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (20:26:4) Lost Hammers/(Refresh:Access): 51 (1:50) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (17:33:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (16:33:1) Lost Hammers/(Refresh:Access): 51 (1:50) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x2d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (29:15:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (28:15:7) Lost Hammers/(Refresh:Access): 51 (1:50) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (15:35:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (14:35:1) Lost Hammers/(Refresh:Access): 51 (1:50) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x157 Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (21:26:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (20:26:4) Lost Hammers/(Refresh:Access): 51 (1:50) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (15:35:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (14:35:1) Lost Hammers/(Refresh:Access): 51 (1:50) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x2d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (29:15:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (28:15:7) Lost Hammers/(Refresh:Access): 51 (1:50) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x40f Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (36:7:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (35:7:8) Lost Hammers/(Refresh:Access): 51 (1:50) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x16f Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (17:32:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (16:32:2) Lost Hammers/(Refresh:Access): 51 (1:50) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x2d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (27:20:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (26:20:4) Lost Hammers/(Refresh:Access): 51 (1:50) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x2d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (27:20:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (26:20:4) Lost Hammers/(Refresh:Access): 51 (1:50) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x40f Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (28:14:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (27:14:9) Lost Hammers/(Refresh:Access): 51 (1:50) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x411 Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (28:14:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (27:14:9) Lost Hammers/(Refresh:Access): 51 (1:50) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x171 Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (17:32:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (16:32:2) Lost Hammers/(Refresh:Access): 51 (1:50) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x161 Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (18:30:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (17:30:3) Lost Hammers/(Refresh:Access): 51 (1:50) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x161 Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (26:23:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (25:23:2) Lost Hammers/(Refresh:Access): 51 (1:50) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x411 Lifetime Hammers/(Normal:Prefetch:Writeback): 51 (36:7:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 50 (35:7:8) Lost Hammers/(Refresh:Access): 51 (1:50) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x409 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (10:7:33) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (9:7:33) Lost Hammers/(Refresh:Access): 50 (1:49) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x269 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (20:27:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (19:27:3) Lost Hammers/(Refresh:Access): 50 (1:49) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x2d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (26:16:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (25:16:8) Lost Hammers/(Refresh:Access): 50 (1:49) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x309 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (14:24:12) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (13:24:12) Lost Hammers/(Refresh:Access): 50 (1:49) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x259 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (29:11:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (28:11:10) Lost Hammers/(Refresh:Access): 50 (1:49) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x407 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (10:7:33) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (9:7:33) Lost Hammers/(Refresh:Access): 50 (1:49) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x141 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (30:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (29:17:3) Lost Hammers/(Refresh:Access): 50 (1:49) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x71 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (38:7:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (37:7:5) Lost Hammers/(Refresh:Access): 50 (1:49) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x257 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (29:11:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (28:11:10) Lost Hammers/(Refresh:Access): 50 (1:49) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x6f Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (38:7:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (37:7:5) Lost Hammers/(Refresh:Access): 50 (1:49) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x71 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (36:7:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (35:7:7) Lost Hammers/(Refresh:Access): 50 (1:49) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x267 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (20:27:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (19:27:3) Lost Hammers/(Refresh:Access): 50 (1:49) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x15f Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (21:24:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (20:24:5) Lost Hammers/(Refresh:Access): 50 (1:49) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x2d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (26:16:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (25:16:8) Lost Hammers/(Refresh:Access): 50 (1:49) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x161 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (21:24:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (20:24:5) Lost Hammers/(Refresh:Access): 50 (1:49) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x6f Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (36:7:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (35:7:7) Lost Hammers/(Refresh:Access): 50 (1:49) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x271 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (21:24:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (20:24:5) Lost Hammers/(Refresh:Access): 50 (1:49) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x161 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (19:29:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (18:29:2) Lost Hammers/(Refresh:Access): 50 (1:49) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x15f Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (19:29:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (18:29:2) Lost Hammers/(Refresh:Access): 50 (1:49) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x307 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (14:24:12) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (13:24:12) Lost Hammers/(Refresh:Access): 50 (1:49) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x13f Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (30:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (29:17:3) Lost Hammers/(Refresh:Access): 50 (1:49) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x407 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (14:5:31) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (13:5:31) Lost Hammers/(Refresh:Access): 50 (1:49) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x40f Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (32:9:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (31:9:9) Lost Hammers/(Refresh:Access): 50 (1:49) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x411 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (30:13:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (29:13:7) Lost Hammers/(Refresh:Access): 50 (1:49) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x2b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (35:9:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (34:9:6) Lost Hammers/(Refresh:Access): 50 (1:49) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x409 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (14:5:31) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (13:5:31) Lost Hammers/(Refresh:Access): 50 (1:49) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x40f Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (30:13:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (29:13:7) Lost Hammers/(Refresh:Access): 50 (1:49) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x411 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (32:9:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (31:9:9) Lost Hammers/(Refresh:Access): 50 (1:49) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x149 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (25:24:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (24:24:1) Lost Hammers/(Refresh:Access): 50 (1:49) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x2af Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (35:9:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (34:9:6) Lost Hammers/(Refresh:Access): 50 (1:49) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x147 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (25:24:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (24:24:1) Lost Hammers/(Refresh:Access): 50 (1:49) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x141 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (25:20:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (24:20:5) Lost Hammers/(Refresh:Access): 50 (1:49) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xd1 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (22:17:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (21:17:11) Lost Hammers/(Refresh:Access): 50 (1:49) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xcf Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (22:17:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (21:17:11) Lost Hammers/(Refresh:Access): 50 (1:49) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x13f Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (25:20:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (24:20:5) Lost Hammers/(Refresh:Access): 50 (1:49) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x407 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (15:6:29) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (14:6:29) Lost Hammers/(Refresh:Access): 50 (1:49) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x409 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (15:6:29) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (14:6:29) Lost Hammers/(Refresh:Access): 50 (1:49) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x40f Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (30:13:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (29:13:7) Lost Hammers/(Refresh:Access): 50 (1:49) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x2d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (25:18:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (24:18:7) Lost Hammers/(Refresh:Access): 50 (1:49) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x411 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (30:13:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (29:13:7) Lost Hammers/(Refresh:Access): 50 (1:49) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x26f Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (21:24:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (20:24:5) Lost Hammers/(Refresh:Access): 50 (1:49) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x97 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (19:29:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (18:29:2) Lost Hammers/(Refresh:Access): 50 (1:49) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x2d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (25:18:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (24:18:7) Lost Hammers/(Refresh:Access): 50 (1:49) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x2d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (22:20:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (21:20:8) Lost Hammers/(Refresh:Access): 50 (1:49) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x99 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (19:29:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (18:29:2) Lost Hammers/(Refresh:Access): 50 (1:49) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x2d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 50 (22:20:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 49 (21:20:8) Lost Hammers/(Refresh:Access): 50 (1:49) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x219 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (12:34:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (11:34:3) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x269 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (18:30:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (17:30:1) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x407 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (10:6:33) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (9:6:33) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x299 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (15:33:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (14:33:1) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x1b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (9:31:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (8:31:9) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x22f Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (20:22:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (19:22:7) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x169 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (20:28:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (19:28:1) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x167 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (20:28:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (19:28:1) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x297 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (15:31:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (14:31:3) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x147 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (23:23:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (22:23:3) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x40f Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (29:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (28:15:5) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x409 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (10:6:33) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (9:6:33) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x299 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (15:31:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (14:31:3) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x149 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (23:21:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (22:21:5) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x267 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (18:30:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (17:30:1) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x231 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (20:22:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (19:22:7) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x147 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (23:21:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (22:21:5) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x141 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (24:20:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (23:20:5) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x13f Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (24:20:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (23:20:5) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (17:30:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (16:30:2) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x1b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (9:31:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (8:31:9) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x297 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (15:33:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (14:33:1) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x2d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (24:21:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (23:21:4) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x411 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (29:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (28:15:5) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x2d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (24:21:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (23:21:4) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x231 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (16:28:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (15:28:5) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x15f Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (28:17:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (27:17:4) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xd7 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (25:16:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (24:16:8) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x161 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (30:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (29:14:5) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x15f Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (30:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (29:14:5) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x267 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (23:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (22:25:1) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xd9 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (25:16:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (24:16:8) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x27f Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (21:25:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (20:25:3) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x167 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (22:24:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (21:24:3) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x147 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (18:30:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (17:30:1) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x22f Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (16:28:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (15:28:5) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x14f Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (33:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (32:12:4) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x151 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (33:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (32:12:4) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x281 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (21:25:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (20:25:3) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x2cf Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (29:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (28:15:5) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x6f Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (36:8:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (35:8:5) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x71 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (36:8:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (35:8:5) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x149 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (18:30:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (17:30:1) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x161 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (28:17:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (27:17:4) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (17:30:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (16:30:2) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x171 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (22:26:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (21:26:1) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x149 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (23:23:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (22:23:3) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x16f Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (22:26:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (21:26:1) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x217 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (12:34:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (11:34:3) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x169 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (22:24:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (21:24:3) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x269 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (23:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (22:25:1) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x2d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 49 (29:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 48 (28:15:5) Lost Hammers/(Refresh:Access): 49 (1:48) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x409 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (11:7:30) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (10:7:30) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x307 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (13:26:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (12:26:9) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x149 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (22:23:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (21:23:3) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xff Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (18:21:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (17:21:9) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x147 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (22:23:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (21:23:3) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x40f Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (30:10:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (29:10:8) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x309 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (13:26:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (12:26:9) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x309 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (13:27:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (12:27:8) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x407 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (10:6:32) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (9:6:32) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x411 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (30:10:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (29:10:8) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x2cf Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (31:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (30:14:3) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x40f Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (30:9:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (29:9:9) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x407 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (11:7:30) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (10:7:30) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x101 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (18:21:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (17:21:9) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x307 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (13:27:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (12:27:8) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x2d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (31:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (30:14:3) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x409 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (10:6:32) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (9:6:32) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x151 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (30:13:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (29:13:5) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x411 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (30:9:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (29:9:9) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x14f Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (30:13:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (29:13:5) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x409 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (9:8:31) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (8:8:31) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x97 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (20:26:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (19:26:2) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x167 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (22:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (21:25:1) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x14f Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (25:19:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (24:19:4) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (14:32:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (13:32:2) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x231 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (19:24:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (18:24:5) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x22f Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (19:24:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (18:24:5) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x1b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (19:22:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (18:22:7) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x169 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (28:16:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (27:16:4) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (14:32:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (13:32:2) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x97 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (24:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (23:22:2) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x309 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (14:23:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (13:23:11) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x167 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (28:16:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (27:16:4) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x149 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (23:22:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (22:22:3) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x22f Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (16:25:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (15:25:7) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x231 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (16:25:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (15:25:7) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x141 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (28:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (27:17:3) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x147 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (23:22:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (22:22:3) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x407 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (9:8:31) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (8:8:31) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x13f Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (28:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (27:17:3) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x407 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (14:5:29) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (13:5:29) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x297 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (14:32:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (13:32:2) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x299 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (14:32:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (13:32:2) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x169 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (22:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (21:25:1) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x151 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (25:19:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (24:19:4) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x409 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (14:5:29) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (13:5:29) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x1b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (19:22:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (18:22:7) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x99 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (20:26:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (19:26:2) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x99 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (24:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (23:22:2) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x307 Lifetime Hammers/(Normal:Prefetch:Writeback): 48 (14:23:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 47 (13:23:11) Lost Hammers/(Refresh:Access): 48 (1:47) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x2d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (24:15:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (23:15:8) Lost Hammers/(Refresh:Access): 47 (1:46) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x1e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (17:22:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (16:22:8) Lost Hammers/(Refresh:Access): 47 (1:46) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x167 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (26:18:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (25:18:3) Lost Hammers/(Refresh:Access): 47 (1:46) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x22f Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (14:28:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (13:28:5) Lost Hammers/(Refresh:Access): 47 (1:46) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x16f Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (18:26:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (17:26:3) Lost Hammers/(Refresh:Access): 47 (1:46) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x171 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (18:26:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (17:26:3) Lost Hammers/(Refresh:Access): 47 (1:46) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x231 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (13:29:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (12:29:5) Lost Hammers/(Refresh:Access): 47 (1:46) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xd9 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (24:18:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (23:18:5) Lost Hammers/(Refresh:Access): 47 (1:46) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x22f Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (13:29:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (12:29:5) Lost Hammers/(Refresh:Access): 47 (1:46) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x77 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (29:4:14) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (28:4:14) Lost Hammers/(Refresh:Access): 47 (1:46) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x157 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (25:20:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (24:20:2) Lost Hammers/(Refresh:Access): 47 (1:46) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x2d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (24:15:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (23:15:8) Lost Hammers/(Refresh:Access): 47 (1:46) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x2b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (25:15:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (24:15:7) Lost Hammers/(Refresh:Access): 47 (1:46) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x1df Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (17:22:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (16:22:8) Lost Hammers/(Refresh:Access): 47 (1:46) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xd7 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (24:18:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (23:18:5) Lost Hammers/(Refresh:Access): 47 (1:46) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x2b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (25:15:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (24:15:7) Lost Hammers/(Refresh:Access): 47 (1:46) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x159 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (25:20:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (24:20:2) Lost Hammers/(Refresh:Access): 47 (1:46) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x1df Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (14:24:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (13:24:9) Lost Hammers/(Refresh:Access): 47 (1:46) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x79 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (29:4:14) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (28:4:14) Lost Hammers/(Refresh:Access): 47 (1:46) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x1af Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (17:26:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (16:26:4) Lost Hammers/(Refresh:Access): 47 (1:46) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x407 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (11:4:32) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (10:4:32) Lost Hammers/(Refresh:Access): 47 (1:46) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x15f Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (27:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (26:18:2) Lost Hammers/(Refresh:Access): 47 (1:46) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x1a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (17:24:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (16:24:6) Lost Hammers/(Refresh:Access): 47 (1:46) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x19f Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (17:24:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (16:24:6) Lost Hammers/(Refresh:Access): 47 (1:46) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x8f Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (32:8:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (31:8:7) Lost Hammers/(Refresh:Access): 47 (1:46) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x231 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (14:28:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (13:28:5) Lost Hammers/(Refresh:Access): 47 (1:46) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x71 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (30:11:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (29:11:6) Lost Hammers/(Refresh:Access): 47 (1:46) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x1af Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (16:24:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (15:24:7) Lost Hammers/(Refresh:Access): 47 (1:46) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x161 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (27:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (26:18:2) Lost Hammers/(Refresh:Access): 47 (1:46) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x169 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (26:18:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (25:18:3) Lost Hammers/(Refresh:Access): 47 (1:46) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x6f Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (30:11:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (29:11:6) Lost Hammers/(Refresh:Access): 47 (1:46) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x1b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (17:26:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (16:26:4) Lost Hammers/(Refresh:Access): 47 (1:46) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x409 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (11:4:32) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (10:4:32) Lost Hammers/(Refresh:Access): 47 (1:46) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x1ef Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (14:31:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (13:31:2) Lost Hammers/(Refresh:Access): 47 (1:46) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x1f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (14:31:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (13:31:2) Lost Hammers/(Refresh:Access): 47 (1:46) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x91 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (32:8:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (31:8:7) Lost Hammers/(Refresh:Access): 47 (1:46) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x79 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (27:3:17) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (26:3:17) Lost Hammers/(Refresh:Access): 47 (1:46) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x77 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (27:3:17) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (26:3:17) Lost Hammers/(Refresh:Access): 47 (1:46) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x40f Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (31:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (30:11:5) Lost Hammers/(Refresh:Access): 47 (1:46) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x1e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (14:24:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (13:24:9) Lost Hammers/(Refresh:Access): 47 (1:46) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x411 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (31:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (30:11:5) Lost Hammers/(Refresh:Access): 47 (1:46) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x1b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 47 (16:24:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 46 (15:24:7) Lost Hammers/(Refresh:Access): 47 (1:46) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x1b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (13:27:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (12:27:6) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x5b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (21:25:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (20:25:0) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x297 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (9:33:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (8:33:4) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x5b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (21:25:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (20:25:0) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x7f Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (25:9:12) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (24:9:12) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x99 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (26:16:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (25:16:4) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x309 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (12:26:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (11:26:8) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x219 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (11:30:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (10:30:5) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x169 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (25:16:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (24:16:5) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x1b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (15:25:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (14:25:6) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x97 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (26:16:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (25:16:4) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x1b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (16:22:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (15:22:8) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x167 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (25:16:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (24:16:5) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x81 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (25:9:12) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (24:9:12) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x307 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (12:26:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (11:26:8) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x1b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (16:22:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (15:22:8) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x1df Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (13:25:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (12:25:8) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x16f Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (19:25:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (18:25:2) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x1af Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (20:19:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (19:19:7) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x97 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (20:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (19:25:1) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x407 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (11:6:29) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (10:6:29) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x99 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (20:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (19:25:1) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x147 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (22:23:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (21:23:1) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x159 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (16:26:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (15:26:4) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x157 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (16:26:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (15:26:4) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x16f Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (21:23:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (20:23:2) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x171 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (21:23:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (20:23:2) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x1af Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (13:27:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (12:27:6) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x171 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (19:25:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (18:25:2) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x259 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (22:14:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (21:14:10) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x149 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (22:23:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (21:23:1) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x257 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (22:14:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (21:14:10) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x299 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (12:33:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (11:33:1) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x309 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (10:26:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (9:26:10) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x297 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (12:33:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (11:33:1) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x307 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (10:26:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (9:26:10) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xd1 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (27:12:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (26:12:7) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x6f Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (32:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (31:10:4) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x217 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (11:30:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (10:30:5) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x307 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (17:22:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (16:22:7) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x1e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (13:25:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (12:25:8) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xcf Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (27:12:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (26:12:7) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x209 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (12:29:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (11:29:5) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x207 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (12:29:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (11:29:5) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x309 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (17:22:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (16:22:7) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x71 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (32:9:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (31:9:5) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x6f Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (32:9:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (31:9:5) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x281 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (23:21:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (22:21:2) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x299 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (9:33:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (8:33:4) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x27f Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (23:21:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (22:21:2) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x409 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (11:6:29) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (10:6:29) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x1af Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (15:25:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (14:25:6) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x71 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (32:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (31:10:4) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x1b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 46 (20:19:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 45 (19:19:7) Lost Hammers/(Refresh:Access): 46 (1:45) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x43f Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (26:12:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (25:12:7) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x219 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (17:23:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (16:23:5) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x257 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (27:11:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (26:11:7) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x167 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (27:17:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (26:17:1) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x217 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (17:23:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (16:23:5) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x259 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (27:11:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (26:11:7) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x16f Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (21:23:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (20:23:1) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x141 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (27:13:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (26:13:5) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x13f Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (27:13:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (26:13:5) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x91 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (30:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (29:10:5) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x8f Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (30:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (29:10:5) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x301 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (23:16:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (22:16:6) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x2ff Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (23:16:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (22:16:6) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x407 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (10:6:29) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (9:6:29) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x149 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (26:18:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (25:18:1) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x409 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (10:6:29) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (9:6:29) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x197 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (15:20:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (14:20:10) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x199 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (15:20:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (14:20:10) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x307 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (12:23:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (11:23:10) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x171 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (21:23:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (20:23:1) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x169 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (27:17:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (26:17:1) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x307 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (13:24:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (12:24:8) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x309 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (12:23:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (11:23:10) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x1e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (18:17:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (17:17:10) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x1df Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (18:17:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (17:17:10) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x219 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (12:27:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (11:27:6) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x147 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (26:18:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (25:18:1) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x217 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (12:27:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (11:27:6) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x231 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (14:26:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (13:26:5) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x22f Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (14:26:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (13:26:5) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x441 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (26:12:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (25:12:7) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x309 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (13:24:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (12:24:8) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x169 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (20:24:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (19:24:1) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x167 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (20:24:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (19:24:1) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x167 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (22:19:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (21:19:4) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x77 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (25:5:15) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (24:5:15) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x197 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (19:20:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (18:20:6) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x1ef Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (14:29:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (13:29:2) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x1f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (14:29:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (13:29:2) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x219 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (15:27:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (14:27:3) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x199 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (19:20:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (18:20:6) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x257 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (22:15:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (21:15:8) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xd9 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (27:14:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (26:14:4) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x309 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (13:23:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (12:23:9) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x157 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (16:27:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (15:27:2) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x259 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (22:15:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (21:15:8) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x169 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (22:19:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (21:19:4) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x159 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (16:27:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (15:27:2) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x409 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (12:6:27) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (11:6:27) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x2d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (25:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (24:15:5) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x147 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (14:29:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (13:29:2) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x307 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (13:24:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (12:24:8) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x309 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (13:24:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (12:24:8) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x2cf Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (25:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (24:15:5) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x141 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (22:17:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (21:17:6) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xd7 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (27:14:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (26:14:4) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x529 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (4:41:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (3:41:0) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x1e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (15:18:12) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (14:18:12) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x1df Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (15:18:12) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (14:18:12) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x527 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (4:41:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (3:41:0) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x13f Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (22:17:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (21:17:6) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x307 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (15:22:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (14:22:8) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x8f Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (28:13:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (27:13:4) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x309 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (15:22:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (14:22:8) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x307 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (13:23:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (12:23:9) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x1b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (15:23:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (14:23:7) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x217 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (15:27:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (14:27:3) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x299 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (20:23:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (19:23:2) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x1b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (15:23:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (14:23:7) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x407 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (12:6:27) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (11:6:27) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x149 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (14:29:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (13:29:2) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x79 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (25:5:15) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (24:5:15) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x297 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (20:23:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (19:23:2) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x91 Lifetime Hammers/(Normal:Prefetch:Writeback): 45 (28:13:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 44 (27:13:4) Lost Hammers/(Refresh:Access): 45 (1:44) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x5b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (17:27:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (16:27:0) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x2cf Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (26:16:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (25:16:2) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x40f Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (24:13:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (23:13:7) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x2d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (26:16:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (25:16:2) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x2d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (21:19:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (20:19:4) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x81 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (22:11:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (21:11:11) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x1ef Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (15:26:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (14:26:3) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x79 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (24:7:13) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (23:7:13) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x1a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (17:22:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (16:22:5) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x1f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (15:26:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (14:26:3) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x409 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (10:6:28) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (9:6:28) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x15f Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (21:19:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (20:19:4) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x7f Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (22:11:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (21:11:11) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x1ef Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (16:27:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (15:27:1) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x5b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (17:27:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (16:27:0) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x281 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (24:19:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (23:19:1) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x19f Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (17:22:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (16:22:5) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x27f Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (24:19:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (23:19:1) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x77 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (24:7:13) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (23:7:13) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x259 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (23:13:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (22:13:8) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x1e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (17:19:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (16:19:8) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x2d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (21:19:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (20:19:4) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x161 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (21:19:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (20:19:4) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x29f Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (11:30:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (10:30:3) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x257 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (23:13:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (22:13:8) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x1f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (16:27:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (15:27:1) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x1df Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (17:19:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (16:19:8) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x231 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (18:21:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (17:21:5) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x14f Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (23:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (22:21:0) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x441 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (23:12:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (22:12:9) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x43f Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (23:12:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (22:12:9) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x79 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (29:4:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (28:4:11) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x151 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (19:25:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (18:25:0) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x22f Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (18:21:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (17:21:5) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x14f Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (19:25:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (18:25:0) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x77 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (29:4:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (28:4:11) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x7f Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (23:10:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (22:10:11) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x2b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (27:12:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (26:12:5) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x27f Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (16:25:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (15:25:3) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xff Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (18:16:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (17:16:10) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x281 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (16:25:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (15:25:3) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x101 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (18:16:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (17:16:10) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x251 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (20:18:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (19:18:6) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x24f Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (20:18:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (19:18:6) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x307 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (15:22:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (14:22:7) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x309 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (15:22:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (14:22:7) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x209 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (14:25:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (13:25:5) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x81 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (23:10:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (22:10:11) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x5b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (22:22:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (21:22:0) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x24f Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (18:18:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (17:18:8) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x5b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (22:22:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (21:22:0) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x529 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (4:40:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (3:40:0) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x527 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (4:40:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (3:40:0) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x13f Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (25:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (24:14:5) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x407 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (10:6:28) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (9:6:28) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x411 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (24:13:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (23:13:7) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x207 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (14:25:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (13:25:5) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x251 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (18:18:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (17:18:8) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x141 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (25:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (24:14:5) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x409 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (10:6:28) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (9:6:28) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x151 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (23:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (22:21:0) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x40f Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (28:10:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (27:10:6) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xcf Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (21:15:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (20:15:8) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x411 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (28:10:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (27:10:6) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xd1 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (21:15:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (20:15:8) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x2b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (27:12:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (26:12:5) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x167 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (17:22:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (16:22:5) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x6f Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (28:8:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (27:8:8) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x79 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (22:5:17) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (21:5:17) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x1ef Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (17:24:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (16:24:3) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x1b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (16:24:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (15:24:4) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x77 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (22:5:17) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (21:5:17) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x1af Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (16:24:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (15:24:4) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x2d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (19:16:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (18:16:9) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x2d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (19:16:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (18:16:9) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x20f Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (15:20:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (14:20:9) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x169 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (17:22:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (16:22:5) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x91 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (25:13:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (24:13:6) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x71 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (28:8:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (27:8:8) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x101 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (16:25:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (15:25:3) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xff Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (16:25:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (15:25:3) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x211 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (15:20:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (14:20:9) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x107 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (20:19:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (19:19:5) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (20:18:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (19:18:6) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (20:18:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (19:18:6) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x8f Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (25:13:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (24:13:6) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x141 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (27:13:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (26:13:4) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x109 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (20:19:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (19:19:5) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x2a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (11:30:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (10:30:3) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x407 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (10:6:28) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (9:6:28) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x13f Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (27:13:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (26:13:4) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x1f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (17:24:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (16:24:3) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x251 Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (18:17:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (17:17:9) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x24f Lifetime Hammers/(Normal:Prefetch:Writeback): 44 (18:17:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 43 (17:17:9) Lost Hammers/(Refresh:Access): 44 (1:43) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x171 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (16:27:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (15:27:0) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x1e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (18:21:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (17:21:4) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x2b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (28:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (27:11:4) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x217 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (9:31:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (8:31:3) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xd1 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (21:15:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (20:15:7) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x1b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (17:22:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (16:22:4) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x1df Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (16:18:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (15:18:9) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x2a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (13:30:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (12:30:0) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x171 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (15:27:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (14:27:1) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x2b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (25:14:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (24:14:4) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x2b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (25:14:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (24:14:4) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x29f Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (13:30:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (12:30:0) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x171 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (14:29:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (13:29:0) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xd9 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (21:16:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (20:16:6) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x217 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (13:28:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (12:28:2) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x219 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (9:31:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (8:31:3) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x2b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (23:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (22:18:2) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x2b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (23:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (22:18:2) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x1af Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (17:22:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (16:22:4) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x16f Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (14:29:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (13:29:0) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x16f Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (16:27:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (15:27:0) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x1f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (20:21:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (19:21:2) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xd9 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (22:17:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (21:17:4) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x1e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (16:18:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (15:18:9) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x1ef Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (20:21:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (19:21:2) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xd7 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (22:17:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (21:17:4) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x257 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (25:13:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (24:13:5) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xcf Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (21:15:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (20:15:7) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x14f Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (23:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (22:18:2) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x219 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (13:28:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (12:28:2) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x109 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (19:17:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (18:17:7) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x107 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (19:17:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (18:17:7) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xdf Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (29:9:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (28:9:5) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xd7 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (28:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (27:13:2) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x527 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (4:38:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (3:38:1) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x529 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (4:38:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (3:38:1) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x2b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (27:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (26:13:3) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xe1 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (29:9:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (28:9:5) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xd9 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (28:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (27:13:2) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x2b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (27:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (26:13:3) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x7f Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (21:12:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (20:12:10) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x259 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (25:13:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (24:13:5) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x81 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (21:12:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (20:12:10) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x71 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (33:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (32:6:4) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x6f Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (33:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (32:6:4) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x151 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (23:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (22:18:2) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x217 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (11:27:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (10:27:5) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x1e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (18:21:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (17:21:4) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xd7 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (21:16:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (20:16:6) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x2b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (28:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (27:11:4) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x241 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (17:24:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (16:24:2) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x16f Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (15:27:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (14:27:1) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x23f Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (17:24:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (16:24:2) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x219 Lifetime Hammers/(Normal:Prefetch:Writeback): 43 (11:27:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 42 (10:27:5) Lost Hammers/(Refresh:Access): 43 (1:42) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x199 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (18:17:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (17:17:7) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x257 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (19:17:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (18:17:6) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x227 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (12:25:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (11:25:5) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x2cf Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (20:18:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (19:18:4) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x1ef Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (12:27:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (11:27:3) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x77 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (25:5:12) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (24:5:12) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x161 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (21:19:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (20:19:2) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x81 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (18:13:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (17:13:11) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x309 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (16:22:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (15:22:4) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x2d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (16:22:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (15:22:4) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x2d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (16:22:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (15:22:4) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x5b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (22:20:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (21:20:0) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x5b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (22:20:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (21:20:0) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x79 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (25:5:12) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (24:5:12) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x251 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (15:22:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (14:22:5) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x1b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (12:24:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (11:24:6) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x24f Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (15:22:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (14:22:5) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x141 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (28:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (27:13:1) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x13f Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (28:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (27:13:1) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x1af Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (12:24:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (11:24:6) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x1e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (22:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (21:18:2) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x1f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (12:27:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (11:27:3) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x7f Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (18:13:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (17:13:11) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x197 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (18:17:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (17:17:7) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x1af Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (14:23:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (13:23:5) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x1b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (14:23:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (13:23:5) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x2d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (20:18:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (19:18:4) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x8f Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (25:12:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (24:12:5) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x1ef Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (15:24:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (14:24:3) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x219 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (12:26:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (11:26:4) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x1af Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (15:23:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (14:23:4) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x229 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (12:25:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (11:25:5) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x197 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (16:20:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (15:20:6) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x259 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (21:15:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (20:15:6) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x257 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (21:15:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (20:15:6) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x299 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (14:26:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (13:26:2) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x91 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (25:12:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (24:12:5) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x297 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (14:26:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (13:26:2) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x237 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (13:22:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (12:22:7) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x121 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (26:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (25:11:5) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x15f Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (21:19:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (20:19:2) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x11f Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (26:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (25:11:5) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x17f Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (18:17:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (17:17:7) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xcf Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (19:16:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (18:16:7) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xd1 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (19:16:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (18:16:7) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x2bf Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (24:16:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (23:16:2) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x2c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (24:16:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (23:16:2) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x181 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (18:17:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (17:17:7) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x237 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (15:20:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (14:20:7) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x239 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (15:20:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (14:20:7) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x1af Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (18:20:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (17:20:4) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x1b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (18:20:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (17:20:4) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x259 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (19:17:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (18:17:6) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x217 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (12:26:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (11:26:4) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x307 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (16:22:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (15:22:4) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xd1 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (23:15:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (22:15:4) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x1af Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (14:20:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (13:20:8) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x239 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (13:22:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (12:22:7) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x2d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (22:14:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (21:14:6) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x2d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (22:14:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (21:14:6) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xcf Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (23:15:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (22:15:4) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x147 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (17:21:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (16:21:4) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x149 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (17:21:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (16:21:4) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x1b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (14:20:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (13:20:8) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x7f Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (18:11:13) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (17:11:13) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x31f Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (28:7:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (27:7:7) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x321 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (28:7:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (27:7:7) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x91 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (27:8:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (26:8:7) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x1e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (22:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (21:18:2) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x199 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (16:20:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (15:20:6) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x257 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (19:15:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (18:15:8) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x199 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (18:18:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (17:18:6) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x1b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (15:23:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (14:23:4) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x259 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (19:15:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (18:15:8) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x1f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (15:24:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (14:24:3) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x197 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (18:18:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (17:18:6) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x81 Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (18:11:13) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (17:11:13) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x8f Lifetime Hammers/(Normal:Prefetch:Writeback): 42 (27:8:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 41 (26:8:7) Lost Hammers/(Refresh:Access): 42 (1:41) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x1e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (15:18:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (14:18:8) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x1df Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (15:18:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (14:18:8) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x71 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (31:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (30:5:5) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x24f Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (18:17:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (17:17:6) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x6f Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (30:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (29:7:4) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x21f Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (13:27:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (12:27:1) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x71 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (34:3:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (33:3:4) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x6f Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (34:3:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (33:3:4) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xd1 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (20:15:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (19:15:6) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xcf Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (20:15:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (19:15:6) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x1af Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (13:23:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (12:23:5) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x221 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (13:27:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (12:27:1) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x1b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (13:23:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (12:23:5) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x227 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (13:23:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (12:23:5) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x229 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (13:23:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (12:23:5) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x5b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (23:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (22:18:0) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x5b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (23:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (22:18:0) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x217 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (12:26:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (11:26:3) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x219 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (12:26:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (11:26:3) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x71 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (30:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (29:7:4) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x251 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (18:17:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (17:17:6) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x251 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (23:13:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (22:13:5) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x24f Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (23:13:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (22:13:5) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x22f Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (17:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (16:22:2) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x231 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (17:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (16:22:2) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x237 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (14:23:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (13:23:4) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x239 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (14:23:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (13:23:4) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x169 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (17:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (16:22:2) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x167 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (17:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (16:22:2) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x141 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (27:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (26:13:1) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x13f Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (27:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (26:13:1) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x31f Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (28:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (27:10:3) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x321 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (28:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (27:10:3) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x121 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (19:16:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (18:16:6) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x11f Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (19:16:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (18:16:6) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x16f Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (16:23:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (15:23:2) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x77 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (24:6:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (23:6:11) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x13f Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (25:15:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (24:15:1) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x141 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (25:15:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (24:15:1) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x2d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (25:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (24:13:3) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x2cf Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (25:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (24:13:3) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x23f Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (18:19:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (17:19:4) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x77 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (25:6:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (24:6:10) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x241 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (18:19:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (17:19:4) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x79 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (25:6:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (24:6:10) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x299 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (9:31:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (8:31:1) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x297 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (9:31:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (8:31:1) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x281 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (20:19:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (19:19:2) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x27f Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (20:19:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (19:19:2) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x91 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (25:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (24:14:2) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x8f Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (25:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (24:14:2) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x79 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (24:6:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (23:6:11) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x1e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (24:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (23:15:2) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x171 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (16:23:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (15:23:2) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x1e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (24:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (23:15:2) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xd7 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (22:16:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (21:16:3) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xd9 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (22:16:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (21:16:3) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x219 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (5:33:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (4:33:3) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x217 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (5:33:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (4:33:3) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x81 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (20:10:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (19:10:11) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x2cf Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (27:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (26:10:4) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x2d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (27:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (26:10:4) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x5b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (20:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (19:21:0) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x5b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (20:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (19:21:0) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x229 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (14:22:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (13:22:5) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x227 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (14:22:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (13:22:5) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x7f Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (20:10:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (19:10:11) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x2b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (25:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (24:11:5) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x1df Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (14:18:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (13:18:9) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x27f Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (16:24:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (15:24:1) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x207 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (13:23:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (12:23:5) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x281 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (16:24:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (15:24:1) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x8f Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (25:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (24:12:4) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x2c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (20:14:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (19:14:7) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x27f Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (18:22:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (17:22:1) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x77 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (25:3:13) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (24:3:13) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3df Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (15:20:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (14:20:6) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x2b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (25:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (24:11:5) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x281 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (18:22:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (17:22:1) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x527 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (5:36:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (4:36:0) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xd7 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (24:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (23:14:3) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x529 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (5:36:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (4:36:0) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (25:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (24:11:5) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x109 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (21:14:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (20:14:6) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x81 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (19:11:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (18:11:11) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x2b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (27:9:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (26:9:5) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x197 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (19:15:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (18:15:7) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x7f Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (19:11:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (18:11:11) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x2ff Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (17:20:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (16:20:4) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x91 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (25:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (24:12:4) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x199 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (19:15:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (18:15:7) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x301 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (17:20:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (16:20:4) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x441 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (22:10:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (21:10:9) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (25:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (24:11:5) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (15:20:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (14:20:6) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x79 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (25:3:13) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (24:3:13) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x1e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (14:18:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (13:18:9) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x43f Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (22:10:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (21:10:9) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x2b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (27:9:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (26:9:5) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x107 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (21:14:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (20:14:6) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x2c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (20:14:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (19:14:7) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x6f Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (31:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (30:5:5) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xd9 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (24:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (23:14:3) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x209 Lifetime Hammers/(Normal:Prefetch:Writeback): 41 (13:23:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 40 (12:23:5) Lost Hammers/(Refresh:Access): 41 (1:40) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x441 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (28:7:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (27:7:5) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x1b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (9:26:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (8:26:5) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x39f Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (17:8:15) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (16:8:15) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (17:8:15) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (16:8:15) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x417 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (19:18:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (18:18:3) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x199 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (15:17:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (14:17:8) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x297 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (11:26:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (10:26:3) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x8f Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (25:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (24:10:5) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x24f Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (13:22:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (12:22:5) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x251 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (13:22:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (12:22:5) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x1e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (20:16:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (19:16:4) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x1e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (18:15:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (17:15:7) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x91 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (25:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (24:10:5) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x299 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (16:23:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (15:23:1) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x147 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (18:22:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (17:22:0) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x2cf Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (26:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (25:10:4) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xf7 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (26:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (25:10:4) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xf9 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (26:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (25:10:4) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x197 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (15:17:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (14:17:8) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x259 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (26:8:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (25:8:6) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x417 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (21:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (20:19:0) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x299 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (11:26:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (10:26:3) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x1b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (9:26:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (8:26:5) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x139 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (25:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (24:11:4) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x1af Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (14:23:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (13:23:3) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x219 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (11:23:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (10:23:6) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x1f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (12:27:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (11:27:1) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x1ef Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (12:27:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (11:27:1) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xd7 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (25:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (24:11:4) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x211 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (15:17:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (14:17:8) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xd9 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (25:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (24:11:4) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x16f Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (16:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (15:22:2) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x43f Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (23:11:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (22:11:6) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x171 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (16:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (15:22:2) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xd1 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (21:12:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (20:12:7) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x77 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (28:1:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (27:1:11) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xcf Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (21:12:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (20:12:7) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x1a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (15:19:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (14:19:6) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x19f Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (15:19:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (14:19:6) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x419 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (19:18:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (18:18:3) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x221 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (11:27:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (10:27:2) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x81 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (21:10:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (20:10:9) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x257 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (26:8:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (25:8:6) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x1b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (14:23:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (13:23:3) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x2ff Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (23:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (22:15:2) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x229 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (10:23:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (9:23:7) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x227 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (10:23:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (9:23:7) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x22f Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (14:20:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (13:20:6) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x5b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (17:23:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (16:23:0) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x231 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (14:20:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (13:20:6) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x301 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (23:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (22:15:2) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x20f Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (15:17:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (14:17:8) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x219 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (11:26:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (10:26:3) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x217 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (11:26:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (10:26:3) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x161 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (20:16:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (19:16:4) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x15f Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (20:16:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (19:16:4) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x7f Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (21:10:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (20:10:9) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x527 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (10:30:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (9:30:0) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x109 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (19:14:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (18:14:7) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x5b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (17:23:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (16:23:0) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x207 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (15:21:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (14:21:4) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x231 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (9:24:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (8:24:7) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x209 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (15:21:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (14:21:4) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x79 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (28:1:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (27:1:11) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xf9 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (26:9:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (25:9:5) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x2cf Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (27:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (26:11:2) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x529 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (4:36:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (3:36:0) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x149 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (18:22:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (17:22:0) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xf7 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (26:9:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (25:9:5) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x43f Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (28:7:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (27:7:5) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x22f Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (9:24:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (8:24:7) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x441 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (23:11:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (22:11:6) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x21f Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (11:27:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (10:27:2) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x107 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (19:14:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (18:14:7) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x1df Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (18:15:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (17:15:7) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x2b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (23:13:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (22:13:4) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xd1 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (22:14:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (21:14:4) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x321 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (21:13:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (20:13:6) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x1b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (13:22:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (12:22:5) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x209 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (12:22:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (11:22:6) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x2d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (27:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (26:11:2) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x1b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (13:22:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (12:22:5) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x39f Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (18:7:15) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (17:7:15) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x2b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (27:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (26:11:2) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x529 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (10:30:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (9:30:0) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3df Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (13:23:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (12:23:4) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x227 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (8:26:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (7:26:6) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x419 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (21:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (20:19:0) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x1b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (13:22:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (12:22:5) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (18:7:15) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (17:7:15) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x211 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (11:24:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (10:24:5) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xd9 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (21:15:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (20:15:4) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x241 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (18:18:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (17:18:4) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x23f Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (18:18:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (17:18:4) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xcf Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (22:14:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (21:14:4) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x207 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (12:22:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (11:22:6) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x527 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (4:36:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (3:36:0) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x207 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (13:22:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (12:22:5) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x31f Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (21:13:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (20:13:6) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x2b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (27:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (26:11:2) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x209 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (13:22:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (12:22:5) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xcf Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (22:14:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (21:14:4) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xd1 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (22:14:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (21:14:4) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x2d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (24:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (23:14:2) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x217 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (11:23:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (10:23:6) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x2cf Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (24:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (23:14:2) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x297 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (16:23:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (15:23:1) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x137 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (25:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (24:11:4) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x229 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (8:26:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (7:26:6) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x2d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (26:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (25:10:4) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x1b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (13:22:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (12:22:5) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x20f Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (11:24:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (10:24:5) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x2b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (23:13:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (22:13:4) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x107 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (23:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (22:14:3) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xd7 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (21:15:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (20:15:4) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x109 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (23:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (22:14:3) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x1e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (20:16:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (19:16:4) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 40 (13:23:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 39 (12:23:4) Lost Hammers/(Refresh:Access): 40 (1:39) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x259 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (20:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (19:14:5) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x197 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (18:17:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (17:17:4) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x2b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (22:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (21:14:3) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x527 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (5:34:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (4:34:0) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x1f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (13:24:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (12:24:2) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (21:11:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (20:11:7) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x2c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (25:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (24:11:3) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x1ef Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (16:19:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (15:19:4) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x2a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (11:27:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (10:27:1) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x77 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (20:7:12) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (19:7:12) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x529 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (5:34:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (4:34:0) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x221 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (14:23:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (13:23:2) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x527 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (4:35:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (3:35:0) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x20f Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (12:19:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (11:19:8) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x2cf Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (24:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (23:13:2) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x297 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (12:26:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (11:26:1) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x24f Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (16:17:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (15:17:6) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x79 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (20:7:12) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (19:7:12) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x301 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (20:12:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (19:12:7) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x227 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (10:23:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (9:23:6) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x259 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (26:8:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (25:8:5) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x1e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (23:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (22:14:2) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x527 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (5:34:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (4:34:0) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x27f Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (22:17:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (21:17:0) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x179 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (16:16:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (15:16:7) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x527 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (6:33:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (5:33:0) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x529 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (4:35:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (3:35:0) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x299 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (12:26:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (11:26:1) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x39f Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (16:6:17) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (15:6:17) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x5b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (19:20:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (18:20:0) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x1f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (16:19:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (15:19:4) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x1e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (23:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (22:14:2) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (21:11:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (20:11:7) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x5b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (19:20:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (18:20:0) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (16:6:17) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (15:6:17) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x167 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (18:20:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (17:20:1) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x281 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (12:26:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (11:26:1) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x169 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (18:20:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (17:20:1) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x197 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (12:22:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (11:22:5) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x259 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (22:12:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (21:12:5) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x107 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (14:17:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (13:17:8) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x257 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (26:8:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (25:8:5) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x199 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (12:22:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (11:22:5) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x24f Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (13:20:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (12:20:6) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x27f Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (12:26:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (11:26:1) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x21f Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (14:23:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (13:23:2) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x211 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (12:19:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (11:19:8) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x257 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (22:12:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (21:12:5) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x171 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (14:24:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (13:24:1) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (17:15:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (16:15:7) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (17:15:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (16:15:7) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x2d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (24:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (23:13:2) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x19f Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (16:20:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (15:20:3) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x281 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (22:17:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (21:17:0) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x109 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (14:17:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (13:17:8) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x2bf Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (25:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (24:11:3) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x1a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (16:20:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (15:20:3) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x259 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (23:10:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (22:10:6) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xd7 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (20:15:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (19:15:4) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x16f Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (14:24:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (13:24:1) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x251 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (13:20:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (12:20:6) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (25:1:13) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (24:1:13) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x1ef Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (15:20:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (14:20:4) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x23f Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (15:19:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (14:19:5) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x2f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (26:7:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (25:7:6) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x1e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (11:18:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (10:18:10) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xd7 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (24:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (23:13:2) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x5b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (12:27:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (11:27:0) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x1f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (15:20:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (14:20:4) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x227 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (11:24:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (10:24:4) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x5b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (15:24:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (14:24:0) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x5b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (12:27:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (11:27:0) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x229 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (11:24:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (10:24:4) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x257 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (20:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (19:14:5) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x2c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (22:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (21:14:3) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x241 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (15:19:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (14:19:5) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x1df Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (11:18:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (10:18:10) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x1f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (13:24:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (12:24:2) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3af Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (25:1:13) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (24:1:13) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x5b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (15:24:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (14:24:0) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x1ef Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (13:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (12:25:1) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xd9 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (24:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (23:13:2) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x199 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (21:13:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (20:13:5) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x1df Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (14:15:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (13:15:10) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x171 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (13:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (12:25:1) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x29f Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (11:27:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (10:27:1) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xdf Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (28:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (27:7:4) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x241 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (16:19:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (15:19:4) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x23f Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (16:19:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (15:19:4) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x417 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (25:12:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (24:12:2) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x1e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (14:15:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (13:15:10) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x1f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (13:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (12:25:1) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x2d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (25:12:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (24:12:2) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (18:12:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (17:12:9) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x2bf Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (22:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (21:14:3) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x199 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (18:17:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (17:17:4) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x229 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (10:23:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (9:23:6) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x177 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (16:16:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (15:16:7) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x2ef Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (26:7:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (25:7:6) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x209 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (11:23:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (10:23:5) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (14:19:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (13:19:6) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x16f Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (13:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (12:25:1) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x257 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (23:10:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (22:10:6) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x2d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (23:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (22:14:2) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x529 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (5:34:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (4:34:0) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x197 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (21:13:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (20:13:5) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xd9 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (20:15:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (19:15:4) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x2ff Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (20:12:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (19:12:7) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x529 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (6:33:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (5:33:0) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x2b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (22:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (21:14:3) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (18:12:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (17:12:9) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x207 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (11:23:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (10:23:5) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x2cf Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (25:12:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (24:12:2) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xe1 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (28:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (27:7:4) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (14:19:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (13:19:6) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x1ef Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (13:24:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (12:24:2) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x251 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (16:17:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (15:17:6) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x1ef Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (13:24:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (12:24:2) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x419 Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (25:12:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (24:12:2) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x2cf Lifetime Hammers/(Normal:Prefetch:Writeback): 39 (23:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 38 (22:14:2) Lost Hammers/(Refresh:Access): 39 (1:38) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x2c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (22:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (21:13:3) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x241 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (14:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (13:22:2) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x79 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (20:5:13) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (19:5:13) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x1b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (13:19:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (12:19:6) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x101 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (18:14:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (17:14:6) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x199 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (16:17:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (15:17:5) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x43f Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (19:13:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (18:13:6) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xff Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (18:14:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (17:14:6) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x399 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (21:8:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (20:8:9) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x199 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (13:21:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (12:21:4) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (21:12:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (20:12:5) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x211 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (12:18:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (11:18:8) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x20f Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (12:20:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (11:20:6) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x1b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (12:20:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (11:20:6) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x5d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (18:20:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (17:20:0) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x211 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (12:20:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (11:20:6) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x109 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (19:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (18:14:5) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x229 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (10:22:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (9:22:6) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x441 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (19:13:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (18:13:6) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x1af Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (14:21:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (13:21:3) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x1b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (11:18:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (10:18:9) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xff Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (17:17:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (16:17:4) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (21:12:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (20:12:5) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x237 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (12:23:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (11:23:3) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x5cf Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (18:20:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (17:20:0) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x101 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (17:17:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (16:17:4) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x1b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (11:18:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (10:18:9) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x207 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (13:20:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (12:20:5) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x2bf Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (22:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (21:13:3) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x107 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (19:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (18:14:5) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x1b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (12:20:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (11:20:6) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x27f Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (16:21:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (15:21:1) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x1e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (16:17:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (15:17:5) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x397 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (21:8:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (20:8:9) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x77 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (20:5:13) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (19:5:13) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x227 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (10:22:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (9:22:6) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x209 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (13:20:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (12:20:5) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x1b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (14:21:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (13:21:3) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x20f Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (12:18:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (11:18:8) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x197 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (16:17:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (15:17:5) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x239 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (12:23:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (11:23:3) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x1e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (16:17:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (15:17:5) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x1b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (13:19:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (12:19:6) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x219 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (11:24:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (10:24:3) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xff Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (19:17:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (18:17:2) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x101 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (19:17:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (18:17:2) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x441 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (25:8:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (24:8:5) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x1b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (11:21:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (10:21:6) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x231 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (15:18:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (14:18:5) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x1b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (11:21:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (10:21:6) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x22f Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (15:18:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (14:18:5) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x2d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (23:14:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (22:14:1) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x2cf Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (23:14:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (22:14:1) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x21f Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (10:24:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (9:24:4) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x101 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (17:14:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (16:14:7) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x221 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (10:24:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (9:24:4) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x217 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (11:24:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (10:24:3) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x109 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (19:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (18:14:5) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x5b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (15:23:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (14:23:0) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xff Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (17:14:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (16:14:7) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x419 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (24:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (23:14:0) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x107 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (19:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (18:14:5) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x417 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (24:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (23:14:0) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x8f Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (22:10:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (21:10:6) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x5b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (16:22:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (15:22:0) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x197 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (13:21:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (12:21:4) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (22:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (21:11:5) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (22:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (21:11:5) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xf7 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (27:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (26:10:1) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x101 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (18:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (17:18:2) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x227 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (14:20:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (13:20:4) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x81 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (19:9:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (18:9:10) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x177 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (22:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (21:11:5) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x241 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (18:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (17:18:2) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x23f Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (10:25:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (9:25:3) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x281 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (16:21:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (15:21:1) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x209 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (14:21:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (13:21:3) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x139 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (18:12:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (17:12:8) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x241 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (10:25:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (9:25:3) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x137 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (18:12:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (17:12:8) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x231 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (10:23:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (9:23:5) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x207 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (14:21:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (13:21:3) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x2c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (28:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (27:6:4) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x2bf Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (28:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (27:6:4) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x1b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (12:22:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (11:22:4) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x1b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (12:22:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (11:22:4) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x2b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (26:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (25:11:1) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x23f Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (18:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (17:18:2) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x5b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (16:22:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (15:22:0) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x43f Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (25:8:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (24:8:5) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x199 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (18:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (17:15:5) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x197 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (18:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (17:15:5) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x259 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (19:11:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (18:11:8) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x1a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (14:17:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (13:17:7) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x2c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (26:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (25:11:1) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x201 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (16:20:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (15:20:2) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x257 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (19:11:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (18:11:8) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x8f Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (23:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (22:11:4) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x2bf Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (26:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (25:11:1) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x1ff Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (16:20:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (15:20:2) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x5b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (15:23:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (14:23:0) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x91 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (23:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (22:11:4) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xff Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (18:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (17:18:2) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x169 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (12:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (11:25:1) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x101 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (16:17:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (15:17:5) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x23f Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (14:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (13:22:2) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x237 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (14:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (13:22:2) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x239 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (14:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (13:22:2) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x299 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (12:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (11:25:1) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x39f Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (18:4:16) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (17:4:16) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x2b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (19:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (18:14:5) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x19f Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (14:17:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (13:17:7) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x101 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (13:20:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (12:20:5) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x2b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (19:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (18:14:5) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xef Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (17:15:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (16:15:6) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x209 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (11:24:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (10:24:3) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x20f Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (14:16:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (13:16:8) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xff Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (13:20:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (12:20:5) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x177 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (23:9:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (22:9:6) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x101 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (15:16:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (14:16:7) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (18:4:16) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (17:4:16) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x179 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (23:9:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (22:9:6) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x169 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (16:22:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (15:22:0) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x207 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (11:24:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (10:24:3) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x167 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (16:22:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (15:22:0) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x1e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (11:20:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (10:20:7) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xd1 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (24:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (23:11:3) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xf1 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (17:15:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (16:15:6) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xcf Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (24:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (23:11:3) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x211 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (12:19:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (11:19:7) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (14:19:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (13:19:5) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x229 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (14:20:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (13:20:4) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x2b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (26:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (25:11:1) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xf9 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (27:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (26:10:1) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x179 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (22:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (21:11:5) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xff Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (15:16:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (14:16:7) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x1df Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (11:20:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (10:20:7) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x91 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (22:10:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (21:10:6) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x301 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (22:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (21:13:3) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xff Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (16:17:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (15:17:5) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x7f Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (19:9:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (18:9:10) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x20f Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (12:19:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (11:19:7) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x211 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (14:16:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (13:16:8) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x297 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (12:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (11:25:1) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (14:19:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (13:19:5) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x22f Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (10:23:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (9:23:5) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x2ff Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (22:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (21:13:3) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x167 Lifetime Hammers/(Normal:Prefetch:Writeback): 38 (12:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 37 (11:25:1) Lost Hammers/(Refresh:Access): 38 (1:37) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x1b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (12:19:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (11:19:6) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x21f Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (11:20:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (10:20:6) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x8f Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (24:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (23:10:3) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x201 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (12:19:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (11:19:6) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x1ff Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (12:19:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (11:19:6) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x1d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (17:19:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (16:19:1) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x221 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (11:20:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (10:20:6) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x1b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (12:19:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (11:19:6) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xe1 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (26:6:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (25:6:5) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x24f Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (10:23:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (9:23:4) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x251 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (10:23:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (9:23:4) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x239 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (13:18:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (12:18:6) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x1b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (6:23:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (5:23:8) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x1ff Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (12:20:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (11:20:5) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x1b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (6:23:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (5:23:8) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x237 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (11:22:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (10:22:4) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x31f Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (23:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (22:11:3) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x211 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (12:16:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (11:16:9) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (16:4:17) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (15:4:17) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x20f Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (12:16:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (11:16:9) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x239 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (11:22:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (10:22:4) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x229 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (10:22:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (9:22:5) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x227 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (10:22:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (9:22:5) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x8f Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (25:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (24:8:4) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x91 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (25:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (24:8:4) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x43f Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (21:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (20:12:4) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xdf Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (26:6:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (25:6:5) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x21f Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (11:21:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (10:21:5) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x201 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (12:20:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (11:20:5) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x237 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (16:15:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (15:15:6) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x239 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (16:15:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (15:15:6) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x28f Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (14:21:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (13:21:2) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x221 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (11:21:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (10:21:5) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x321 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (23:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (22:11:3) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x1d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (17:19:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (16:19:1) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x91 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (24:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (23:10:3) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x291 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (14:21:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (13:21:2) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x237 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (13:18:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (12:18:6) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x21f Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (8:28:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (7:28:1) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x209 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (15:20:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (14:20:2) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xd1 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (17:13:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (16:13:7) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x20f Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (14:16:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (13:16:7) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (9:20:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (8:20:8) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x5b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (17:20:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (16:20:0) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x2c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (18:12:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (17:12:7) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x239 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (10:22:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (9:22:5) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x2c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (18:12:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (17:12:7) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x249 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (10:22:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (9:22:5) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x1df Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (15:13:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (14:13:9) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x23f Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (18:17:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (17:17:2) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x221 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (8:28:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (7:28:1) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x117 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (18:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (17:14:5) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x7f Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (16:14:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (15:14:7) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x247 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (10:22:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (9:22:5) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x81 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (14:14:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (13:14:9) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x7f Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (14:14:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (13:14:9) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x241 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (18:17:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (17:17:2) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x297 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (8:27:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (7:27:2) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x291 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (12:23:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (11:23:2) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x28f Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (12:23:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (11:23:2) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x1e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (15:13:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (14:13:9) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x419 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (17:19:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (16:19:1) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x29f Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (11:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (10:25:1) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x21f Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (11:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (10:25:1) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3df Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (9:20:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (8:20:8) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x397 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (21:6:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (20:6:10) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xcf Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (23:9:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (22:9:5) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x207 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (15:20:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (14:20:2) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x221 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (11:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (10:25:1) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x201 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (9:25:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (8:25:3) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x2a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (11:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (10:25:1) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x399 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (21:6:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (20:6:10) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x237 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (10:22:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (9:22:5) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x211 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (14:16:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (13:16:7) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x101 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (16:15:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (15:15:6) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x39f Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (16:4:17) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (15:4:17) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xdf Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (27:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (26:6:4) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x417 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (17:19:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (16:19:1) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x31f Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (21:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (20:12:4) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x21f Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (12:23:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (11:23:2) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xe1 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (27:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (26:6:4) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xcf Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (17:13:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (16:13:7) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x1ff Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (9:25:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (8:25:3) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x1d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (11:19:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (10:19:7) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x91 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (24:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (23:10:3) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x299 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (8:27:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (7:27:2) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xff Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (16:15:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (15:15:6) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x2d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (22:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (21:13:2) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x2cf Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (22:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (21:13:2) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x28f Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (15:19:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (14:19:3) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x1cf Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (11:19:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (10:19:7) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x221 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (12:23:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (11:23:2) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xd1 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (23:9:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (22:9:5) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x5b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (17:20:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (16:20:0) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xd7 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (18:13:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (17:13:6) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x321 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (21:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (20:12:4) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xd9 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (18:13:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (17:13:6) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x441 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (21:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (20:12:4) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x81 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (16:14:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (15:14:7) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x119 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (18:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (17:14:5) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x8f Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (24:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (23:10:3) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x291 Lifetime Hammers/(Normal:Prefetch:Writeback): 37 (15:19:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 36 (14:19:3) Lost Hammers/(Refresh:Access): 37 (1:36) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x31f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (25:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (24:8:3) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x10f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (14:13:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (13:13:9) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x16f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (13:22:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (12:22:1) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x29f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (10:26:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (9:26:0) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x77 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (21:3:12) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (20:3:12) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x297 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (7:28:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (6:28:1) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x7f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (15:12:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (14:12:9) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xc7 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (17:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (16:14:5) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x20f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (13:16:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (12:16:7) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x1a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (13:15:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (12:15:8) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x2d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (14:17:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (13:17:5) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x207 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (10:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (9:25:1) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xf1 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (17:12:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (16:12:7) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x319 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (17:16:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (16:16:3) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x237 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (12:18:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (11:18:6) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x81 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (15:12:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (14:12:9) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xf9 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (21:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (20:13:2) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x209 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (10:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (9:25:1) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x79 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (21:3:12) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (20:3:12) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x129 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (16:14:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (15:14:6) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x111 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (14:13:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (13:13:9) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x79 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (20:8:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (19:8:8) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x127 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (16:14:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (15:14:6) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x21f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (11:24:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (10:24:1) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x529 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (6:30:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (5:30:0) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x2d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (14:17:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (13:17:5) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xef Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (17:12:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (16:12:7) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x77 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (20:8:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (19:8:8) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x107 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (15:17:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (14:17:4) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xd7 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (23:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (22:11:2) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3af Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (25:1:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (24:1:10) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (12:18:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (11:18:6) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x109 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (15:17:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (14:17:4) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x43f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (21:8:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (20:8:7) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x32f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (23:5:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (22:5:8) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x19f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (13:20:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (12:20:3) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x331 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (23:5:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (22:5:8) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x19f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (14:20:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (13:20:2) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x1ef Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (16:19:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (15:19:1) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x1a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (14:20:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (13:20:2) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xef Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (19:10:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (18:10:7) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xd9 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (23:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (22:11:2) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (25:1:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (24:1:10) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x1a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (13:20:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (12:20:3) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x531 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (12:24:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (11:24:0) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x441 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (21:8:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (20:8:7) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xcf Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (18:13:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (17:13:5) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xf1 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (19:10:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (18:10:7) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x52f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (12:24:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (11:24:0) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xd1 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (18:13:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (17:13:5) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3df Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (12:18:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (11:18:6) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xf9 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (19:13:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (18:13:4) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xef Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (15:14:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (14:14:7) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xf1 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (15:14:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (14:14:7) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x5cf Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (17:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (16:19:0) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x321 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (25:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (24:8:3) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x1f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (14:14:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (13:14:8) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x1f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (14:14:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (13:14:8) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x211 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (10:18:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (9:18:8) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x2a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (10:26:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (9:26:0) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x251 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (15:16:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (14:16:5) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x24f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (15:16:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (14:16:5) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x20f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (10:18:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (9:18:8) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x249 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (12:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (11:22:2) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x1d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (16:16:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (15:16:4) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x221 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (11:24:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (10:24:1) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xf7 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (19:13:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (18:13:4) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x171 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (13:22:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (12:22:1) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xf7 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (21:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (20:13:2) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x247 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (14:20:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (13:20:2) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x1f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (16:19:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (15:19:1) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x1e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (16:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (15:18:2) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x249 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (14:20:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (13:20:2) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xc9 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (17:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (16:14:5) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x1e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (16:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (15:18:2) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3df Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (10:22:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (9:22:4) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (10:22:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (9:22:4) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x5d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (17:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (16:19:0) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x197 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (15:18:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (14:18:3) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x229 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (9:24:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (8:24:3) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x397 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (19:6:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (18:6:11) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x199 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (15:15:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (14:15:6) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x197 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (15:15:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (14:15:6) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x229 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (13:20:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (12:20:3) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xd9 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (20:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (19:14:2) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x2ef Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (24:4:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (23:4:8) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x29f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (15:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (14:21:0) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x237 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (15:20:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (14:20:1) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x2a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (15:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (14:21:0) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x239 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (15:20:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (14:20:1) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x2f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (24:4:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (23:4:8) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x227 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (13:20:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (12:20:3) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x281 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (11:23:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (10:23:2) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x191 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (12:20:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (11:20:4) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x18f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (12:20:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (11:20:4) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xcf Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (14:16:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (13:16:6) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x1e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (19:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (18:14:3) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x227 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (9:24:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (8:24:3) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x1e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (19:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (18:14:3) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x1ef Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (14:20:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (13:20:2) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x2c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (16:13:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (15:13:7) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x107 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (15:16:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (14:16:5) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x5a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (25:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (24:11:0) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xcf Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (19:12:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (18:12:5) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x241 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (15:19:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (14:19:2) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x1c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (14:20:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (13:20:2) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x177 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (16:16:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (15:16:4) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x1c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (14:20:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (13:20:2) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (17:6:13) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (16:6:13) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x441 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (17:12:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (16:12:7) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x249 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (12:19:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (11:19:5) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x39f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (17:6:13) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (16:6:13) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x43f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (17:12:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (16:12:7) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x247 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (12:19:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (11:19:5) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x21f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (10:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (9:25:1) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x527 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (6:30:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (5:30:0) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x221 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (10:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (9:25:1) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xd1 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (19:12:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (18:12:5) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x179 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (16:16:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (15:16:4) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x2c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (16:13:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (15:13:7) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x397 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (17:9:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (16:9:10) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xd7 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (20:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (19:14:2) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x399 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (17:9:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (16:9:10) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x1a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (13:17:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (12:17:6) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x399 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (19:6:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (18:6:11) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x19f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (13:17:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (12:17:6) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x239 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (12:18:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (11:18:6) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x1c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (15:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (14:21:0) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xd1 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (14:16:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (13:16:6) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x1f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (14:20:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (13:20:2) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x529 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (4:32:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (3:32:0) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x1d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (16:16:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (15:16:4) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x1a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (13:15:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (12:15:8) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x399 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (18:7:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (17:7:11) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x527 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (4:32:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (3:32:0) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x161 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (18:14:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (17:14:4) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x109 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (15:16:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (14:16:5) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x299 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (7:28:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (6:28:1) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x397 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (18:8:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (17:8:10) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x15f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (18:14:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (17:14:4) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x417 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (21:14:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (20:14:1) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x199 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (15:18:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (14:18:3) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x397 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (18:7:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (17:7:11) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x399 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (18:8:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (17:8:10) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x317 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (17:16:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (16:16:3) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x241 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (14:19:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (13:19:3) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x247 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (12:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (11:22:2) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x419 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (21:14:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (20:14:1) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x23f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (14:19:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (13:19:3) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x1c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (15:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (14:21:0) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x5a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (25:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (24:11:0) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x211 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (13:16:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (12:16:7) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x27f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (11:23:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (10:23:2) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x321 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (23:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (22:10:3) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x5a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (17:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (16:19:0) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x261 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (19:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (18:14:3) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x31f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (23:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (22:10:3) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x23f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (15:19:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (14:19:2) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x25f Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (19:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (18:14:3) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x5a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 36 (17:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 35 (16:19:0) Lost Hammers/(Refresh:Access): 36 (1:35) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x527 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (3:32:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (2:32:0) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x2e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (12:21:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (11:21:2) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x201 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (14:18:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (13:18:3) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (18:13:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (17:13:4) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (15:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (14:17:3) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (18:13:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (17:13:4) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x27f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (13:21:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (12:21:1) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x261 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (24:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (23:9:2) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x29f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (16:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (15:19:0) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x2c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (24:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (23:8:3) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x201 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (8:24:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (7:24:3) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x1ff Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (8:24:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (7:24:3) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x2df Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (14:16:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (13:16:5) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (15:5:15) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (14:5:15) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x2c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (24:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (23:8:3) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x181 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (11:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (10:22:2) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x2df Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (12:21:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (11:21:2) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x1ff Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (14:18:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (13:18:3) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x249 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (8:24:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (7:24:3) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x281 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (13:21:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (12:21:1) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x52f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (7:28:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (6:28:0) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x87 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (28:2:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (27:2:5) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x5a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (20:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (19:15:0) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x221 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (8:26:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (7:26:1) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x89 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (28:2:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (27:2:5) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x121 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (19:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (18:12:4) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x21f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (8:26:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (7:26:1) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x11f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (19:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (18:12:4) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xdf Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (24:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (23:7:4) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x5a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (20:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (19:15:0) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x1e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (13:15:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (12:15:7) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x2df Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (15:14:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (14:14:6) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x2a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (16:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (15:19:0) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x17f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (11:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (10:22:2) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x239 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (15:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (14:18:2) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x531 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (7:28:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (6:28:0) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3df Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (15:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (14:17:3) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x1c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (12:19:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (11:19:4) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xe1 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (24:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (23:7:4) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x25f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (24:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (23:9:2) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x2e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (15:14:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (14:14:6) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x1c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (12:19:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (11:19:4) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x1df Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (13:15:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (12:15:7) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x20f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (11:19:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (10:19:5) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x247 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (8:24:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (7:24:3) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x237 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (15:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (14:18:2) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x39f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (15:5:15) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (14:5:15) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x211 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (11:19:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (10:19:5) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x197 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (20:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (19:10:5) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x2a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (7:28:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (6:28:0) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (18:2:15) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (17:2:15) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x39f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (18:2:15) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (17:2:15) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x181 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (10:19:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (9:19:6) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x17f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (10:19:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (9:19:6) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x2bf Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (22:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (21:11:2) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x101 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (11:18:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (10:18:6) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x29f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (7:28:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (6:28:0) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xf9 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (17:15:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (16:15:3) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xf7 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (17:15:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (16:15:3) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x239 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (10:22:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (9:22:3) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xff Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (11:18:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (10:18:6) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x237 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (10:22:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (9:22:3) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x1f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (16:17:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (15:17:2) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x199 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (20:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (19:10:5) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x191 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (15:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (14:17:3) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x1a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (7:24:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (6:24:4) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x1f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (16:17:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (15:17:2) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x19f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (7:24:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (6:24:4) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x419 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (17:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (16:18:0) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x417 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (17:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (16:18:0) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x2bf Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (19:15:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (18:15:1) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xf9 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (24:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (23:9:2) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x1b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (7:21:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (6:21:7) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x24f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (13:18:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (12:18:4) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x2c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (19:15:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (18:15:1) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x1e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (17:17:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (16:17:1) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xf7 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (24:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (23:9:2) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x1e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (17:17:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (16:17:1) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x251 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (13:18:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (12:18:4) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x1b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (7:21:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (6:21:7) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x5b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (16:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (15:19:0) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x191 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (13:19:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (12:19:3) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x18f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (13:19:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (12:19:3) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x79 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (23:5:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (22:5:7) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x77 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (23:5:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (22:5:7) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x111 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (13:14:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (12:14:8) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x22f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (11:21:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (10:21:3) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x229 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (14:20:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (13:20:1) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x227 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (14:20:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (13:20:1) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x281 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (11:21:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (10:21:3) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x10f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (13:14:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (12:14:8) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (11:21:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (10:21:3) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x1d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (15:12:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (14:12:8) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x27f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (11:21:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (10:21:3) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3df Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (11:21:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (10:21:3) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x231 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (11:21:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (10:21:3) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x2e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (14:16:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (13:16:5) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x529 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (3:32:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (2:32:0) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x5b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (16:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (15:19:0) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xf7 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (24:6:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (23:6:5) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x1cf Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (15:12:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (14:12:8) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x191 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (13:16:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (12:16:6) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x18f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (13:16:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (12:16:6) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xe1 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (30:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (29:2:3) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xf9 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (24:6:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (23:6:5) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xc1 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (18:11:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (17:11:6) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xdf Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (30:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (29:2:3) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x18f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (16:15:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (15:15:4) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xbf Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (18:11:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (17:11:6) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x191 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (16:15:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (15:15:4) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x529 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (5:30:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (4:30:0) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x527 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (5:30:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (4:30:0) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x191 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (15:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (14:15:5) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x18f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (16:17:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (15:17:2) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x18f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (19:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (18:13:3) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x419 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (23:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (22:11:1) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x2c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (22:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (21:11:2) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x419 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (16:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (15:19:0) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x531 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (12:23:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (11:23:0) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x191 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (16:17:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (15:17:2) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x19f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (12:19:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (11:19:4) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x1a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (12:19:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (11:19:4) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x417 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (23:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (22:11:1) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x291 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (15:19:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (14:19:1) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xef Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (14:16:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (13:16:5) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x1a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (11:21:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (10:21:3) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xf1 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (14:16:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (13:16:5) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x28f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (15:19:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (14:19:1) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x417 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (16:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (15:19:0) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x19f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (11:21:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (10:21:3) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x191 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (19:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (18:13:3) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x18f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (15:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (14:15:5) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (15:6:14) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (14:6:14) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xbf Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (20:8:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (19:8:7) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x18f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (15:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (14:18:2) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3df Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (10:20:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (9:20:5) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x1c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (11:23:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (10:23:1) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x417 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (23:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (22:11:1) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x18f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (15:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (14:17:3) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x81 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (19:9:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (18:9:7) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x419 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (23:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (22:11:1) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x7f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (19:9:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (18:9:7) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x21f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (13:19:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (12:19:3) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x1c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (11:23:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (10:23:1) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x221 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (13:19:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (12:19:3) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (10:20:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (9:20:5) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x52f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (12:23:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (11:23:0) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x39f Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (15:6:14) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (14:6:14) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xc1 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (20:8:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (19:8:7) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x191 Lifetime Hammers/(Normal:Prefetch:Writeback): 35 (15:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 34 (14:18:2) Lost Hammers/(Refresh:Access): 35 (1:34) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x5b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (16:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (15:18:0) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xaf Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (26:2:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (25:2:6) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xb1 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (26:2:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (25:2:6) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x121 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (21:6:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (20:6:7) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x5b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (16:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (15:18:0) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x23f Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (9:23:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (8:23:2) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x241 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (9:23:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (8:23:2) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x121 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (22:6:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (21:6:6) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x2c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (17:16:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (16:16:1) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x1f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (14:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (13:17:3) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x207 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (9:23:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (8:23:2) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x2bf Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (17:16:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (16:16:1) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x127 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (14:16:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (13:16:4) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x399 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (21:5:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (20:5:8) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x1c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (12:21:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (11:21:1) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (18:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (17:16:0) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x129 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (14:16:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (13:16:4) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x397 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (21:5:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (20:5:8) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x1c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (12:21:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (11:21:1) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x119 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (21:8:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (20:8:5) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x179 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (15:13:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (14:13:6) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x231 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (12:20:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (11:20:2) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x17f Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (12:18:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (11:18:4) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x181 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (12:18:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (11:18:4) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x177 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (15:13:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (14:13:6) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (18:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (17:16:0) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x5a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (23:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (22:11:0) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x1e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (14:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (13:18:2) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x11f Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (23:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (22:8:3) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x27f Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (14:19:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (13:19:1) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x137 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (18:8:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (17:8:8) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x111 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (15:12:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (14:12:7) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x437 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (15:17:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (14:17:2) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x1e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (14:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (13:18:2) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x281 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (14:19:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (13:19:1) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x5a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (23:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (22:11:0) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x121 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (23:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (22:8:3) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x139 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (18:8:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (17:8:8) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x2f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (19:8:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (18:8:7) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x1f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (14:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (13:17:3) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x2f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (19:8:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (18:8:7) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x1e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (17:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (16:15:2) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x1e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (17:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (16:15:2) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x23f Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (13:19:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (12:19:2) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x241 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (13:19:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (12:19:2) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x219 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (10:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (9:22:2) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x10f Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (15:12:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (14:12:7) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x2a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (9:25:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (8:25:0) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x439 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (15:17:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (14:17:2) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x29f Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (9:25:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (8:25:0) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x129 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (12:17:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (11:17:5) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x127 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (12:17:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (11:17:5) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x2f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (16:15:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (15:15:3) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x529 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (8:26:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (7:26:0) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x179 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (18:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (17:12:4) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x11f Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (22:6:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (21:6:6) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x527 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (8:26:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (7:26:0) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x17f Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (10:21:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (9:21:3) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x11f Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (21:6:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (20:6:7) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x217 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (10:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (9:22:2) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x2f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (16:15:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (15:15:3) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x1f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (16:11:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (15:11:7) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x177 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (18:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (17:12:4) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x1f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (16:11:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (15:11:7) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x181 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (10:21:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (9:21:3) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x5a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (16:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (15:18:0) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x20f Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (9:18:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (8:18:7) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x2a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (10:24:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (9:24:0) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (12:19:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (11:19:3) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x1a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (14:14:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (13:14:6) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3df Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (12:19:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (11:19:3) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x229 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (11:20:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (10:20:3) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x1a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (14:14:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (13:14:6) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x227 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (11:20:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (10:20:3) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x1d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (12:20:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (11:20:2) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xef Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (17:12:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (16:12:5) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xf1 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (17:12:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (16:12:5) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x211 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (9:18:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (8:18:7) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (21:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (20:10:3) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (12:15:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (11:15:7) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x1c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (15:18:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (14:18:1) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x287 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (12:18:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (11:18:4) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x29f Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (9:24:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (8:24:1) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x1c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (15:18:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (14:18:1) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (12:15:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (11:15:7) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x22f Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (8:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (7:25:1) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x129 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (14:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (13:15:5) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x11f Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (21:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (20:9:4) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (21:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (20:9:4) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x1c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (13:18:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (12:18:3) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x109 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (15:13:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (14:13:6) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x5a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (16:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (15:18:0) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x7f Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (16:10:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (15:10:8) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x1c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (13:18:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (12:18:3) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xc9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (19:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (18:13:2) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x1e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (16:17:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (15:17:1) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xc7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (19:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (18:13:2) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3df Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (14:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (13:15:5) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x1ff Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (17:16:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (16:16:1) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x201 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (17:16:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (16:16:1) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x1e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (16:17:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (15:17:1) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x29f Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (7:27:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (6:27:0) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (14:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (13:15:5) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x1d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (12:20:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (11:20:2) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x107 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (15:13:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (14:13:6) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x399 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (16:9:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (15:9:9) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x231 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (8:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (7:25:1) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (14:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (13:15:5) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xf9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (18:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (17:12:4) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x397 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (16:9:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (15:9:9) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x29f Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (10:24:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (9:24:0) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x81 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (16:10:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (15:10:8) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (14:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (13:15:5) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x109 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (17:13:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (16:13:4) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x91 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (23:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (22:8:3) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x289 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (12:18:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (11:18:4) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x8f Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (23:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (22:8:3) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x2f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (20:8:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (19:8:6) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x2a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (13:20:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (12:20:1) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x29f Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (13:20:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (12:20:1) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (21:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (20:10:3) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x209 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (9:23:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (8:23:2) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x107 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (17:13:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (16:13:4) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xc1 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (22:6:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (21:6:6) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x2f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (20:8:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (19:8:6) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xbf Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (22:6:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (21:6:6) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x5cf Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (16:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (15:18:0) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x181 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (13:16:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (12:16:5) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x5d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (16:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (15:18:0) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x17f Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (13:16:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (12:16:5) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x43f Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (16:13:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (15:13:5) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x441 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (16:13:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (15:13:5) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x1f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (11:18:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (10:18:5) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x117 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (21:8:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (20:8:5) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x22f Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (12:20:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (11:20:2) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x2a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (9:24:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (8:24:1) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xf7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (21:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (20:11:2) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xf9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (21:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (20:11:2) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (21:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (20:9:4) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x121 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (21:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (20:9:4) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x417 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (18:15:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (17:15:1) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x1c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (14:19:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (13:19:1) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x119 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (18:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (17:11:5) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xf7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (18:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (17:12:4) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x1f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (11:18:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (10:18:5) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x117 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (18:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (17:11:5) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x1bf Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (14:19:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (13:19:1) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x127 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (14:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (13:15:5) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x419 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (18:15:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (17:15:1) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x1d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (18:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (17:13:3) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x1d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (18:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (17:13:3) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x2a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (7:27:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (6:27:0) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x1e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (21:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (20:11:2) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x1e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 34 (21:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 33 (20:11:2) Lost Hammers/(Refresh:Access): 34 (1:33) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x31f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (19:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (18:11:3) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x2ef Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (19:9:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (18:9:5) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x249 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (9:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (8:22:2) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x43f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (17:10:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (16:10:6) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x321 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (19:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (18:11:3) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x179 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (16:12:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (15:12:5) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x21f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (9:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (8:22:2) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x221 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (9:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (8:22:2) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x437 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (17:15:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (16:15:1) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x399 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (16:5:12) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (15:5:12) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x181 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (12:16:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (11:16:5) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3af Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (18:5:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (17:5:10) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x1cf Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (12:16:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (11:16:5) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (18:5:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (17:5:10) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x127 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (11:13:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (10:13:9) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x129 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (11:13:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (10:13:9) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x1d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (12:16:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (11:16:5) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x5a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (21:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (20:12:0) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x17f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (12:16:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (11:16:5) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x247 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (9:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (8:22:2) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x5a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (21:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (20:12:0) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x397 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (16:5:12) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (15:5:12) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x441 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (17:10:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (16:10:6) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x2f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (19:9:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (18:9:5) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x2ff Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (20:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (19:9:4) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x527 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (2:31:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (1:31:0) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x301 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (20:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (19:9:4) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x529 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (2:31:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (1:31:0) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x177 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (16:12:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (15:12:5) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x5a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (16:17:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (15:17:0) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x1cf Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (14:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (13:14:5) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4af Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (19:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (18:11:3) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x1d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (14:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (13:14:5) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (19:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (18:11:3) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (18:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (17:10:5) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x189 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (13:16:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (12:16:4) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (18:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (17:10:5) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xe1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (23:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (22:6:4) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xdf Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (23:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (22:6:4) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x177 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (16:12:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (15:12:5) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x5a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (16:17:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (15:17:0) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xdf Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (21:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (20:8:4) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x187 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (13:16:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (12:16:4) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x39f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (13:6:14) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (12:6:14) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (21:3:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (20:3:9) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (13:6:14) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (12:6:14) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x179 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (16:12:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (15:12:5) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3af Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (21:3:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (20:3:9) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x249 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (15:15:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (14:15:3) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x247 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (15:15:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (14:15:3) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x229 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (10:18:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (9:18:5) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xdf Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (22:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (21:7:4) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x227 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (10:18:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (9:18:5) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xef Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (17:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (16:11:5) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x297 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (11:20:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (10:20:2) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x43f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (16:10:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (15:10:7) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xdf Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (22:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (21:7:4) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x441 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (16:10:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (15:10:7) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xe1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (22:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (21:7:4) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xf7 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (17:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (16:12:4) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x46f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (22:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (21:8:3) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xf9 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (17:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (16:12:4) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x471 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (22:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (21:8:3) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x52f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (12:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (11:21:0) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x129 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (11:15:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (10:15:7) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x29f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (10:23:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (9:23:0) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x127 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (11:15:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (10:15:7) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x531 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (12:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (11:21:0) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x121 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (20:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (19:9:4) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x11f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (20:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (19:9:4) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xf1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (17:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (16:11:5) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x251 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (15:16:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (14:16:2) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x191 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (19:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (18:11:3) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x24f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (15:16:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (14:16:2) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xe1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (21:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (20:8:4) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x18f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (19:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (18:11:3) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xaf Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (24:3:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (23:3:6) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (21:1:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (20:1:11) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x1ff Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (9:20:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (8:20:4) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x11f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (18:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (17:10:5) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x121 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (18:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (17:10:5) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x201 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (9:20:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (8:20:4) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x8f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (24:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (23:9:0) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x91 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (24:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (23:9:0) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x52f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (14:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (13:19:0) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x531 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (14:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (13:19:0) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x2ef Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (19:7:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (18:7:7) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x2f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (19:7:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (18:7:7) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4af Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (15:15:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (14:15:3) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xb1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (24:3:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (23:3:6) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xd9 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (18:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (17:13:2) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xd7 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (18:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (17:13:2) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x52f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (11:22:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (10:22:0) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x531 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (11:22:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (10:22:0) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xaf Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (24:2:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (23:2:7) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xb1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (24:2:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (23:2:7) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xc1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (22:5:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (21:5:6) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x441 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (13:16:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (12:16:4) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x43f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (13:16:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (12:16:4) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xbf Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (22:5:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (21:5:6) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x257 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (17:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (16:11:5) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x2a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (10:23:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (9:23:0) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x189 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (18:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (17:13:2) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x127 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (8:17:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (7:17:8) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x2f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (21:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (20:10:2) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xe1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (22:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (21:7:4) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x187 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (18:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (17:13:2) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x129 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (8:17:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (7:17:8) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x2f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (21:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (20:10:2) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x179 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (19:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (18:10:4) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x177 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (19:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (18:10:4) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x259 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (17:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (16:11:5) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x2f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (18:9:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (17:9:6) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x2ff Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (16:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (15:14:3) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x39f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (15:3:15) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (14:3:15) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x301 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (16:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (15:14:3) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (15:3:15) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (14:3:15) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x201 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (9:23:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (8:23:1) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x2bf Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (22:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (21:8:3) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x2c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (22:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (21:8:3) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x1ff Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (9:23:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (8:23:1) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (15:15:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (14:15:3) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3af Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (21:1:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (20:1:11) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x471 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (20:8:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (19:8:5) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x24f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (11:16:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (10:16:6) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x221 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (10:20:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (9:20:3) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x21f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (10:20:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (9:20:3) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x291 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (18:14:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (17:14:1) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xff Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (13:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (12:15:5) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x28f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (18:14:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (17:14:1) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x441 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (19:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (18:10:4) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x25f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (18:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (17:12:3) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x261 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (18:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (17:12:3) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x101 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (13:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (12:15:5) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x46f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (20:8:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (19:8:5) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x289 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (15:12:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (14:12:6) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x287 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (15:12:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (14:12:6) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x211 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (11:16:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (10:16:6) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x39f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (14:4:15) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (13:4:15) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x20f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (11:16:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (10:16:6) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x18f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (16:12:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (15:12:5) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x191 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (16:12:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (15:12:5) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (14:4:15) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (13:4:15) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x289 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (17:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (16:13:3) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x2f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (18:9:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (17:9:6) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (16:13:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (15:13:4) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (16:13:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (15:13:4) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x439 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (17:15:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (16:15:1) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x31f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (19:9:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (18:9:5) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x321 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (19:9:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (18:9:5) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x43f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (19:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (18:10:4) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4ff Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (6:27:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (5:27:0) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x287 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (17:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (16:13:3) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x5b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (12:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (11:21:0) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xe1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (21:7:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (20:7:5) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x501 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (6:27:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (5:27:0) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (14:5:14) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (13:5:14) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x18f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (12:18:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (11:18:3) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x191 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (12:18:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (11:18:3) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x39f Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (14:5:14) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (13:5:14) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x251 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (11:16:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (10:16:6) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xdf Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (21:7:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (20:7:5) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x299 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (11:20:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (10:20:2) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (10:17:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (9:17:6) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x227 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (8:23:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (7:23:2) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x177 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (18:9:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (17:9:6) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x179 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (18:9:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (17:9:6) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x229 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (8:23:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (7:23:2) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3df Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (10:17:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (9:17:6) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x1bf Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (13:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (12:18:2) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xe1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (25:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (24:6:2) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xdf Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (25:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (24:6:2) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x1c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (13:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (12:18:2) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x5b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (12:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (11:21:0) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x2bf Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (21:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (20:12:0) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x2c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 33 (21:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 32 (20:12:0) Lost Hammers/(Refresh:Access): 33 (1:32) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x181 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (16:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (15:14:2) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x2c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:8:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:8:6) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xef Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:15:5) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x331 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (21:6:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (20:6:5) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x2ef Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (20:6:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (19:6:6) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x2e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:16:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:16:4) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x2ff Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:19:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:19:1) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x2df Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:16:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:16:4) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xc9 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (16:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (15:11:5) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x1c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (9:22:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (8:22:1) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xc7 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (16:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (15:11:5) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4ff Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (10:22:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (9:22:0) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (19:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (18:10:3) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x501 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (10:22:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (9:22:0) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x1bf Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (13:17:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (12:17:2) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x5d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:14:0) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (9:22:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (8:22:1) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x17f Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (16:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (15:14:2) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x1c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (13:17:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (12:17:2) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (9:22:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (8:22:1) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x5cf Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:14:0) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x247 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (13:16:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (12:16:3) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x9f Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (21:4:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (20:4:7) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xa1 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (21:4:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (20:4:7) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x2f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (20:6:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (19:6:6) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x201 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:17:3) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xf1 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:15:5) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (19:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (18:10:3) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x1ff Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:17:3) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (14:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (13:18:0) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (24:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (23:7:1) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x18f Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:18:2) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (24:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (23:7:1) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x251 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (6:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (5:25:1) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x191 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (10:18:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (9:18:4) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x18f Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (10:18:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (9:18:4) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x24f Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (6:25:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (5:25:1) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x419 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (20:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (19:11:1) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x191 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:18:2) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x2c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:8:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:8:6) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x417 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (20:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (19:11:1) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x281 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (14:17:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (13:17:1) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x27f Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (14:17:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (13:17:1) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (14:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (13:18:0) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (20:2:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (19:2:10) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x1c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (9:22:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (8:22:1) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3af Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (20:2:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (19:2:10) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x419 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:13:1) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (9:23:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (8:23:0) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x5a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (19:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (18:13:0) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x249 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (13:17:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (12:17:2) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x5a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (19:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (18:13:0) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x247 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (13:17:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (12:17:2) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x241 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (11:19:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (10:19:2) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x417 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:13:1) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x23f Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (11:19:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (10:19:2) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x301 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:19:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:19:1) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xc7 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (14:15:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (13:15:3) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xc9 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (14:15:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (13:15:3) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x32f Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (21:6:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (20:6:5) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (9:23:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (8:23:0) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x287 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:11:3) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x127 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (11:15:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (10:15:6) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x2df Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:19:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:19:1) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x2e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:19:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:19:1) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x107 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (13:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (12:14:5) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x109 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (13:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (12:14:5) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x241 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (9:19:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (8:19:4) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x23f Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (9:19:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (8:19:4) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x289 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:11:3) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (17:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (16:15:0) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x129 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (11:15:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (10:15:6) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (17:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (16:15:0) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:12:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:12:2) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x5cf Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:20:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:20:0) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x5d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:20:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:20:0) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xc9 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:17:3) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xc7 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:17:3) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (21:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (20:9:2) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:12:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:12:2) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x1bf Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (13:17:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (12:17:2) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x291 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:18:2) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x2b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (22:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (21:10:0) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x2e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (11:16:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (10:16:5) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x2df Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (11:16:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (10:16:5) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x2b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (22:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (21:10:0) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x2ff Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (20:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (19:9:3) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x52f Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (11:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (10:21:0) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x301 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (20:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (19:9:3) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x531 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (11:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (10:21:0) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x2a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (17:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (16:11:4) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x1c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (13:17:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (12:17:2) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x28f Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:18:2) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x289 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (14:15:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (13:15:3) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x2a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (17:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (16:11:4) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x187 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (14:16:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (13:16:2) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x189 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (14:16:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (13:16:2) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x287 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (14:15:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (13:15:3) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x18f Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (13:16:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (12:16:3) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x191 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (13:16:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (12:16:3) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x289 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:11:3) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x201 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:18:2) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x397 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (17:7:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (16:7:8) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x247 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:17:3) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x249 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:17:3) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x1ff Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:18:2) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x2c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:11:3) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x2c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:11:3) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x1a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (9:21:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (8:21:2) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x1a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (9:21:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (8:21:2) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x399 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (17:7:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (16:7:8) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x287 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:11:3) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x419 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (21:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (20:10:1) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x417 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (21:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (20:10:1) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x67 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (16:8:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (15:8:8) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x69 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (16:8:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (15:8:8) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x1cf Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (13:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (12:14:5) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x291 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:18:2) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x1d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (13:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (12:14:5) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x28f Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:18:2) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x28f Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (14:17:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (13:17:1) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (21:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (20:9:2) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x249 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (13:16:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (12:16:3) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x11f Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:10:4) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x121 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:10:4) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x177 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (16:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (15:12:4) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x179 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (16:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (15:12:4) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x1a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (10:18:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (9:18:4) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x1a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (10:18:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (9:18:4) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x5a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (17:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (16:15:0) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x129 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (11:15:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (10:15:6) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x5a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (17:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (16:15:0) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x209 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (11:19:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (10:19:2) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x291 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (14:17:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (13:17:1) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x207 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (11:19:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (10:19:2) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:3:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:3:11) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x2ff Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:13:1) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3af Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:3:11) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:3:11) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x301 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:13:1) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x31f Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (23:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (22:6:3) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x419 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:14:0) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x29f Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (10:22:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (9:22:0) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x2a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (10:22:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (9:22:0) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x201 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (6:23:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (5:23:3) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x239 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (11:19:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (10:19:2) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x111 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (16:10:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (15:10:6) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (15:13:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (14:13:4) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x10f Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (16:10:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (15:10:6) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x127 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (11:15:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (10:15:6) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x129 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:15:5) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x321 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (23:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (22:6:3) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x1c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (13:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (12:19:0) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x1c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (13:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (12:19:0) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x46f Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:9:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:9:5) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x237 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (11:19:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (10:19:2) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (15:13:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (14:13:4) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x471 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:9:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:9:5) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (13:4:15) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (12:4:15) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xef Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (13:15:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (12:15:4) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (19:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (18:12:1) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x127 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (12:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (11:15:5) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x19f Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (8:21:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (7:21:3) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x417 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:14:0) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x1a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (8:21:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (7:21:3) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x439 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:12:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:12:2) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x1ff Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (6:23:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (5:23:3) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (17:3:12) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (16:3:12) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x329 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (20:6:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (19:6:6) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x437 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:12:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:12:2) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x2a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:10:4) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x327 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (20:6:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (19:6:6) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x39f Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (13:4:15) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (12:4:15) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xf1 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (13:15:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (12:15:4) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x2a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (18:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (17:10:4) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (19:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (18:12:1) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x39f Lifetime Hammers/(Normal:Prefetch:Writeback): 32 (17:3:12) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 31 (16:3:12) Lost Hammers/(Refresh:Access): 32 (1:31) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x29f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (13:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (12:18:0) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x11f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (21:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (20:8:2) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x121 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (21:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (20:8:2) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x2a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (13:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (12:18:0) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x1f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (14:13:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (13:13:4) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x2ff Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (15:15:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (14:15:1) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x1f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (14:13:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (13:13:4) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xc1 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (16:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (15:10:5) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x531 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (10:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (9:21:0) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xdf Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (20:5:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (19:5:6) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x301 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (15:15:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (14:15:1) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xe1 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (20:5:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (19:5:6) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xbf Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (16:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (15:10:5) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xe7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (21:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (20:7:3) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x297 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (8:22:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (7:22:1) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x17f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (15:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (14:13:3) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x247 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (9:21:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (8:21:1) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x181 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (15:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (14:13:3) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x1d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (10:16:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (9:16:5) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x299 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (8:22:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (7:22:1) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x221 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (7:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (6:22:2) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x21f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (7:22:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (6:22:2) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x5a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (17:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (16:14:0) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x1d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (13:15:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (12:15:3) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x1d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (13:15:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (12:15:3) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x2c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (17:9:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (16:9:5) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x189 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (11:16:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (10:16:4) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x81 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (14:8:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (13:8:9) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x7f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (14:8:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (13:8:9) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x52f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (10:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (9:21:0) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xbf Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (21:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (20:6:4) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (19:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (18:8:4) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x5a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (17:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (16:14:0) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (19:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (18:8:4) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xc1 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (21:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (20:6:4) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xc7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (16:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (15:12:3) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xc9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (16:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (15:12:3) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x181 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (11:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (10:17:3) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x1cf Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (10:18:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (9:18:3) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xc7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (19:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (18:8:4) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xc9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (19:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (18:8:4) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x1d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (10:18:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (9:18:3) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x1cf Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (12:12:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (11:12:7) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x1d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (12:12:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (11:12:7) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x1d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (11:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (10:18:2) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x1cf Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (11:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (10:18:2) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xe9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (21:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (20:7:3) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x1d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (11:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (10:18:2) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x5d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (13:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (12:18:0) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x5cf Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (13:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (12:18:0) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x2c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (17:9:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (16:9:5) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x17f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (11:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (10:17:3) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (13:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (12:18:0) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x2c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (15:15:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (14:15:1) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (13:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (12:18:0) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x291 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (11:19:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (10:19:1) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x489 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (18:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (17:11:2) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x28f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (11:19:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (10:19:1) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x177 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (16:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (15:11:4) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x487 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (18:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (17:11:2) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x179 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (16:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (15:11:4) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x181 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (16:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (15:13:2) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x11f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (21:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (20:8:2) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x1c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (13:16:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (12:16:2) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x121 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (21:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (20:8:2) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (21:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (20:7:3) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (21:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (20:7:3) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x10f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (15:7:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (14:7:9) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (10:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (9:21:0) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x111 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (15:7:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (14:7:9) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x531 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (9:22:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (8:22:0) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x52f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (9:22:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (8:22:0) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x101 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (15:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (14:12:4) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x2c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (15:15:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (14:15:1) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x17f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (16:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (15:13:2) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x1f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (16:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (15:11:4) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x397 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (16:7:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (15:7:8) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xff Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (15:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (14:12:4) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x399 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (16:7:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (15:7:8) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x107 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (15:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (14:13:3) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x109 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (15:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (14:13:3) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x1f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (16:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (15:11:4) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x1a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (10:17:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (9:17:4) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x19f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (10:17:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (9:17:4) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x289 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (18:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (17:10:3) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x10f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (13:8:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (12:8:10) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x1cf Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (10:16:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (9:16:5) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x139 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (14:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (13:15:2) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x137 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (14:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (13:15:2) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x249 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (9:21:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (8:21:1) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (17:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (16:13:1) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x531 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (9:22:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (8:22:0) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x1d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (11:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (10:18:2) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (17:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (16:13:1) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x287 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (18:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (17:10:3) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x1c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (9:21:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (8:21:1) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x1c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (9:21:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (8:21:1) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x1cf Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (14:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (13:14:3) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x1d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (14:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (13:14:3) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x111 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (13:8:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (12:8:10) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x1c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (10:20:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (9:20:1) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x52f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (9:22:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (8:22:0) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x1c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (10:20:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (9:20:1) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x52f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (8:23:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (7:23:0) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x531 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (8:23:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (7:23:0) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x109 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (16:14:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (15:14:1) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x107 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (16:14:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (15:14:1) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (17:12:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (16:12:2) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x209 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (8:21:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (7:21:2) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x207 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (8:21:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (7:21:2) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x1bf Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (13:16:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (12:16:2) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x11f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (20:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (19:9:2) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x1ff Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (10:17:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (9:17:4) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x201 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (10:17:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (9:17:4) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (10:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (9:21:0) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x121 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (20:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (19:9:2) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (17:12:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (16:12:2) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x1e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (12:18:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (11:18:1) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x2f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (17:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (16:10:4) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x32f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (21:3:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (20:3:7) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x1cf Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (11:16:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (10:16:4) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x2c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (17:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (16:13:1) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x1d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (11:16:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (10:16:4) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x1e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (12:18:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (11:18:1) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x17f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (13:14:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (12:14:4) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x181 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (13:14:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (12:14:4) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x2bf Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (17:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (16:13:1) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x287 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (15:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (14:13:3) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x289 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (15:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (14:13:3) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x237 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (12:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (11:14:5) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (10:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (9:21:0) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x31f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (19:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (18:11:1) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x531 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (7:24:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (6:24:0) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x2c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (18:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (17:10:3) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x2c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (18:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (17:10:3) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x52f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (7:24:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (6:24:0) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x399 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (15:8:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (14:8:8) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x2f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (17:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (16:10:4) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x419 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (17:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (16:14:0) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x321 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (19:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (18:11:1) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x2f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (16:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (15:12:3) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x247 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (9:21:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (8:21:1) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x1a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (17:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (16:11:3) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x2f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (16:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (15:12:3) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x2ff Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (17:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (16:13:1) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xa1 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (21:2:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (20:2:8) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x301 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (17:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (16:13:1) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x239 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (12:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (11:14:5) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x249 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (9:21:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (8:21:1) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x417 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (17:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (16:14:0) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (10:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (9:21:0) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x331 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (21:3:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (20:3:7) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x25f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (19:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (18:9:3) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x177 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (14:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (13:14:3) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x9f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (21:2:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (20:2:8) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x179 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (14:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (13:14:3) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x261 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (19:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (18:9:3) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x241 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (17:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (16:13:1) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x39f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (15:2:14) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (14:2:14) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x397 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (13:9:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (12:9:9) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x9f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (19:2:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (18:2:10) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x19f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (12:17:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (11:17:2) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x1f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (16:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (15:11:4) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x119 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (20:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (19:7:4) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x2ff Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (18:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (17:12:1) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x23f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (17:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (16:13:1) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x1f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (16:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (15:11:4) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x1a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (12:17:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (11:17:2) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x129 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (10:14:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (9:14:7) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x1b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (10:15:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (9:15:6) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x187 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (11:16:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (10:16:4) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x1c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (8:22:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (7:22:1) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (11:20:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (10:20:0) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x117 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (20:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (19:7:4) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (11:20:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (10:20:0) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x301 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (18:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (17:12:1) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x5a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (18:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (17:13:0) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x291 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (8:21:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (7:21:2) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x1b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (10:15:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (9:15:6) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xff Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (13:15:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (12:15:3) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xa1 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (19:2:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (18:2:10) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x1c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (8:22:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (7:22:1) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x101 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (13:15:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (12:15:3) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x127 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (10:14:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (9:14:7) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x397 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (15:8:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (14:8:8) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x5a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (18:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (17:13:0) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x121 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (20:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (19:7:4) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x28f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (8:21:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (7:21:2) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x2df Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (11:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (10:17:3) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x11f Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (20:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (19:7:4) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x2e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (11:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (10:17:3) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x399 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (13:9:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (12:9:9) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x1a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (17:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (16:11:3) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 31 (15:2:14) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 30 (14:2:14) Lost Hammers/(Refresh:Access): 31 (1:30) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x25f Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (17:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (16:10:3) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x237 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (10:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (9:18:2) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (17:5:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (16:5:8) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x121 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (15:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (14:13:2) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x261 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (21:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (20:8:1) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x2a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (17:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (16:9:4) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x2f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (16:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (15:11:3) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x447 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (17:8:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (16:8:5) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x5cf Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (9:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (8:21:0) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x5d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (9:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (8:21:0) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xef Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (11:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (10:14:5) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xf1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (11:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (10:14:5) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x2bf Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (15:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (14:12:3) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x2f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (16:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (15:11:3) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x25f Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (15:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (14:13:2) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (21:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (20:6:3) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x261 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (15:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (14:13:2) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x501 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (10:20:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (9:20:0) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (17:5:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (16:5:8) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4ff Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (10:20:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (9:20:0) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xf9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (21:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (20:6:3) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xc1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (17:7:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (16:7:6) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x261 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (19:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (18:9:2) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x287 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (13:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (12:14:3) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x1a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (12:16:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (11:16:2) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x2ff Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (11:18:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (10:18:1) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x32f Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (20:3:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (19:3:7) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x449 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (17:8:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (16:8:5) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x69 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (20:4:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (19:4:6) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (21:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (20:6:3) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x281 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (14:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (13:16:0) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x27f Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (14:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (13:16:0) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x331 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (20:3:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (19:3:7) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x11f Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (15:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (14:13:2) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xbf Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (17:7:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (16:7:6) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x67 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (20:4:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (19:4:6) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x2c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (15:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (14:12:3) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x1a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (12:16:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (11:16:2) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x1d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (14:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (13:14:2) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x2a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (17:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (16:9:4) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x1d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (14:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (13:14:2) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x17f Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (15:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (14:10:5) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x179 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (18:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (17:10:2) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xf1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (14:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (13:12:4) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x2f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (18:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (17:8:4) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3df Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (10:14:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (9:14:6) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x1a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (12:13:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (11:13:5) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x181 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (15:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (14:10:5) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x1a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (12:13:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (11:13:5) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x571 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (11:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (10:19:0) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xef Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (14:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (13:12:4) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x177 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (18:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (17:10:2) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x471 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (21:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (20:6:3) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x179 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (13:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (12:14:3) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x131 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (10:12:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (9:12:8) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x177 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (13:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (12:14:3) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x49f Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (19:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (18:11:0) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x12f Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (10:12:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (9:12:8) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (19:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (18:11:0) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x2df Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (11:18:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (10:18:1) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x1c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (11:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (10:19:0) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x457 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (14:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (13:11:5) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x459 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (14:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (13:11:5) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x177 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (18:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (17:10:2) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x1c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (11:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (10:19:0) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x179 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (18:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (17:10:2) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x187 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (13:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (12:14:3) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x189 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (13:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (12:14:3) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x107 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (14:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (13:14:2) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x56f Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (11:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (10:19:0) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xc1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (15:7:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (14:7:8) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xe7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (16:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (15:13:1) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xbf Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (15:7:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (14:7:8) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xe9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (16:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (15:13:1) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x2e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (11:18:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (10:18:1) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x12f Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (14:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (13:11:5) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x1d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (6:19:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (5:19:5) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x2f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (16:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (15:11:3) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x2f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (20:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (19:5:5) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x2f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (16:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (15:11:3) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xaf Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (21:1:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (20:1:8) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xc9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (14:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (13:12:4) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x2b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (20:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (19:7:3) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x301 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (17:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (16:12:1) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x2ef Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (20:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (19:5:5) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x1c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (14:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (13:14:2) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x1cf Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (6:19:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (5:19:5) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x301 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (11:18:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (10:18:1) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x191 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (12:16:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (11:16:2) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x18f Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (12:16:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (11:16:2) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x25f Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (21:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (20:8:1) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (18:3:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (17:3:9) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x261 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (17:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (16:10:3) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x239 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (10:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (9:18:2) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x2c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (18:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (17:10:2) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x46f Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (21:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (20:6:3) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x109 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (14:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (13:14:2) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (12:16:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (11:16:2) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3df Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (12:16:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (11:16:2) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x2f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (18:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (17:8:4) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x2ff Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (17:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (16:12:1) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x2c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (16:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (15:13:1) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x2c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (16:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (15:13:1) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3af Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (18:3:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (17:3:9) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x131 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (14:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (13:11:5) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (10:14:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (9:14:6) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x2bf Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (18:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (17:10:2) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xb1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (21:1:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (20:1:8) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x2b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (20:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (19:7:3) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xc7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (14:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (13:12:4) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x1bf Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (14:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (13:14:2) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xc9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (11:16:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (10:16:3) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x2ef Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (19:6:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (18:6:5) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x1e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (18:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (17:10:2) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (9:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (8:21:0) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3af Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (18:2:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (17:2:10) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x277 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (16:9:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (15:9:5) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (18:2:10) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (17:2:10) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x67 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (18:5:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (17:5:7) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x279 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (16:9:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (15:9:5) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x2e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (22:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (21:7:1) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x2e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (22:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (21:7:1) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (9:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (8:21:0) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x117 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (16:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (15:10:4) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x2f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (19:6:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (18:6:5) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x69 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (18:5:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (17:5:7) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x331 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (19:6:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (18:6:5) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x317 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (14:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (13:12:4) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xc1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (18:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (17:9:3) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x1cf Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (10:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (9:17:3) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x5cf Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (15:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (14:15:0) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xc7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (11:16:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (10:16:3) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (16:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (15:11:3) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (12:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (11:18:0) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x399 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (14:7:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (13:7:9) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xaf Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (22:1:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (21:1:7) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xb1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (22:1:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (21:1:7) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x1f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (16:12:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (15:12:2) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (12:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (11:18:0) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xaf Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (22:1:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (21:1:7) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xdf Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (20:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (19:7:3) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xe1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (20:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (19:7:3) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x1e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (18:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (17:10:2) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x181 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (15:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (14:12:3) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x1d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (10:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (9:17:3) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x1f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (16:12:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (15:12:2) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xb1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (22:1:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (21:1:7) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x28f Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (11:18:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (10:18:1) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (13:17:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (12:17:0) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (16:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (15:11:3) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (13:17:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (12:17:0) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xef Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (13:12:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (12:12:5) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x291 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (11:18:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (10:18:1) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xe7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (18:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (17:9:3) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x119 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (16:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (15:10:4) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x17f Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (15:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (14:12:3) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xe9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (19:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (18:9:2) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x2f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (13:12:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (12:12:5) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x2f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (17:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (16:9:4) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x397 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (14:7:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (13:7:9) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x2f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (17:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (16:9:4) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x1d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (13:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (12:15:2) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x1d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (13:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (12:15:2) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xe7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (19:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (18:9:2) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x25f Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (19:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (18:9:2) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x289 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (13:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (12:14:3) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xf7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (21:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (20:6:3) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x2c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (19:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (18:11:0) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xe9 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (18:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (17:9:3) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x2bf Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (19:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (18:11:0) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x28f Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (7:21:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (6:21:2) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x319 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (14:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (13:12:4) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xf1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (13:12:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (12:12:5) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x189 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (14:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (13:13:3) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x187 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (14:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (13:13:3) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x32f Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (19:6:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (18:6:5) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x5d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (15:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (14:15:0) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x2f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (13:12:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (12:12:5) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x19f Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (10:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (9:15:5) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x1a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (10:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (9:15:5) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x291 Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (7:21:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (6:21:2) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xbf Lifetime Hammers/(Normal:Prefetch:Writeback): 30 (18:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 29 (17:9:3) Lost Hammers/(Refresh:Access): 30 (1:29) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x2df Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (8:18:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (7:18:3) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x331 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (17:5:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (16:5:7) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x319 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (14:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (13:12:3) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x127 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (11:16:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (10:16:2) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3af Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (18:4:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (17:4:7) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x2a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (15:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (14:11:3) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xb1 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (23:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (22:3:3) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x1cf Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (8:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (7:21:0) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x439 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (17:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (16:10:2) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x447 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (11:12:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (10:12:6) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x509 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (11:17:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (10:17:1) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x129 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (11:16:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (10:16:2) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x449 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (11:12:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (10:12:6) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xf1 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (11:13:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (10:13:5) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x2e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (14:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (13:11:4) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xf9 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (16:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (15:12:1) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x111 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (13:9:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (12:9:7) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xf7 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (16:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (15:12:1) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x317 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (14:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (13:12:3) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x10f Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (13:9:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (12:9:7) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x5d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (14:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (13:15:0) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x291 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (10:17:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (9:17:2) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x28f Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (10:17:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (9:17:2) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x2e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (14:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (13:11:4) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x1bf Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (9:19:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (8:19:1) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x1c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (14:14:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (13:14:1) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x471 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (16:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (15:11:2) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x19f Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (6:19:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (5:19:4) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x46f Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (16:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (15:11:2) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x1d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (11:17:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (10:17:1) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x89 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (25:1:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (24:1:3) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xef Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (11:15:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (10:15:3) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x137 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (17:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (16:8:4) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x1c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (7:20:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (6:20:2) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x139 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (17:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (16:8:4) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x2a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (16:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (15:9:4) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x1d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (11:17:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (10:17:1) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x321 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (23:4:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (22:4:2) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x2a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (16:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (15:9:4) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x1c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (9:19:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (8:19:1) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x1a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (10:16:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (9:16:3) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x1cf Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (12:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (11:14:3) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x1d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (12:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (11:14:3) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x31f Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (23:4:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (22:4:2) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x399 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (13:7:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (12:7:9) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x1a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (10:16:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (9:16:3) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x1a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (6:19:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (5:19:4) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x397 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (13:7:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (12:7:9) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x507 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (11:17:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (10:17:1) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x2e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (8:18:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (7:18:3) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x41f Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (11:12:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (10:12:6) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x421 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (11:12:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (10:12:6) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x87 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (25:1:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (24:1:3) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x2df Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (8:17:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (7:17:4) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x2e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (8:17:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (7:17:4) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xaf Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (23:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (22:3:3) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (12:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (11:14:3) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3df Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (12:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (11:14:3) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x2a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (15:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (14:11:3) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x28f Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (11:15:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (10:15:3) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (20:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (19:8:1) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4ff Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (7:22:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (6:22:0) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xf1 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (11:15:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (10:15:3) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (20:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (19:8:1) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x1f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (16:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (15:11:2) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x1bf Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (14:14:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (13:14:1) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x1f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (16:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (15:11:2) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x1c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (7:20:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (6:20:2) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x501 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (7:22:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (6:22:0) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x89 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (26:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (25:1:2) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x28f Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (12:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (11:15:2) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x127 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (14:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (13:12:3) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x1f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (13:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (12:13:3) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x87 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (26:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (25:1:2) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x1f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (13:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (12:13:3) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x17f Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (9:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (8:15:5) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x181 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (9:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (8:15:5) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x69 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (21:4:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (20:4:4) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x5d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (12:17:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (11:17:0) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x5cf Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (12:17:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (11:17:0) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x189 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (13:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (12:13:3) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x291 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (12:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (11:15:2) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x187 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (13:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (12:13:3) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x181 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (13:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (12:13:3) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xc1 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (13:9:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (12:9:7) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x17f Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (13:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (12:13:3) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x287 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (15:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (14:11:3) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x289 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (15:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (14:11:3) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xbf Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (13:9:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (12:9:7) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x2f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (15:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (14:10:4) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x12f Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (13:10:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (12:10:6) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xbf Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (17:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (16:8:4) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x189 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (12:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (11:15:2) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x9f Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (16:5:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (15:5:8) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xa1 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (16:5:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (15:5:8) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4ff Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (5:24:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (4:24:0) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xc7 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (12:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (11:14:3) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x501 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (5:24:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (4:24:0) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x1c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (10:17:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (9:17:2) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x1bf Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (10:17:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (9:17:2) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4af Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (18:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (17:9:2) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x129 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (14:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (13:12:3) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (18:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (17:9:2) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xef Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (11:13:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (10:13:5) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x10f Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (14:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (13:10:5) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (13:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (12:13:3) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x247 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (6:22:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (5:22:1) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x187 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (12:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (11:15:2) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x249 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (6:22:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (5:22:1) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (13:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (12:13:3) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (23:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (22:3:3) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x111 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (14:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (13:10:5) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (23:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (22:3:3) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x67 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (21:4:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (20:4:4) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x117 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (17:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (16:10:2) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xa1 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (20:4:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (19:4:5) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x5cf Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (10:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (9:19:0) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x5a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (17:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (16:12:0) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xc1 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (17:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (16:8:4) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x117 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (18:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (17:10:1) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x119 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (17:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (16:10:2) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x43f Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (21:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (20:5:3) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x131 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (13:10:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (12:10:6) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x437 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (17:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (16:10:2) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x251 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (8:19:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (7:19:2) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x441 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (21:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (20:5:3) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xe7 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (19:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (18:6:4) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x5d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (10:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (9:19:0) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x24f Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (8:19:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (7:19:2) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xe9 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (19:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (18:6:4) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x119 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (18:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (17:10:1) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x5a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (17:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (16:12:0) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xc9 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (12:14:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (11:14:3) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (18:4:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (17:4:7) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x291 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (11:15:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (10:15:3) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x1d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (8:21:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (7:21:0) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x9f Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (20:4:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (19:4:5) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x32f Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (17:5:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (16:5:7) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x5cf Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (14:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (13:15:0) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x2f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 29 (15:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 28 (14:10:4) Lost Hammers/(Refresh:Access): 29 (1:28) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x321 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (18:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (17:8:2) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (13:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (12:12:3) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x1a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (14:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (13:11:3) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x137 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (15:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (14:12:1) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x31f Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (18:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (17:8:2) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (11:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (10:15:2) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x471 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (16:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (15:10:2) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x5d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (13:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (12:15:0) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x5cf Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (13:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (12:15:0) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x127 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (10:13:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (9:13:5) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x111 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (14:9:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (13:9:5) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x129 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (10:13:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (9:13:5) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x261 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (19:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (18:9:0) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x521 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (9:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (8:19:0) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x25f Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (21:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (20:5:2) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x12f Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (6:17:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (5:17:5) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (11:17:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (10:17:0) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x279 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (13:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (12:10:5) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (13:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (12:12:3) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (10:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (9:18:0) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4ff Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (10:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (9:18:0) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (10:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (9:18:0) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x46f Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (16:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (15:10:2) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x51f Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (9:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (8:19:0) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x1a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (14:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (13:11:3) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x277 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (13:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (12:10:5) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x277 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (12:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (11:12:4) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x447 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (17:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (16:9:2) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x131 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (6:17:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (5:17:5) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x49f Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (18:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (17:8:2) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x501 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (10:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (9:18:0) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xe9 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (12:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (11:14:2) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (11:17:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (10:17:0) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x1d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (10:15:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (9:15:3) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x52f Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (10:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (9:18:0) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x539 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (14:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (13:14:0) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x531 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (10:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (9:18:0) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x449 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (17:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (16:9:2) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (18:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (17:8:2) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3df Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (11:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (10:15:2) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x139 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (15:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (14:12:1) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x287 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (13:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (12:12:3) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x289 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (13:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (12:12:3) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x5cf Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (8:20:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (7:20:0) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x47f Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (8:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (7:15:5) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3af Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (18:2:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (17:2:8) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x25f Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (19:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (18:9:0) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x2c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (13:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (12:13:2) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x5d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (8:20:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (7:20:0) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x9f Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (17:3:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (16:3:8) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x1d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (10:15:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (9:15:3) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xe7 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (12:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (11:14:2) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (18:2:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (17:2:8) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x481 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (8:15:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (7:15:5) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x1ff Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (9:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (8:19:0) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x10f Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (14:9:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (13:9:5) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x201 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (9:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (8:19:0) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xa1 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (17:3:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (16:3:8) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x2c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (13:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (12:13:2) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x261 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (21:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (20:5:2) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x537 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (14:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (13:14:0) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x5a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (16:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (15:12:0) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x397 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (13:6:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (12:6:9) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (13:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (12:10:5) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (13:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (12:10:5) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xc7 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (10:13:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (9:13:5) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x2e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (16:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (15:10:2) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x421 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (12:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (11:13:3) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x2e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (16:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (15:10:2) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x1f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (10:13:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (9:13:5) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x399 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (13:6:9) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (12:6:9) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xc9 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (10:13:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (9:13:5) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x1f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (10:13:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (9:13:5) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xb1 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (20:1:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (19:1:7) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x1a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (12:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (11:13:3) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x5a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (16:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (15:12:0) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x247 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (8:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (7:18:2) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xc9 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (14:12:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (13:12:2) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x1a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (12:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (11:13:3) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xf7 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (18:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (17:9:1) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xf9 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (18:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (17:9:1) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xc7 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (14:12:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (13:12:2) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x201 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (8:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (7:18:2) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x1ff Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (8:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (7:18:2) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x1c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (9:18:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (8:18:1) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x1c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (9:18:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (8:18:1) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x287 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (13:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (12:12:3) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x261 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (17:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (16:11:0) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4af Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (17:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (16:9:2) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x289 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (13:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (12:12:3) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x2a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (16:7:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (15:7:5) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (17:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (16:9:2) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x481 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (19:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (18:6:3) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (12:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (11:13:3) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xe7 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (17:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (16:8:3) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xe9 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (17:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (16:8:3) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (12:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (11:13:3) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x289 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (12:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (11:13:3) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xc9 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (13:14:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (12:14:1) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xc7 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (13:14:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (12:14:1) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x287 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (12:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (11:13:3) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x487 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (11:13:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (10:13:4) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x279 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (12:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (11:12:4) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x489 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (11:13:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (10:13:4) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x2a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (16:7:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (15:7:5) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x41f Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (12:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (11:13:3) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xe1 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (17:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (16:8:3) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xdf Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (17:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (16:8:3) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xaf Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (20:1:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (19:1:7) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x449 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (17:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (16:7:4) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x447 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (17:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (16:7:4) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4ff Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (10:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (9:18:0) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x501 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (10:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (9:18:0) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x28f Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (10:17:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (9:17:1) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x291 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (10:17:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (9:17:1) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x5d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (8:20:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (7:20:0) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x249 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (8:18:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (7:18:2) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x5cf Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (8:20:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (7:20:0) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x47f Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (19:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (18:6:3) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x127 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (8:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (7:17:3) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x25f Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (17:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (16:11:0) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x1d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (12:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (11:14:2) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x449 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (18:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (17:8:2) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x111 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (17:6:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (16:6:5) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x117 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (16:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (15:9:3) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x421 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (14:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (13:11:3) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x119 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (16:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (15:9:3) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x447 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (18:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (17:8:2) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x331 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (18:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (17:6:4) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x41f Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (14:12:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (13:12:2) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x1d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (12:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (11:14:2) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x41f Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (14:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (13:11:3) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x209 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (11:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (10:15:2) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x32f Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (18:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (17:6:4) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x1d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (15:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (14:11:2) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x421 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (14:12:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (13:12:2) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x5a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (11:17:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (10:17:0) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x1d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (15:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (14:11:2) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x439 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (12:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (11:14:2) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x449 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (16:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (15:9:3) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x437 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (12:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (11:14:2) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x447 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (16:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (15:9:3) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x207 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (11:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (10:15:2) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x129 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (8:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (7:17:3) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x10f Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (17:6:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (16:6:5) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x5a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 28 (11:17:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 27 (10:17:0) Lost Hammers/(Refresh:Access): 28 (1:27) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x139 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (12:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (11:10:5) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x2a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (17:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (16:7:3) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x5a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (15:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (14:12:0) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x137 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (12:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (11:10:5) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x1f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (16:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (15:10:1) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x489 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (15:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (14:10:2) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x501 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (8:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (7:19:0) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x487 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (15:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (14:10:2) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x1f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (16:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (15:10:1) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (12:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (11:11:4) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x2c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (13:9:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (12:9:5) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x2f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (16:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (15:9:2) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (12:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (11:11:4) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x31f Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (19:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (18:7:1) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x2f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (16:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (15:9:2) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x5a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (15:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (14:12:0) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x321 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (19:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (18:7:1) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x89 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (24:0:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (23:0:3) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x87 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (24:0:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (23:0:3) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x2a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (17:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (16:7:3) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x32f Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (23:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (22:2:2) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xc7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (11:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (10:13:3) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xb1 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (22:0:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (21:0:5) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x1c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (12:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (11:13:2) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xaf Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (22:0:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (21:0:5) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xf7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (16:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (15:11:0) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xf9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (16:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (15:11:0) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x261 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (20:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (19:5:2) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x1c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (8:18:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (7:18:1) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4af Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (15:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (14:10:2) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x1bf Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (12:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (11:13:2) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x25f Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (17:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (16:7:3) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x25f Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (20:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (19:5:2) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x1a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (14:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (13:9:4) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x261 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (17:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (16:7:3) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x1a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (14:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (13:9:4) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x20f Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (11:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (10:14:2) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x47f Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (16:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (15:8:3) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x481 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (16:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (15:8:3) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x52f Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (11:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (10:16:0) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x1bf Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (8:18:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (7:18:1) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x2c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (13:9:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (12:9:5) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x247 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (9:16:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (8:16:2) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4ff Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (8:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (7:19:0) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x249 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (9:16:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (8:16:2) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x2df Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (13:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (12:10:4) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x2e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (13:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (12:10:4) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xc9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (11:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (10:13:3) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x211 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (11:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (10:14:2) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (9:14:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (8:14:4) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x51f Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (13:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (12:13:1) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (15:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (14:10:2) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (9:14:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (8:14:4) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x2a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (14:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (13:11:2) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x1a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (8:16:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (7:16:3) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x2a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (14:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (13:11:2) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x5cf Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (14:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (13:13:0) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x5d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (14:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (13:13:0) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x1a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (8:16:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (7:16:3) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (12:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (11:12:3) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (12:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (11:12:3) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x2e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (13:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (12:10:4) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x67 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (14:7:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (13:7:6) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x69 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (14:7:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (13:7:6) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x2df Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (13:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (12:10:4) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (17:2:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (16:2:8) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x111 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (10:9:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (9:9:8) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x521 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (13:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (12:13:1) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x10f Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (10:9:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (9:9:8) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x547 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (11:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (10:16:0) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (14:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (13:9:4) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (16:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (15:9:2) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x329 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (21:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (20:3:3) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x327 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (21:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (20:3:3) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (14:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (13:9:4) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x2b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (18:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (17:6:3) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x139 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (14:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (13:11:2) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x2b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (18:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (17:6:3) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xaf Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (22:0:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (21:0:5) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4af Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (16:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (15:9:2) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x2ef Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (17:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (16:6:4) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (11:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (10:16:0) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x277 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (16:6:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (15:6:5) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3cf Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (17:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (16:7:3) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x69 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (14:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (13:9:4) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x139 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (13:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (12:13:1) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (17:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (16:7:3) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xb1 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (22:0:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (21:0:5) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x331 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (23:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (22:2:2) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x67 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (14:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (13:9:4) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x137 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (13:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (12:13:1) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x531 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (11:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (10:16:0) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x2f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (17:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (16:6:4) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x87 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (20:3:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (19:3:4) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x189 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (11:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (10:14:2) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x279 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (16:6:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (15:6:5) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x89 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (20:3:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (19:3:4) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x187 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (11:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (10:14:2) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x2e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (14:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (13:9:4) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x2df Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (14:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (13:9:4) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x2c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (19:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (18:6:2) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x2c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (19:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (18:6:2) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x261 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (20:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (19:6:1) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x25f Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (20:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (19:6:1) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x137 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (14:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (13:11:2) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xbf Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (15:7:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (14:7:5) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x549 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (11:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (10:16:0) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xc1 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (15:7:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (14:7:5) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3af Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (17:2:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (16:2:8) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x489 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (15:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (14:9:3) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x1c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (7:20:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (6:20:0) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x1c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (10:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (9:15:2) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x547 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (12:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (11:15:0) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x12f Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (13:12:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (12:12:2) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xc7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (14:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (13:12:1) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x487 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (15:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (14:9:3) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x537 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (16:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (15:11:0) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (17:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (16:6:4) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x539 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (16:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (15:11:0) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x131 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (13:12:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (12:12:2) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x119 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (15:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (14:8:4) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x1d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (10:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (9:15:2) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x539 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (12:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (11:15:0) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x1d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (10:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (9:15:2) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x139 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (16:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (15:8:3) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x439 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (15:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (14:11:1) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x437 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (15:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (14:11:1) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x137 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (16:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (15:8:3) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xc1 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (12:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (11:11:4) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x481 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (15:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (14:10:2) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x571 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (9:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (8:18:0) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x56f Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (9:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (8:18:0) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xef Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (11:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (10:13:3) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x449 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (14:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (13:9:4) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xf1 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (11:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (10:13:3) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x47f Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (15:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (14:10:2) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x537 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (12:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (11:15:0) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x331 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (20:4:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (19:4:3) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x1d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (10:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (9:15:2) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x471 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (20:3:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (19:3:4) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x32f Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (20:4:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (19:4:3) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x447 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (14:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (13:9:4) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x1c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (7:20:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (6:20:0) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x1d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (10:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (9:15:2) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xe7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (15:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (14:11:1) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xc9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (14:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (13:12:1) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xe9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (15:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (14:11:1) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x1bf Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (10:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (9:15:2) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x549 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (12:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (11:15:0) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x277 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (16:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (15:7:4) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x46f Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (20:3:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (19:3:4) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (17:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (16:6:4) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x41f Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (12:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (11:11:4) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (11:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (10:16:0) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x421 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (12:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (11:11:4) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x129 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (12:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (11:11:4) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x1f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (13:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (12:10:4) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x5a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (13:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (12:14:0) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x5a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (13:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (12:14:0) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x127 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (12:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (11:11:4) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x1f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (13:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (12:10:4) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x117 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (15:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (14:8:4) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xbf Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (12:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (11:11:4) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x457 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (19:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (18:5:3) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x459 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (19:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (18:5:3) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x279 Lifetime Hammers/(Normal:Prefetch:Writeback): 27 (16:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 26 (15:7:4) Lost Hammers/(Refresh:Access): 27 (1:26) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x131 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (11:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (10:10:5) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x279 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (17:4:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (16:4:5) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x277 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (17:4:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (16:4:5) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x571 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (9:17:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (8:17:0) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x12f Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (10:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (9:13:3) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xf1 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (9:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (8:15:2) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3cf Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (14:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (13:8:4) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x2df Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (8:15:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (7:15:3) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xef Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (9:15:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (8:15:2) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x56f Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (9:17:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (8:17:0) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x131 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (10:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (9:13:3) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x1f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (15:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (14:8:3) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x549 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (12:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (11:14:0) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (11:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (10:10:5) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (11:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (10:10:5) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x5c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (11:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (10:15:0) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x5c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (7:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (6:19:0) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x431 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (15:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (14:9:2) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4cf Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (11:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (10:11:4) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x317 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (14:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (13:11:1) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x5c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (7:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (6:19:0) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x319 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (14:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (13:11:1) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (11:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (10:10:5) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xf7 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (18:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (17:8:0) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x1e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (13:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (12:13:0) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x279 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (14:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (13:9:3) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x2e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (8:15:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (7:15:3) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x449 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (10:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (9:11:5) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x447 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (10:11:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (9:11:5) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x121 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (15:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (14:7:4) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x11f Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (15:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (14:7:4) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x2ef Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (17:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (16:6:3) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (16:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (15:7:3) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x2f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (17:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (16:6:3) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x1bf Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (13:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (12:13:0) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x5c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (11:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (10:15:0) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4af Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (16:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (15:7:3) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (11:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (10:13:2) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x337 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (18:3:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (17:3:5) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x327 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (21:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (20:3:2) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x1c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (13:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (12:13:0) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x327 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (18:4:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (17:4:4) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x339 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (18:3:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (17:3:5) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x12f Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (11:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (10:10:5) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x2e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (18:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (17:8:0) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x2e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (18:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (17:8:0) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x287 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (10:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (9:13:3) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xc7 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (16:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (15:7:3) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x2e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (7:15:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (6:15:4) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xc9 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (16:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (15:7:3) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x2df Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (7:15:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (6:15:4) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x289 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (10:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (9:13:3) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x317 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (13:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (12:11:2) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x1bf Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (12:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (11:14:0) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (11:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (10:11:4) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x52f Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (14:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (13:12:0) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x357 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (16:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (15:8:2) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x1a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (8:17:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (7:17:1) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x531 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (14:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (13:12:0) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x89 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (20:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (19:3:3) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x289 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (10:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (9:13:3) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x1a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (8:17:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (7:17:1) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x359 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (16:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (15:8:2) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4ff Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (4:22:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (3:22:0) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x329 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (21:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (20:3:2) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x319 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (13:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (12:11:2) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x2a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (15:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (14:9:2) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x119 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (16:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (15:6:4) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x42f Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (15:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (14:9:2) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x547 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (12:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (11:14:0) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x117 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (16:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (15:6:4) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x1d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (11:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (10:13:2) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x131 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (9:13:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (8:13:4) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (12:8:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (11:8:6) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x1d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (11:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (10:13:2) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x111 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (12:8:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (11:8:6) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (12:8:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (11:8:6) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x501 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (4:22:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (3:22:0) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x12f Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (9:13:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (8:13:4) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x137 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (13:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (12:9:4) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x139 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (13:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (12:9:4) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x277 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (14:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (13:9:3) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xf9 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (18:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (17:8:0) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4af Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (17:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (16:7:2) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (14:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (13:8:4) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x47f Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (12:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (11:10:4) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x1e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (13:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (12:13:0) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x447 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (15:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (14:7:4) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x261 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (14:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (13:10:2) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x25f Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (14:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (13:10:2) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x1f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (15:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (14:8:3) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x89 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (21:1:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (20:1:4) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x481 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (12:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (11:10:4) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (11:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (10:10:5) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x33f Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (15:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (14:7:4) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x2a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (15:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (14:9:2) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x87 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (20:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (19:3:3) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (17:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (16:7:2) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x341 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (15:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (14:7:4) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x87 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (21:1:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (20:1:4) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x287 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (10:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (9:13:3) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x449 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (15:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (14:7:4) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xb1 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (20:2:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (19:2:4) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x1c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (12:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (11:14:0) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xaf Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (20:2:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (19:2:4) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x119 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (12:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (11:11:3) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x2ff Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (13:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (12:13:0) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x48f Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (14:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (13:11:1) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x491 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (14:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (13:11:1) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x1a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (7:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (6:14:5) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x499 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (13:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (12:12:1) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x1a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (7:14:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (6:14:5) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x497 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (13:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (12:12:1) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x301 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (13:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (12:13:0) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x2df Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (9:13:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (8:13:4) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x117 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (12:11:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (11:11:3) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x549 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (11:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (10:15:0) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x137 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (11:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (10:13:2) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (17:3:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (16:3:6) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x571 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (11:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (10:15:0) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3af Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (17:3:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (16:3:6) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x10f Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (12:8:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (11:8:6) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x289 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (11:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (10:12:3) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x1d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (11:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (10:12:3) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x2e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (9:13:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (8:13:4) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x1cf Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (11:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (10:12:3) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (16:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (15:6:4) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x319 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (14:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (13:11:1) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x317 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (14:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (13:11:1) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x329 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (18:4:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (17:4:4) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (16:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (15:6:4) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x189 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (13:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (12:11:2) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4af Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (15:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (14:10:1) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (15:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (14:10:1) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x111 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (13:8:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (12:8:5) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x319 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (16:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (15:10:0) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x317 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (16:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (15:10:0) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x187 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (13:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (12:11:2) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x201 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (7:17:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (6:17:2) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x67 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (16:3:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (15:3:7) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x2bf Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (17:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (16:9:0) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x10f Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (13:8:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (12:8:5) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x489 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (18:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (17:5:3) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x487 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (18:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (17:5:3) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (11:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (10:13:2) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x139 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (11:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (10:13:2) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x2c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (17:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (16:9:0) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x56f Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (11:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (10:15:0) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x69 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (16:3:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (15:3:7) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x547 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (11:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (10:15:0) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x1ff Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (7:17:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (6:17:2) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x287 Lifetime Hammers/(Normal:Prefetch:Writeback): 26 (11:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 25 (10:12:3) Lost Hammers/(Refresh:Access): 26 (1:25) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (17:3:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (16:3:5) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x1f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (9:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (8:13:3) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x87 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (23:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (22:1:1) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x489 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (15:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (14:7:3) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x439 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (10:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (9:15:0) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x521 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (6:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (5:19:0) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x41f Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:9:3) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x447 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (15:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (14:8:2) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x459 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:8:4) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x31f Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (19:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (18:5:1) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x457 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:8:4) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (17:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (16:6:2) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x9f Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:4:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:4:8) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x69 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (17:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (16:5:3) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3af Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (17:3:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (16:3:5) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4af Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (15:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (14:8:2) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x137 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (12:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (11:11:2) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x249 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (9:15:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (8:15:1) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x247 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (9:15:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (8:15:1) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x489 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (17:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (16:7:1) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x42f Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (17:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (16:7:1) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x571 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (9:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (8:16:0) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x487 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (15:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (14:9:1) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x131 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (9:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (8:13:3) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x2c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (16:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (15:8:1) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x67 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (17:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (16:5:3) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x2c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (16:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (15:8:1) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x439 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (17:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (16:8:0) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:8:4) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x67 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (16:5:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (15:5:4) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:9:3) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:8:4) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4ff Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (8:17:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (7:17:0) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xe7 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:11:1) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:9:3) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x449 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (15:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (14:8:2) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x69 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (16:5:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (15:5:4) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x321 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (19:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (18:5:1) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4af Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (14:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (13:9:2) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x539 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:12:0) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x89 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (23:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (22:2:0) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:8:4) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x491 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (12:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (11:11:2) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x327 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (17:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (16:5:3) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x48f Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (12:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (11:11:2) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x87 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (22:0:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (21:0:3) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x1bf Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (10:14:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (9:14:1) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x2f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (15:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (14:7:3) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x89 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (22:0:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (21:0:3) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x547 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (12:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (11:13:0) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x549 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (12:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (11:13:0) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x69 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (14:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (13:7:4) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x437 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (10:14:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (9:14:1) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xe9 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:11:1) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x12f Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:9:3) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x2ef Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (15:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (14:7:3) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x131 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (11:8:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (10:8:6) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x439 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (10:14:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (9:14:1) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x12f Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (11:8:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (10:8:6) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x89 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (24:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (23:0:1) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x1c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (10:14:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (9:14:1) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xb9 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (15:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (14:5:5) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:11:1) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x89 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (23:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (22:1:1) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x2c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (17:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (16:7:1) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (15:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (14:8:2) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x487 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (15:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (14:7:3) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x2c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (17:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (16:7:1) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x489 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (15:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (14:9:1) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (14:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (13:9:2) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4af Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:11:1) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x51f Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (6:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (5:19:0) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:8:4) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x56f Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (11:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (10:14:0) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x1f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (9:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (8:13:3) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4cf Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (12:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (11:10:3) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x317 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (12:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (11:11:2) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x319 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (12:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (11:11:2) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x131 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:9:3) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x12f Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (10:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (9:12:3) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xb7 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (15:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (14:5:5) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x329 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (17:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (16:5:3) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x131 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (10:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (9:12:3) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x87 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (23:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (22:2:0) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x67 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (14:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (13:7:4) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x1a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (5:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (4:17:3) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x139 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (11:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (10:10:4) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x2a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:11:1) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x329 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (18:3:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (17:3:4) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x69 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:4:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:4:8) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x1a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (10:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (9:12:3) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x187 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (9:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (8:14:2) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x2a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:11:1) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x119 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (14:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (13:9:2) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x501 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (8:17:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (7:17:0) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x501 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (10:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (9:15:0) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3df Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (8:16:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (7:16:1) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x327 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (18:3:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (17:3:4) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x437 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (10:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (9:15:0) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x1a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (10:12:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (9:12:3) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4ff Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (7:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (6:18:0) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x507 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (8:17:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (7:17:0) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x117 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (14:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (13:9:2) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x571 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (11:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (10:14:0) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x41f Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (10:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (9:13:2) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x421 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (10:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (9:13:2) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x329 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (15:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (14:5:5) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x1a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (5:17:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (4:17:3) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x277 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (14:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (13:8:3) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x2f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:6:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:6:6) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x279 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (14:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (13:8:3) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4cf Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (17:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (16:6:2) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x2ef Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:6:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:6:6) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xa1 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:4:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:4:8) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xe9 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (12:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (11:9:4) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xaf Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (18:1:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (17:1:6) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xe7 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (12:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (11:9:4) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x189 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (9:14:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (8:14:2) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x501 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (7:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (6:18:0) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x137 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (11:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (10:10:4) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x47f Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:11:1) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x571 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (11:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (10:14:0) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x67 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:4:8) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:4:8) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x481 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:11:1) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x87 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (24:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (23:0:1) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x537 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:12:0) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (15:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (14:5:5) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (15:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (14:5:5) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x42f Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (18:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (17:7:0) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xb1 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (18:1:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (17:1:6) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (15:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (14:10:0) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xa7 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (17:3:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (16:3:5) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (12:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (11:10:3) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x49f Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (15:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (14:10:0) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (8:16:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (7:16:1) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x431 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (18:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (17:7:0) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x421 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (13:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (12:9:3) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4ff Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (10:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (9:15:0) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x1bf Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (12:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (11:12:1) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xa9 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (17:3:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (16:3:5) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x531 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (9:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (8:16:0) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x487 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (17:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (16:7:1) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x1c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (12:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (11:12:1) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x52f Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (9:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (8:16:0) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x12f Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (9:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (8:13:3) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x431 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (17:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (16:7:1) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x327 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (16:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (15:7:2) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x139 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (12:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (11:11:2) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (9:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (8:12:4) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (9:12:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (8:12:4) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x329 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (16:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (15:7:2) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x327 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (15:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (14:5:5) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x56f Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (9:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (8:16:0) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x56f Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (11:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (10:14:0) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x437 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (17:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (16:8:0) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x509 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (8:17:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (7:17:0) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x2f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (19:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (18:5:1) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x2ef Lifetime Hammers/(Normal:Prefetch:Writeback): 25 (19:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 24 (18:5:1) Lost Hammers/(Refresh:Access): 25 (1:24) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xb9 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:4:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:4:6) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x317 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (12:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (11:10:2) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (12:5:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (11:5:7) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:6:4) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:5:5) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x331 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (17:3:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (16:3:4) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x277 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (11:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (10:10:3) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x5c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (12:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (11:12:0) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x321 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:9:1) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (13:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (12:7:4) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (12:5:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (11:5:7) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x361 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (17:4:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (16:4:3) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xe1 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (16:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (15:7:1) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x47f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:7:3) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:5:5) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x279 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (11:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (10:10:3) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x35f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (17:4:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (16:4:3) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x437 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (15:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (14:9:0) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x481 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:7:3) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xb7 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:4:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:4:6) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:9:1) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xdf Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (16:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (15:7:1) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x549 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (10:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (9:14:0) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x47f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (16:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (15:7:1) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (12:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (11:9:3) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x5c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (12:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (11:12:0) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x521 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:10:0) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x547 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (10:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (9:14:0) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x31f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:9:1) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x319 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (12:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (11:10:2) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x437 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (13:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (12:11:0) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x261 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (15:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (14:7:2) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x279 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (11:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (10:9:4) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x67 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (16:2:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (15:2:6) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x9f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:3:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:3:7) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xa1 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:3:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:3:7) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x131 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (11:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (10:10:3) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3af Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:3:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:3:7) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x12f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (11:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (10:10:3) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x439 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (15:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (14:9:0) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4ff Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (5:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (4:19:0) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (12:7:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (11:7:5) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (12:7:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (11:7:5) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:3:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:3:7) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x69 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (16:2:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (15:2:6) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x501 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (5:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (4:19:0) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x25f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (15:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (14:7:2) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (12:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (11:10:2) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x10f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (10:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (9:10:4) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x12f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (8:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (7:13:3) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x2c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (11:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (10:12:1) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x2c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (11:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (10:12:1) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4af Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:9:1) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x331 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (17:4:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (16:4:3) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x32f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (17:4:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (16:4:3) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4ef Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (9:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (8:15:0) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x439 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (13:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (12:11:0) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3cf Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (13:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (12:7:4) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x187 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (10:12:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (9:12:2) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (16:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (15:5:3) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x189 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (10:12:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (9:12:2) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (12:6:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (11:6:6) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:6:4) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3cf Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (16:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (15:5:3) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (12:6:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (11:6:6) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (9:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (8:15:0) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x481 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (16:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (15:7:1) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xb1 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (19:1:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (18:1:4) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3ef Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (15:3:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (14:3:6) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xe7 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:9:1) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x277 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (11:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (10:9:4) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x131 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (8:13:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (7:13:3) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (12:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (11:10:2) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x111 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (10:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (9:10:4) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (15:3:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (14:3:6) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x51f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:10:0) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xe9 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:9:1) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (13:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (12:9:2) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x317 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (16:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (15:5:3) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x571 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (10:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (9:14:0) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x56f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (10:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (9:14:0) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x319 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (16:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (15:5:3) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x571 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (10:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (9:14:0) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (15:3:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (14:3:6) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (12:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (11:8:4) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x12f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:5:5) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x131 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:5:5) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xaf Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (19:1:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (18:1:4) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x32f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (18:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (17:3:3) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xc1 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (13:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (12:9:2) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x331 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (18:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (17:3:3) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x56f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (8:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (7:16:0) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x489 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (17:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (16:5:2) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (16:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (15:7:1) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (16:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (15:7:1) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x571 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (8:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (7:16:0) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x5d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (10:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (9:14:0) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x5cf Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (10:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (9:14:0) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x117 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (10:12:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (9:12:2) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x119 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (10:12:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (9:12:2) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x49f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (17:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (16:5:2) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x359 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (15:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (14:8:1) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x471 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (15:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (14:8:1) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xbf Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (13:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (12:9:2) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4cf Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (12:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (11:9:3) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (12:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (11:9:3) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x357 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (15:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (14:8:1) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (8:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (7:16:0) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x331 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (18:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (17:3:3) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (13:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (12:10:1) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x509 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (6:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (5:18:0) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3af Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (15:3:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (14:3:6) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x56f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (11:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (10:13:0) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x49f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (13:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (12:10:1) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x32f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (18:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (17:3:3) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x547 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (8:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (7:16:0) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x571 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (11:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (10:13:0) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x507 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (6:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (5:18:0) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (16:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (15:6:2) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x549 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (8:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (7:16:0) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x5c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (10:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (9:14:0) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x447 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (16:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (15:6:2) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x46f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (15:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (14:8:1) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x5c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (10:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (9:14:0) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3ef Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (16:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (15:6:2) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x497 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (12:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (11:9:3) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x449 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (16:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (15:6:2) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x447 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (18:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (17:3:3) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x449 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (18:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (17:3:3) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x67 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (16:4:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (15:4:4) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x42f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (16:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (15:8:0) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x499 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (12:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (11:9:3) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4ef Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (8:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (7:16:0) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4ff Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (9:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (8:15:0) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x457 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (13:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (12:9:2) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x69 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (16:4:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (15:4:4) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x459 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (13:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (12:9:2) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4cf Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (9:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (8:11:4) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x42f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:8:2) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x5c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (11:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (10:13:0) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x117 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:8:2) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (12:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (11:8:4) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x5c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (11:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (10:13:0) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x119 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:8:2) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x431 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:8:2) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xa9 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:3:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:3:7) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (9:11:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (8:11:4) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x2e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:10:0) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x459 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (12:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (11:8:4) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x501 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (9:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (8:15:0) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xa9 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:3:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:3:7) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xa7 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:3:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:3:7) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x487 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (17:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (16:5:2) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x56f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (10:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (9:14:0) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x431 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (16:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (15:8:0) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x549 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (8:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (7:16:0) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xa7 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:3:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:3:7) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x457 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (12:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (11:8:4) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x547 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (8:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (7:16:0) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x487 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (17:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (16:5:2) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xa1 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (16:3:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (15:3:5) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x9f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (16:3:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (15:3:5) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x2e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:10:0) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (16:3:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (15:3:5) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (16:3:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (15:3:5) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (17:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (16:5:2) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x489 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (17:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (16:5:2) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x2e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (13:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (12:10:1) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (12:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (11:9:3) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x2e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (13:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (12:10:1) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x457 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:8:2) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (13:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (12:9:2) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x32f Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (17:3:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (16:3:4) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x459 Lifetime Hammers/(Normal:Prefetch:Writeback): 24 (14:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 23 (13:8:2) Lost Hammers/(Refresh:Access): 24 (1:23) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x5c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (10:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (9:13:0) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4cf Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:10:2) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x317 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (15:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (14:5:3) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x42f Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (14:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (13:9:0) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x431 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (14:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (13:9:0) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x449 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (13:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (12:8:2) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (14:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (13:7:2) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x32f Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (16:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (15:5:2) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x471 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (16:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (15:6:1) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x521 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (10:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (9:13:0) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x42f Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (16:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (15:6:1) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x431 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (16:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (15:6:1) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x539 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (9:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (8:14:0) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x41f Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:11:1) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x2e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:8:4) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x329 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (14:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (13:6:3) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x2e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:8:4) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x327 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (14:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (13:6:3) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x50f Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (4:18:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (3:18:1) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:10:2) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x32f Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (14:4:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (13:4:5) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x319 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (15:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (14:5:3) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x421 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:11:1) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x511 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (4:18:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (3:18:1) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (15:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (14:5:3) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x537 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (9:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (8:14:0) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x471 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:7:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:7:5) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x5c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (10:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (9:13:0) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x331 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (14:4:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (13:4:5) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (15:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (14:5:3) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x5c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (6:17:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (5:17:0) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x2e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (15:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (14:7:1) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x487 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (16:4:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (15:4:3) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x491 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (10:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (9:10:3) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x5c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (6:17:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (5:17:0) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x48f Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (10:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (9:10:3) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x337 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (16:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (15:5:2) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x549 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (10:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (9:13:0) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x339 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (16:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (15:5:2) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x461 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (13:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (12:5:5) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x42f Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (12:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (11:11:0) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x2e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (15:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (14:7:1) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x379 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (19:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (18:4:0) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x2f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (18:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (17:4:1) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x377 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (19:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (18:4:0) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xb1 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (17:1:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (16:1:5) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (13:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (12:6:4) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x2f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (18:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (17:4:1) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x51f Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (10:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (9:13:0) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4cf Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (13:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (12:6:4) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x431 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (12:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (11:11:0) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x547 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (10:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (9:13:0) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (8:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (7:15:0) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x459 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (13:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (12:8:2) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x459 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (18:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (17:3:2) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x46f Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (16:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (15:6:1) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x317 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (15:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (14:5:3) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xe9 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (10:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (9:9:4) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x319 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (15:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (14:5:3) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x41f Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (15:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (14:8:0) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (8:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (7:15:0) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x45f Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (13:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (12:5:5) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xaf Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (17:1:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (16:1:5) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x45f Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (13:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (12:8:2) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x331 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (16:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (15:5:2) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x457 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (18:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (17:3:2) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x46f Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:7:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:7:5) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x10f Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (6:11:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (5:11:6) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x111 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (6:11:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (5:11:6) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x489 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (16:4:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (15:4:3) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xe7 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (10:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (9:9:4) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x509 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (4:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (3:19:0) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x507 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (4:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (3:19:0) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (14:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (13:7:2) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x139 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (15:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (14:7:1) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x137 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (15:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (14:7:1) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (8:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (7:13:2) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x499 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (15:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (14:8:0) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x5c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (8:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (7:15:0) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x447 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (13:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (12:8:2) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:11:1) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4cf Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (8:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (7:13:2) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xe7 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:11:1) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x497 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (15:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (14:8:0) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x187 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (10:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (9:10:3) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x501 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (8:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (7:15:0) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x549 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (12:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (11:11:0) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x56f Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (10:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (9:13:0) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x489 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (10:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (9:9:4) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x487 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (10:9:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (9:9:4) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (14:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (13:7:2) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x481 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (8:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (7:13:2) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x47f Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (8:13:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (7:13:2) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x87 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (18:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (17:2:3) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x49f Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:11:1) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xb9 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:6:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:6:6) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4ff Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (8:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (7:15:0) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x45f Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (14:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (13:6:3) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x87 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (22:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (21:0:1) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x511 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (4:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (3:19:0) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (12:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (11:7:4) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xb7 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:6:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:6:6) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x50f Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (4:19:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (3:19:0) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x2f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (14:5:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (13:5:4) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x2ef Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (14:5:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (13:5:4) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (13:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (12:8:2) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3ef Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:8:4) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x461 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (14:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (13:6:3) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x89 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (22:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (21:0:1) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (13:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (12:8:2) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4cf Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (12:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (11:7:4) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x5c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (10:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (9:13:0) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x437 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (9:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (8:14:0) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x457 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (13:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (12:8:2) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x439 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (9:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (8:14:0) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x5c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (8:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (7:15:0) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x189 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (10:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (9:10:3) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x421 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (15:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (14:8:0) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x461 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (13:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (12:8:2) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x431 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (16:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (15:6:1) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x571 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (10:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (9:13:0) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x359 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (14:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (13:6:3) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x5c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:12:0) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x41f Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:9:3) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xe9 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:11:1) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x421 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:9:3) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xe7 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:11:1) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x5b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:12:0) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x5af Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:12:0) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x489 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (16:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (15:5:2) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x357 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (14:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (13:6:3) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x5c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:12:0) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x547 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:11:1) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x2a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (13:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (12:7:3) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x42f Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (16:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (15:6:1) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x549 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:11:1) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x2a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (13:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (12:7:3) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4cf Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (14:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (13:7:2) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x481 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (8:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (7:10:5) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x47f Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (8:10:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (7:10:5) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x189 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:11:1) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x5c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (10:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (9:13:0) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x547 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (12:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (11:11:0) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x459 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:8:4) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x471 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (12:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (11:11:0) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:8:4) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x46f Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (12:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (11:11:0) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x457 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:8:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:8:4) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x187 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:11:1) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xe9 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (11:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (10:11:1) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (17:2:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (16:2:4) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x487 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (16:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (15:5:2) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x89 Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (18:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (17:2:3) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3cf Lifetime Hammers/(Normal:Prefetch:Writeback): 23 (17:2:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 22 (16:2:4) Lost Hammers/(Refresh:Access): 23 (1:22) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (10:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (9:12:0) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (10:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (9:11:1) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x357 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (14:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (13:7:1) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x571 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (8:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (7:14:0) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x549 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:10:0) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x497 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (11:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (10:11:0) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4ff Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (8:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (7:14:0) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x2e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (10:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (9:9:3) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x56f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (8:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (7:14:0) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x357 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (14:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (13:6:2) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4cf Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (10:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (9:12:0) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x2e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (10:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (9:9:3) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (10:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (9:11:1) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x319 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (11:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (10:9:2) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x499 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (11:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (10:11:0) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x481 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:5:5) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x319 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (14:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (13:8:0) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x47f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (11:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (10:9:2) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x471 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (15:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (14:7:0) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3ef Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:8:2) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x48f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:7:3) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x1d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:9:1) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x457 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (14:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (13:5:3) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x1d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:9:1) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3ff Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (14:3:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (13:3:5) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x317 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (14:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (13:8:0) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xa1 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (11:5:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (10:5:6) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x47f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:5:5) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x459 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (14:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (13:5:3) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (8:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (7:14:0) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:8:2) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x491 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:7:3) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x46f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (15:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (14:7:0) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x359 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (14:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (13:6:2) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x521 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (10:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (9:12:0) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x33f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (11:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (10:8:3) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (15:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (14:5:2) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x341 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (11:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (10:8:3) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x9f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (11:5:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (10:5:6) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x501 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (8:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (7:14:0) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x317 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (11:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (10:9:2) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x111 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (11:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (10:7:4) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x35f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (8:12:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (7:12:2) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x361 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (8:12:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (7:12:2) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x49f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:10:0) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x359 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (14:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (13:7:1) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x481 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (11:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (10:9:2) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:10:0) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x10f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (11:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (10:7:4) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x49f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (15:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (14:5:2) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x42f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (13:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (12:9:0) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x431 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (13:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (12:9:0) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x401 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (14:3:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (13:3:5) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4ef Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (8:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (7:14:0) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (13:5:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (12:5:4) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x359 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (13:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (12:8:1) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xaf Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (17:1:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (16:1:4) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xb1 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (17:1:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (16:1:4) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x491 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:8:2) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x48f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:8:2) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x357 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (13:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (12:8:1) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x359 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (10:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (9:9:3) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4ef Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (7:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (6:15:0) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x461 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (14:4:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (13:4:4) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x45f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (14:4:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (13:4:4) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x357 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (10:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (9:9:3) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x119 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (11:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (10:10:1) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (13:5:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (12:5:4) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x117 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (11:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (10:10:1) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (14:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (13:6:2) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (13:5:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (12:5:4) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (10:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (9:10:2) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3cf Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (10:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (9:10:2) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3cf Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (11:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (10:8:3) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (13:5:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (12:5:4) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (18:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (17:4:0) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (11:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (10:8:3) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (14:4:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (13:4:4) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (14:4:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (13:4:4) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x371 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (16:4:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (15:4:2) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xc1 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (10:6:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (9:6:6) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x36f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (16:4:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (15:4:2) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xbf Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (10:6:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (9:6:6) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x549 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (7:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (6:15:0) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xa1 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (15:3:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (14:3:4) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x9f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (15:3:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (14:3:4) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xa9 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (10:6:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (9:6:6) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xa7 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (10:6:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (9:6:6) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4af Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:8:2) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:8:2) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (14:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (13:8:0) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xa1 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (14:3:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (13:3:5) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x49f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (14:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (13:8:0) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (7:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (6:15:0) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x367 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:10:0) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x331 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (15:3:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (14:3:4) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x369 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:10:0) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x32f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (15:3:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (14:3:4) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x42f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (14:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (13:8:0) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x9f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (14:3:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (13:3:5) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x5c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (9:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (8:13:0) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x5c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (9:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (8:13:0) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x457 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (13:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (12:6:3) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x459 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (13:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (12:6:3) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:6:4) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:6:4) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x41f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (11:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (10:9:2) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x45f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:7:3) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x461 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:7:3) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x369 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (13:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (12:6:3) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x367 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (13:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (12:6:3) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (14:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (13:6:2) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x439 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (13:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (12:8:1) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x137 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (13:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (12:8:1) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:5:5) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x431 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (14:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (13:8:0) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x89 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (21:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (20:0:1) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x87 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (21:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (20:0:1) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x547 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (7:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (6:15:0) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:4:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:4:6) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x547 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:10:0) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4ef Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (8:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (7:14:0) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (8:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (7:14:0) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x437 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (13:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (12:8:1) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x2ef Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (15:2:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (14:2:5) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x2e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:7:3) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x421 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (11:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (10:9:2) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x2f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (15:2:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (14:2:5) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x2e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:7:3) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x339 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (15:1:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (14:1:6) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x337 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (15:1:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (14:1:6) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x369 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:9:1) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x367 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:9:1) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x357 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (13:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (12:6:3) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x51f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (10:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (9:12:0) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x359 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (13:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (12:6:3) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x487 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:8:2) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x357 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (10:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (9:9:3) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x489 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:8:2) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x359 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (10:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (9:9:3) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x139 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (13:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (12:8:1) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x571 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (9:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (8:13:0) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x2e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (13:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (12:7:2) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x56f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (9:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (8:13:0) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xb9 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (13:5:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (12:5:4) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x2f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:5:5) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x2f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:5:5) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xb7 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (13:5:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (12:5:4) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x2e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (13:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (12:7:2) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (18:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (17:4:0) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x439 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (10:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (9:12:0) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x439 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (8:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (7:14:0) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x437 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (10:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (9:12:0) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x437 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (8:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (7:14:0) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x489 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (13:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (12:8:1) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x361 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (15:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (14:5:2) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x487 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (13:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (12:8:1) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:4:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:4:6) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x35f Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (15:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (14:5:2) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3ef Lifetime Hammers/(Normal:Prefetch:Writeback): 22 (12:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 21 (11:5:5) Lost Hammers/(Refresh:Access): 22 (1:21) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xa9 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (14:3:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (13:3:4) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x451 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (14:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (13:6:1) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x33f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (12:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (11:8:1) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x42f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (17:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (16:4:0) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x359 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (17:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (16:4:0) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xa7 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (14:3:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (13:3:4) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x49f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (13:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (12:6:2) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x499 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (14:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (13:5:2) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (10:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (9:7:4) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x449 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (12:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (11:6:3) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x447 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (12:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (11:6:3) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x357 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (17:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (16:4:0) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x44f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (14:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (13:6:1) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x279 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (11:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (10:7:3) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x2f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (11:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (10:8:2) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x507 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (5:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (4:16:0) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x2ef Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (11:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (10:8:2) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (10:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (9:7:4) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x509 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (5:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (4:16:0) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x481 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (12:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (11:7:2) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x47f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (12:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (11:7:2) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (5:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (4:16:0) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x277 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (11:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (10:7:3) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x339 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (15:2:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (14:2:4) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x337 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (15:2:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (14:2:4) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x457 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (12:5:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (11:5:4) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x2e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (10:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (9:8:3) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4ef Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (5:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (4:16:0) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x471 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (14:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (13:6:1) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x431 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (17:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (16:4:0) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x46f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (14:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (13:6:1) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (13:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (12:7:1) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x2e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (10:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (9:8:3) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (13:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (12:7:1) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (13:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (12:6:2) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x341 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (12:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (11:8:1) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x459 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (12:5:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (11:5:4) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xa9 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (13:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (12:5:3) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x48f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (7:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (6:10:4) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xb9 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (7:7:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (6:7:7) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x481 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (13:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (12:6:2) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x47f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (13:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (12:6:2) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xb7 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (7:7:7) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (6:7:7) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x49f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (10:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (9:11:0) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x499 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (9:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (8:9:3) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4bf Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (15:4:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (14:4:2) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (10:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (9:11:0) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x507 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (4:17:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (3:17:0) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x497 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (9:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (8:9:3) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x117 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (13:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (12:6:2) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x33f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (13:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (12:6:2) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x509 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (4:17:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (3:17:0) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x5af Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (9:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (8:12:0) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x539 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (11:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (10:10:0) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x489 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (14:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (13:5:2) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xb7 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (11:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (10:5:5) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3ef Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (10:6:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (9:6:5) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (15:4:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (14:4:2) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xb9 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (11:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (10:5:5) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x491 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (10:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (9:10:1) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x491 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (9:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (8:9:3) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x119 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (13:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (12:6:2) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x5b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (9:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (8:12:0) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x2e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (13:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (12:7:1) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x447 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (9:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (8:10:2) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xa7 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (13:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (12:5:3) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x279 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (10:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (9:7:4) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x2e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (13:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (12:7:1) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x371 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (16:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (15:4:1) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x5af Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (14:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (13:7:0) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x521 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (8:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (7:12:1) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x5c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (9:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (8:12:0) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x51f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (8:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (7:12:1) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x50f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (8:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (7:13:0) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x491 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (7:10:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (6:10:4) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x571 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (8:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (7:13:0) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x59f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (17:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (16:4:0) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x56f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (8:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (7:13:0) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x497 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (14:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (13:5:2) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (9:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (8:12:0) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4cf Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (9:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (8:12:0) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x511 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (8:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (7:13:0) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x36f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (16:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (15:4:1) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x277 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (10:7:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (9:7:4) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (10:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (9:10:1) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x49f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (10:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (9:10:1) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x5c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (9:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (8:12:0) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x5b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (14:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (13:7:0) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x389 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (17:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (16:4:0) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x521 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (3:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (2:18:0) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x537 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (11:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (10:10:0) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x51f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (3:18:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (2:18:0) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x387 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (17:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (16:4:0) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x48f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (12:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (11:9:0) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x5a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (17:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (16:4:0) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xb7 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (9:7:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (8:7:5) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x491 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (12:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (11:9:0) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xb9 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (9:7:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (8:7:5) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x521 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (9:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (8:11:1) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x44f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (13:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (12:6:2) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x401 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (15:2:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (14:2:4) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x341 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (13:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (12:6:2) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x48f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (10:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (9:10:1) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x51f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (9:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (8:12:0) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x449 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (9:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (8:10:2) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x459 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (12:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (11:7:2) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x457 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (12:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (11:7:2) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x50f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (5:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (4:16:0) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xb7 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (9:6:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (8:6:6) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x507 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (8:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (7:12:1) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x329 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (17:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (16:2:2) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x327 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (17:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (16:2:2) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x511 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (5:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (4:16:0) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x41f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (13:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (12:7:1) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x337 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (11:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (10:6:4) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x51f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (9:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (8:11:1) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x539 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (8:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (7:13:0) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x421 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (13:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (12:7:1) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x507 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (4:17:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (3:17:0) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x509 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (4:17:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (3:17:0) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x359 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (15:4:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (14:4:2) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x359 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (12:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (11:7:2) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x357 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (15:4:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (14:4:2) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x357 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (12:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (11:7:2) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xb9 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (9:6:6) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (8:6:6) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x571 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (8:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (7:13:0) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x56f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (8:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (7:13:0) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x327 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (14:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (13:5:2) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x329 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (14:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (13:5:2) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x45f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (12:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (11:6:3) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xa1 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (15:1:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (14:1:5) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x471 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (13:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (12:8:0) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x9f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (15:1:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (14:1:5) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x327 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (18:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (17:2:1) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x487 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (14:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (13:5:2) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x329 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (18:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (17:2:1) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (10:6:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (9:6:5) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x2ef Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (16:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (15:2:3) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x2f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (16:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (15:2:3) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x12f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (8:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (7:10:3) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x461 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (12:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (11:6:3) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x339 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (11:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (10:6:4) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x48f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (9:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (8:9:3) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x131 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (8:10:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (7:10:3) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x2e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (10:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (9:10:1) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x521 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (9:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (8:12:0) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x509 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (8:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (7:12:1) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x451 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (13:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (12:6:2) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x537 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (8:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (7:13:0) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x46f Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (13:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (12:8:0) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x2e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (10:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (9:10:1) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3ff Lifetime Hammers/(Normal:Prefetch:Writeback): 21 (15:2:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 20 (14:2:4) Lost Hammers/(Refresh:Access): 21 (1:20) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x44f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (15:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (14:5:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (4:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (3:16:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xb1 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (14:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (13:3:3) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xb7 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:6:3) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x38f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (15:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (14:5:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (9:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (8:10:1) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xb9 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:6:3) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:8:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x509 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (6:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (5:14:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x499 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:6:2) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x507 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (6:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (5:14:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4cf Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:7:2) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x5b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (9:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (8:11:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4af Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:8:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x391 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (15:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (14:5:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x499 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:8:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:7:1) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x499 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:7:2) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x277 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:7:2) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x279 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:7:2) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x431 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (15:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (14:5:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x42f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (15:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (14:5:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3ff Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (13:3:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (12:3:4) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x481 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:8:1) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x401 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (13:3:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (12:3:4) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x447 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:6:2) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x459 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (9:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (8:9:2) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x47f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:8:1) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x497 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:8:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x521 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (9:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (8:11:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x497 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:7:2) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x51f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (9:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (8:11:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x2e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (13:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (12:5:2) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x499 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:7:2) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x449 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:6:2) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x2e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (13:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (12:5:2) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x5b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (9:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (8:11:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x5c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (9:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (8:11:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x497 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:7:2) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x539 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (13:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (12:7:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x5af Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (9:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (8:11:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x537 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (13:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (12:7:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x511 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (5:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (4:15:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x491 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:8:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xaf Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (14:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (13:3:3) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xa9 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:5:3) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xa7 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:5:3) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3cf Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:8:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:8:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x451 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (15:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (14:5:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x50f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (6:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (5:14:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x511 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (6:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (5:14:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x329 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (14:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (13:3:3) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x89 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (20:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (19:0:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x327 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (14:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (13:3:3) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x50f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (5:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (4:15:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x87 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (20:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (19:0:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4ef Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (4:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (3:16:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x5c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (9:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (8:11:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x48f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:8:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x539 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:9:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4cf Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (9:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (8:10:1) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xe9 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:8:1) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xe7 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:8:1) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x507 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (5:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (4:15:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x457 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (9:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (8:9:2) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4af Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:7:1) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:6:2) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x49f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:6:2) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x509 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (5:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (4:15:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x2a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:9:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x507 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (6:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (5:14:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x389 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (16:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (15:3:1) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:8:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x387 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (16:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (15:3:1) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x5af Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:8:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3ef Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:8:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (13:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (12:7:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x381 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (14:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (13:3:3) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x37f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (15:0:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (14:0:5) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x37f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (14:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (13:3:3) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:7:1) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x2a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:9:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x371 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (13:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (12:6:1) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x5b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:8:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x381 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (15:0:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (14:0:5) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x49f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (13:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (12:7:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x277 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (9:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (8:9:2) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x279 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (9:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (8:9:2) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x521 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (7:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (6:12:1) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x371 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (13:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (12:6:1) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (10:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (9:9:1) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x36f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (13:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (12:6:1) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (10:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (9:9:1) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x51f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (7:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (6:12:1) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x50f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (4:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (3:16:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x511 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (4:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (3:16:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x50f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (4:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (3:16:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3ef Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (9:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (8:9:2) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (9:9:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (8:9:2) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x69 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (13:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (12:6:1) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (17:0:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (16:0:3) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (17:0:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (16:0:3) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x67 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (13:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (12:6:1) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3ff Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (13:2:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (12:2:5) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x401 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (13:2:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (12:2:5) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x537 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:9:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x369 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:7:1) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x371 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (14:4:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (13:4:2) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x471 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (13:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (12:6:1) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x189 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (7:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (6:12:1) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x537 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:9:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x36f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (14:4:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (13:4:2) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x539 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:9:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x187 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (7:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (6:12:1) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:9:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:9:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x367 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:7:1) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x509 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (6:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (5:14:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:7:1) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x36f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (13:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (12:6:1) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x421 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (8:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (7:11:1) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x457 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (13:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (12:5:2) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x187 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (7:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (6:13:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x547 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (9:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (8:11:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x189 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (7:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (6:13:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x539 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (9:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (8:11:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x537 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (9:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (8:11:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x2a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:7:2) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xb7 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:4:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:4:4) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xb9 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:4:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:4:4) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x5af Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (9:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (8:11:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x2a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:7:2) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x497 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (12:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (11:6:2) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3cf Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:8:1) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x51f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (10:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (9:10:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:8:1) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x549 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (6:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (5:14:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x497 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (14:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (13:5:1) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x547 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (6:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (5:14:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x49f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:8:1) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x499 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (14:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (13:5:1) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:8:1) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:7:2) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x521 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (10:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (9:10:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x38f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (16:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (15:2:2) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x511 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (4:16:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (3:16:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x471 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:9:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x9f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:5:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:5:4) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x391 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (16:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (15:2:2) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x46f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:9:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x46f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (13:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (12:6:1) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x41f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (8:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (7:11:1) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x459 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (13:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (12:5:2) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x59f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (16:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (15:4:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x511 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (4:15:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (3:15:1) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x549 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (9:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (8:11:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x50f Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (4:15:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (3:15:1) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x5a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (16:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (15:4:0) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xa1 Lifetime Hammers/(Normal:Prefetch:Writeback): 20 (11:5:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 19 (10:5:4) Lost Hammers/(Refresh:Access): 20 (1:19) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x439 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (9:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (8:10:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xa9 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (11:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (10:5:3) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xa7 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (11:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (10:5:3) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (6:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (5:13:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x341 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (11:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (10:7:1) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x539 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (13:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (12:6:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x48f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (6:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (5:11:2) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x451 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (12:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (11:6:1) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x36f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (10:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (9:6:3) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x33f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (11:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (10:7:1) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4ef Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (6:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (5:13:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x437 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (9:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (8:10:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x491 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (6:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (5:11:2) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xa1 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (11:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (10:5:3) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x50f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (5:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (4:14:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xa9 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (13:2:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (12:2:4) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x497 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (10:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (9:8:1) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (8:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (7:8:3) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3ef Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (11:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (10:5:3) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x499 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (10:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (9:8:1) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x511 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (5:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (4:14:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xa7 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (13:2:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (12:2:4) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x509 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (6:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (5:13:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xe9 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (9:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (8:10:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xe7 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (9:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (8:10:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x451 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (12:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (11:5:2) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x9f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (11:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (10:5:3) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x537 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (13:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (12:6:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (11:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (10:5:3) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x277 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (10:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (9:7:2) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x44f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (12:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (11:5:2) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x279 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (10:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (9:7:2) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x327 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (15:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (14:3:1) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x329 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (15:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (14:3:1) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (8:8:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (7:8:3) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x507 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (6:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (5:13:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x59f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (17:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (16:2:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x9f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (12:2:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (11:2:5) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x5a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (17:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (16:2:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x35f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (13:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (12:3:3) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xa1 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (12:2:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (11:2:5) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x361 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (13:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (12:3:3) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x5d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (6:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (5:13:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4ef Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (8:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (7:11:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (8:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (7:11:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x59f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (16:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (15:3:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x5a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (16:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (15:3:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x341 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (12:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (11:5:2) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x33f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (12:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (11:5:2) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x361 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (13:4:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (12:4:2) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x35f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (13:4:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (12:4:2) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xc1 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (11:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (10:7:1) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x5af Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (9:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (8:10:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xbf Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (11:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (10:7:1) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x5b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (9:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (8:10:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (9:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (8:10:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x5d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (6:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (5:13:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x511 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (4:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (3:15:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x329 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (14:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (13:5:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x551 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (9:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (8:10:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x54f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (9:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (8:10:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (10:5:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (9:5:4) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x33f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (10:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (9:9:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x341 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (10:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (9:9:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x327 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (14:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (13:5:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x389 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (12:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (11:6:1) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x50f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (4:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (3:15:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (17:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (16:1:1) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3ff Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (14:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (13:2:3) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x341 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (14:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (13:3:2) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x5af Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (9:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (8:10:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x33f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (14:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (13:3:2) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x377 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (15:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (14:2:2) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x401 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (14:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (13:2:3) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x379 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (15:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (14:2:2) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x5c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (6:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (5:13:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x5c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (6:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (5:13:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x401 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (14:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (13:2:3) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x319 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (11:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (10:7:1) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4bf Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (17:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (16:1:1) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x44f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (12:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (11:6:1) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x317 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (11:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (10:7:1) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x461 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (12:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (11:6:1) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (13:4:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (12:4:2) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x2a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (9:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (8:9:1) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (13:4:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (12:4:2) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x2a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (9:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (8:9:1) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x45f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (12:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (11:6:1) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3ff Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (14:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (13:2:3) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x391 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (14:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (13:4:1) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x38f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (14:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (13:4:1) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (9:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (8:10:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x36f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (14:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (13:5:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xa7 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (10:5:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (9:5:4) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x387 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (13:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (12:6:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xa9 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (10:5:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (9:5:4) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x49f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (11:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (10:7:1) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x537 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (12:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (11:7:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (10:5:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (9:5:4) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x51f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (9:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (8:10:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3cf Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (12:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (11:6:1) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (12:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (11:6:1) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x2e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (11:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (10:7:1) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x521 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (9:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (8:10:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x2e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (11:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (10:7:1) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (14:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (13:5:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x387 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (12:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (11:6:1) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (14:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (13:5:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x371 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (14:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (13:5:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x41f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (9:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (8:7:3) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x401 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (13:2:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (12:2:4) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x371 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (10:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (9:6:3) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x48f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (6:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (5:11:2) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x491 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (6:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (5:11:2) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3ff Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (13:2:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (12:2:4) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x349 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (14:1:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (13:1:4) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x347 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (14:1:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (13:1:4) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x389 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (17:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (16:2:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x387 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (17:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (16:2:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x387 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (15:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (14:4:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x277 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (10:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (9:6:3) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x5af Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (11:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (10:8:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x421 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (9:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (8:7:3) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x5b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (11:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (10:8:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x509 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (4:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (3:15:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x451 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (13:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (12:5:1) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x279 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (10:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (9:6:3) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x507 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (4:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (3:15:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x389 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (13:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (12:6:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x54f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (12:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (11:7:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x5c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (5:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (4:14:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x389 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (15:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (14:4:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x5c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (5:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (4:14:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x539 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (12:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (11:7:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x5b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (9:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (8:10:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x38f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (17:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (16:2:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x551 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (12:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (11:7:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x44f Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (13:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (12:5:1) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x391 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (17:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (16:2:0) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 19 (11:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 18 (10:7:1) Lost Hammers/(Refresh:Access): 19 (1:18) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x5b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (9:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (8:9:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x36f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:6:1) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x379 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (13:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (12:4:1) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x551 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (9:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (8:8:1) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x371 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:6:1) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x431 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:7:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x551 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (10:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (9:8:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x377 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (13:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (12:4:1) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x54f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (9:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (8:8:1) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x337 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:5:2) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x42f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:7:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x339 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:5:2) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xa7 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:5:2) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x55f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:7:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4cf Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (8:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (7:9:1) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4cf Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (10:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (9:7:1) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (5:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (4:13:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4ef Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (5:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (4:13:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (8:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (7:9:1) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (10:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (9:7:1) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x561 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:7:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x341 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (12:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (11:5:1) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (14:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (13:4:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x511 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (5:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (4:13:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x44f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (10:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (9:7:1) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x50f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (5:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (4:13:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x33f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (12:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (11:5:1) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x371 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:6:1) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x451 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (10:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (9:7:1) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xa9 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:5:2) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (14:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (13:4:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x5af Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (9:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (8:9:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (7:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (6:11:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4ef Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (7:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (6:11:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x367 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:6:1) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x5af Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (7:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (6:11:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x369 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:6:1) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x5b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (7:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (6:11:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x507 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (4:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (3:14:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x54f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (10:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (9:8:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x36f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:6:1) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x509 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (4:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (3:14:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x559 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (9:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (8:9:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xa9 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (14:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (13:2:2) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (13:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (12:3:2) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (13:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (12:3:2) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x5a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (14:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (13:4:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x59f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (14:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (13:4:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x5a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (14:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (13:4:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x587 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (14:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (13:4:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x557 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (9:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (8:9:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xa7 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (14:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (13:2:2) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x5b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (9:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (8:9:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x5af Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (9:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (8:9:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x461 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:5:2) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x45f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:5:2) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:6:1) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:6:1) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x339 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:3:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:3:4) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x337 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:3:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:3:4) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x51f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (6:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (5:12:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x587 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (15:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (14:3:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x589 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (15:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (14:3:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x361 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (5:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (4:12:1) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x35f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (5:12:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (4:12:1) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x539 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (9:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (8:9:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x537 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (9:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (8:9:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x521 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (6:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (5:12:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (14:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (13:2:2) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x461 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:4:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:4:3) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (14:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (13:2:2) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x361 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (12:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (11:3:3) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x35f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (12:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (11:3:3) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x551 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (9:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (8:9:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x48f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (12:4:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (11:4:2) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x54f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (9:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (8:9:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x59f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (14:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (13:4:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x491 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (12:4:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (11:4:2) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xa9 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (12:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (11:5:1) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x48f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (8:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (7:8:2) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x359 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:5:2) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x357 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:5:2) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x341 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:7:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x33f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:7:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x69 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (14:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (13:2:2) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x67 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (14:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (13:2:2) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xa7 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (12:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (11:5:1) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x491 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (8:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (7:8:2) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4bf Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (15:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (14:2:1) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (15:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (14:2:1) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3cf Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:5:2) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:5:2) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x54f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (9:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (8:9:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x551 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (9:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (8:9:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x45f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:2:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:2:5) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x461 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:2:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:2:5) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x5af Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (12:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (11:6:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x589 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (14:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (13:4:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4ef Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (5:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (4:13:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (16:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (15:1:1) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4bf Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (16:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (15:1:1) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (5:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (4:13:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x45f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:4:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:4:3) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x429 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (8:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (7:8:2) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x427 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (8:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (7:8:2) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3ff Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (13:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (12:2:3) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (13:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (12:3:2) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3ef Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (13:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (12:3:2) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x5b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (12:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (11:6:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x541 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (7:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (6:11:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x53f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (7:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (6:11:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x369 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:7:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x367 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (11:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (10:7:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x36f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (13:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (12:3:2) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x50f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (3:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (2:15:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x359 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (17:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (16:1:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xa9 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (12:4:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (11:4:2) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xa7 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (12:4:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (11:4:2) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xa9 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (9:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (8:7:2) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x35f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (8:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (7:10:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x561 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (7:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (6:11:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x509 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (6:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (5:12:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x47f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (10:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (9:7:1) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xb9 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (9:5:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (8:5:4) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x371 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (13:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (12:3:2) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xb7 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (9:5:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (8:5:4) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x461 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (13:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (12:2:3) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (12:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (11:5:1) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3ef Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (12:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (11:5:1) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x481 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (10:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (9:7:1) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x511 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (3:15:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (2:15:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x507 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (6:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (5:12:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x361 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (8:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (7:10:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x55f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (7:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (6:11:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x41f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (12:4:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (11:4:2) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (8:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (7:9:1) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x491 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (6:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (5:9:3) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x38f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (13:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (12:3:2) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x521 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (4:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (3:13:1) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x48f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (6:9:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (5:9:3) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x391 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (13:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (12:3:2) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x421 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (12:4:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (11:4:2) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x341 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (9:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (8:9:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x51f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (4:13:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (3:13:1) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3cf Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (8:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (7:9:1) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x401 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (13:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (12:2:3) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x45f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (13:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (12:2:3) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x357 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (17:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (16:1:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x33f Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (9:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (8:9:0) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xa7 Lifetime Hammers/(Normal:Prefetch:Writeback): 18 (9:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 17 (8:7:2) Lost Hammers/(Refresh:Access): 18 (1:17) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (10:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (9:7:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xa7 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (12:1:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (11:1:4) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x48f Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (11:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (10:5:1) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x371 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (12:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (11:5:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (11:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (10:5:1) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3ef Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (10:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (9:7:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x511 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (3:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (2:14:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x36f Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (12:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (11:5:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xb9 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (8:5:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (7:5:4) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x327 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (13:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (12:2:2) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x387 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (15:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (14:2:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x329 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (13:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (12:2:2) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x389 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (15:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (14:2:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x5a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (13:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (12:4:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4ef Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (6:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (5:11:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3ff Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (11:2:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (10:2:4) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x401 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (11:2:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (10:2:4) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x59f Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (13:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (12:4:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (6:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (5:11:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (6:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (5:11:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x50f Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (3:14:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (2:14:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (9:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (8:5:3) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x5b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (11:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (10:6:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x427 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (8:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (7:7:2) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x401 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (12:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (11:2:3) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x33f Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (10:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (9:7:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x341 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (10:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (9:7:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x319 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (10:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (9:6:1) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x317 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (10:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (9:6:1) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x69 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (12:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (11:3:2) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (9:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (8:7:1) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x461 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (9:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (8:6:2) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x5af Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (11:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (10:6:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x377 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (14:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (13:2:1) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x379 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (14:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (13:2:1) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x429 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (8:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (7:7:2) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x5a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (13:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (12:4:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x59f Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (13:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (12:4:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (4:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (3:13:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (4:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (3:13:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x477 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (14:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (13:2:1) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x491 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (11:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (10:5:1) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (11:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (10:5:1) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x391 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (12:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (11:4:1) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x38f Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (12:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (11:4:1) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3ff Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (12:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (11:2:3) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (9:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (8:7:1) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x67 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (12:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (11:3:2) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (8:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (7:9:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (11:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (10:5:1) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x369 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (12:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (11:5:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (8:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (7:9:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x367 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (12:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (11:5:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xa9 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (12:1:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (11:1:4) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x479 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (14:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (13:2:1) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x457 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (11:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (10:6:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x459 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (11:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (10:6:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x45f Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (9:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (8:6:2) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x50f Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (5:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (4:12:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4df Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (15:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (14:2:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x541 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (9:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (8:8:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (12:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (11:5:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (15:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (14:2:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xb7 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (8:5:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (7:5:4) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x561 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (10:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (9:7:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (6:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (5:11:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x55f Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (10:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (9:7:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x511 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (5:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (4:12:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x451 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (10:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (9:7:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x537 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (7:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (6:10:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (10:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (9:5:2) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3cf Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (10:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (9:5:2) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x5b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (9:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (8:8:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x539 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (7:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (6:10:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (7:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (6:10:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (7:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (6:10:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x5af Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (9:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (8:8:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (12:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (11:5:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x387 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (13:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (12:4:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x389 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (13:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (12:3:1) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x387 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (13:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (12:3:1) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (9:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (8:5:3) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (11:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (10:6:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (11:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (10:6:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x53f Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (9:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (8:8:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x41f Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (7:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (6:9:1) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x421 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (7:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (6:9:1) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x339 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (12:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (11:3:2) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x35f Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (9:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (8:8:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x427 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (4:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (3:11:2) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x389 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (13:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (12:4:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x541 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (11:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (10:6:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (12:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (11:5:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x429 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (4:11:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (3:11:2) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x337 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (12:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (11:3:2) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x53f Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (11:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (10:6:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x44f Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (10:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (9:7:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x5d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (5:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (4:12:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x5a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (13:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (12:4:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x5af Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (9:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (8:8:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (8:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (7:9:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x361 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (10:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (9:5:2) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x55f Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (7:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (6:10:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x561 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (7:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (6:10:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x35f Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (10:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (9:5:2) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x5a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (15:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (14:2:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x59f Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (15:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (14:2:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (12:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (11:5:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (8:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (7:9:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x59f Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (13:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (12:4:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x53f Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (10:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (9:7:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (6:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (5:11:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (6:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (5:11:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x89 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (14:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (13:1:2) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x87 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (14:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (13:1:2) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x5d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (5:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (4:12:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x361 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (9:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (8:8:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x541 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (10:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (9:7:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (12:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (11:5:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4bf Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (12:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (11:5:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3cf Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (11:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (10:5:1) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3cf Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (11:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (10:5:1) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (11:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (10:5:1) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x5c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (6:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (5:11:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x497 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (10:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (9:7:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x427 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (5:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (4:10:2) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x499 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (10:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (9:7:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x429 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (5:10:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (4:10:2) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x5c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (6:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (5:11:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x341 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (11:4:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (10:4:2) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x549 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (7:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (6:10:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x547 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (7:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (6:10:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x33f Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (11:4:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (10:4:2) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x5b1 Lifetime Hammers/(Normal:Prefetch:Writeback): 17 (9:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 16 (8:8:0) Lost Hammers/(Refresh:Access): 17 (1:16) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x569 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (16:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (15:0:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x361 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (6:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (5:9:1) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x567 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (16:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (15:0:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4ef Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (4:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (3:12:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x371 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (9:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (8:7:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (13:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (12:1:2) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x567 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (16:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (15:0:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x36f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (9:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (8:7:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x569 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (16:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (15:0:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:5:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:5:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (13:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (12:1:2) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x567 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (16:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (15:0:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x569 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (16:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (15:0:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x477 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:3:1) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x479 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:3:1) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x451 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (10:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (9:5:1) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (4:12:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (3:12:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (3:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (2:13:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x38f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (14:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (13:2:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (3:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (2:13:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x391 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (14:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (13:2:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x5a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (14:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (13:2:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x59f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (14:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (13:2:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (6:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (5:10:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x59f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:4:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x5a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:4:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x44f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (10:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (9:5:1) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x387 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (10:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (9:6:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x401 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:2:3) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x451 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:2:2) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3ff Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:2:3) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x429 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (7:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (6:7:2) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x44f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:2:2) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x427 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (7:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (6:7:2) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x401 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:2:3) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3ff Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:2:3) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x389 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (10:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (9:6:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x361 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:3:2) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x55f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (7:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (6:9:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x561 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (7:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (6:9:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x467 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (10:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (9:3:3) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4ef Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (4:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (3:11:1) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x429 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (9:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (8:6:1) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (4:11:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (3:11:1) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x337 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:0:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:0:5) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x427 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (5:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (4:10:1) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x427 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (9:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (8:6:1) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xb7 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (6:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (5:5:5) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (10:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (9:6:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:3:1) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4bf Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:3:1) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x2a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (10:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (9:5:1) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x2a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (10:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (9:5:1) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x431 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (9:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (8:7:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x369 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (8:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (7:7:1) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x42f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (9:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (8:7:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xb9 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (6:5:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (5:5:5) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x469 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (10:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (9:3:3) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x379 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:4:1) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x507 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (5:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (4:11:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x509 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (5:11:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (4:11:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (10:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (9:5:1) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3ef Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (10:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (9:5:1) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x35f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:3:1) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x361 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:3:1) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x35f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:3:2) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x387 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:4:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x337 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (9:3:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (8:3:4) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x357 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (13:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (12:2:1) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x369 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:5:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x367 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:5:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x477 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:2:2) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:0:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:0:4) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x479 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:2:2) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:0:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:0:4) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x389 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:4:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x339 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (9:3:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (8:3:4) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (6:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (5:10:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (6:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (5:10:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x359 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (13:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (12:2:1) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4bf Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (15:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (14:0:1) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (15:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (14:0:1) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (7:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (6:9:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (7:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (6:9:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x567 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (16:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (15:0:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x569 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (16:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (15:0:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x429 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (6:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (5:8:2) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x369 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (9:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (8:7:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x367 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (9:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (8:7:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x381 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (14:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (13:1:1) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x339 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:0:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:0:5) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x37f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (14:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (13:1:1) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x429 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (5:10:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (4:10:1) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x5a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (14:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (13:2:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x427 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (6:8:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (5:8:2) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x59f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (14:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (13:2:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x377 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:4:1) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x44f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:2:2) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x451 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:2:2) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x55f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (9:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (8:7:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x561 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (9:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (8:7:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x59f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:5:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x5a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:5:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x551 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (7:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (6:9:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x54f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (7:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (6:9:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x377 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:1:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:1:3) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x387 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:4:1) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:3:2) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x569 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (16:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (15:0:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:3:2) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x567 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (16:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (15:0:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x561 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (8:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (7:8:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x55f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (8:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (7:8:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x379 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:1:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:1:3) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x389 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:4:1) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x50f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (3:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (2:13:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (14:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (13:1:1) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x5a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (15:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (14:1:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x5d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (6:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (5:10:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x5d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (6:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (5:10:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x511 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (3:13:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (2:13:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x59f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:4:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x5a1 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:4:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x587 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:4:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x35f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (6:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (5:9:1) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x567 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (16:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (15:0:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:0:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:0:5) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x569 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (16:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (15:0:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3bf Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:0:5) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:0:5) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (6:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (5:10:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (6:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (5:10:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (6:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (5:10:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4bf Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (14:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (13:1:1) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x589 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:4:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3ff Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:2:3) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x401 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:2:3) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x391 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:5:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x38f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:5:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x54f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (8:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (7:8:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x551 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (8:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (7:8:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x59f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (15:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (14:1:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x45f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (7:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (6:6:3) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x461 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (7:6:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (6:6:3) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x589 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:4:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x587 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (12:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (11:4:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x497 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (9:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (8:7:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x499 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (9:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (8:7:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x561 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:5:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x431 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (9:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (8:7:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x5d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (7:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (6:9:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4c7 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (10:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (9:6:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x55f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (11:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (10:5:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x5d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (7:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (6:9:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (10:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (9:6:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4c9 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (10:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (9:6:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (10:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (9:5:1) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x42f Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (9:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (8:7:0) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3ef Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (10:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (9:5:1) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x367 Lifetime Hammers/(Normal:Prefetch:Writeback): 16 (8:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 15 (7:7:1) Lost Hammers/(Refresh:Access): 16 (1:15) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x497 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (6:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (5:9:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x499 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (6:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (5:9:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4bf Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (14:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (13:1:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xb9 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (7:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (6:5:3) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x579 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (7:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (6:8:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x347 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (10:1:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (9:1:4) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x351 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (10:1:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (9:1:4) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x577 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (8:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (7:7:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (14:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (13:1:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x349 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (10:1:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (9:1:4) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x391 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (10:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (9:5:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x38f Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (10:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (9:5:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x541 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (5:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (4:10:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x35f Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (5:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (4:9:1) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x55f Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (11:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (10:4:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x53f Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (5:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (4:10:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x361 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (5:9:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (4:9:1) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x561 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (11:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (10:4:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x569 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (15:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (14:0:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x567 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (15:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (14:0:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xb7 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (7:5:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (6:5:3) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x379 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (12:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (11:2:1) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x54f Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (9:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (8:6:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x551 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (9:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (8:6:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x44f Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (12:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (11:2:1) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x451 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (12:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (11:2:1) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x429 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (5:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (4:7:3) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x479 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (12:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (11:2:1) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x569 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (15:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (14:0:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x477 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (12:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (11:2:1) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x427 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (5:7:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (4:7:3) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x589 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (12:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (11:3:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x587 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (12:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (11:3:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x499 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (13:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (12:1:1) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x579 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (8:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (7:7:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x561 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (7:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (6:8:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x389 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (12:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (11:2:1) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x387 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (12:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (11:2:1) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x377 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (12:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (11:2:1) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x33f Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (10:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (9:5:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x341 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (10:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (9:5:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x371 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (7:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (6:7:1) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x55f Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (7:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (6:8:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x36f Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (7:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (6:7:1) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x567 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (15:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (14:0:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x497 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (13:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (12:1:1) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x34f Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (10:1:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (9:1:4) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x479 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (10:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (9:4:1) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x479 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (13:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (12:1:1) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x5d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (8:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (7:7:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x44f Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (11:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (10:4:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x469 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (10:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (9:3:2) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x467 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (10:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (9:3:2) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3d1 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (10:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (9:4:1) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x451 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (9:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (8:6:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x44f Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (9:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (8:6:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (12:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (11:2:1) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (12:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (11:2:1) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3cf Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (10:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (9:4:1) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x5d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (8:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (7:7:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x477 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (13:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (12:1:1) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x477 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (10:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (9:4:1) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x44f Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (6:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (5:9:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x5e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (7:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (6:8:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x5df Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (7:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (6:8:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x577 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (7:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (6:8:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (11:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (10:4:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x579 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (8:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (7:7:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x451 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (6:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (5:9:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (10:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (9:5:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3ef Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (10:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (9:5:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x34f Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (11:1:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (10:1:3) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x391 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (13:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (12:1:1) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x567 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (15:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (14:0:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x569 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (15:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (14:0:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x401 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (10:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (9:2:3) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3ff Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (10:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (9:2:3) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (13:0:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (12:0:2) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (13:0:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (12:0:2) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (9:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (8:6:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (9:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (8:6:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x577 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (9:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (8:6:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x579 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (9:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (8:6:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x45f Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (10:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (9:5:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x577 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (8:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (7:7:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x38f Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (13:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (12:1:1) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x5d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (7:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (6:8:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x461 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (10:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (9:5:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x429 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (5:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (4:6:4) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x5d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (7:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (6:8:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x5df Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (6:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (5:9:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x427 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (5:6:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (4:6:4) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x5e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (6:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (5:9:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x461 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (7:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (6:6:2) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x45f Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (7:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (6:6:2) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x451 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (11:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (10:4:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x429 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (5:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (4:10:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (11:1:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (10:1:3) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x569 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (15:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (14:0:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x567 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (15:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (14:0:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x561 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (7:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (6:8:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x55f Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (7:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (6:8:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x427 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (5:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (4:10:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x341 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (6:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (5:8:1) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x33f Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (6:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (5:8:1) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x379 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (13:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (12:2:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x377 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (13:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (12:2:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x361 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (8:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (7:7:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x351 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (11:1:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (10:1:3) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x35f Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (8:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (7:7:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x387 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (12:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (11:3:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x351 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (12:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (11:1:2) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x34f Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (12:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (11:1:2) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x389 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (12:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (11:3:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x379 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (10:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (9:4:1) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x377 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (10:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (9:4:1) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x537 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (8:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (7:7:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x539 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (8:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (7:7:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x53f Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (8:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (7:7:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x541 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (8:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (7:7:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x391 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (11:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (10:4:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4bf Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (11:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (10:4:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x367 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (6:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (5:9:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x369 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (6:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (5:9:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x589 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (12:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (11:3:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x587 Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (12:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (11:3:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4bf Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (11:1:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (10:1:3) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x38f Lifetime Hammers/(Normal:Prefetch:Writeback): 15 (11:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 14 (10:4:0) Lost Hammers/(Refresh:Access): 15 (1:14) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x551 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (6:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (5:7:1) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x567 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (14:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (13:0:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x561 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (8:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (7:6:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x541 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (6:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (5:8:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x569 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (14:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (13:0:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x54f Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (6:7:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (5:7:1) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x567 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (14:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (13:0:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (10:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (9:4:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (10:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (9:4:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x517 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (7:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (6:7:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x5d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (4:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (3:10:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x579 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (8:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (7:6:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x519 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (7:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (6:7:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x561 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (7:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (6:7:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x5d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (4:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (3:10:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x381 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (10:1:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (9:1:3) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x577 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (8:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (7:6:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x391 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (9:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (8:5:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x55f Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (8:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (7:6:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x37f Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (10:1:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (9:1:3) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x5d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (5:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (4:9:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x53f Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (6:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (5:8:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x519 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (5:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (4:9:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x5d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (5:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (4:9:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x429 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (4:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (3:10:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x427 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (4:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (3:10:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x55f Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (7:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (6:7:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x517 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (5:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (4:9:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x587 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (11:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (10:3:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x589 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (11:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (10:3:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x339 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (9:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (8:3:2) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x337 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (9:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (8:3:2) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x38f Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (9:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (8:5:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x569 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (14:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (13:0:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x357 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (11:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (10:2:1) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x379 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (10:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (9:2:2) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x377 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (10:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (9:2:2) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (5:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (4:9:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x5d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (4:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (3:10:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x53f Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (8:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (7:6:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x349 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (11:0:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (10:0:3) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4df Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (11:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (10:1:2) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x541 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (8:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (7:6:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (5:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (4:9:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x359 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (11:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (10:2:1) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x347 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (11:0:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (10:0:3) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x371 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (9:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (8:4:1) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (11:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (10:1:2) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x36f Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (9:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (8:4:1) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x479 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (9:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (8:4:1) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x477 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (9:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (8:4:1) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x561 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (7:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (6:7:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x577 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (9:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (8:5:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x579 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (9:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (8:5:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x5d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (4:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (3:10:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (11:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (10:3:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (11:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (10:3:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x367 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (8:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (7:6:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x369 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (8:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (7:6:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x361 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (10:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (9:3:1) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x36f Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (9:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (8:3:2) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x371 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (9:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (8:3:2) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x35f Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (10:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (9:3:1) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x5d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (7:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (6:7:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4bf Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (11:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (10:3:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (11:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (10:3:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x5d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (7:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (6:7:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x429 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (6:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (5:6:2) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x541 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (5:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (4:9:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x5e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (8:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (7:6:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x53f Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (5:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (4:9:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x5df Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (8:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (7:6:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x589 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (10:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (9:4:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x587 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (10:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (9:4:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x519 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (5:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (4:8:1) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x517 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (5:8:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (4:8:1) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x44f Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (7:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (6:6:1) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x577 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (9:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (8:5:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x579 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (9:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (8:5:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x451 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (7:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (6:6:1) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x579 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (9:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (8:5:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x427 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (6:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (5:6:2) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x577 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (9:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (8:5:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xb9 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (7:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (6:5:2) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x517 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (5:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (4:9:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x517 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (8:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (7:6:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x519 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (8:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (7:6:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x519 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (5:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (4:9:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x569 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (14:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (13:0:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x567 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (14:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (13:0:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x557 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (10:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (9:4:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x559 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (10:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (9:4:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x5e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (9:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (8:5:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x559 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (10:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (9:4:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x569 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (14:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (13:0:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x567 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (14:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (13:0:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x5df Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (9:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (8:5:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x557 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (10:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (9:4:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x55f Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (7:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (6:7:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (4:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (3:10:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (9:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (8:5:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x559 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (11:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (10:3:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x367 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (8:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (7:6:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x391 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (10:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (9:3:1) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x369 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (8:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (7:6:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x38f Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (10:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (9:3:1) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4df Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (11:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (10:3:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (4:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (3:10:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x54f Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (8:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (7:6:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x579 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (8:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (7:6:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x589 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (12:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (11:2:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (11:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (10:3:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x587 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (10:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (9:4:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (9:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (8:5:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x587 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (12:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (11:2:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x567 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (14:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (13:0:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x569 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (14:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (13:0:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x589 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (10:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (9:4:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x401 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (8:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (7:3:3) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x557 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (11:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (10:3:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x551 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (8:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (7:6:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xb9 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (6:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (5:6:2) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3ff Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (8:3:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (7:3:3) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xb7 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (6:6:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (5:6:2) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x53f Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (7:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (6:7:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x577 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (8:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (7:6:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x541 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (7:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (6:7:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x33f Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (8:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (7:6:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x5d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (5:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (4:9:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x5d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (5:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (4:9:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xb7 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (7:5:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (6:5:2) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x371 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (5:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (4:7:2) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x341 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (8:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (7:6:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x2a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (7:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (6:7:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (7:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (6:7:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x36f Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (5:7:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (4:7:2) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3ff Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (9:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (8:2:3) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x401 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (9:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (8:2:3) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x377 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (10:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (9:3:1) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x2a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (7:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (6:7:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x379 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (10:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (9:3:1) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 14 (7:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 13 (6:7:0) Lost Hammers/(Refresh:Access): 14 (1:13) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x569 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (13:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (12:0:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x5d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (5:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (4:8:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x567 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (13:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (12:0:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x519 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:5:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x517 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:5:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x349 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (9:1:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (8:1:3) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x347 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (9:1:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (8:1:3) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x561 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (6:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (5:7:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x55f Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (6:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (5:7:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4bf Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (9:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (8:3:1) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4df Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (11:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (10:1:1) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x581 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (11:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (10:2:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x57f Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (11:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (10:2:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x5df Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:5:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x5e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:5:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x391 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:5:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x5e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:5:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x351 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (10:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (9:1:2) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x34f Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (10:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (9:1:2) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (11:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (10:1:1) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x5df Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:5:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (9:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (8:3:1) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x581 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (11:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (10:2:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x579 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:5:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x369 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (4:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (3:9:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x367 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (4:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (3:9:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x38f Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:5:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (9:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (8:3:1) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x577 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:5:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4df Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (9:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (8:3:1) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (13:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (12:0:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x519 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (6:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (5:7:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x561 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (6:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (5:7:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (9:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (8:3:1) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x517 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (6:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (5:7:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (10:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (9:2:1) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (9:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (8:3:1) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x541 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:5:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4bf Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (10:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (9:2:1) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (9:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (8:3:1) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4df Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (13:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (12:0:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x53f Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:5:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:4:1) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (9:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (8:3:1) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (9:1:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (8:1:3) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x5d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (5:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (4:8:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x5d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (4:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (3:9:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x5d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (4:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (3:9:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (9:1:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (8:1:3) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x38f Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (12:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (11:1:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x57f Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (10:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (9:3:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x391 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (12:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (11:1:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x581 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (10:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (9:3:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (11:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (10:2:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x467 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (6:4:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (5:4:3) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x367 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (7:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (6:5:1) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x369 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (7:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (6:5:1) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x469 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (6:4:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (5:4:3) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x379 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (9:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (8:3:1) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x551 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (5:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (4:8:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (10:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (9:3:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (10:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (9:3:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x467 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (6:4:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (5:4:3) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x54f Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (5:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (4:8:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x469 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (6:4:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (5:4:3) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x377 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (9:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (8:3:1) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x589 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (10:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (9:3:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x55f Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (6:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (5:7:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x337 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:3:2) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x339 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:3:2) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (12:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (11:0:1) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (12:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (11:0:1) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x587 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (10:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (9:3:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4df Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:4:1) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4bf Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (11:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (10:2:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3bf Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (9:0:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (8:0:4) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:5:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x519 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (5:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (4:8:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x517 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (5:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (4:8:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x5d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (5:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (4:8:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x577 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:5:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x5e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (3:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (2:10:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x579 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:5:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x339 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:4:1) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x337 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:4:1) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x5d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (4:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (3:9:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:5:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x5d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (4:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (3:9:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (12:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (11:0:1) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (9:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (8:2:2) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (12:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (11:0:1) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (9:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (8:2:2) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x5df Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (6:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (5:7:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x387 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (12:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (11:1:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x389 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (12:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (11:1:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (11:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (10:2:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x5e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (6:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (5:7:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x53f Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (10:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (9:3:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x379 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (11:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (10:2:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x57f Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (11:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (10:2:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x377 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (11:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (10:2:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x541 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (10:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (9:3:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:4:1) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x541 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:5:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x559 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (10:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (9:3:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:4:1) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x53f Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:5:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (9:0:4) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (8:0:4) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x5d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (5:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (4:8:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:5:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (8:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (7:5:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x557 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (10:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (9:3:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x5df Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (3:10:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (2:10:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 13 (11:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 12 (10:2:0) Lost Hammers/(Refresh:Access): 13 (1:12) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x5df Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (6:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (5:6:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x429 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (3:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (2:9:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x577 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (5:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (4:7:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x339 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (7:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (6:3:2) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4df Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (10:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (9:2:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x517 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (5:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (4:6:1) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x5e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (6:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (5:6:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x469 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:3:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x337 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (7:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (6:3:2) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x589 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (10:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (9:2:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x579 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (5:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (4:7:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x467 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:3:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x467 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (7:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (6:2:3) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x469 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (7:2:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (6:2:3) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x477 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (8:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (7:3:1) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x479 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (8:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (7:3:1) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x349 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:0:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:0:3) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x347 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:0:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:0:3) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x5e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (6:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (5:6:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x541 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (8:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (7:4:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x589 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (7:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (6:5:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x5df Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (6:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (5:6:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x587 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (7:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (6:5:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x577 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (7:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (6:5:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x5e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (6:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (5:6:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (8:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (7:4:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (8:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (7:4:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x391 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (8:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (7:4:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x469 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:2:1) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x467 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:2:1) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x541 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (5:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (4:7:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x38f Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (8:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (7:4:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x53f Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (5:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (4:7:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x557 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (8:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (7:4:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x34f Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:1:2) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x559 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (8:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (7:4:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:0:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:0:3) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3bf Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:0:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:0:3) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x579 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (7:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (6:5:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x517 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (4:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (3:8:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x519 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (4:8:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (3:8:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x427 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (5:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (4:7:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x429 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (5:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (4:7:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (8:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (7:4:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (8:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (7:4:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x557 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (7:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (6:5:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x54f Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (6:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (5:6:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (6:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (5:6:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x551 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (6:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (5:6:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x427 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (3:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (2:9:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3ef Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (6:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (5:6:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x519 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (5:6:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (4:6:1) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x339 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (10:0:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (9:0:2) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x53f Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (8:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (7:4:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x337 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (10:0:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (9:0:2) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x559 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (7:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (6:5:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x587 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (10:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (9:2:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x517 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (6:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (5:6:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x519 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (6:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (5:6:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x381 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:0:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:0:3) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x37f Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:0:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:0:3) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x5df Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (6:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (5:6:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (10:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (9:2:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x589 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:3:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x587 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:3:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x351 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:1:2) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x377 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:2:1) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x519 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (3:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (2:9:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x57f Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:3:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x347 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (11:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (10:0:1) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x581 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:3:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x351 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (10:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (9:1:1) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x367 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (7:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (6:5:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (12:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (11:0:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x34f Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (10:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (9:1:1) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x369 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (7:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (6:5:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x349 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (11:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (10:0:1) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x379 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:2:1) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x579 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (7:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (6:5:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x587 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:3:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x577 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (7:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (6:5:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x589 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:3:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x467 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (8:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (7:2:2) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:1:2) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:0:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:0:3) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (11:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (10:1:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x559 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (8:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (7:4:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x349 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (11:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (10:0:1) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x429 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (6:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (5:6:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x427 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (6:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (5:6:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x557 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (8:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (7:4:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4bf Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (11:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (10:0:1) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x347 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (11:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (10:0:1) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (11:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (10:0:1) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x557 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (8:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (7:4:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x559 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (8:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (7:4:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (12:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (11:0:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x577 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (6:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (5:6:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:1:2) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x579 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (6:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (5:6:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (11:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (10:1:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x581 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (12:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (11:0:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x517 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (3:9:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (2:9:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:1:2) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x57f Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (12:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (11:0:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4df Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (11:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (10:1:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3bf Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:0:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:0:3) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x559 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (7:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (6:5:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x557 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (7:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (6:5:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x5df Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (5:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (4:7:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x5e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (5:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (4:7:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x5d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (5:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (4:7:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x347 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (11:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (10:0:1) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x349 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (11:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (10:0:1) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x577 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (5:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (4:7:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x5d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (5:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (4:7:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x579 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (5:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (4:7:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x337 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:1:2) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:1:2) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (11:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (10:1:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (11:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (10:1:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x339 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (9:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (8:1:2) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x587 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (8:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (7:4:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (5:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (4:7:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x589 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (8:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (7:4:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (5:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (4:7:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x469 Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (8:2:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (7:2:2) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4df Lifetime Hammers/(Normal:Prefetch:Writeback): 12 (11:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 11 (10:1:0) Lost Hammers/(Refresh:Access): 12 (1:11) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x54f Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (8:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (7:3:0) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x581 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (8:2:0) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x5df Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (7:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (6:4:0) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x5e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (7:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (6:4:0) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x519 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (4:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (3:7:0) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x467 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (8:1:1) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x469 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (8:1:1) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x57f Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (8:2:0) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x517 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (4:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (3:7:0) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (10:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (9:1:0) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x551 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (8:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (7:3:0) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x349 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:0:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (8:0:2) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (8:1:1) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x351 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (8:1:1) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (10:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (9:1:0) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4df Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (8:1:1) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x57f Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (8:2:0) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (8:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (7:3:0) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (8:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (7:2:1) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (8:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (7:3:0) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x5e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (5:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (4:6:0) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x37f Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (8:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (7:1:2) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x381 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (8:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (7:1:2) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x34f Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (8:1:1) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4df Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (8:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (7:2:1) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4f1 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (4:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (3:7:0) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x519 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (5:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (4:6:0) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x517 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (5:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (4:6:0) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x477 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (7:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (6:4:0) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x517 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (4:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (3:7:0) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (6:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (5:5:0) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (8:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (7:1:2) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3bf Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (8:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (7:1:2) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (6:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (5:5:0) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x477 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (6:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (5:4:1) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x519 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (4:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (3:7:0) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x479 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (6:4:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (5:4:1) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x479 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (7:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (6:4:0) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x54f Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (5:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (4:6:0) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x351 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:0:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (8:0:2) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x559 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (8:2:0) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (8:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (7:2:1) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x557 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (8:2:0) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x34f Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:0:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (8:0:2) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (8:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (7:1:2) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (8:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (7:2:1) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x347 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:0:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (8:0:2) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x551 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (5:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (4:6:0) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4ef Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (4:7:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (3:7:0) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x581 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (8:2:0) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (8:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (7:1:2) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x477 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (6:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (5:5:0) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x559 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (8:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (7:3:0) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x347 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (10:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (9:0:1) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x467 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (8:1:1) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (7:1:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (6:1:3) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x45f Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (5:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (4:5:1) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x581 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (11:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (10:0:0) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x479 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (6:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (5:3:2) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x477 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (6:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (5:3:2) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x479 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (10:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (9:0:1) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (8:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (7:1:2) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (8:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (7:2:1) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x57f Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (11:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (10:0:0) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (8:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (7:1:2) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x557 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (8:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (7:3:0) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x479 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (6:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (5:5:0) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (8:1:1) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x477 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (10:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (9:0:1) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x347 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (10:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (9:0:1) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3bf Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (8:1:1) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (6:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (5:3:2) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3bf Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (7:1:3) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (6:1:3) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x57f Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (8:2:0) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x559 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (8:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (7:3:0) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x349 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (10:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (9:0:1) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x5df Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (5:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (4:6:0) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (8:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (7:3:0) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (8:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (7:2:1) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x461 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (5:5:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (4:5:1) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x377 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (8:2:0) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (6:3:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (5:3:2) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x581 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (8:2:0) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x557 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (8:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (7:3:0) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (8:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (7:3:0) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x469 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (8:1:1) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x349 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (10:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (9:0:1) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x379 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 10 (8:2:0) Lost Hammers/(Refresh:Access): 11 (1:10) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x581 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (7:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (6:3:0) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x351 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (10:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (9:0:0) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x57f Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (9:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (8:1:0) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x37f Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (8:0:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (7:0:2) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (9:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (8:0:1) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (7:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (6:1:2) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x519 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (5:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (4:5:0) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (8:0:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (7:0:2) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (8:0:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (7:0:2) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3bf Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (9:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (8:0:1) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x5e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (4:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (3:6:0) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x351 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (9:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (8:0:1) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (7:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (6:3:0) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x53f Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (6:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (5:4:0) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (10:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (9:0:0) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x541 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (6:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (5:4:0) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4df Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (7:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (6:3:0) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3bf Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (7:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (6:1:2) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (7:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (6:3:0) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x34f Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (9:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (8:0:1) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x5df Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (4:6:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (3:6:0) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (8:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (7:2:0) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (8:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (7:2:0) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (8:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (7:1:1) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x34f Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (10:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (9:0:0) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4df Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (10:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (9:0:0) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x581 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (9:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (8:1:0) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x559 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (6:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (5:4:0) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (7:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (6:3:0) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x57f Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (9:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (8:1:0) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4df Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (8:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (7:2:0) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x581 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (9:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (8:1:0) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x5e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (5:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (4:5:0) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x5df Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (5:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (4:5:0) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3bf Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (8:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (7:1:1) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x57f Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (8:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (7:2:0) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x469 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (6:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (5:3:1) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (9:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (8:1:0) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (9:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (8:1:0) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x381 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (8:0:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (7:0:2) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x351 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (8:0:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (7:0:2) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (8:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (7:2:0) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (9:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (8:1:0) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x477 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (6:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (5:3:1) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (9:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (8:1:0) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x34f Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (8:0:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (7:0:2) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (7:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (6:1:2) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x479 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (6:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (5:3:1) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x551 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (8:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (7:2:0) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (9:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (8:0:1) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x517 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (5:5:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (4:5:0) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x557 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (6:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (5:4:0) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x34f Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (8:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (7:1:1) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x581 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (8:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (7:2:0) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (9:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (8:1:0) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (9:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (8:0:1) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (9:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (8:0:1) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (9:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (8:1:0) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x581 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (6:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (5:4:0) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x57f Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (7:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (6:3:0) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3bf Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (9:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (8:0:1) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x57f Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (6:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (5:4:0) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x351 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (8:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (7:1:1) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (7:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (6:1:2) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x54f Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (8:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (7:2:0) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x467 Lifetime Hammers/(Normal:Prefetch:Writeback): 10 (6:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 9 (5:3:1) Lost Hammers/(Refresh:Access): 10 (1:9) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x387 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (7:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (6:2:0) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (5:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (4:4:0) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (8:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (7:0:1) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (9:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (8:0:0) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (8:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (7:0:1) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x469 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (5:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (4:3:1) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x347 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (9:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (8:0:0) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (8:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (7:0:1) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x599 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (9:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (8:0:0) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (9:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (8:0:0) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (8:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (7:0:1) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (6:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (5:3:0) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4e1 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (9:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (8:0:0) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (6:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (5:3:0) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4d7 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (6:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (5:3:0) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (6:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (5:1:2) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x381 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (9:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (8:0:0) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4df Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (9:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (8:0:0) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3bf Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (8:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (7:1:0) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (6:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (5:3:0) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x37f Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (9:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (8:0:0) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x599 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (9:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (8:0:0) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (6:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (5:3:0) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x597 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (9:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (8:0:0) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x581 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (8:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (7:1:0) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (8:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (7:1:0) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (6:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (5:3:0) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (6:1:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (5:1:2) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4d9 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (6:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (5:3:0) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x467 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (6:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (5:3:0) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x57f Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (8:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (7:1:0) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x381 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (8:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (7:0:1) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x469 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (6:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (5:3:0) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x37f Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (8:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (7:0:1) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x351 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (7:0:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (6:0:2) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x477 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (6:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (5:3:0) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x469 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (5:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (4:3:1) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x597 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (9:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (8:0:0) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x477 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (5:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (4:4:0) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x467 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (5:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (4:3:1) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x467 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (5:3:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (4:3:1) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (6:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (5:3:0) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (5:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (4:4:0) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (7:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (6:1:1) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x349 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (9:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (8:0:0) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (7:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (6:1:1) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x479 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (6:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (5:3:0) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x34f Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (7:0:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (6:0:2) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x479 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (5:4:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (4:4:0) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x389 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (7:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 8 (6:2:0) Lost Hammers/(Refresh:Access): 9 (1:8) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x581 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (5:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (4:3:0) Lost Hammers/(Refresh:Access): 8 (1:7) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x57f Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (5:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (4:3:0) Lost Hammers/(Refresh:Access): 8 (1:7) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x469 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (5:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (4:2:1) Lost Hammers/(Refresh:Access): 8 (1:7) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x37f Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (7:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (6:1:0) Lost Hammers/(Refresh:Access): 8 (1:7) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (8:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (7:0:0) Lost Hammers/(Refresh:Access): 8 (1:7) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3bf Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (8:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (7:0:0) Lost Hammers/(Refresh:Access): 8 (1:7) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x591 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (8:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (7:0:0) Lost Hammers/(Refresh:Access): 8 (1:7) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x467 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (5:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (4:2:1) Lost Hammers/(Refresh:Access): 8 (1:7) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x381 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (7:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (6:0:1) Lost Hammers/(Refresh:Access): 8 (1:7) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x347 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (6:0:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (5:0:2) Lost Hammers/(Refresh:Access): 8 (1:7) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x559 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (6:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (5:2:0) Lost Hammers/(Refresh:Access): 8 (1:7) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x58f Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (8:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (7:0:0) Lost Hammers/(Refresh:Access): 8 (1:7) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4a9 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (5:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (4:3:0) Lost Hammers/(Refresh:Access): 8 (1:7) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4a7 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (5:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (4:3:0) Lost Hammers/(Refresh:Access): 8 (1:7) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x349 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (6:0:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (5:0:2) Lost Hammers/(Refresh:Access): 8 (1:7) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x557 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (6:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (5:2:0) Lost Hammers/(Refresh:Access): 8 (1:7) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x377 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (5:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (4:2:1) Lost Hammers/(Refresh:Access): 8 (1:7) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3bf Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (6:0:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (5:0:2) Lost Hammers/(Refresh:Access): 8 (1:7) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (8:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (7:0:0) Lost Hammers/(Refresh:Access): 8 (1:7) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x381 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (7:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (6:1:0) Lost Hammers/(Refresh:Access): 8 (1:7) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (6:0:2) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (5:0:2) Lost Hammers/(Refresh:Access): 8 (1:7) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (8:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (7:0:0) Lost Hammers/(Refresh:Access): 8 (1:7) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x381 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (6:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (5:1:1) Lost Hammers/(Refresh:Access): 8 (1:7) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x347 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (7:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (6:0:1) Lost Hammers/(Refresh:Access): 8 (1:7) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x37f Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (6:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (5:1:1) Lost Hammers/(Refresh:Access): 8 (1:7) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x349 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (7:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (6:0:1) Lost Hammers/(Refresh:Access): 8 (1:7) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3bf Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (6:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (5:1:1) Lost Hammers/(Refresh:Access): 8 (1:7) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (6:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (5:1:1) Lost Hammers/(Refresh:Access): 8 (1:7) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x559 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (5:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (4:3:0) Lost Hammers/(Refresh:Access): 8 (1:7) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x557 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (5:3:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (4:3:0) Lost Hammers/(Refresh:Access): 8 (1:7) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (8:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (7:0:0) Lost Hammers/(Refresh:Access): 8 (1:7) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x351 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (7:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (6:1:0) Lost Hammers/(Refresh:Access): 8 (1:7) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x599 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (8:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (7:0:0) Lost Hammers/(Refresh:Access): 8 (1:7) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (8:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (7:0:0) Lost Hammers/(Refresh:Access): 8 (1:7) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x379 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (5:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (4:2:1) Lost Hammers/(Refresh:Access): 8 (1:7) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (8:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (7:0:0) Lost Hammers/(Refresh:Access): 8 (1:7) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (8:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (7:0:0) Lost Hammers/(Refresh:Access): 8 (1:7) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x37f Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (7:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (6:0:1) Lost Hammers/(Refresh:Access): 8 (1:7) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (8:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (7:0:0) Lost Hammers/(Refresh:Access): 8 (1:7) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x597 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (8:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (7:0:0) Lost Hammers/(Refresh:Access): 8 (1:7) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3bf Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (7:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (6:1:0) Lost Hammers/(Refresh:Access): 8 (1:7) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x34f Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (7:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (6:1:0) Lost Hammers/(Refresh:Access): 8 (1:7) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3c1 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (7:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (6:1:0) Lost Hammers/(Refresh:Access): 8 (1:7) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (8:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 7 (7:0:0) Lost Hammers/(Refresh:Access): 8 (1:7) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x591 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (5:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (4:2:0) Lost Hammers/(Refresh:Access): 7 (1:6) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x58f Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (5:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (4:2:0) Lost Hammers/(Refresh:Access): 7 (1:6) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x591 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (5:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (4:2:0) Lost Hammers/(Refresh:Access): 7 (1:6) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x349 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (7:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (6:0:0) Lost Hammers/(Refresh:Access): 7 (1:6) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x351 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (7:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (6:0:0) Lost Hammers/(Refresh:Access): 7 (1:6) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3f9 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (6:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (5:0:1) Lost Hammers/(Refresh:Access): 7 (1:6) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x37f Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (6:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (5:0:1) Lost Hammers/(Refresh:Access): 7 (1:6) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (7:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (6:0:0) Lost Hammers/(Refresh:Access): 7 (1:6) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x591 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (6:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (5:1:0) Lost Hammers/(Refresh:Access): 7 (1:6) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (7:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (6:0:0) Lost Hammers/(Refresh:Access): 7 (1:6) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x58f Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (6:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (5:1:0) Lost Hammers/(Refresh:Access): 7 (1:6) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x34f Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (7:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (6:0:0) Lost Hammers/(Refresh:Access): 7 (1:6) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x34f Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (7:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (6:0:0) Lost Hammers/(Refresh:Access): 7 (1:6) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x58f Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (5:2:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (4:2:0) Lost Hammers/(Refresh:Access): 7 (1:6) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x381 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (6:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (5:0:1) Lost Hammers/(Refresh:Access): 7 (1:6) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x351 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (7:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (6:0:0) Lost Hammers/(Refresh:Access): 7 (1:6) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x5e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (7:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (6:0:0) Lost Hammers/(Refresh:Access): 7 (1:6) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x58f Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (6:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (5:1:0) Lost Hammers/(Refresh:Access): 7 (1:6) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x5e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (7:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (6:0:0) Lost Hammers/(Refresh:Access): 7 (1:6) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x591 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (6:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (5:1:0) Lost Hammers/(Refresh:Access): 7 (1:6) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x381 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (4:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (3:2:1) Lost Hammers/(Refresh:Access): 7 (1:6) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x599 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (7:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (6:0:0) Lost Hammers/(Refresh:Access): 7 (1:6) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (7:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (6:0:0) Lost Hammers/(Refresh:Access): 7 (1:6) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x58f Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (6:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (5:1:0) Lost Hammers/(Refresh:Access): 7 (1:6) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x37f Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (4:2:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (3:2:1) Lost Hammers/(Refresh:Access): 7 (1:6) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x597 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (7:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (6:0:0) Lost Hammers/(Refresh:Access): 7 (1:6) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3f7 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (6:0:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (5:0:1) Lost Hammers/(Refresh:Access): 7 (1:6) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x591 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (6:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (5:1:0) Lost Hammers/(Refresh:Access): 7 (1:6) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x347 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (7:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (6:0:0) Lost Hammers/(Refresh:Access): 7 (1:6) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (7:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 6 (6:0:0) Lost Hammers/(Refresh:Access): 7 (1:6) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x469 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (5:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 6 (1:5) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x599 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (6:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 5 (5:0:0) Lost Hammers/(Refresh:Access): 6 (1:5) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x58f Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (5:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 6 (1:5) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x37f Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (4:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 5 (3:1:1) Lost Hammers/(Refresh:Access): 6 (1:5) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (6:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 5 (5:0:0) Lost Hammers/(Refresh:Access): 6 (1:5) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x599 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (5:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 6 (1:5) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x381 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (4:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 5 (3:1:1) Lost Hammers/(Refresh:Access): 6 (1:5) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x467 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (5:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 6 (1:5) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x58f Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (5:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 6 (1:5) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x591 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (5:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 6 (1:5) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x597 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (5:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 6 (1:5) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x597 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (6:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 5 (5:0:0) Lost Hammers/(Refresh:Access): 6 (1:5) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x599 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (6:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 5 (5:0:0) Lost Hammers/(Refresh:Access): 6 (1:5) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (5:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 6 (1:5) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (6:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 5 (5:0:0) Lost Hammers/(Refresh:Access): 6 (1:5) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x597 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (6:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 5 (5:0:0) Lost Hammers/(Refresh:Access): 6 (1:5) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (5:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 6 (1:5) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (6:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 5 (5:0:0) Lost Hammers/(Refresh:Access): 6 (1:5) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x599 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (6:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 5 (5:0:0) Lost Hammers/(Refresh:Access): 6 (1:5) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x597 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (6:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 5 (5:0:0) Lost Hammers/(Refresh:Access): 6 (1:5) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x591 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (5:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 6 (1:5) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (6:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 5 (5:0:0) Lost Hammers/(Refresh:Access): 6 (1:5) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x599 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x58f Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (3:1:0) Lost Hammers/(Refresh:Access): 5 (1:4) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x597 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x58f Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x5e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x599 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x597 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x597 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x591 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x599 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4b9 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4b7 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x58f Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (3:1:0) Lost Hammers/(Refresh:Access): 5 (1:4) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x5e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x591 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (3:1:0) Lost Hammers/(Refresh:Access): 5 (1:4) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x597 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x597 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x599 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x58f Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (3:1:0) Lost Hammers/(Refresh:Access): 5 (1:4) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x591 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (3:1:0) Lost Hammers/(Refresh:Access): 5 (1:4) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x599 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x597 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x591 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (3:1:0) Lost Hammers/(Refresh:Access): 5 (1:4) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x5e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x5e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x597 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x599 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x597 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x5e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x5e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x37f Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (3:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (2:1:1) Lost Hammers/(Refresh:Access): 5 (1:4) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x599 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x599 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 5 (1:4) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x381 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (3:1:1) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 4 (2:1:1) Lost Hammers/(Refresh:Access): 5 (1:4) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x5e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (4:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 4 (1:3) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x5e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (4:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 4 (1:3) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x5e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (4:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 4 (1:3) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x58f Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (4:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 4 (1:3) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x591 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (4:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 4 (1:3) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x5e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (4:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 4 (1:3) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x5e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (4:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 4 (1:3) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x5e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (4:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 4 (1:3) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x5e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 3 (1:2) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x5e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 3 (1:2) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x591 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 3 (1:2) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x5e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 3 (1:2) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x58f Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 3 (1:2) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x5e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 3 (1:2) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x58f Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 3 (1:2) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x5e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 3 (1:2) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x591 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 3 (1:2) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x5e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 3 (1:2) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x58f Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 3 (1:2) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x591 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 3 (1:2) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x5e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 3 (1:2) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x5e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 3 (1:2) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x5e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 3 (1:2) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x5e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 3 (1:2) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x349 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 3 (1:2) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x347 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 3 (1:2) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x5e7 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 3 (1:2) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x5e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 3 (1:2) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x5e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 3 (1:2) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x5e9 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(0)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 3 (1:2) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (2:4:0) Limit: Access Highest Single-Cycle Hammers(6253)/(Normal:Prefetch:Writeback): 6 (2:4:0) Lost Hammers/(Refresh:Access): 6 (0:6) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (2:4:0) Limit: Access Highest Single-Cycle Hammers(6253)/(Normal:Prefetch:Writeback): 6 (2:4:0) Lost Hammers/(Refresh:Access): 6 (0:6) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (4:2:0) Limit: Access Highest Single-Cycle Hammers(4379)/(Normal:Prefetch:Writeback): 6 (4:2:0) Lost Hammers/(Refresh:Access): 6 (0:6) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (3:3:0) Limit: Access Highest Single-Cycle Hammers(8509)/(Normal:Prefetch:Writeback): 6 (3:3:0) Lost Hammers/(Refresh:Access): 6 (0:6) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (3:3:0) Limit: Access Highest Single-Cycle Hammers(8509)/(Normal:Prefetch:Writeback): 6 (3:3:0) Lost Hammers/(Refresh:Access): 6 (0:6) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (4:2:0) Limit: Access Highest Single-Cycle Hammers(4379)/(Normal:Prefetch:Writeback): 6 (4:2:0) Lost Hammers/(Refresh:Access): 6 (0:6) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (3:2:0) Limit: Access Highest Single-Cycle Hammers(6833)/(Normal:Prefetch:Writeback): 5 (3:2:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (3:2:0) Limit: Access Highest Single-Cycle Hammers(6833)/(Normal:Prefetch:Writeback): 5 (3:2:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (3:2:0) Limit: Access Highest Single-Cycle Hammers(7721)/(Normal:Prefetch:Writeback): 5 (3:2:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (3:2:0) Limit: Access Highest Single-Cycle Hammers(7721)/(Normal:Prefetch:Writeback): 5 (3:2:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (3:2:0) Limit: Access Highest Single-Cycle Hammers(9532)/(Normal:Prefetch:Writeback): 5 (3:2:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (3:2:0) Limit: Access Highest Single-Cycle Hammers(9532)/(Normal:Prefetch:Writeback): 5 (3:2:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(7297)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(7297)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(7458)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(7458)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(8955)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(8955)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (3:2:0) Limit: Access Highest Single-Cycle Hammers(11635)/(Normal:Prefetch:Writeback): 5 (3:2:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (3:2:0) Limit: Access Highest Single-Cycle Hammers(11635)/(Normal:Prefetch:Writeback): 5 (3:2:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(6672)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (3:2:0) Limit: Access Highest Single-Cycle Hammers(8100)/(Normal:Prefetch:Writeback): 5 (3:2:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(6672)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(8947)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(8947)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (3:2:0) Limit: Access Highest Single-Cycle Hammers(6330)/(Normal:Prefetch:Writeback): 5 (3:2:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(9673)/(Normal:Prefetch:Writeback): 5 (5:0:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(9673)/(Normal:Prefetch:Writeback): 5 (5:0:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (3:2:0) Limit: Access Highest Single-Cycle Hammers(6330)/(Normal:Prefetch:Writeback): 5 (3:2:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (3:2:0) Limit: Access Highest Single-Cycle Hammers(8100)/(Normal:Prefetch:Writeback): 5 (3:2:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (3:1:0) Limit: Access Highest Single-Cycle Hammers(6249)/(Normal:Prefetch:Writeback): 4 (3:1:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (3:1:0) Limit: Access Highest Single-Cycle Hammers(8466)/(Normal:Prefetch:Writeback): 4 (3:1:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (2:2:0) Limit: Access Highest Single-Cycle Hammers(6338)/(Normal:Prefetch:Writeback): 4 (2:2:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (2:2:0) Limit: Access Highest Single-Cycle Hammers(6338)/(Normal:Prefetch:Writeback): 4 (2:2:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (2:2:0) Limit: Access Highest Single-Cycle Hammers(7799)/(Normal:Prefetch:Writeback): 4 (2:2:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (2:2:0) Limit: Access Highest Single-Cycle Hammers(7799)/(Normal:Prefetch:Writeback): 4 (2:2:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (3:1:0) Limit: Access Highest Single-Cycle Hammers(6249)/(Normal:Prefetch:Writeback): 4 (3:1:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (3:1:0) Limit: Access Highest Single-Cycle Hammers(7132)/(Normal:Prefetch:Writeback): 4 (3:1:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (3:1:0) Limit: Access Highest Single-Cycle Hammers(7132)/(Normal:Prefetch:Writeback): 4 (3:1:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (2:2:0) Limit: Access Highest Single-Cycle Hammers(10369)/(Normal:Prefetch:Writeback): 4 (2:2:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (2:2:0) Limit: Access Highest Single-Cycle Hammers(10369)/(Normal:Prefetch:Writeback): 4 (2:2:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (2:2:0) Limit: Access Highest Single-Cycle Hammers(6326)/(Normal:Prefetch:Writeback): 4 (2:2:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (4:0:0) Limit: Access Highest Single-Cycle Hammers(6487)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (2:2:0) Limit: Access Highest Single-Cycle Hammers(5575)/(Normal:Prefetch:Writeback): 4 (2:2:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (2:2:0) Limit: Access Highest Single-Cycle Hammers(5575)/(Normal:Prefetch:Writeback): 4 (2:2:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (1:3:0) Limit: Access Highest Single-Cycle Hammers(4383)/(Normal:Prefetch:Writeback): 4 (1:3:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (1:3:0) Limit: Access Highest Single-Cycle Hammers(4383)/(Normal:Prefetch:Writeback): 4 (1:3:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (3:1:0) Limit: Access Highest Single-Cycle Hammers(8119)/(Normal:Prefetch:Writeback): 4 (3:1:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (3:1:0) Limit: Access Highest Single-Cycle Hammers(8119)/(Normal:Prefetch:Writeback): 4 (3:1:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (4:0:0) Limit: Access Highest Single-Cycle Hammers(9842)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (4:0:0) Limit: Access Highest Single-Cycle Hammers(9842)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (3:1:0) Limit: Access Highest Single-Cycle Hammers(8466)/(Normal:Prefetch:Writeback): 4 (3:1:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (4:0:0) Limit: Access Highest Single-Cycle Hammers(6487)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (2:2:0) Limit: Access Highest Single-Cycle Hammers(6326)/(Normal:Prefetch:Writeback): 4 (2:2:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (4:0:0) Limit: Access Highest Single-Cycle Hammers(8348)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (2:2:0) Limit: Access Highest Single-Cycle Hammers(9108)/(Normal:Prefetch:Writeback): 4 (2:2:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (4:0:0) Limit: Access Highest Single-Cycle Hammers(8348)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (2:2:0) Limit: Access Highest Single-Cycle Hammers(9108)/(Normal:Prefetch:Writeback): 4 (2:2:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (2:1:0) Limit: Access Highest Single-Cycle Hammers(8869)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (2:1:0) Limit: Access Highest Single-Cycle Hammers(8869)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (2:1:0) Limit: Access Highest Single-Cycle Hammers(5712)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (2:1:0) Limit: Access Highest Single-Cycle Hammers(5712)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(9799)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(9799)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (2:1:0) Limit: Access Highest Single-Cycle Hammers(16109)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (2:1:0) Limit: Access Highest Single-Cycle Hammers(16109)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (1:2:0) Limit: Access Highest Single-Cycle Hammers(15347)/(Normal:Prefetch:Writeback): 3 (1:2:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (1:2:0) Limit: Access Highest Single-Cycle Hammers(15347)/(Normal:Prefetch:Writeback): 3 (1:2:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (0:3:0) Limit: Access Highest Single-Cycle Hammers(6334)/(Normal:Prefetch:Writeback): 3 (0:3:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(16190)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (1:2:0) Limit: Access Highest Single-Cycle Hammers(15343)/(Normal:Prefetch:Writeback): 3 (1:2:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (1:2:0) Limit: Access Highest Single-Cycle Hammers(15343)/(Normal:Prefetch:Writeback): 3 (1:2:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (2:1:0) Limit: Access Highest Single-Cycle Hammers(10540)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (0:3:0) Limit: Access Highest Single-Cycle Hammers(6334)/(Normal:Prefetch:Writeback): 3 (0:3:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (2:1:0) Limit: Access Highest Single-Cycle Hammers(10540)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(6602)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(6602)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(7312)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(16190)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(7717)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(7717)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(7312)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(15859)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(18765)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(18765)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(15859)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (0:2:0) Limit: Access Highest Single-Cycle Hammers(14785)/(Normal:Prefetch:Writeback): 2 (0:2:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(12132)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(15867)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(16367)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(16367)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(15867)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(11466)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(11466)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(12132)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (2:0:0) Limit: Access Highest Single-Cycle Hammers(9681)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (0:2:0) Limit: Access Highest Single-Cycle Hammers(14785)/(Normal:Prefetch:Writeback): 2 (0:2:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (0:2:0) Limit: Access Highest Single-Cycle Hammers(15353)/(Normal:Prefetch:Writeback): 2 (0:2:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (0:2:0) Limit: Access Highest Single-Cycle Hammers(15353)/(Normal:Prefetch:Writeback): 2 (0:2:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (2:0:0) Limit: Access Highest Single-Cycle Hammers(6606)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (2:0:0) Limit: Access Highest Single-Cycle Hammers(6606)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(8708)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(8708)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (2:0:0) Limit: Access Highest Single-Cycle Hammers(6257)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (2:0:0) Limit: Access Highest Single-Cycle Hammers(6257)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(8505)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(8505)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (2:0:0) Limit: Access Highest Single-Cycle Hammers(9681)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 1 (0:1:0) Limit: Access Highest Single-Cycle Hammers(18639)/(Normal:Prefetch:Writeback): 1 (0:1:0) Lost Hammers/(Refresh:Access): 1 (0:1) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 1 (0:1:0) Limit: Access Highest Single-Cycle Hammers(18639)/(Normal:Prefetch:Writeback): 1 (0:1:0) Lost Hammers/(Refresh:Access): 1 (0:1) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 1 (1:0:0) Limit: Access Highest Single-Cycle Hammers(18684)/(Normal:Prefetch:Writeback): 1 (1:0:0) Lost Hammers/(Refresh:Access): 1 (0:1) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 1 (1:0:0) Limit: Access Highest Single-Cycle Hammers(18684)/(Normal:Prefetch:Writeback): 1 (1:0:0) Lost Hammers/(Refresh:Access): 1 (0:1) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 1 (1:0:0) Limit: Access Highest Single-Cycle Hammers(18511)/(Normal:Prefetch:Writeback): 1 (1:0:0) Lost Hammers/(Refresh:Access): 1 (0:1) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 1 (1:0:0) Limit: Access Highest Single-Cycle Hammers(18511)/(Normal:Prefetch:Writeback): 1 (1:0:0) Lost Hammers/(Refresh:Access): 1 (0:1) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 1 (1:0:0) Limit: Access Highest Single-Cycle Hammers(18515)/(Normal:Prefetch:Writeback): 1 (1:0:0) Lost Hammers/(Refresh:Access): 1 (0:1) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 1 (1:0:0) Limit: Access Highest Single-Cycle Hammers(18515)/(Normal:Prefetch:Writeback): 1 (1:0:0) Lost Hammers/(Refresh:Access): 1 (0:1) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 1 (1:0:0) Limit: Access Highest Single-Cycle Hammers(8482)/(Normal:Prefetch:Writeback): 1 (1:0:0) Lost Hammers/(Refresh:Access): 1 (0:1) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 1 (1:0:0) Limit: Access Highest Single-Cycle Hammers(8482)/(Normal:Prefetch:Writeback): 1 (1:0:0) Lost Hammers/(Refresh:Access): 1 (0:1) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 1 (1:0:0) Limit: Access Highest Single-Cycle Hammers(18600)/(Normal:Prefetch:Writeback): 1 (1:0:0) Lost Hammers/(Refresh:Access): 1 (0:1) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 1 (1:0:0) Limit: Access Highest Single-Cycle Hammers(18600)/(Normal:Prefetch:Writeback): 1 (1:0:0) Lost Hammers/(Refresh:Access): 1 (0:1) #################################################################################################### diff --git a/power_consumption_rates_rasl.txt b/power_consumption_rates_rasl.txt new file mode 100644 index 0000000000..138aee868a --- /dev/null +++ b/power_consumption_rates_rasl.txt @@ -0,0 +1,311 @@ +Rate for instruction 0: 26.9231% +Rate for instruction 1: 15.3846% +Rate for instruction 2: 17.9487% +Rate for instruction 3: 21.1538% +Rate for instruction 4: 20.7692% +Rate for instruction 5: 17.9487% +Rate for instruction 6: 17.033% +Rate for instruction 7: 17.3077% +Rate for instruction 8: 16.2393% +Rate for instruction 9: 15% +Rate for instruction 10: 15.7343% +Rate for instruction 11: 15.3846% +Rate for instruction 12: 15.0888% +Rate for instruction 13: 14.2857% +Rate for instruction 14: 15.3846% +Rate for instruction 15: 15.1442% +Rate for instruction 16: 15.3846% +Rate for instruction 17: 15.3846% +Rate for instruction 18: 15.7895% +Rate for instruction 19: 16.5385% +Rate for instruction 20: 16.8498% +Rate for instruction 21: 16.2587% +Rate for instruction 22: 16.2207% +Rate for instruction 23: 16.8269% +Rate for instruction 24: 17.0769% +Rate for instruction 25: 17.3077% +Rate for instruction 26: 17.2365% +Rate for instruction 27: 17.3077% +Rate for instruction 28: 17.1088% +Rate for instruction 29: 17.5641% +Rate for instruction 30: 17.7419% +Rate for instruction 31: 18.2692% +Rate for instruction 32: 18.7646% +Rate for instruction 33: 18.8914% +Rate for instruction 34: 19.2308% +Rate for instruction 35: 19.0171% +Rate for instruction 36: 19.2308% +Rate for instruction 37: 19.0283% +Rate for instruction 38: 18.9349% +Rate for instruction 39: 18.9423% +Rate for instruction 40: 18.5741% +Rate for instruction 41: 19.1392% +Rate for instruction 42: 18.873% +Rate for instruction 43: 18.5315% +Rate for instruction 44: 18.4615% +Rate for instruction 45: 18.3946% +Rate for instruction 46: 18.6579% +Rate for instruction 47: 18.5897% +Rate for instruction 48: 18.6813% +Rate for instruction 49: 18.6923% +Rate for instruction 50: 18.7783% +Rate for instruction 51: 18.6391% +Rate for instruction 52: 18.5051% +Rate for instruction 53: 18.5185% +Rate for instruction 54: 18.5315% +Rate for instruction 55: 18.6813% +Rate for instruction 56: 18.691% +Rate for instruction 57: 18.7666% +Rate for instruction 58: 18.7093% +Rate for instruction 59: 18.7821% +Rate for instruction 60: 18.7894% +Rate for instruction 61: 18.7965% +Rate for instruction 62: 18.8645% +Rate for instruction 63: 18.9904% +Rate for instruction 64: 18.9349% +Rate for instruction 65: 18.7063% +Rate for instruction 66: 18.9437% +Rate for instruction 67: 19.0611% +Rate for instruction 68: 19.1193% +Rate for instruction 69: 19.3407% +Rate for instruction 70: 19.5016% +Rate for instruction 71: 19.3376% +Rate for instruction 72: 19.4415% +Rate for instruction 73: 19.3867% +Rate for instruction 74: 19.4359% +Rate for instruction 75: 19.332% +Rate for instruction 76: 19.3806% +Rate for instruction 77: 19.3787% +Rate for instruction 78: 19.4742% +Rate for instruction 79: 19.5192% +Rate for instruction 80: 19.4682% +Rate for instruction 81: 19.7467% +Rate for instruction 82: 19.8332% +Rate for instruction 83: 19.8718% +Rate for instruction 84: 20.0452% +Rate for instruction 85: 20.0805% +Rate for instruction 86: 20.0265% +Rate for instruction 87: 19.9301% +Rate for instruction 88: 20.0519% +Rate for instruction 89: 19.9145% +Rate for instruction 90: 19.8648% +Rate for instruction 91: 19.8161% +Rate for instruction 92: 19.6443% +Rate for instruction 93: 19.7627% +Rate for instruction 94: 19.7976% +Rate for instruction 95: 19.8718% +Rate for instruction 96: 20.1031% +Rate for instruction 97: 20.1334% +Rate for instruction 98: 20.0855% +Rate for instruction 99: 20.1538% +Rate for instruction 100: 19.9924% +Rate for instruction 101: 20.0226% +Rate for instruction 102: 20.0523% +Rate for instruction 103: 20.0074% +Rate for instruction 104: 19.9267% +Rate for instruction 105: 19.9202% +Rate for instruction 106: 20.0575% +Rate for instruction 107: 20.1211% +Rate for instruction 108: 20.1482% +Rate for instruction 109: 20.1748% +Rate for instruction 110: 20.097% +Rate for instruction 111: 20.1236% +Rate for instruction 112: 20.0136% +Rate for instruction 113: 20.0742% +Rate for instruction 114: 20.1338% +Rate for instruction 115: 20.1923% +Rate for instruction 116: 20.1183% +Rate for instruction 117: 20.176% +Rate for instruction 118: 20.2004% +Rate for instruction 119: 20.1282% +Rate for instruction 120: 20.1208% +Rate for instruction 121: 20.1135% +Rate for instruction 122: 19.9812% +Rate for instruction 123: 19.8511% +Rate for instruction 124: 19.7846% +Rate for instruction 125: 19.6886% +Rate for instruction 126: 19.5639% +Rate for instruction 127: 19.6214% +Rate for instruction 128: 19.6482% +Rate for instruction 129: 19.7041% +Rate for instruction 130: 19.6124% +Rate for instruction 131: 19.5513% +Rate for instruction 132: 19.5778% +Rate for instruction 133: 19.4891% +Rate for instruction 134: 19.3732% +Rate for instruction 135: 19.4005% +Rate for instruction 136: 19.4554% +Rate for instruction 137: 19.4537% +Rate for instruction 138: 19.4798% +Rate for instruction 139: 19.533% +Rate for instruction 140: 19.5581% +Rate for instruction 141: 19.5016% +Rate for instruction 142: 19.5535% +Rate for instruction 143: 19.5246% +Rate for instruction 144: 19.4164% +Rate for instruction 145: 19.3361% +Rate for instruction 146: 19.3354% +Rate for instruction 147: 19.2827% +Rate for instruction 148: 19.334% +Rate for instruction 149: 19.3846% +Rate for instruction 150: 19.46% +Rate for instruction 151: 19.3826% +Rate for instruction 152: 19.5073% +Rate for instruction 153: 19.4555% +Rate for instruction 154: 19.3548% +Rate for instruction 155: 19.2801% +Rate for instruction 156: 19.2798% +Rate for instruction 157: 19.3038% +Rate for instruction 158: 19.3033% +Rate for instruction 159: 19.2067% +Rate for instruction 160: 19.1352% +Rate for instruction 161: 19.0408% +Rate for instruction 162: 19.0656% +Rate for instruction 163: 19.0901% +Rate for instruction 164: 19.2308% +Rate for instruction 165: 19.2771% +Rate for instruction 166: 19.2308% +Rate for instruction 167: 19.2537% +Rate for instruction 168: 19.1625% +Rate for instruction 169: 19.095% +Rate for instruction 170: 19.0058% +Rate for instruction 171: 18.9624% +Rate for instruction 172: 18.8751% +Rate for instruction 173: 18.8771% +Rate for instruction 174: 18.8571% +Rate for instruction 175: 18.903% +Rate for instruction 176: 18.8614% +Rate for instruction 177: 18.7986% +Rate for instruction 178: 18.7151% +Rate for instruction 179: 18.6752% +Rate for instruction 180: 18.6145% +Rate for instruction 181: 18.5545% +Rate for instruction 182: 18.5792% +Rate for instruction 183: 18.541% +Rate for instruction 184: 18.4615% +Rate for instruction 185: 18.4657% +Rate for instruction 186: 18.4286% +Rate for instruction 187: 18.3511% +Rate for instruction 188: 18.2947% +Rate for instruction 189: 18.2186% +Rate for instruction 190: 18.2441% +Rate for instruction 191: 18.1691% +Rate for instruction 192: 18.1347% +Rate for instruction 193: 18.0611% +Rate for instruction 194: 18.0079% +Rate for instruction 195: 17.9749% +Rate for instruction 196: 17.9227% +Rate for instruction 197: 17.9099% +Rate for instruction 198: 17.8779% +Rate for instruction 199: 17.8269% +Rate for instruction 200: 17.7765% +Rate for instruction 201: 17.7075% +Rate for instruction 202: 17.7719% +Rate for instruction 203: 17.7602% +Rate for instruction 204: 17.6923% +Rate for instruction 205: 17.6438% +Rate for instruction 206: 17.5957% +Rate for instruction 207: 17.6775% +Rate for instruction 208: 17.6665% +Rate for instruction 209: 17.674% +Rate for instruction 210: 17.6449% +Rate for instruction 211: 17.598% +Rate for instruction 212: 17.5695% +Rate for instruction 213: 17.5234% +Rate for instruction 214: 17.585% +Rate for instruction 215: 17.5214% +Rate for instruction 216: 17.4583% +Rate for instruction 217: 17.5371% +Rate for instruction 218: 17.4921% +Rate for instruction 219: 17.4825% +Rate for instruction 220: 17.4556% +Rate for instruction 221: 17.3943% +Rate for instruction 222: 17.437% +Rate for instruction 223: 17.3935% +Rate for instruction 224: 17.4017% +Rate for instruction 225: 17.3758% +Rate for instruction 226: 17.4009% +Rate for instruction 227: 17.4258% +Rate for instruction 228: 17.4169% +Rate for instruction 229: 17.3579% +Rate for instruction 230: 17.2994% +Rate for instruction 231: 17.3574% +Rate for instruction 232: 17.3655% +Rate for instruction 233: 17.357% +Rate for instruction 234: 17.4632% +Rate for instruction 235: 17.4381% +Rate for instruction 236: 17.4781% +Rate for instruction 237: 17.4693% +Rate for instruction 238: 17.4606% +Rate for instruction 239: 17.5% +Rate for instruction 240: 17.4593% +Rate for instruction 241: 17.4189% +Rate for instruction 242: 17.3631% +Rate for instruction 243: 17.3865% +Rate for instruction 244: 17.3469% +Rate for instruction 245: 17.2921% +Rate for instruction 246: 17.2688% +Rate for instruction 247: 17.2457% +Rate for instruction 248: 17.2073% +Rate for instruction 249: 17.2769% +Rate for instruction 250: 17.3154% +Rate for instruction 251: 17.2924% +Rate for instruction 252: 17.2545% +Rate for instruction 253: 17.2168% +Rate for instruction 254: 17.2549% +Rate for instruction 255: 17.2626% +Rate for instruction 256: 17.2104% +Rate for instruction 257: 17.2481% +Rate for instruction 258: 17.226% +Rate for instruction 259: 17.2189% +Rate for instruction 260: 17.2414% +Rate for instruction 261: 17.2637% +Rate for instruction 262: 17.2126% +Rate for instruction 263: 17.2494% +Rate for instruction 264: 17.2569% +Rate for instruction 265: 17.2643% +Rate for instruction 266: 17.3149% +Rate for instruction 267: 17.3651% +Rate for instruction 268: 17.3291% +Rate for instruction 269: 17.2792% +Rate for instruction 270: 17.3006% +Rate for instruction 271: 17.2653% +Rate for instruction 272: 17.2161% +Rate for instruction 273: 17.2515% +Rate for instruction 274: 17.3427% +Rate for instruction 275: 17.3356% +Rate for instruction 276: 17.3841% +Rate for instruction 277: 17.3492% +Rate for instruction 278: 17.3559% +Rate for instruction 279: 17.3077% +Rate for instruction 280: 17.2735% +Rate for instruction 281: 17.2259% +Rate for instruction 282: 17.2601% +Rate for instruction 283: 17.2535% +Rate for instruction 284: 17.2874% +Rate for instruction 285: 17.3211% +Rate for instruction 286: 17.2742% +Rate for instruction 287: 17.2676% +Rate for instruction 288: 17.2877% +Rate for instruction 289: 17.2679% +Rate for instruction 290: 17.3143% +Rate for instruction 291: 17.3209% +Rate for instruction 292: 17.3011% +Rate for instruction 293: 17.2815% +Rate for instruction 294: 17.3403% +Rate for instruction 295: 17.3077% +Rate for instruction 296: 17.2753% +Rate for instruction 297: 17.2303% +Rate for instruction 298: 17.2112% +Rate for instruction 299: 17.2949% +Rate for instruction 300: 17.263% +Rate for instruction 301: 17.2695% +Rate for instruction 302: 17.314% +Rate for instruction 303: 17.3203% +Rate for instruction 304: 17.3392% +Rate for instruction 305: 17.3203% +Rate for instruction 306: 17.3014% +Rate for instruction 307: 17.3452% +Rate for instruction 308: 17.3264% +Rate for instruction 309: 17.3201% +Rate for instruction 310: 17.351% diff --git a/ramulator2ext/src/addr_mapper/impl/champsim_mappers.cpp b/ramulator2ext/src/addr_mapper/impl/champsim_mappers.cpp index f64abb142c..6abd9da755 100644 --- a/ramulator2ext/src/addr_mapper/impl/champsim_mappers.cpp +++ b/ramulator2ext/src/addr_mapper/impl/champsim_mappers.cpp @@ -1,5 +1,6 @@ #include #include +#include #include "base/base.h" #include "dram/dram.h" @@ -55,17 +56,26 @@ namespace Ramulator{ Addr_t addr = req.addr >> m_tx_offset; //channel req.addr_vec[m_dram->m_levels("channel")] = slice_lower_bits(addr, m_addr_bits[m_dram->m_levels("channel")]); + std::cout << "The channel : " << req.addr_vec[m_dram->m_levels("channel")] << std::endl; //bank group + //std::cout << "The bankgroup before: " << req.addr_vec[m_dram->m_levels("bankgroup")] << std::endl; if(m_dram->m_organization.count.size() > 5) req.addr_vec[m_dram->m_levels("bankgroup")] = slice_lower_bits(addr, m_addr_bits[m_dram->m_levels("bankgroup")]); + std::cout << "The bankgroup: " << req.addr_vec[m_dram->m_levels("bankgroup")] << std::endl; + //bank req.addr_vec[m_dram->m_levels("bank")] = slice_lower_bits(addr, m_addr_bits[m_dram->m_levels("bank")]); + std::cout << "The bank: " << req.addr_vec[m_dram->m_levels("bank")] << std::endl; //column req.addr_vec[m_dram->m_levels("column")] = slice_lower_bits(addr, m_addr_bits[m_dram->m_levels("column")]); + std::cout << "The column: " << req.addr_vec[m_dram->m_levels("column")] << std::endl; //rank req.addr_vec[m_dram->m_levels("rank")] = slice_lower_bits(addr, m_addr_bits[m_dram->m_levels("rank")]); + std::cout << "The rank: " << req.addr_vec[m_dram->m_levels("rank")] << std::endl; //row req.addr_vec[m_dram->m_levels("row")] = slice_lower_bits(addr, m_addr_bits[m_dram->m_levels("row")]); + std::cout << "The row: " << req.addr_vec[m_dram->m_levels("row")] << std::endl; + std::cout << std::endl; } }; @@ -93,6 +103,7 @@ namespace Ramulator{ m_addr_bits.resize(m_num_levels); for (size_t level = 0; level < m_addr_bits.size(); level++) { m_addr_bits[level] = calc_log2(count[level]); + std::cout << "This is the number of bits in level [" << level << "]: " << m_addr_bits[level] << std::endl; } // Last (Column) address have the granularity of the prefetch size @@ -117,34 +128,47 @@ namespace Ramulator{ req.addr_vec.resize(m_num_levels, -1); Addr_t col1_bits = 12 - m_tx_offset - m_addr_bits[m_dram->m_levels("bankgroup")] - m_addr_bits[m_dram->m_levels("bank")] - m_addr_bits[m_dram->m_levels("channel")]; + std::cout << "The number of col1_bits [" << col1_bits << "]." << std::endl; Addr_t col2_bits = m_addr_bits[m_dram->m_levels("column")] - col1_bits; + std::cout << "The number of col2_bits [" << col2_bits << "]." << std::endl; Addr_t addr = req.addr >> m_tx_offset; + std::cout << "The address is: " << addr << std::endl; Addr_t xor_bits = req.addr >> 17; + std::cout << "The xor_bits being used: " << xor_bits << std::endl; //channel req.addr_vec[m_dram->m_levels("channel")] = slice_lower_bits(addr, m_addr_bits[m_dram->m_levels("channel")]); + std::cout << "The channel address is: " << req.addr_vec[m_dram->m_levels("channel")] << std::endl; //col 1 req.addr_vec[m_dram->m_levels("column")] = slice_lower_bits(addr, col1_bits); + std::cout << "The column address is: " << req.addr_vec[m_dram->m_levels("column")] << std::endl; //bank group and bank if(m_dram->m_organization.count.size() > 5) { int bankgroup_val = slice_lower_bits(addr, m_addr_bits[m_dram->m_levels("bankgroup")]) ^ xor_bits; req.addr_vec[m_dram->m_levels("bankgroup")] = slice_lower_bits(bankgroup_val, m_addr_bits[m_dram->m_levels("bankgroup")]); + std::cout << "After count > 5, bankgroup size is: " << req.addr_vec[m_dram->m_levels("bankgroup")] << std::endl; int bank_val = slice_lower_bits(addr, m_addr_bits[m_dram->m_levels("bank")]) ^ (xor_bits >> m_addr_bits[m_dram->m_levels("bankgroup")]); req.addr_vec[m_dram->m_levels("bank")] = slice_lower_bits(bank_val,m_addr_bits[m_dram->m_levels("bank")]); + std::cout << "After count > 5, bank size is: " << req.addr_vec[m_dram->m_levels("bank")] << std::endl; } else { int bank_val = slice_lower_bits(addr, m_addr_bits[m_dram->m_levels("bank")]) ^ xor_bits; req.addr_vec[m_dram->m_levels("bank")] = slice_lower_bits(bank_val, m_addr_bits[m_dram->m_levels("bank")]); + std::cout << "The bankgroup size is: " << req.addr_vec[m_dram->m_levels("bank")] << std::endl; } //col 2 req.addr_vec[m_dram->m_levels("column")] += slice_lower_bits(addr, col2_bits) << col1_bits; + std::cout << "The column bits is: " << req.addr_vec[m_dram->m_levels("column")] << std::endl; //rank req.addr_vec[m_dram->m_levels("rank")] = slice_lower_bits(addr, m_addr_bits[m_dram->m_levels("rank")]); + std::cout << "The rank bits is: " << req.addr_vec[m_dram->m_levels("rank")] << std::endl; //row req.addr_vec[m_dram->m_levels("row")] = slice_lower_bits(addr, m_addr_bits[m_dram->m_levels("row")]); + std::cout << "The row address is: " << req.addr_vec[m_dram->m_levels("row")] << std::endl; + std::cout << std::endl; } }; @@ -164,6 +188,12 @@ namespace Ramulator{ int m_col_bits_idx = -1; int m_row_bits_idx = -1; + // store the previous address vector + std::vector m_prev_addr_vec; + + // make a vector to store power consumption rates + std::vector power_consumption_rates; + void init() override { }; void setup(IFrontEnd* frontend, IMemorySystem* memory_system) { m_dram = memory_system->get_ifce(); @@ -199,6 +229,9 @@ namespace Ramulator{ //tot power std::vector tot_power; + + // initialize the previous address vector with the same size + m_prev_addr_vec.assign(m_num_levels, 0); } // initialize bit counter @@ -237,7 +270,7 @@ namespace Ramulator{ req.addr_vec[m_dram->m_levels("row")] = slice_lower_bits(addr, m_addr_bits[m_dram->m_levels("row")]); //std::cout << "This is the current address of the row: 0x" << std::hex << req.addr_vec[m_dram->m_levels("row")] << std::endl; - std::cout << std::endl; + //std::cout << std::endl; // initialize xor result to hold power consumption for each level Addr_t xor_result_power = 0; @@ -250,13 +283,11 @@ namespace Ramulator{ //retrieve the number of bits for the level currently in int num_bits = m_addr_bits[level]; - //std::cout << "The number of bits in this level is: " << num_bits << std::endl; //initialize rasl_addr to hold the randomized address bits for current level Addr_t rasl_addr = 0; // loop each bit of the address level currently in to extract - //std::cout << "This is the current address bit before RASL: 0x" << std::hex << req.addr_vec[level] << std::endl; for(int bit = 0;bit < num_bits; bit++){ //extract the bit at 'bit position, then shift addr right by that 'bit' // bitwise 1 is to isolate the single bit at that position @@ -269,21 +300,24 @@ namespace Ramulator{ rasl_addr |= (extracted_bit << new_position); } // power consumption result for each level - xor_result_power = req.addr_vec[level] ^ rasl_addr; + // uncomment this for analysis [NOT FOR LONGER RUNS] + //std::cout << "This is the previous address for level [" << level << "] : " << m_prev_addr_vec[level] << std::endl; + //std::cout << "This is the current address for level [" << level << "] : " << rasl_addr << std::endl; + xor_result_power = m_prev_addr_vec[level] ^ rasl_addr; + //std::cout << "This is the xor result of level [" << level << "] : " << xor_result_power << std::endl; + //std::cout << std::endl; // store xor_result into power_vector power_vector.push_back(xor_result_power); - - //std::cout << "This is the vector after RASL: " << std::hex << "0x" << rasl_addr << std::endl; //store the result of RASL to the corresponding level req.addr_vec[level] = rasl_addr; - //std::cout << "This is the vector mapped back: req.addr_vec[" << level << "] = 0x" << rasl_addr << ";" << std::endl; - //std::cout << "This is the power consumption at level " << level << ": 0x" << xor_result_power << std::endl; //prepare 'addr' for the next level by shifting out the bits we've just proccessed addr >> num_bits; - //std::cout << std::endl; + + // update m_prev_addr_vec with current RASL for next comparison + m_prev_addr_vec[level] = req.addr_vec[level]; // power consumption ----------------------------------------------------------------------------- int bit_one_counter = 0; @@ -293,7 +327,6 @@ namespace Ramulator{ // check if binary representation is correct std::string binary_str = binary_representation.to_string().substr(64-num_bits); - //std::cout << "Power consumption vector in binary: " << binary_str << std::endl; // count the total number of 1 bits for (char bit : binary_str){ @@ -305,19 +338,28 @@ namespace Ramulator{ bit_counter = bit_one_counter + bit_counter; num_bits_pc = num_bits + num_bits_pc; - //std::cout << "Bit 1 counts: " << bit_one_counter << std::endl; - //std::cout << "Total bits: " << num_bits << std::endl; - //std::cout << std::endl; } - //std::cout << std::endl; // Cast to float for proper decimal division double power_consumption_rate = (static_cast(bit_counter) / static_cast(num_bits_pc)) * 100; - //std::cout << "The total number of '1' is: " << std::dec << bit_counter << std::endl; - //std::cout << "The total number of bits is: " << std::dec << num_bits_pc << std::endl; - // I need to fix this and convert the hex values into decimal so i can get an accurate pc rate. - std::cout << "The power consumption rate: " << std::dec << power_consumption_rate << "%" << std::endl << std::endl; + + // uncomment this for analysis [NOT FOR LONGER RUNS] + //std::cout << "The power consumption rate: " << std::dec << power_consumption_rate << "%" << std::endl << std::endl; + power_consumption_rates.push_back(power_consumption_rate); + + writePowerConsumptionRatesToFile("power_consumption_rates_rasl.txt"); } - + void writePowerConsumptionRatesToFile(const std::string& filename) const { + std::ofstream outFile(filename); // Open the file for writing + + if (outFile.is_open()) { + for (size_t i = 0; i < power_consumption_rates.size(); ++i) { + outFile << "Rate for instruction " << i << ": " << power_consumption_rates[i] << "%" << std::endl; + } + outFile.close(); // Close the file + } else { + std::cerr << "Unable to open file " << filename << std::endl; + } + } }; } \ No newline at end of file From 8cd62d7b7d8fd9bf6fad58b8839e631aaf57c869 Mon Sep 17 00:00:00 2001 From: yanez2001 Date: Sun, 27 Oct 2024 12:23:49 -0500 Subject: [PATCH 09/10] added power consumption to PBPI --- hammer_test_0_0.hp | 2 +- hammer_test_0_0.hr | 2 +- hammer_test_0_0.log | 219 +- power_consumption_rates_PBPI.txt | 311 + power_consumption_rates_rasl.txt | 30153 +++++++++++++++- ramulator.yaml | 2 +- .../src/addr_mapper/impl/champsim_mappers.cpp | 103 +- 7 files changed, 30338 insertions(+), 454 deletions(-) create mode 100644 power_consumption_rates_PBPI.txt diff --git a/hammer_test_0_0.hp b/hammer_test_0_0.hp index 8841faa97f..3b3541da84 100644 --- a/hammer_test_0_0.hp +++ b/hammer_test_0_0.hp @@ -1 +1 @@ -0 138 +0 98 diff --git a/hammer_test_0_0.hr b/hammer_test_0_0.hr index ac8ebe5cca..e8a13a231e 100644 --- a/hammer_test_0_0.hr +++ b/hammer_test_0_0.hr @@ -1 +1 @@ -0 266 +0 222 diff --git a/hammer_test_0_0.log b/hammer_test_0_0.log index fce1e97e70..de481f138c 100644 --- a/hammer_test_0_0.log +++ b/hammer_test_0_0.log @@ -1,147 +1,112 @@ ROW-HAMMER STATISTICS #################################################################################################### -Row Hammers (READ INSTIGATED): 404 - Normal: 266 Prefetch: 138 +Row Hammers (READ INSTIGATED): 320 + Normal: 222 Prefetch: 98 Row Hammers (WRITE INSTIGATED): 0 Normal: 0 Prefetch: 0 Writeback: 0 Row Hammers (REFRESH INSTIGATED): 112 -Total Row Hammers: 516 +Total Row Hammers: 432 #################################################################################################### Channels: 1 Ranks: 1 Banks: 16 Rows: 32768 Columns: 1024 -Address Space Used: 0.0228882% +Address Space Used: 0.0162125% #################################################################################################### Refreshes: 1 Rows Per Refresh: 4 Refresh Cycles: 0 #################################################################################################### -Victim Reads: 0 +Victim Reads: 112 Victim Writes: 0 -Lost Hammers: 48 - To Refresh: 48 To Access: 0 +Lost Hammers: 222 + To Refresh: 48 To Access: 174 #################################################################################################### Stats by Row - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (2:4:0) Limit: Access Highest Single-Cycle Hammers(6253)/(Normal:Prefetch:Writeback): 6 (2:4:0) Lost Hammers/(Refresh:Access): 6 (0:6) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (2:4:0) Limit: Access Highest Single-Cycle Hammers(6253)/(Normal:Prefetch:Writeback): 6 (2:4:0) Lost Hammers/(Refresh:Access): 6 (0:6) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (4:2:0) Limit: Access Highest Single-Cycle Hammers(4379)/(Normal:Prefetch:Writeback): 6 (4:2:0) Lost Hammers/(Refresh:Access): 6 (0:6) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (3:3:0) Limit: Access Highest Single-Cycle Hammers(8509)/(Normal:Prefetch:Writeback): 6 (3:3:0) Lost Hammers/(Refresh:Access): 6 (0:6) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (3:3:0) Limit: Access Highest Single-Cycle Hammers(8509)/(Normal:Prefetch:Writeback): 6 (3:3:0) Lost Hammers/(Refresh:Access): 6 (0:6) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (4:2:0) Limit: Access Highest Single-Cycle Hammers(4379)/(Normal:Prefetch:Writeback): 6 (4:2:0) Lost Hammers/(Refresh:Access): 6 (0:6) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (3:2:0) Limit: Access Highest Single-Cycle Hammers(6833)/(Normal:Prefetch:Writeback): 5 (3:2:0) Lost Hammers/(Refresh:Access): 5 (0:5) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (3:2:0) Limit: Access Highest Single-Cycle Hammers(6833)/(Normal:Prefetch:Writeback): 5 (3:2:0) Lost Hammers/(Refresh:Access): 5 (0:5) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (3:2:0) Limit: Access Highest Single-Cycle Hammers(7721)/(Normal:Prefetch:Writeback): 5 (3:2:0) Lost Hammers/(Refresh:Access): 5 (0:5) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (3:2:0) Limit: Access Highest Single-Cycle Hammers(7721)/(Normal:Prefetch:Writeback): 5 (3:2:0) Lost Hammers/(Refresh:Access): 5 (0:5) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (3:2:0) Limit: Access Highest Single-Cycle Hammers(9532)/(Normal:Prefetch:Writeback): 5 (3:2:0) Lost Hammers/(Refresh:Access): 5 (0:5) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (3:2:0) Limit: Access Highest Single-Cycle Hammers(9532)/(Normal:Prefetch:Writeback): 5 (3:2:0) Lost Hammers/(Refresh:Access): 5 (0:5) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(7297)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 5 (0:5) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(7297)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 5 (0:5) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(7458)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 5 (0:5) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(7458)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 5 (0:5) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(8955)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 5 (0:5) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(8955)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 5 (0:5) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (3:2:0) Limit: Access Highest Single-Cycle Hammers(11635)/(Normal:Prefetch:Writeback): 5 (3:2:0) Lost Hammers/(Refresh:Access): 5 (0:5) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (3:2:0) Limit: Access Highest Single-Cycle Hammers(11635)/(Normal:Prefetch:Writeback): 5 (3:2:0) Lost Hammers/(Refresh:Access): 5 (0:5) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(6672)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 5 (0:5) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (3:2:0) Limit: Access Highest Single-Cycle Hammers(8100)/(Normal:Prefetch:Writeback): 5 (3:2:0) Lost Hammers/(Refresh:Access): 5 (0:5) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(6672)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 5 (0:5) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(8947)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 5 (0:5) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(8947)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 5 (0:5) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (3:2:0) Limit: Access Highest Single-Cycle Hammers(6330)/(Normal:Prefetch:Writeback): 5 (3:2:0) Lost Hammers/(Refresh:Access): 5 (0:5) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(9673)/(Normal:Prefetch:Writeback): 5 (5:0:0) Lost Hammers/(Refresh:Access): 5 (0:5) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(9673)/(Normal:Prefetch:Writeback): 5 (5:0:0) Lost Hammers/(Refresh:Access): 5 (0:5) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (3:2:0) Limit: Access Highest Single-Cycle Hammers(6330)/(Normal:Prefetch:Writeback): 5 (3:2:0) Lost Hammers/(Refresh:Access): 5 (0:5) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (3:2:0) Limit: Access Highest Single-Cycle Hammers(8100)/(Normal:Prefetch:Writeback): 5 (3:2:0) Lost Hammers/(Refresh:Access): 5 (0:5) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (3:1:0) Limit: Access Highest Single-Cycle Hammers(6249)/(Normal:Prefetch:Writeback): 4 (3:1:0) Lost Hammers/(Refresh:Access): 4 (0:4) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (3:1:0) Limit: Access Highest Single-Cycle Hammers(8466)/(Normal:Prefetch:Writeback): 4 (3:1:0) Lost Hammers/(Refresh:Access): 4 (0:4) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (2:2:0) Limit: Access Highest Single-Cycle Hammers(6338)/(Normal:Prefetch:Writeback): 4 (2:2:0) Lost Hammers/(Refresh:Access): 4 (0:4) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (2:2:0) Limit: Access Highest Single-Cycle Hammers(6338)/(Normal:Prefetch:Writeback): 4 (2:2:0) Lost Hammers/(Refresh:Access): 4 (0:4) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (2:2:0) Limit: Access Highest Single-Cycle Hammers(7799)/(Normal:Prefetch:Writeback): 4 (2:2:0) Lost Hammers/(Refresh:Access): 4 (0:4) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (2:2:0) Limit: Access Highest Single-Cycle Hammers(7799)/(Normal:Prefetch:Writeback): 4 (2:2:0) Lost Hammers/(Refresh:Access): 4 (0:4) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (3:1:0) Limit: Access Highest Single-Cycle Hammers(6249)/(Normal:Prefetch:Writeback): 4 (3:1:0) Lost Hammers/(Refresh:Access): 4 (0:4) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (3:1:0) Limit: Access Highest Single-Cycle Hammers(7132)/(Normal:Prefetch:Writeback): 4 (3:1:0) Lost Hammers/(Refresh:Access): 4 (0:4) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (3:1:0) Limit: Access Highest Single-Cycle Hammers(7132)/(Normal:Prefetch:Writeback): 4 (3:1:0) Lost Hammers/(Refresh:Access): 4 (0:4) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (2:2:0) Limit: Access Highest Single-Cycle Hammers(10369)/(Normal:Prefetch:Writeback): 4 (2:2:0) Lost Hammers/(Refresh:Access): 4 (0:4) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (2:2:0) Limit: Access Highest Single-Cycle Hammers(10369)/(Normal:Prefetch:Writeback): 4 (2:2:0) Lost Hammers/(Refresh:Access): 4 (0:4) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (2:2:0) Limit: Access Highest Single-Cycle Hammers(6326)/(Normal:Prefetch:Writeback): 4 (2:2:0) Lost Hammers/(Refresh:Access): 4 (0:4) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (4:0:0) Limit: Access Highest Single-Cycle Hammers(6487)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 4 (0:4) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (2:2:0) Limit: Access Highest Single-Cycle Hammers(5575)/(Normal:Prefetch:Writeback): 4 (2:2:0) Lost Hammers/(Refresh:Access): 4 (0:4) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (2:2:0) Limit: Access Highest Single-Cycle Hammers(5575)/(Normal:Prefetch:Writeback): 4 (2:2:0) Lost Hammers/(Refresh:Access): 4 (0:4) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (1:3:0) Limit: Access Highest Single-Cycle Hammers(4383)/(Normal:Prefetch:Writeback): 4 (1:3:0) Lost Hammers/(Refresh:Access): 4 (0:4) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (1:3:0) Limit: Access Highest Single-Cycle Hammers(4383)/(Normal:Prefetch:Writeback): 4 (1:3:0) Lost Hammers/(Refresh:Access): 4 (0:4) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (3:1:0) Limit: Access Highest Single-Cycle Hammers(8119)/(Normal:Prefetch:Writeback): 4 (3:1:0) Lost Hammers/(Refresh:Access): 4 (0:4) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (3:1:0) Limit: Access Highest Single-Cycle Hammers(8119)/(Normal:Prefetch:Writeback): 4 (3:1:0) Lost Hammers/(Refresh:Access): 4 (0:4) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (4:0:0) Limit: Access Highest Single-Cycle Hammers(9842)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 4 (0:4) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (4:0:0) Limit: Access Highest Single-Cycle Hammers(9842)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 4 (0:4) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (3:1:0) Limit: Access Highest Single-Cycle Hammers(8466)/(Normal:Prefetch:Writeback): 4 (3:1:0) Lost Hammers/(Refresh:Access): 4 (0:4) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (4:0:0) Limit: Access Highest Single-Cycle Hammers(6487)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 4 (0:4) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (2:2:0) Limit: Access Highest Single-Cycle Hammers(6326)/(Normal:Prefetch:Writeback): 4 (2:2:0) Lost Hammers/(Refresh:Access): 4 (0:4) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (4:0:0) Limit: Access Highest Single-Cycle Hammers(8348)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 4 (0:4) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (2:2:0) Limit: Access Highest Single-Cycle Hammers(9108)/(Normal:Prefetch:Writeback): 4 (2:2:0) Lost Hammers/(Refresh:Access): 4 (0:4) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (4:0:0) Limit: Access Highest Single-Cycle Hammers(8348)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 4 (0:4) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (2:2:0) Limit: Access Highest Single-Cycle Hammers(9108)/(Normal:Prefetch:Writeback): 4 (2:2:0) Lost Hammers/(Refresh:Access): 4 (0:4) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (2:1:0) Limit: Access Highest Single-Cycle Hammers(8869)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 3 (0:3) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (2:1:0) Limit: Access Highest Single-Cycle Hammers(8869)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 3 (0:3) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (2:1:0) Limit: Access Highest Single-Cycle Hammers(5712)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 3 (0:3) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (2:1:0) Limit: Access Highest Single-Cycle Hammers(5712)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 3 (0:3) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(9799)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 3 (0:3) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(9799)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 3 (0:3) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (2:1:0) Limit: Access Highest Single-Cycle Hammers(16109)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 3 (0:3) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (2:1:0) Limit: Access Highest Single-Cycle Hammers(16109)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 3 (0:3) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (1:2:0) Limit: Access Highest Single-Cycle Hammers(15347)/(Normal:Prefetch:Writeback): 3 (1:2:0) Lost Hammers/(Refresh:Access): 3 (0:3) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (1:2:0) Limit: Access Highest Single-Cycle Hammers(15347)/(Normal:Prefetch:Writeback): 3 (1:2:0) Lost Hammers/(Refresh:Access): 3 (0:3) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (0:3:0) Limit: Access Highest Single-Cycle Hammers(6334)/(Normal:Prefetch:Writeback): 3 (0:3:0) Lost Hammers/(Refresh:Access): 3 (0:3) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(16190)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 3 (0:3) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (1:2:0) Limit: Access Highest Single-Cycle Hammers(15343)/(Normal:Prefetch:Writeback): 3 (1:2:0) Lost Hammers/(Refresh:Access): 3 (0:3) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (1:2:0) Limit: Access Highest Single-Cycle Hammers(15343)/(Normal:Prefetch:Writeback): 3 (1:2:0) Lost Hammers/(Refresh:Access): 3 (0:3) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (2:1:0) Limit: Access Highest Single-Cycle Hammers(10540)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 3 (0:3) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (0:3:0) Limit: Access Highest Single-Cycle Hammers(6334)/(Normal:Prefetch:Writeback): 3 (0:3:0) Lost Hammers/(Refresh:Access): 3 (0:3) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (2:1:0) Limit: Access Highest Single-Cycle Hammers(10540)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 3 (0:3) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(6602)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 3 (0:3) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(6602)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 3 (0:3) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(7312)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 3 (0:3) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(16190)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 3 (0:3) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(7717)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 3 (0:3) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(7717)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 3 (0:3) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(7312)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 3 (0:3) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(15859)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(18765)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(18765)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(15859)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (0:2:0) Limit: Access Highest Single-Cycle Hammers(14785)/(Normal:Prefetch:Writeback): 2 (0:2:0) Lost Hammers/(Refresh:Access): 2 (0:2) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(12132)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(15867)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(16367)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(16367)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(15867)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(11466)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(11466)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(12132)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (2:0:0) Limit: Access Highest Single-Cycle Hammers(9681)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 2 (0:2) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (0:2:0) Limit: Access Highest Single-Cycle Hammers(14785)/(Normal:Prefetch:Writeback): 2 (0:2:0) Lost Hammers/(Refresh:Access): 2 (0:2) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (0:2:0) Limit: Access Highest Single-Cycle Hammers(15353)/(Normal:Prefetch:Writeback): 2 (0:2:0) Lost Hammers/(Refresh:Access): 2 (0:2) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (0:2:0) Limit: Access Highest Single-Cycle Hammers(15353)/(Normal:Prefetch:Writeback): 2 (0:2:0) Lost Hammers/(Refresh:Access): 2 (0:2) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (2:0:0) Limit: Access Highest Single-Cycle Hammers(6606)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 2 (0:2) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (2:0:0) Limit: Access Highest Single-Cycle Hammers(6606)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 2 (0:2) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(8708)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(8708)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (2:0:0) Limit: Access Highest Single-Cycle Hammers(6257)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 2 (0:2) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (2:0:0) Limit: Access Highest Single-Cycle Hammers(6257)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 2 (0:2) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(8505)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(8505)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (2:0:0) Limit: Access Highest Single-Cycle Hammers(9681)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 2 (0:2) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 1 (0:1:0) Limit: Access Highest Single-Cycle Hammers(18639)/(Normal:Prefetch:Writeback): 1 (0:1:0) Lost Hammers/(Refresh:Access): 1 (0:1) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 1 (0:1:0) Limit: Access Highest Single-Cycle Hammers(18639)/(Normal:Prefetch:Writeback): 1 (0:1:0) Lost Hammers/(Refresh:Access): 1 (0:1) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 1 (1:0:0) Limit: Access Highest Single-Cycle Hammers(18684)/(Normal:Prefetch:Writeback): 1 (1:0:0) Lost Hammers/(Refresh:Access): 1 (0:1) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 1 (1:0:0) Limit: Access Highest Single-Cycle Hammers(18684)/(Normal:Prefetch:Writeback): 1 (1:0:0) Lost Hammers/(Refresh:Access): 1 (0:1) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 1 (1:0:0) Limit: Access Highest Single-Cycle Hammers(18511)/(Normal:Prefetch:Writeback): 1 (1:0:0) Lost Hammers/(Refresh:Access): 1 (0:1) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 1 (1:0:0) Limit: Access Highest Single-Cycle Hammers(18511)/(Normal:Prefetch:Writeback): 1 (1:0:0) Lost Hammers/(Refresh:Access): 1 (0:1) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 1 (1:0:0) Limit: Access Highest Single-Cycle Hammers(18515)/(Normal:Prefetch:Writeback): 1 (1:0:0) Lost Hammers/(Refresh:Access): 1 (0:1) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 1 (1:0:0) Limit: Access Highest Single-Cycle Hammers(18515)/(Normal:Prefetch:Writeback): 1 (1:0:0) Lost Hammers/(Refresh:Access): 1 (0:1) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 1 (1:0:0) Limit: Access Highest Single-Cycle Hammers(8482)/(Normal:Prefetch:Writeback): 1 (1:0:0) Lost Hammers/(Refresh:Access): 1 (0:1) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 1 (1:0:0) Limit: Access Highest Single-Cycle Hammers(8482)/(Normal:Prefetch:Writeback): 1 (1:0:0) Lost Hammers/(Refresh:Access): 1 (0:1) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 1 (1:0:0) Limit: Access Highest Single-Cycle Hammers(18600)/(Normal:Prefetch:Writeback): 1 (1:0:0) Lost Hammers/(Refresh:Access): 1 (0:1) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 1 (1:0:0) Limit: Access Highest Single-Cycle Hammers(18600)/(Normal:Prefetch:Writeback): 1 (1:0:0) Lost Hammers/(Refresh:Access): 1 (0:1) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x7 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (5:1:0) Limit: Access Highest Single-Cycle Hammers(8246)/(Normal:Prefetch:Writeback): 6 (5:1:0) Lost Hammers/(Refresh:Access): 6 (0:6) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x9 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (6:1:0) Limit: Access Highest Single-Cycle Hammers(10994)/(Normal:Prefetch:Writeback): 6 (5:1:0) Lost Hammers/(Refresh:Access): 7 (0:7) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xb Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(7817)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x7 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(7377)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x9 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (3:2:0) Limit: Access Highest Single-Cycle Hammers(6314)/(Normal:Prefetch:Writeback): 5 (3:2:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xb Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (3:1:0) Limit: Access Highest Single-Cycle Hammers(10229)/(Normal:Prefetch:Writeback): 4 (3:1:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x9 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (5:4:0) Limit: Access Highest Single-Cycle Hammers(13133)/(Normal:Prefetch:Writeback): 4 (1:3:0) Lost Hammers/(Refresh:Access): 9 (0:9) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xa Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (6:2:0) Limit: Access Highest Single-Cycle Hammers(15079)/(Normal:Prefetch:Writeback): 4 (3:1:0) Lost Hammers/(Refresh:Access): 8 (0:8) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x9 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:2:0) Limit: Access Highest Single-Cycle Hammers(8638)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 11 (0:11) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xb Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (4:0:0) Limit: Access Highest Single-Cycle Hammers(9883)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x7 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (3:1:0) Limit: Access Highest Single-Cycle Hammers(6310)/(Normal:Prefetch:Writeback): 4 (3:1:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x7 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (4:0:0) Limit: Access Highest Single-Cycle Hammers(9548)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x8 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (3:1:0) Limit: Access Highest Single-Cycle Hammers(7139)/(Normal:Prefetch:Writeback): 4 (3:1:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xb Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (1:3:0) Limit: Access Highest Single-Cycle Hammers(9629)/(Normal:Prefetch:Writeback): 4 (1:3:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xb Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (3:1:0) Limit: Access Highest Single-Cycle Hammers(8407)/(Normal:Prefetch:Writeback): 4 (3:1:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x9 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (4:4:0) Limit: Access Highest Single-Cycle Hammers(9629)/(Normal:Prefetch:Writeback): 4 (2:2:0) Lost Hammers/(Refresh:Access): 8 (0:8) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x7 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (3:1:0) Limit: Access Highest Single-Cycle Hammers(11887)/(Normal:Prefetch:Writeback): 4 (3:1:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xb Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (1:3:0) Limit: Access Highest Single-Cycle Hammers(9866)/(Normal:Prefetch:Writeback): 3 (1:2:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x7 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (2:1:0) Limit: Access Highest Single-Cycle Hammers(11259)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x8 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (3:1:0) Limit: Access Highest Single-Cycle Hammers(7659)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xa Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (5:1:0) Limit: Access Highest Single-Cycle Hammers(15072)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 6 (0:6) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xc Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (1:2:0) Limit: Access Highest Single-Cycle Hammers(14935)/(Normal:Prefetch:Writeback): 3 (1:2:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x7 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (1:2:0) Limit: Access Highest Single-Cycle Hammers(6314)/(Normal:Prefetch:Writeback): 3 (1:2:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x9 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(12270)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xb Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (2:1:0) Limit: Access Highest Single-Cycle Hammers(9446)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x7 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (1:2:0) Limit: Access Highest Single-Cycle Hammers(6698)/(Normal:Prefetch:Writeback): 3 (1:2:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x7 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (2:1:0) Limit: Access Highest Single-Cycle Hammers(9948)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x9 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (3:2:0) Limit: Access Highest Single-Cycle Hammers(11759)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xb Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (2:1:0) Limit: Access Highest Single-Cycle Hammers(9191)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x9 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (4:2:0) Limit: Access Highest Single-Cycle Hammers(8407)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 6 (0:6) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x7 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (2:1:0) Limit: Access Highest Single-Cycle Hammers(4379)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xb Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(7538)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x7 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (1:2:0) Limit: Access Highest Single-Cycle Hammers(5575)/(Normal:Prefetch:Writeback): 3 (1:2:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xb Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(8151)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xb Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (2:1:0) Limit: Access Highest Single-Cycle Hammers(8870)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xa Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (3:2:0) Limit: Access Highest Single-Cycle Hammers(15763)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xa Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (4:2:0) Limit: Access Highest Single-Cycle Hammers(15223)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 6 (0:6) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x9 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(12168)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x9 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (3:3:0) Limit: Access Highest Single-Cycle Hammers(14018)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 6 (0:6) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xc Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(18737)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xa Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (1:4:0) Limit: Access Highest Single-Cycle Hammers(12360)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x9 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (6:1:0) Limit: Access Highest Single-Cycle Hammers(9191)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 7 (0:7) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x9 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (3:3:0) Limit: Access Highest Single-Cycle Hammers(16021)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 6 (0:6) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xc Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (2:0:0) Limit: Access Highest Single-Cycle Hammers(15763)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xb Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (0:2:0) Limit: Access Highest Single-Cycle Hammers(11666)/(Normal:Prefetch:Writeback): 2 (0:2:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x8 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(8574)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x8 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (1:2:0) Limit: Access Highest Single-Cycle Hammers(6604)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x7 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(6328)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xa Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (2:2:0) Limit: Access Highest Single-Cycle Hammers(15227)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xa Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(9940)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x8 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (1:2:0) Limit: Access Highest Single-Cycle Hammers(7056)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xb Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (2:0:0) Limit: Access Highest Single-Cycle Hammers(7821)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xb Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(11759)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xa Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (3:1:0) Limit: Access Highest Single-Cycle Hammers(9697)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xc Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(18429)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x7 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (2:0:0) Limit: Access Highest Single-Cycle Hammers(7990)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x8 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (2:0:0) Limit: Access Highest Single-Cycle Hammers(8722)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xb Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(11340)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xa Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (4:0:0) Limit: Access Highest Single-Cycle Hammers(5712)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x9 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (2:3:0) Limit: Access Highest Single-Cycle Hammers(14547)/(Normal:Prefetch:Writeback): 2 (0:2:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x8 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (4:0:0) Limit: Access Highest Single-Cycle Hammers(7676)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xa Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (3:1:0) Limit: Access Highest Single-Cycle Hammers(18737)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x9 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(8485)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x9 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(11501)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xa Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(18425)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x7 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(8512)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xc Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (2:0:0) Limit: Access Highest Single-Cycle Hammers(15844)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xb Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(8485)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x8 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (2:1:0) Limit: Access Highest Single-Cycle Hammers(7299)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x9 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (5:1:0) Limit: Access Highest Single-Cycle Hammers(10963)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 6 (0:6) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x8 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (3:1:0) Limit: Access Highest Single-Cycle Hammers(14717)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x8 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (2:0:0) Limit: Access Highest Single-Cycle Hammers(6469)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xc Lifetime Hammers/(Normal:Prefetch:Writeback): 1 (1:0:0) Limit: Access Highest Single-Cycle Hammers(15513)/(Normal:Prefetch:Writeback): 1 (1:0:0) Lost Hammers/(Refresh:Access): 1 (0:1) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x8 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (2:1:0) Limit: Access Highest Single-Cycle Hammers(9697)/(Normal:Prefetch:Writeback): 1 (1:0:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xa Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (2:1:0) Limit: Access Highest Single-Cycle Hammers(7299)/(Normal:Prefetch:Writeback): 1 (0:1:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x8 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (1:4:0) Limit: Access Highest Single-Cycle Hammers(7983)/(Normal:Prefetch:Writeback): 1 (0:1:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xc Lifetime Hammers/(Normal:Prefetch:Writeback): 1 (1:0:0) Limit: Access Highest Single-Cycle Hammers(18165)/(Normal:Prefetch:Writeback): 1 (1:0:0) Lost Hammers/(Refresh:Access): 1 (0:1) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x8 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (2:0:0) Limit: Access Highest Single-Cycle Hammers(6249)/(Normal:Prefetch:Writeback): 1 (1:0:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xa Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (2:0:0) Limit: Access Highest Single-Cycle Hammers(6249)/(Normal:Prefetch:Writeback): 1 (1:0:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x8 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(8566)/(Normal:Prefetch:Writeback): 1 (1:0:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xc Lifetime Hammers/(Normal:Prefetch:Writeback): 1 (1:0:0) Limit: Access Highest Single-Cycle Hammers(18425)/(Normal:Prefetch:Writeback): 1 (1:0:0) Lost Hammers/(Refresh:Access): 1 (0:1) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x7 Lifetime Hammers/(Normal:Prefetch:Writeback): 1 (1:0:0) Limit: Access Highest Single-Cycle Hammers(17846)/(Normal:Prefetch:Writeback): 1 (1:0:0) Lost Hammers/(Refresh:Access): 1 (0:1) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xc Lifetime Hammers/(Normal:Prefetch:Writeback): 1 (1:0:0) Limit: Access Highest Single-Cycle Hammers(18258)/(Normal:Prefetch:Writeback): 1 (1:0:0) Lost Hammers/(Refresh:Access): 1 (0:1) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xa Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (2:0:0) Limit: Access Highest Single-Cycle Hammers(8722)/(Normal:Prefetch:Writeback): 1 (1:0:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xa Lifetime Hammers/(Normal:Prefetch:Writeback): 1 (1:0:0) Limit: Access Highest Single-Cycle Hammers(18258)/(Normal:Prefetch:Writeback): 1 (1:0:0) Lost Hammers/(Refresh:Access): 1 (0:1) #################################################################################################### diff --git a/power_consumption_rates_PBPI.txt b/power_consumption_rates_PBPI.txt new file mode 100644 index 0000000000..dc9a1994e7 --- /dev/null +++ b/power_consumption_rates_PBPI.txt @@ -0,0 +1,311 @@ +Rate for instruction 0: 83.3333% +Rate for instruction 1: 50% +Rate for instruction 2: 44.4444% +Rate for instruction 3: 54.1667% +Rate for instruction 4: 56.6667% +Rate for instruction 5: 50% +Rate for instruction 6: 47.619% +Rate for instruction 7: 50% +Rate for instruction 8: 48.1481% +Rate for instruction 9: 45% +Rate for instruction 10: 48.4848% +Rate for instruction 11: 48.6111% +Rate for instruction 12: 47.4359% +Rate for instruction 13: 45.2381% +Rate for instruction 14: 46.6667% +Rate for instruction 15: 46.875% +Rate for instruction 16: 48.0392% +Rate for instruction 17: 49.0741% +Rate for instruction 18: 51.7544% +Rate for instruction 19: 54.1667% +Rate for instruction 20: 55.5556% +Rate for instruction 21: 53.7879% +Rate for instruction 22: 53.6232% +Rate for instruction 23: 56.25% +Rate for instruction 24: 57.3333% +Rate for instruction 25: 58.9744% +Rate for instruction 26: 59.2593% +Rate for instruction 27: 59.5238% +Rate for instruction 28: 59.1954% +Rate for instruction 29: 60.5556% +Rate for instruction 30: 61.2903% +Rate for instruction 31: 63.0208% +Rate for instruction 32: 63.6364% +Rate for instruction 33: 63.7255% +Rate for instruction 34: 64.2857% +Rate for instruction 35: 63.8889% +Rate for instruction 36: 64.4144% +Rate for instruction 37: 63.5965% +Rate for instruction 38: 63.6752% +Rate for instruction 39: 64.1667% +Rate for instruction 40: 63.0081% +Rate for instruction 41: 63.8889% +Rate for instruction 42: 63.1783% +Rate for instruction 43: 62.1212% +Rate for instruction 44: 61.4815% +Rate for instruction 45: 61.5942% +Rate for instruction 46: 62.0567% +Rate for instruction 47: 61.4583% +Rate for instruction 48: 61.2245% +Rate for instruction 49: 61.3333% +Rate for instruction 50: 61.7647% +Rate for instruction 51: 61.2179% +Rate for instruction 52: 60.6918% +Rate for instruction 53: 60.4938% +Rate for instruction 54: 60.6061% +Rate for instruction 55: 60.7143% +Rate for instruction 56: 60.8187% +Rate for instruction 57: 60.9195% +Rate for instruction 58: 60.7345% +Rate for instruction 59: 61.1111% +Rate for instruction 60: 61.2022% +Rate for instruction 61: 61.2903% +Rate for instruction 62: 61.6402% +Rate for instruction 63: 61.9792% +Rate for instruction 64: 61.5385% +Rate for instruction 65: 60.8586% +Rate for instruction 66: 60.9453% +Rate for instruction 67: 61.7647% +Rate for instruction 68: 62.0773% +Rate for instruction 69: 62.619% +Rate for instruction 70: 63.1455% +Rate for instruction 71: 62.7315% +Rate for instruction 72: 63.0137% +Rate for instruction 73: 62.6126% +Rate for instruction 74: 62.8889% +Rate for instruction 75: 62.5% +Rate for instruction 76: 62.7706% +Rate for instruction 77: 62.8205% +Rate for instruction 78: 62.6582% +Rate for instruction 79: 62.9167% +Rate for instruction 80: 62.7572% +Rate for instruction 81: 63.4146% +Rate for instruction 82: 63.253% +Rate for instruction 83: 63.2937% +Rate for instruction 84: 63.1373% +Rate for instruction 85: 62.9845% +Rate for instruction 86: 62.8352% +Rate for instruction 87: 62.5% +Rate for instruction 88: 62.5468% +Rate for instruction 89: 62.037% +Rate for instruction 90: 61.9048% +Rate for instruction 91: 61.9565% +Rate for instruction 92: 61.4695% +Rate for instruction 93: 61.5248% +Rate for instruction 94: 61.5789% +Rate for instruction 95: 61.8056% +Rate for instruction 96: 61.6838% +Rate for instruction 97: 61.7347% +Rate for instruction 98: 61.6162% +Rate for instruction 99: 61.6667% +Rate for instruction 100: 61.2211% +Rate for instruction 101: 61.2745% +Rate for instruction 102: 61.4887% +Rate for instruction 103: 61.2179% +Rate for instruction 104: 60.9524% +Rate for instruction 105: 61.0063% +Rate for instruction 106: 61.215% +Rate for instruction 107: 61.4198% +Rate for instruction 108: 61.7737% +Rate for instruction 109: 61.9697% +Rate for instruction 110: 61.8619% +Rate for instruction 111: 61.6071% +Rate for instruction 112: 61.3569% +Rate for instruction 113: 61.5497% +Rate for instruction 114: 61.5942% +Rate for instruction 115: 61.7816% +Rate for instruction 116: 61.6809% +Rate for instruction 117: 61.7232% +Rate for instruction 118: 61.6246% +Rate for instruction 119: 61.3889% +Rate for instruction 120: 61.2948% +Rate for instruction 121: 61.0656% +Rate for instruction 122: 60.7046% +Rate for instruction 123: 60.3495% +Rate for instruction 124: 60.1333% +Rate for instruction 125: 59.9206% +Rate for instruction 126: 59.5801% +Rate for instruction 127: 59.6354% +Rate for instruction 128: 59.6899% +Rate for instruction 129: 60% +Rate for instruction 130: 59.7964% +Rate for instruction 131: 59.596% +Rate for instruction 132: 59.6491% +Rate for instruction 133: 59.4527% +Rate for instruction 134: 59.1358% +Rate for instruction 135: 59.3137% +Rate for instruction 136: 59.6107% +Rate for instruction 137: 59.5411% +Rate for instruction 138: 59.7122% +Rate for instruction 139: 59.7619% +Rate for instruction 140: 59.8109% +Rate for instruction 141: 59.6244% +Rate for instruction 142: 59.6737% +Rate for instruction 143: 59.7222% +Rate for instruction 144: 59.4253% +Rate for instruction 145: 59.2466% +Rate for instruction 146: 59.2971% +Rate for instruction 147: 59.1216% +Rate for instruction 148: 59.2841% +Rate for instruction 149: 59.4444% +Rate for instruction 150: 59.713% +Rate for instruction 151: 59.5395% +Rate for instruction 152: 59.8039% +Rate for instruction 153: 59.632% +Rate for instruction 154: 59.3548% +Rate for instruction 155: 59.188% +Rate for instruction 156: 59.1295% +Rate for instruction 157: 59.0717% +Rate for instruction 158: 58.9099% +Rate for instruction 159: 58.6458% +Rate for instruction 160: 58.4886% +Rate for instruction 161: 58.2305% +Rate for instruction 162: 58.2822% +Rate for instruction 163: 58.435% +Rate for instruction 164: 58.6869% +Rate for instruction 165: 58.8353% +Rate for instruction 166: 58.6826% +Rate for instruction 167: 58.7302% +Rate for instruction 168: 58.4813% +Rate for instruction 169: 58.3333% +Rate for instruction 170: 58.0897% +Rate for instruction 171: 57.9457% +Rate for instruction 172: 57.7071% +Rate for instruction 173: 57.6628% +Rate for instruction 174: 57.7143% +Rate for instruction 175: 57.7652% +Rate for instruction 176: 57.7213% +Rate for instruction 177: 57.5843% +Rate for instruction 178: 57.3557% +Rate for instruction 179: 57.2222% +Rate for instruction 180: 57.0902% +Rate for instruction 181: 56.9597% +Rate for instruction 182: 56.9217% +Rate for instruction 183: 56.7935% +Rate for instruction 184: 56.5766% +Rate for instruction 185: 56.5412% +Rate for instruction 186: 56.4171% +Rate for instruction 187: 56.2057% +Rate for instruction 188: 56.0847% +Rate for instruction 189: 55.8772% +Rate for instruction 190: 55.8464% +Rate for instruction 191: 55.6424% +Rate for instruction 192: 55.5268% +Rate for instruction 193: 55.3265% +Rate for instruction 194: 55.1282% +Rate for instruction 195: 55.017% +Rate for instruction 196: 54.8223% +Rate for instruction 197: 54.7138% +Rate for instruction 198: 54.6064% +Rate for instruction 199: 54.5% +Rate for instruction 200: 54.3947% +Rate for instruction 201: 54.2079% +Rate for instruction 202: 54.3514% +Rate for instruction 203: 54.2484% +Rate for instruction 204: 54.065% +Rate for instruction 205: 53.8835% +Rate for instruction 206: 53.7842% +Rate for instruction 207: 53.9263% +Rate for instruction 208: 53.8278% +Rate for instruction 209: 53.7302% +Rate for instruction 210: 53.6335% +Rate for instruction 211: 53.4591% +Rate for instruction 212: 53.6776% +Rate for instruction 213: 53.5047% +Rate for instruction 214: 53.3333% +Rate for instruction 215: 53.5494% +Rate for instruction 216: 53.4562% +Rate for instruction 217: 53.2875% +Rate for instruction 218: 53.1963% +Rate for instruction 219: 53.1061% +Rate for instruction 220: 53.0166% +Rate for instruction 221: 52.8529% +Rate for instruction 222: 52.9148% +Rate for instruction 223: 52.753% +Rate for instruction 224: 52.8148% +Rate for instruction 225: 52.7286% +Rate for instruction 226: 52.7166% +Rate for instruction 227: 52.7047% +Rate for instruction 228: 52.6201% +Rate for instruction 229: 52.4638% +Rate for instruction 230: 52.3088% +Rate for instruction 231: 52.4425% +Rate for instruction 232: 52.5751% +Rate for instruction 233: 52.4929% +Rate for instruction 234: 52.695% +Rate for instruction 235: 52.613% +Rate for instruction 236: 52.6723% +Rate for instruction 237: 52.7311% +Rate for instruction 238: 52.7894% +Rate for instruction 239: 52.9861% +Rate for instruction 240: 52.9046% +Rate for instruction 241: 52.8237% +Rate for instruction 242: 52.6749% +Rate for instruction 243: 52.7322% +Rate for instruction 244: 52.6531% +Rate for instruction 245: 52.5068% +Rate for instruction 246: 52.4291% +Rate for instruction 247: 52.3522% +Rate for instruction 248: 52.2088% +Rate for instruction 249: 52.4% +Rate for instruction 250: 52.5232% +Rate for instruction 251: 52.5132% +Rate for instruction 252: 52.4374% +Rate for instruction 253: 52.3622% +Rate for instruction 254: 52.549% +Rate for instruction 255: 52.5391% +Rate for instruction 256: 52.3995% +Rate for instruction 257: 52.5194% +Rate for instruction 258: 52.4453% +Rate for instruction 259: 52.3718% +Rate for instruction 260: 52.4904% +Rate for instruction 261: 52.4173% +Rate for instruction 262: 52.2814% +Rate for instruction 263: 52.399% +Rate for instruction 264: 52.3899% +Rate for instruction 265: 52.4436% +Rate for instruction 266: 52.5593% +Rate for instruction 267: 52.6741% +Rate for instruction 268: 52.6022% +Rate for instruction 269: 52.4691% +Rate for instruction 270: 52.3985% +Rate for instruction 271: 52.3284% +Rate for instruction 272: 52.1978% +Rate for instruction 273: 52.3114% +Rate for instruction 274: 52.4848% +Rate for instruction 275: 52.4155% +Rate for instruction 276: 52.5872% +Rate for instruction 277: 52.518% +Rate for instruction 278: 52.6284% +Rate for instruction 279: 52.5% +Rate for instruction 280: 52.4318% +Rate for instruction 281: 52.305% +Rate for instruction 282: 52.4735% +Rate for instruction 283: 52.4061% +Rate for instruction 284: 52.5146% +Rate for instruction 285: 52.6224% +Rate for instruction 286: 52.4971% +Rate for instruction 287: 52.4884% +Rate for instruction 288: 52.4221% +Rate for instruction 289: 52.4138% +Rate for instruction 290: 52.4628% +Rate for instruction 291: 52.5114% +Rate for instruction 292: 52.446% +Rate for instruction 293: 52.381% +Rate for instruction 294: 52.5424% +Rate for instruction 295: 52.5901% +Rate for instruction 296: 52.5253% +Rate for instruction 297: 52.4609% +Rate for instruction 298: 52.3411% +Rate for instruction 299: 52.5% +Rate for instruction 300: 52.4363% +Rate for instruction 301: 52.4834% +Rate for instruction 302: 52.5853% +Rate for instruction 303: 52.5219% +Rate for instruction 304: 52.623% +Rate for instruction 305: 52.6144% +Rate for instruction 306: 52.5516% +Rate for instruction 307: 52.7056% +Rate for instruction 308: 52.6969% +Rate for instruction 309: 52.6344% +Rate for instruction 310: 52.6795% diff --git a/power_consumption_rates_rasl.txt b/power_consumption_rates_rasl.txt index 138aee868a..3623d0de54 100644 --- a/power_consumption_rates_rasl.txt +++ b/power_consumption_rates_rasl.txt @@ -1,311 +1,29846 @@ -Rate for instruction 0: 26.9231% -Rate for instruction 1: 15.3846% -Rate for instruction 2: 17.9487% -Rate for instruction 3: 21.1538% -Rate for instruction 4: 20.7692% -Rate for instruction 5: 17.9487% -Rate for instruction 6: 17.033% -Rate for instruction 7: 17.3077% -Rate for instruction 8: 16.2393% -Rate for instruction 9: 15% -Rate for instruction 10: 15.7343% -Rate for instruction 11: 15.3846% -Rate for instruction 12: 15.0888% -Rate for instruction 13: 14.2857% -Rate for instruction 14: 15.3846% -Rate for instruction 15: 15.1442% -Rate for instruction 16: 15.3846% -Rate for instruction 17: 15.3846% -Rate for instruction 18: 15.7895% -Rate for instruction 19: 16.5385% -Rate for instruction 20: 16.8498% -Rate for instruction 21: 16.2587% +Rate for instruction 0: 34.6154% +Rate for instruction 1: 21.1538% +Rate for instruction 2: 15.3846% +Rate for instruction 3: 13.4615% +Rate for instruction 4: 12.3077% +Rate for instruction 5: 11.5385% +Rate for instruction 6: 10.4396% +Rate for instruction 7: 9.61538% +Rate for instruction 8: 9.82906% +Rate for instruction 9: 10.7692% +Rate for instruction 10: 10.8392% +Rate for instruction 11: 12.8205% +Rate for instruction 12: 12.1302% +Rate for instruction 13: 11.8132% +Rate for instruction 14: 13.0769% +Rate for instruction 15: 12.7404% +Rate for instruction 16: 13.5747% +Rate for instruction 17: 14.9573% +Rate for instruction 18: 14.9798% +Rate for instruction 19: 15.1923% +Rate for instruction 20: 15.0183% +Rate for instruction 21: 15.7343% Rate for instruction 22: 16.2207% -Rate for instruction 23: 16.8269% -Rate for instruction 24: 17.0769% -Rate for instruction 25: 17.3077% -Rate for instruction 26: 17.2365% -Rate for instruction 27: 17.3077% -Rate for instruction 28: 17.1088% -Rate for instruction 29: 17.5641% -Rate for instruction 30: 17.7419% -Rate for instruction 31: 18.2692% -Rate for instruction 32: 18.7646% -Rate for instruction 33: 18.8914% -Rate for instruction 34: 19.2308% -Rate for instruction 35: 19.0171% -Rate for instruction 36: 19.2308% -Rate for instruction 37: 19.0283% -Rate for instruction 38: 18.9349% -Rate for instruction 39: 18.9423% -Rate for instruction 40: 18.5741% -Rate for instruction 41: 19.1392% -Rate for instruction 42: 18.873% -Rate for instruction 43: 18.5315% -Rate for instruction 44: 18.4615% -Rate for instruction 45: 18.3946% -Rate for instruction 46: 18.6579% -Rate for instruction 47: 18.5897% -Rate for instruction 48: 18.6813% -Rate for instruction 49: 18.6923% -Rate for instruction 50: 18.7783% -Rate for instruction 51: 18.6391% -Rate for instruction 52: 18.5051% -Rate for instruction 53: 18.5185% -Rate for instruction 54: 18.5315% -Rate for instruction 55: 18.6813% -Rate for instruction 56: 18.691% -Rate for instruction 57: 18.7666% -Rate for instruction 58: 18.7093% -Rate for instruction 59: 18.7821% -Rate for instruction 60: 18.7894% -Rate for instruction 61: 18.7965% -Rate for instruction 62: 18.8645% -Rate for instruction 63: 18.9904% -Rate for instruction 64: 18.9349% -Rate for instruction 65: 18.7063% -Rate for instruction 66: 18.9437% -Rate for instruction 67: 19.0611% -Rate for instruction 68: 19.1193% -Rate for instruction 69: 19.3407% -Rate for instruction 70: 19.5016% -Rate for instruction 71: 19.3376% -Rate for instruction 72: 19.4415% -Rate for instruction 73: 19.3867% -Rate for instruction 74: 19.4359% -Rate for instruction 75: 19.332% -Rate for instruction 76: 19.3806% -Rate for instruction 77: 19.3787% -Rate for instruction 78: 19.4742% -Rate for instruction 79: 19.5192% -Rate for instruction 80: 19.4682% -Rate for instruction 81: 19.7467% -Rate for instruction 82: 19.8332% -Rate for instruction 83: 19.8718% -Rate for instruction 84: 20.0452% -Rate for instruction 85: 20.0805% -Rate for instruction 86: 20.0265% -Rate for instruction 87: 19.9301% -Rate for instruction 88: 20.0519% -Rate for instruction 89: 19.9145% -Rate for instruction 90: 19.8648% -Rate for instruction 91: 19.8161% -Rate for instruction 92: 19.6443% -Rate for instruction 93: 19.7627% -Rate for instruction 94: 19.7976% -Rate for instruction 95: 19.8718% -Rate for instruction 96: 20.1031% -Rate for instruction 97: 20.1334% -Rate for instruction 98: 20.0855% -Rate for instruction 99: 20.1538% -Rate for instruction 100: 19.9924% -Rate for instruction 101: 20.0226% -Rate for instruction 102: 20.0523% -Rate for instruction 103: 20.0074% -Rate for instruction 104: 19.9267% -Rate for instruction 105: 19.9202% -Rate for instruction 106: 20.0575% -Rate for instruction 107: 20.1211% -Rate for instruction 108: 20.1482% -Rate for instruction 109: 20.1748% -Rate for instruction 110: 20.097% -Rate for instruction 111: 20.1236% -Rate for instruction 112: 20.0136% -Rate for instruction 113: 20.0742% -Rate for instruction 114: 20.1338% -Rate for instruction 115: 20.1923% -Rate for instruction 116: 20.1183% -Rate for instruction 117: 20.176% -Rate for instruction 118: 20.2004% -Rate for instruction 119: 20.1282% -Rate for instruction 120: 20.1208% -Rate for instruction 121: 20.1135% -Rate for instruction 122: 19.9812% -Rate for instruction 123: 19.8511% -Rate for instruction 124: 19.7846% -Rate for instruction 125: 19.6886% -Rate for instruction 126: 19.5639% -Rate for instruction 127: 19.6214% -Rate for instruction 128: 19.6482% -Rate for instruction 129: 19.7041% -Rate for instruction 130: 19.6124% -Rate for instruction 131: 19.5513% -Rate for instruction 132: 19.5778% -Rate for instruction 133: 19.4891% -Rate for instruction 134: 19.3732% -Rate for instruction 135: 19.4005% -Rate for instruction 136: 19.4554% -Rate for instruction 137: 19.4537% -Rate for instruction 138: 19.4798% -Rate for instruction 139: 19.533% -Rate for instruction 140: 19.5581% -Rate for instruction 141: 19.5016% -Rate for instruction 142: 19.5535% -Rate for instruction 143: 19.5246% -Rate for instruction 144: 19.4164% -Rate for instruction 145: 19.3361% -Rate for instruction 146: 19.3354% -Rate for instruction 147: 19.2827% -Rate for instruction 148: 19.334% -Rate for instruction 149: 19.3846% -Rate for instruction 150: 19.46% -Rate for instruction 151: 19.3826% -Rate for instruction 152: 19.5073% -Rate for instruction 153: 19.4555% -Rate for instruction 154: 19.3548% -Rate for instruction 155: 19.2801% -Rate for instruction 156: 19.2798% -Rate for instruction 157: 19.3038% -Rate for instruction 158: 19.3033% -Rate for instruction 159: 19.2067% -Rate for instruction 160: 19.1352% -Rate for instruction 161: 19.0408% -Rate for instruction 162: 19.0656% -Rate for instruction 163: 19.0901% -Rate for instruction 164: 19.2308% -Rate for instruction 165: 19.2771% -Rate for instruction 166: 19.2308% -Rate for instruction 167: 19.2537% -Rate for instruction 168: 19.1625% -Rate for instruction 169: 19.095% -Rate for instruction 170: 19.0058% -Rate for instruction 171: 18.9624% -Rate for instruction 172: 18.8751% -Rate for instruction 173: 18.8771% -Rate for instruction 174: 18.8571% -Rate for instruction 175: 18.903% -Rate for instruction 176: 18.8614% -Rate for instruction 177: 18.7986% -Rate for instruction 178: 18.7151% -Rate for instruction 179: 18.6752% -Rate for instruction 180: 18.6145% -Rate for instruction 181: 18.5545% -Rate for instruction 182: 18.5792% -Rate for instruction 183: 18.541% -Rate for instruction 184: 18.4615% -Rate for instruction 185: 18.4657% -Rate for instruction 186: 18.4286% -Rate for instruction 187: 18.3511% -Rate for instruction 188: 18.2947% -Rate for instruction 189: 18.2186% -Rate for instruction 190: 18.2441% -Rate for instruction 191: 18.1691% -Rate for instruction 192: 18.1347% -Rate for instruction 193: 18.0611% -Rate for instruction 194: 18.0079% -Rate for instruction 195: 17.9749% -Rate for instruction 196: 17.9227% -Rate for instruction 197: 17.9099% -Rate for instruction 198: 17.8779% -Rate for instruction 199: 17.8269% -Rate for instruction 200: 17.7765% -Rate for instruction 201: 17.7075% -Rate for instruction 202: 17.7719% -Rate for instruction 203: 17.7602% -Rate for instruction 204: 17.6923% -Rate for instruction 205: 17.6438% -Rate for instruction 206: 17.5957% -Rate for instruction 207: 17.6775% -Rate for instruction 208: 17.6665% -Rate for instruction 209: 17.674% -Rate for instruction 210: 17.6449% -Rate for instruction 211: 17.598% -Rate for instruction 212: 17.5695% -Rate for instruction 213: 17.5234% -Rate for instruction 214: 17.585% -Rate for instruction 215: 17.5214% -Rate for instruction 216: 17.4583% -Rate for instruction 217: 17.5371% -Rate for instruction 218: 17.4921% -Rate for instruction 219: 17.4825% -Rate for instruction 220: 17.4556% -Rate for instruction 221: 17.3943% -Rate for instruction 222: 17.437% -Rate for instruction 223: 17.3935% -Rate for instruction 224: 17.4017% -Rate for instruction 225: 17.3758% -Rate for instruction 226: 17.4009% -Rate for instruction 227: 17.4258% -Rate for instruction 228: 17.4169% -Rate for instruction 229: 17.3579% -Rate for instruction 230: 17.2994% -Rate for instruction 231: 17.3574% -Rate for instruction 232: 17.3655% -Rate for instruction 233: 17.357% -Rate for instruction 234: 17.4632% -Rate for instruction 235: 17.4381% -Rate for instruction 236: 17.4781% -Rate for instruction 237: 17.4693% -Rate for instruction 238: 17.4606% -Rate for instruction 239: 17.5% -Rate for instruction 240: 17.4593% -Rate for instruction 241: 17.4189% -Rate for instruction 242: 17.3631% -Rate for instruction 243: 17.3865% -Rate for instruction 244: 17.3469% -Rate for instruction 245: 17.2921% -Rate for instruction 246: 17.2688% -Rate for instruction 247: 17.2457% -Rate for instruction 248: 17.2073% -Rate for instruction 249: 17.2769% -Rate for instruction 250: 17.3154% +Rate for instruction 23: 16.9872% +Rate for instruction 24: 16.9231% +Rate for instruction 25: 16.4201% +Rate for instruction 26: 17.094% +Rate for instruction 27: 16.8956% +Rate for instruction 28: 17.374% +Rate for instruction 29: 17.0513% +Rate for instruction 30: 17.4938% +Rate for instruction 31: 18.3894% +Rate for instruction 32: 18.8811% +Rate for instruction 33: 19.2308% +Rate for instruction 34: 19.4505% +Rate for instruction 35: 19.5513% +Rate for instruction 36: 19.3347% +Rate for instruction 37: 18.9271% +Rate for instruction 38: 19.6252% +Rate for instruction 39: 20.3846% +Rate for instruction 40: 20.075% +Rate for instruction 41: 19.8718% +Rate for instruction 42: 19.5886% +Rate for instruction 43: 19.9301% +Rate for instruction 44: 20.4274% +Rate for instruction 45: 20.8194% +Rate for instruction 46: 21.0311% +Rate for instruction 47: 20.9936% +Rate for instruction 48: 20.7221% +Rate for instruction 49: 20.3846% +Rate for instruction 50: 20.0603% +Rate for instruction 51: 19.7485% +Rate for instruction 52: 19.521% +Rate for instruction 53: 19.7293% +Rate for instruction 54: 19.8601% +Rate for instruction 55: 19.5742% +Rate for instruction 56: 19.6356% +Rate for instruction 57: 19.496% +Rate for instruction 58: 19.5567% +Rate for instruction 59: 19.4872% +Rate for instruction 60: 19.2938% +Rate for instruction 61: 19.2928% +Rate for instruction 62: 19.2918% +Rate for instruction 63: 19.4111% +Rate for instruction 64: 19.645% +Rate for instruction 65: 19.5221% +Rate for instruction 66: 19.8048% +Rate for instruction 67: 19.8529% +Rate for instruction 68: 19.621% +Rate for instruction 69: 19.6154% +Rate for instruction 70: 19.3933% +Rate for instruction 71: 19.2842% +Rate for instruction 72: 19.0727% +Rate for instruction 73: 19.2827% +Rate for instruction 74: 19.3846% +Rate for instruction 75: 19.5344% +Rate for instruction 76: 19.4306% +Rate for instruction 77: 19.6252% +Rate for instruction 78: 19.6689% +Rate for instruction 79: 19.4712% +Rate for instruction 80: 19.4207% +Rate for instruction 81: 19.3246% +Rate for instruction 82: 19.5088% +Rate for instruction 83: 19.4597% +Rate for instruction 84: 19.3665% +Rate for instruction 85: 19.186% +Rate for instruction 86: 19.0539% +Rate for instruction 87: 18.8811% +Rate for instruction 88: 18.8418% +Rate for instruction 89: 18.6752% +Rate for instruction 90: 18.7658% +Rate for instruction 91: 18.6873% +Rate for instruction 92: 18.5691% +Rate for instruction 93: 18.4124% +Rate for instruction 94: 18.2996% +Rate for instruction 95: 18.149% +Rate for instruction 96: 18.0016% +Rate for instruction 97: 18.0534% +Rate for instruction 98: 17.9099% +Rate for instruction 99: 17.8846% +Rate for instruction 100: 17.8979% +Rate for instruction 101: 17.911% +Rate for instruction 102: 17.8118% +Rate for instruction 103: 17.6775% +Rate for instruction 104: 17.5824% +Rate for instruction 105: 17.598% +Rate for instruction 106: 17.4694% +Rate for instruction 107: 17.4858% +Rate for instruction 108: 17.5018% +Rate for instruction 109: 17.5175% +Rate for instruction 110: 17.5329% +Rate for instruction 111: 17.5137% +Rate for instruction 112: 17.4268% +Rate for instruction 113: 17.3752% +Rate for instruction 114: 17.2575% +Rate for instruction 115: 17.2414% +Rate for instruction 116: 17.1269% +Rate for instruction 117: 17.0469% +Rate for instruction 118: 17.0006% +Rate for instruction 119: 17.1154% +Rate for instruction 120: 17.0057% +Rate for instruction 121: 17.1185% +Rate for instruction 122: 17.1044% +Rate for instruction 123: 16.9975% +Rate for instruction 124: 16.9231% +Rate for instruction 125: 16.8193% +Rate for instruction 126: 16.7777% +Rate for instruction 127: 16.887% +Rate for instruction 128: 16.8157% +Rate for instruction 129: 16.7751% +Rate for instruction 130: 16.7058% +Rate for instruction 131: 16.6667% +Rate for instruction 132: 16.6281% +Rate for instruction 133: 16.791% +Rate for instruction 134: 16.6952% +Rate for instruction 135: 16.7704% +Rate for instruction 136: 16.7883% +Rate for instruction 137: 16.7224% +Rate for instruction 138: 16.7128% +Rate for instruction 139: 16.7582% +Rate for instruction 140: 16.8576% +Rate for instruction 141: 16.766% +Rate for instruction 142: 16.7025% +Rate for instruction 143: 16.6934% +Rate for instruction 144: 16.6844% +Rate for instruction 145: 16.6491% +Rate for instruction 146: 16.6143% +Rate for instruction 147: 16.5541% +Rate for instruction 148: 16.5204% +Rate for instruction 149: 16.4872% +Rate for instruction 150: 16.4544% +Rate for instruction 151: 16.4474% +Rate for instruction 152: 16.4907% +Rate for instruction 153: 16.4585% +Rate for instruction 154: 16.4268% +Rate for instruction 155: 16.5434% +Rate for instruction 156: 16.5115% +Rate for instruction 157: 16.4557% +Rate for instruction 158: 16.5699% +Rate for instruction 159: 16.5385% +Rate for instruction 160: 16.6269% +Rate for instruction 161: 16.7854% +Rate for instruction 162: 16.8712% +Rate for instruction 163: 16.909% +Rate for instruction 164: 16.8998% +Rate for instruction 165: 16.8211% +Rate for instruction 166: 16.8816% +Rate for instruction 167: 16.8956% +Rate for instruction 168: 16.9322% +Rate for instruction 169: 17.0136% +Rate for instruction 170: 17.004% +Rate for instruction 171: 17.0617% +Rate for instruction 172: 17.1854% +Rate for instruction 173: 17.153% +Rate for instruction 174: 17.0769% +Rate for instruction 175: 17.0455% +Rate for instruction 176: 17.123% +Rate for instruction 177: 17.2213% +Rate for instruction 178: 17.1895% +Rate for instruction 179: 17.1795% +Rate for instruction 180: 17.2758% +Rate for instruction 181: 17.2866% +Rate for instruction 182: 17.3813% +Rate for instruction 183: 17.4958% +Rate for instruction 184: 17.5676% +Rate for instruction 185: 17.7419% +Rate for instruction 186: 17.7499% +Rate for instruction 187: 17.6759% +Rate for instruction 188: 17.6435% +Rate for instruction 189: 17.6518% +Rate for instruction 190: 17.7205% +Rate for instruction 191: 17.7083% +Rate for instruction 192: 17.6963% +Rate for instruction 193: 17.7637% +Rate for instruction 194: 17.8107% +Rate for instruction 195: 17.8571% +Rate for instruction 196: 17.8055% +Rate for instruction 197: 17.871% +Rate for instruction 198: 17.9358% +Rate for instruction 199: 18.0577% +Rate for instruction 200: 18.1592% +Rate for instruction 201: 18.0883% +Rate for instruction 202: 18.1319% +Rate for instruction 203: 18.1184% +Rate for instruction 204: 18.1051% +Rate for instruction 205: 18.0358% +Rate for instruction 206: 18.0974% +Rate for instruction 207: 18.0843% +Rate for instruction 208: 18.053% +Rate for instruction 209: 18.0403% +Rate for instruction 210: 18.0824% +Rate for instruction 211: 18.0334% +Rate for instruction 212: 17.9668% +Rate for instruction 213: 17.9188% +Rate for instruction 214: 17.8712% +Rate for instruction 215: 17.8063% +Rate for instruction 216: 17.8306% +Rate for instruction 217: 17.7664% +Rate for instruction 218: 17.7555% +Rate for instruction 219: 17.7273% +Rate for instruction 220: 17.7341% +Rate for instruction 221: 17.6715% +Rate for instruction 222: 17.644% +Rate for instruction 223: 17.5996% +Rate for instruction 224: 17.5726% +Rate for instruction 225: 17.5289% +Rate for instruction 226: 17.4687% +Rate for instruction 227: 17.4426% +Rate for instruction 228: 17.4672% +Rate for instruction 229: 17.4582% +Rate for instruction 230: 17.5325% +Rate for instruction 231: 17.4901% +Rate for instruction 232: 17.4975% +Rate for instruction 233: 17.4885% +Rate for instruction 234: 17.5286% +Rate for instruction 235: 17.4707% +Rate for instruction 236: 17.4619% +Rate for instruction 237: 17.5178% +Rate for instruction 238: 17.4767% +Rate for instruction 239: 17.5321% +Rate for instruction 240: 17.5072% +Rate for instruction 241: 17.4666% +Rate for instruction 242: 17.4581% +Rate for instruction 243: 17.4496% +Rate for instruction 244: 17.4254% +Rate for instruction 245: 17.4171% +Rate for instruction 246: 17.3778% +Rate for instruction 247: 17.3387% +Rate for instruction 248: 17.3309% +Rate for instruction 249: 17.2923% +Rate for instruction 250: 17.2847% Rate for instruction 251: 17.2924% -Rate for instruction 252: 17.2545% -Rate for instruction 253: 17.2168% -Rate for instruction 254: 17.2549% -Rate for instruction 255: 17.2626% -Rate for instruction 256: 17.2104% -Rate for instruction 257: 17.2481% -Rate for instruction 258: 17.226% -Rate for instruction 259: 17.2189% -Rate for instruction 260: 17.2414% -Rate for instruction 261: 17.2637% -Rate for instruction 262: 17.2126% -Rate for instruction 263: 17.2494% -Rate for instruction 264: 17.2569% -Rate for instruction 265: 17.2643% -Rate for instruction 266: 17.3149% -Rate for instruction 267: 17.3651% -Rate for instruction 268: 17.3291% -Rate for instruction 269: 17.2792% -Rate for instruction 270: 17.3006% -Rate for instruction 271: 17.2653% -Rate for instruction 272: 17.2161% -Rate for instruction 273: 17.2515% -Rate for instruction 274: 17.3427% -Rate for instruction 275: 17.3356% -Rate for instruction 276: 17.3841% -Rate for instruction 277: 17.3492% -Rate for instruction 278: 17.3559% -Rate for instruction 279: 17.3077% -Rate for instruction 280: 17.2735% -Rate for instruction 281: 17.2259% -Rate for instruction 282: 17.2601% -Rate for instruction 283: 17.2535% -Rate for instruction 284: 17.2874% -Rate for instruction 285: 17.3211% -Rate for instruction 286: 17.2742% -Rate for instruction 287: 17.2676% -Rate for instruction 288: 17.2877% -Rate for instruction 289: 17.2679% -Rate for instruction 290: 17.3143% -Rate for instruction 291: 17.3209% -Rate for instruction 292: 17.3011% -Rate for instruction 293: 17.2815% -Rate for instruction 294: 17.3403% -Rate for instruction 295: 17.3077% -Rate for instruction 296: 17.2753% -Rate for instruction 297: 17.2303% -Rate for instruction 298: 17.2112% -Rate for instruction 299: 17.2949% -Rate for instruction 300: 17.263% -Rate for instruction 301: 17.2695% -Rate for instruction 302: 17.314% -Rate for instruction 303: 17.3203% -Rate for instruction 304: 17.3392% -Rate for instruction 305: 17.3203% -Rate for instruction 306: 17.3014% -Rate for instruction 307: 17.3452% -Rate for instruction 308: 17.3264% -Rate for instruction 309: 17.3201% -Rate for instruction 310: 17.351% +Rate for instruction 252: 17.2697% +Rate for instruction 253: 17.2925% +Rate for instruction 254: 17.2398% +Rate for instruction 255: 17.2175% +Rate for instruction 256: 17.1655% +Rate for instruction 257: 17.1884% +Rate for instruction 258: 17.1815% +Rate for instruction 259: 17.1302% +Rate for instruction 260: 17.1824% +Rate for instruction 261: 17.1315% +Rate for instruction 262: 17.1688% +Rate for instruction 263: 17.1183% +Rate for instruction 264: 17.1408% +Rate for instruction 265: 17.2065% +Rate for instruction 266: 17.2429% +Rate for instruction 267: 17.1929% +Rate for instruction 268: 17.2005% +Rate for instruction 269: 17.1652% +Rate for instruction 270: 17.2154% +Rate for instruction 271: 17.1804% +Rate for instruction 272: 17.202% +Rate for instruction 273: 17.2656% +Rate for instruction 274: 17.2587% +Rate for instruction 275: 17.238% +Rate for instruction 276: 17.2036% +Rate for instruction 277: 17.28% +Rate for instruction 278: 17.2594% +Rate for instruction 279: 17.3214% +Rate for instruction 280: 17.3282% +Rate for instruction 281: 17.3759% +Rate for instruction 282: 17.3281% +Rate for instruction 283: 17.2941% +Rate for instruction 284: 17.2605% +Rate for instruction 285: 17.227% +Rate for instruction 286: 17.1804% +Rate for instruction 287: 17.1875% +Rate for instruction 288: 17.1546% +Rate for instruction 289: 17.1353% +Rate for instruction 290: 17.116% +Rate for instruction 291: 17.0706% +Rate for instruction 292: 17.0911% +Rate for instruction 293: 17.1376% +Rate for instruction 294: 17.1317% +Rate for instruction 295: 17.1907% +Rate for instruction 296: 17.2494% +Rate for instruction 297: 17.2948% +Rate for instruction 298: 17.2755% +Rate for instruction 299: 17.3333% +Rate for instruction 300: 17.3013% +Rate for instruction 301: 17.2822% +Rate for instruction 302: 17.2379% +Rate for instruction 303: 17.2065% +Rate for instruction 304: 17.1879% +Rate for instruction 305: 17.1443% +Rate for instruction 306: 17.126% +Rate for instruction 307: 17.1828% +Rate for instruction 308: 17.2392% +Rate for instruction 309: 17.2208% +Rate for instruction 310: 17.1902% +Rate for instruction 311: 17.1844% +Rate for instruction 312: 17.2401% +Rate for instruction 313: 17.3199% +Rate for instruction 314: 17.3504% +Rate for instruction 315: 17.3077% +Rate for instruction 316: 17.3138% +Rate for instruction 317: 17.2714% +Rate for instruction 318: 17.3378% +Rate for instruction 319: 17.3197% +Rate for instruction 320: 17.3616% +Rate for instruction 321: 17.3316% +Rate for instruction 322: 17.3136% +Rate for instruction 323: 17.3789% +Rate for instruction 324: 17.432% +Rate for instruction 325: 17.5083% +Rate for instruction 326: 17.5253% +Rate for instruction 327: 17.5305% +Rate for instruction 328: 17.5357% +Rate for instruction 329: 17.5641% +Rate for instruction 330: 17.604% +Rate for instruction 331: 17.5626% +Rate for instruction 332: 17.556% +Rate for instruction 333: 17.538% +Rate for instruction 334: 17.5201% +Rate for instruction 335: 17.5595% +Rate for instruction 336: 17.5531% +Rate for instruction 337: 17.5353% +Rate for instruction 338: 17.5289% +Rate for instruction 339: 17.5% +Rate for instruction 340: 17.46% +Rate for instruction 341: 17.4426% +Rate for instruction 342: 17.4703% +Rate for instruction 343: 17.4307% +Rate for instruction 344: 17.3913% +Rate for instruction 345: 17.3744% +Rate for instruction 346: 17.3465% +Rate for instruction 347: 17.3077% +Rate for instruction 348: 17.2801% +Rate for instruction 349: 17.2418% +Rate for instruction 350: 17.2693% +Rate for instruction 351: 17.3077% +Rate for instruction 352: 17.2696% +Rate for instruction 353: 17.2425% +Rate for instruction 354: 17.2048% +Rate for instruction 355: 17.1889% +Rate for instruction 356: 17.1515% +Rate for instruction 357: 17.1573% +Rate for instruction 358: 17.1416% +Rate for instruction 359: 17.1368% +Rate for instruction 360: 17.1106% +Rate for instruction 361: 17.1058% +Rate for instruction 362: 17.1011% +Rate for instruction 363: 17.0647% +Rate for instruction 364: 17.1233% +Rate for instruction 365: 17.1921% +Rate for instruction 366: 17.1557% +Rate for instruction 367: 17.1509% +Rate for instruction 368: 17.167% +Rate for instruction 369: 17.183% +Rate for instruction 370: 17.1781% +Rate for instruction 371: 17.1526% +Rate for instruction 372: 17.1272% +Rate for instruction 373: 17.1123% +Rate for instruction 374: 17.1077% +Rate for instruction 375: 17.144% +Rate for instruction 376: 17.1088% +Rate for instruction 377: 17.1652% +Rate for instruction 378: 17.2113% +Rate for instruction 379: 17.1862% +Rate for instruction 380: 17.1613% +Rate for instruction 381: 17.1265% +Rate for instruction 382: 17.1119% +Rate for instruction 383: 17.1174% +Rate for instruction 384: 17.0829% +Rate for instruction 385: 17.0984% +Rate for instruction 386: 17.104% +Rate for instruction 387: 17.0797% +Rate for instruction 388: 17.0852% +Rate for instruction 389: 17.071% +Rate for instruction 390: 17.0765% +Rate for instruction 391: 17.0526% +Rate for instruction 392: 17.0288% +Rate for instruction 393: 17.0148% +Rate for instruction 394: 17.0204% +Rate for instruction 395: 17.0066% +Rate for instruction 396: 16.9928% +Rate for instruction 397: 16.9598% +Rate for instruction 398: 16.9559% +Rate for instruction 399: 16.9808% +Rate for instruction 400: 17.0056% +Rate for instruction 401: 17.0302% +Rate for instruction 402: 17.0834% +Rate for instruction 403: 17.1458% +Rate for instruction 404: 17.1985% +Rate for instruction 405: 17.2414% +Rate for instruction 406: 17.2935% +Rate for instruction 407: 17.336% +Rate for instruction 408: 17.3124% +Rate for instruction 409: 17.2983% +Rate for instruction 410: 17.3217% +Rate for instruction 411: 17.3637% +Rate for instruction 412: 17.331% +Rate for instruction 413: 17.3263% +Rate for instruction 414: 17.3587% +Rate for instruction 415: 17.3262% +Rate for instruction 416: 17.3215% +Rate for instruction 417: 17.3169% +Rate for instruction 418: 17.349% +Rate for instruction 419: 17.3901% +Rate for instruction 420: 17.4219% +Rate for instruction 421: 17.4353% +Rate for instruction 422: 17.4213% +Rate for instruction 423: 17.3893% +Rate for instruction 424: 17.3756% +Rate for instruction 425: 17.3438% +Rate for instruction 426: 17.3122% +Rate for instruction 427: 17.2897% +Rate for instruction 428: 17.2763% +Rate for instruction 429: 17.254% +Rate for instruction 430: 17.2229% +Rate for instruction 431: 17.2098% +Rate for instruction 432: 17.1878% +Rate for instruction 433: 17.1836% +Rate for instruction 434: 17.2149% +Rate for instruction 435: 17.2548% +Rate for instruction 436: 17.2241% +Rate for instruction 437: 17.255% +Rate for instruction 438: 17.2858% +Rate for instruction 439: 17.299% +Rate for instruction 440: 17.3469% +Rate for instruction 441: 17.3686% +Rate for instruction 442: 17.3902% +Rate for instruction 443: 17.377% +Rate for instruction 444: 17.4157% +Rate for instruction 445: 17.4284% +Rate for instruction 446: 17.4152% +Rate for instruction 447: 17.4107% +Rate for instruction 448: 17.4148% +Rate for instruction 449: 17.4103% +Rate for instruction 450: 17.4143% +Rate for instruction 451: 17.4353% +Rate for instruction 452: 17.4393% +Rate for instruction 453: 17.4348% +Rate for instruction 454: 17.4387% +Rate for instruction 455: 17.4173% +Rate for instruction 456: 17.3876% +Rate for instruction 457: 17.3749% +Rate for instruction 458: 17.3454% +Rate for instruction 459: 17.3662% +Rate for instruction 460: 17.3786% +Rate for instruction 461: 17.3826% +Rate for instruction 462: 17.3617% +Rate for instruction 463: 17.3326% +Rate for instruction 464: 17.3284% +Rate for instruction 465: 17.2994% +Rate for instruction 466: 17.2871% +Rate for instruction 467: 17.2748% +Rate for instruction 468: 17.2954% +Rate for instruction 469: 17.3077% +Rate for instruction 470: 17.3363% +Rate for instruction 471: 17.3403% +Rate for instruction 472: 17.3443% +Rate for instruction 473: 17.3483% +Rate for instruction 474: 17.3765% +Rate for instruction 475: 17.3481% +Rate for instruction 476: 17.3601% +Rate for instruction 477: 17.3801% +Rate for instruction 478: 17.4081% +Rate for instruction 479: 17.4279% +Rate for instruction 480: 17.4476% +Rate for instruction 481: 17.4274% +Rate for instruction 482: 17.3993% +Rate for instruction 483: 17.4269% +Rate for instruction 484: 17.4306% +Rate for instruction 485: 17.4501% +Rate for instruction 486: 17.4301% +Rate for instruction 487: 17.4653% +Rate for instruction 488: 17.4375% +Rate for instruction 489: 17.4097% +Rate for instruction 490: 17.3899% +Rate for instruction 491: 17.425% +Rate for instruction 492: 17.3974% +Rate for instruction 493: 17.4089% +Rate for instruction 494: 17.4048% +Rate for instruction 495: 17.4395% +Rate for instruction 496: 17.4199% +Rate for instruction 497: 17.4544% +Rate for instruction 498: 17.458% +Rate for instruction 499: 17.4692% +Rate for instruction 500: 17.442% +Rate for instruction 501: 17.4379% +Rate for instruction 502: 17.4492% +Rate for instruction 503: 17.4679% +Rate for instruction 504: 17.5095% +Rate for instruction 505: 17.4977% +Rate for instruction 506: 17.5239% +Rate for instruction 507: 17.5348% +Rate for instruction 508: 17.5079% +Rate for instruction 509: 17.4962% +Rate for instruction 510: 17.4695% +Rate for instruction 511: 17.4805% +Rate for instruction 512: 17.4539% +Rate for instruction 513: 17.4424% +Rate for instruction 514: 17.4309% +Rate for instruction 515: 17.412% +Rate for instruction 516: 17.4379% +Rate for instruction 517: 17.4265% +Rate for instruction 518: 17.4003% +Rate for instruction 519: 17.4186% +Rate for instruction 520: 17.4147% +Rate for instruction 521: 17.3961% +Rate for instruction 522: 17.3923% +Rate for instruction 523: 17.3738% +Rate for instruction 524: 17.3626% +Rate for instruction 525: 17.3589% +Rate for instruction 526: 17.3405% +Rate for instruction 527: 17.3223% +Rate for instruction 528: 17.2968% +Rate for instruction 529: 17.3077% +Rate for instruction 530: 17.3041% +Rate for instruction 531: 17.286% +Rate for instruction 532: 17.2752% +Rate for instruction 533: 17.2717% +Rate for instruction 534: 17.261% +Rate for instruction 535: 17.2359% +Rate for instruction 536: 17.2182% +Rate for instruction 537: 17.2076% +Rate for instruction 538: 17.1828% +Rate for instruction 539: 17.2009% +Rate for instruction 540: 17.233% +Rate for instruction 541: 17.2509% +Rate for instruction 542: 17.2404% +Rate for instruction 543: 17.2653% +Rate for instruction 544: 17.2406% +Rate for instruction 545: 17.2161% +Rate for instruction 546: 17.2479% +Rate for instruction 547: 17.2235% +Rate for instruction 548: 17.2481% +Rate for instruction 549: 17.2308% +Rate for instruction 550: 17.2484% +Rate for instruction 551: 17.3007% +Rate for instruction 552: 17.3112% +Rate for instruction 553: 17.3146% +Rate for instruction 554: 17.3112% +Rate for instruction 555: 17.3146% +Rate for instruction 556: 17.2904% +Rate for instruction 557: 17.2732% +Rate for instruction 558: 17.2767% +Rate for instruction 559: 17.2527% +Rate for instruction 560: 17.2563% +Rate for instruction 561: 17.2461% +Rate for instruction 562: 17.2496% +Rate for instruction 563: 17.26% +Rate for instruction 564: 17.2771% +Rate for instruction 565: 17.2805% +Rate for instruction 566: 17.3043% +Rate for instruction 567: 17.2941% +Rate for instruction 568: 17.3178% +Rate for instruction 569: 17.3347% +Rate for instruction 570: 17.3313% +Rate for instruction 571: 17.3211% +Rate for instruction 572: 17.2976% +Rate for instruction 573: 17.3345% +Rate for instruction 574: 17.3645% +Rate for instruction 575: 17.3945% +Rate for instruction 576: 17.4177% +Rate for instruction 577: 17.4541% +Rate for instruction 578: 17.4572% +Rate for instruction 579: 17.4337% +Rate for instruction 580: 17.4633% +Rate for instruction 581: 17.4795% +Rate for instruction 582: 17.4561% +Rate for instruction 583: 17.4658% +Rate for instruction 584: 17.449% +Rate for instruction 585: 17.4455% +Rate for instruction 586: 17.442% +Rate for instruction 587: 17.432% +Rate for instruction 588: 17.4416% +Rate for instruction 589: 17.4185% +Rate for instruction 590: 17.4216% +Rate for instruction 591: 17.4246% +Rate for instruction 592: 17.4277% +Rate for instruction 593: 17.4372% +Rate for instruction 594: 17.4402% +Rate for instruction 595: 17.4432% +Rate for instruction 596: 17.4333% +Rate for instruction 597: 17.4235% +Rate for instruction 598: 17.4201% +Rate for instruction 599: 17.4103% +Rate for instruction 600: 17.4005% +Rate for instruction 601: 17.3971% +Rate for instruction 602: 17.4066% +Rate for instruction 603: 17.3841% +Rate for instruction 604: 17.3872% +Rate for instruction 605: 17.3712% +Rate for instruction 606: 17.3742% +Rate for instruction 607: 17.3646% +Rate for instruction 608: 17.393% +Rate for instruction 609: 17.4023% +Rate for instruction 610: 17.4241% +Rate for instruction 611: 17.4082% +Rate for instruction 612: 17.4363% +Rate for instruction 613: 17.4142% +Rate for instruction 614: 17.4234% +Rate for instruction 615: 17.4138% +Rate for instruction 616: 17.423% +Rate for instruction 617: 17.4384% +Rate for instruction 618: 17.4723% +Rate for instruction 619: 17.4752% +Rate for instruction 620: 17.4718% +Rate for instruction 621: 17.4746% +Rate for instruction 622: 17.4589% +Rate for instruction 623: 17.4371% +Rate for instruction 624: 17.4277% +Rate for instruction 625: 17.4429% +Rate for instruction 626: 17.4457% +Rate for instruction 627: 17.4792% +Rate for instruction 628: 17.4575% +Rate for instruction 629: 17.4359% +Rate for instruction 630: 17.457% +Rate for instruction 631: 17.4355% +Rate for instruction 632: 17.4505% +Rate for instruction 633: 17.429% +Rate for instruction 634: 17.4682% +Rate for instruction 635: 17.5012% +Rate for instruction 636: 17.4858% +Rate for instruction 637: 17.4946% +Rate for instruction 638: 17.4853% +Rate for instruction 639: 17.494% +Rate for instruction 640: 17.4727% +Rate for instruction 641: 17.4635% +Rate for instruction 642: 17.4542% +Rate for instruction 643: 17.4331% +Rate for instruction 644: 17.424% +Rate for instruction 645: 17.4327% +Rate for instruction 646: 17.4117% +Rate for instruction 647: 17.4086% +Rate for instruction 648: 17.4233% +Rate for instruction 649: 17.4438% +Rate for instruction 650: 17.4288% +Rate for instruction 651: 17.4611% +Rate for instruction 652: 17.4579% +Rate for instruction 653: 17.4488% +Rate for instruction 654: 17.4339% +Rate for instruction 655: 17.4308% +Rate for instruction 656: 17.4218% +Rate for instruction 657: 17.4071% +Rate for instruction 658: 17.3982% +Rate for instruction 659: 17.4242% +Rate for instruction 660: 17.4037% +Rate for instruction 661: 17.389% +Rate for instruction 662: 17.386% +Rate for instruction 663: 17.383% +Rate for instruction 664: 17.3742% +Rate for instruction 665: 17.3539% +Rate for instruction 666: 17.3452% +Rate for instruction 667: 17.348% +Rate for instruction 668: 17.3336% +Rate for instruction 669: 17.3307% +Rate for instruction 670: 17.345% +Rate for instruction 671: 17.3478% +Rate for instruction 672: 17.3277% +Rate for instruction 673: 17.3248% +Rate for instruction 674: 17.3333% +Rate for instruction 675: 17.3134% +Rate for instruction 676: 17.3446% +Rate for instruction 677: 17.3247% +Rate for instruction 678: 17.3558% +Rate for instruction 679: 17.3756% +Rate for instruction 680: 17.367% +Rate for instruction 681: 17.381% +Rate for instruction 682: 17.3893% +Rate for instruction 683: 17.4033% +Rate for instruction 684: 17.4116% +Rate for instruction 685: 17.403% +Rate for instruction 686: 17.3889% +Rate for instruction 687: 17.3915% +Rate for instruction 688: 17.3831% +Rate for instruction 689: 17.369% +Rate for instruction 690: 17.3606% +Rate for instruction 691: 17.3466% +Rate for instruction 692: 17.366% +Rate for instruction 693: 17.3631% +Rate for instruction 694: 17.3547% +Rate for instruction 695: 17.3574% +Rate for instruction 696: 17.3712% +Rate for instruction 697: 17.3793% +Rate for instruction 698: 17.3985% +Rate for instruction 699: 17.3901% +Rate for instruction 700: 17.3927% +Rate for instruction 701: 17.3899% +Rate for instruction 702: 17.398% +Rate for instruction 703: 17.4115% +Rate for instruction 704: 17.4304% +Rate for instruction 705: 17.433% +Rate for instruction 706: 17.4301% +Rate for instruction 707: 17.4326% +Rate for instruction 708: 17.4135% +Rate for instruction 709: 17.4269% +Rate for instruction 710: 17.4565% +Rate for instruction 711: 17.4752% +Rate for instruction 712: 17.4668% +Rate for instruction 713: 17.4531% +Rate for instruction 714: 17.4341% +Rate for instruction 715: 17.4259% +Rate for instruction 716: 17.4069% +Rate for instruction 717: 17.3934% +Rate for instruction 718: 17.3746% +Rate for instruction 719: 17.3825% +Rate for instruction 720: 17.369% +Rate for instruction 721: 17.3503% +Rate for instruction 722: 17.3742% +Rate for instruction 723: 17.3927% +Rate for instruction 724: 17.3899% +Rate for instruction 725: 17.3713% +Rate for instruction 726: 17.358% +Rate for instruction 727: 17.3447% +Rate for instruction 728: 17.3631% +Rate for instruction 729: 17.3867% +Rate for instruction 730: 17.3892% +Rate for instruction 731: 17.3918% +Rate for instruction 732: 17.4048% +Rate for instruction 733: 17.3968% +Rate for instruction 734: 17.4202% +Rate for instruction 735: 17.407% +Rate for instruction 736: 17.3886% +Rate for instruction 737: 17.3807% +Rate for instruction 738: 17.4248% +Rate for instruction 739: 17.4584% +Rate for instruction 740: 17.4452% +Rate for instruction 741: 17.4787% +Rate for instruction 742: 17.507% +Rate for instruction 743: 17.5352% +Rate for instruction 744: 17.5323% +Rate for instruction 745: 17.5345% +Rate for instruction 746: 17.5574% +Rate for instruction 747: 17.5545% +Rate for instruction 748: 17.5876% +Rate for instruction 749: 17.6154% +Rate for instruction 750: 17.6124% +Rate for instruction 751: 17.6043% +Rate for instruction 752: 17.5963% +Rate for instruction 753: 17.6036% +Rate for instruction 754: 17.6159% +Rate for instruction 755: 17.6282% +Rate for instruction 756: 17.6202% +Rate for instruction 757: 17.6375% +Rate for instruction 758: 17.6244% +Rate for instruction 759: 17.6113% +Rate for instruction 760: 17.6387% +Rate for instruction 761: 17.6307% +Rate for instruction 762: 17.6278% +Rate for instruction 763: 17.6299% +Rate for instruction 764: 17.6521% +Rate for instruction 765: 17.6491% +Rate for instruction 766: 17.6813% +Rate for instruction 767: 17.6883% +Rate for instruction 768: 17.6853% +Rate for instruction 769: 17.6873% +Rate for instruction 770: 17.6694% +Rate for instruction 771: 17.6714% +Rate for instruction 772: 17.6684% +Rate for instruction 773: 17.6903% +Rate for instruction 774: 17.7122% +Rate for instruction 775: 17.6992% +Rate for instruction 776: 17.6963% +Rate for instruction 777: 17.6834% +Rate for instruction 778: 17.6805% +Rate for instruction 779: 17.7022% +Rate for instruction 780: 17.7041% +Rate for instruction 781: 17.6962% +Rate for instruction 782: 17.7031% +Rate for instruction 783: 17.7247% +Rate for instruction 784: 17.7511% +Rate for instruction 785: 17.7481% +Rate for instruction 786: 17.7402% +Rate for instruction 787: 17.7567% +Rate for instruction 788: 17.7684% +Rate for instruction 789: 17.7556% +Rate for instruction 790: 17.7429% +Rate for instruction 791: 17.735% +Rate for instruction 792: 17.7224% +Rate for instruction 793: 17.7194% +Rate for instruction 794: 17.7068% +Rate for instruction 795: 17.7039% +Rate for instruction 796: 17.701% +Rate for instruction 797: 17.7222% +Rate for instruction 798: 17.7193% +Rate for instruction 799: 17.7115% +Rate for instruction 800: 17.699% +Rate for instruction 801: 17.7057% +Rate for instruction 802: 17.7028% +Rate for instruction 803: 17.7% +Rate for instruction 804: 17.7162% +Rate for instruction 805: 17.7038% +Rate for instruction 806: 17.7009% +Rate for instruction 807: 17.698% +Rate for instruction 808: 17.6952% +Rate for instruction 809: 17.7113% +Rate for instruction 810: 17.6989% +Rate for instruction 811: 17.7293% +Rate for instruction 812: 17.7311% +Rate for instruction 813: 17.7424% +Rate for instruction 814: 17.7253% +Rate for instruction 815: 17.713% +Rate for instruction 816: 17.7337% +Rate for instruction 817: 17.7168% +Rate for instruction 818: 17.728% +Rate for instruction 819: 17.7111% +Rate for instruction 820: 17.7317% +Rate for instruction 821: 17.7569% +Rate for instruction 822: 17.74% +Rate for instruction 823: 17.7605% +Rate for instruction 824: 17.7436% +Rate for instruction 825: 17.7361% +Rate for instruction 826: 17.7286% +Rate for instruction 827: 17.7118% +Rate for instruction 828: 17.6997% +Rate for instruction 829: 17.6923% +Rate for instruction 830: 17.6756% +Rate for instruction 831: 17.659% +Rate for instruction 832: 17.6748% +Rate for instruction 833: 17.6582% +Rate for instruction 834: 17.6555% +Rate for instruction 835: 17.6849% +Rate for instruction 836: 17.719% +Rate for instruction 837: 17.707% +Rate for instruction 838: 17.6996% +Rate for instruction 839: 17.7015% +Rate for instruction 840: 17.7444% +Rate for instruction 841: 17.7736% +Rate for instruction 842: 17.7571% +Rate for instruction 843: 17.768% +Rate for instruction 844: 17.7651% +Rate for instruction 845: 17.7578% +Rate for instruction 846: 17.755% +Rate for instruction 847: 17.7386% +Rate for instruction 848: 17.7358% +Rate for instruction 849: 17.7285% +Rate for instruction 850: 17.7393% +Rate for instruction 851: 17.7546% +Rate for instruction 852: 17.7383% +Rate for instruction 853: 17.7491% +Rate for instruction 854: 17.7373% +Rate for instruction 855: 17.7435% +Rate for instruction 856: 17.7453% +Rate for instruction 857: 17.7694% +Rate for instruction 858: 17.789% +Rate for instruction 859: 17.7907% +Rate for instruction 860: 17.779% +Rate for instruction 861: 17.7807% +Rate for instruction 862: 17.7779% +Rate for instruction 863: 17.7796% +Rate for instruction 864: 17.7812% +Rate for instruction 865: 17.7696% +Rate for instruction 866: 17.7668% +Rate for instruction 867: 17.7552% +Rate for instruction 868: 17.7614% +Rate for instruction 869: 17.7719% +Rate for instruction 870: 17.7868% +Rate for instruction 871: 17.7796% +Rate for instruction 872: 17.7637% +Rate for instruction 873: 17.783% +Rate for instruction 874: 17.7802% +Rate for instruction 875: 17.7907% +Rate for instruction 876: 17.7835% +Rate for instruction 877: 17.7852% +Rate for instruction 878: 17.7912% +Rate for instruction 879: 17.7841% +Rate for instruction 880: 17.7901% +Rate for instruction 881: 17.7874% +Rate for instruction 882: 17.7977% +Rate for instruction 883: 17.7819% +Rate for instruction 884: 17.8096% +Rate for instruction 885: 17.8156% +Rate for instruction 886: 17.8302% +Rate for instruction 887: 17.8274% +Rate for instruction 888: 17.8333% +Rate for instruction 889: 17.8479% +Rate for instruction 890: 17.8408% +Rate for instruction 891: 17.851% +Rate for instruction 892: 17.8439% +Rate for instruction 893: 17.8455% +Rate for instruction 894: 17.8599% +Rate for instruction 895: 17.8529% +Rate for instruction 896: 17.863% +Rate for instruction 897: 17.8773% +Rate for instruction 898: 17.8746% +Rate for instruction 899: 17.8932% +Rate for instruction 900: 17.8818% +Rate for instruction 901: 17.8919% +Rate for instruction 902: 17.8848% +Rate for instruction 903: 17.8778% +Rate for instruction 904: 17.8708% +Rate for instruction 905: 17.885% +Rate for instruction 906: 17.8738% +Rate for instruction 907: 17.8753% +Rate for instruction 908: 17.8895% +Rate for instruction 909: 17.874% +Rate for instruction 910: 17.8882% +Rate for instruction 911: 17.8981% +Rate for instruction 912: 17.8869% +Rate for instruction 913: 17.8842% +Rate for instruction 914: 17.8773% +Rate for instruction 915: 17.8829% +Rate for instruction 916: 17.8676% +Rate for instruction 917: 17.8524% +Rate for instruction 918: 17.8413% +Rate for instruction 919: 17.8554% +Rate for instruction 920: 17.861% +Rate for instruction 921: 17.8458% +Rate for instruction 922: 17.8307% +Rate for instruction 923: 17.8155% +Rate for instruction 924: 17.8046% +Rate for instruction 925: 17.8144% +Rate for instruction 926: 17.8284% +Rate for instruction 927: 17.8465% +Rate for instruction 928: 17.8314% +Rate for instruction 929: 17.8371% +Rate for instruction 930: 17.8386% +Rate for instruction 931: 17.84% +Rate for instruction 932: 17.8292% +Rate for instruction 933: 17.8142% +Rate for instruction 934: 17.8075% +Rate for instruction 935: 17.7926% +Rate for instruction 936: 17.7818% +Rate for instruction 937: 17.7669% +Rate for instruction 938: 17.7685% +Rate for instruction 939: 17.7782% +Rate for instruction 940: 17.788% +Rate for instruction 941: 17.7936% +Rate for instruction 942: 17.7992% +Rate for instruction 943: 17.8048% +Rate for instruction 944: 17.8063% +Rate for instruction 945: 17.7915% +Rate for instruction 946: 17.7849% +Rate for instruction 947: 17.7864% +Rate for instruction 948: 17.7798% +Rate for instruction 949: 17.7652% +Rate for instruction 950: 17.7708% +Rate for instruction 951: 17.7885% +Rate for instruction 952: 17.7859% +Rate for instruction 953: 17.7875% +Rate for instruction 954: 17.7769% +Rate for instruction 955: 17.7704% +Rate for instruction 956: 17.7638% +Rate for instruction 957: 17.7694% +Rate for instruction 958: 17.7749% +Rate for instruction 959: 17.7845% +Rate for instruction 960: 17.774% +Rate for instruction 961: 17.7715% +Rate for instruction 962: 17.785% +Rate for instruction 963: 17.7984% +Rate for instruction 964: 17.8039% +Rate for instruction 965: 17.7934% +Rate for instruction 966: 17.7989% +Rate for instruction 967: 17.8004% +Rate for instruction 968: 17.8098% +Rate for instruction 969: 17.8033% +Rate for instruction 970: 17.8127% +Rate for instruction 971: 17.8063% +Rate for instruction 972: 17.7959% +Rate for instruction 973: 17.7816% +Rate for instruction 974: 17.7751% +Rate for instruction 975: 17.7609% +Rate for instruction 976: 17.7584% +Rate for instruction 977: 17.7442% +Rate for instruction 978: 17.7615% +Rate for instruction 979: 17.7708% +Rate for instruction 980: 17.7605% +Rate for instruction 981: 17.7464% +Rate for instruction 982: 17.744% +Rate for instruction 983: 17.7416% +Rate for instruction 984: 17.7353% +Rate for instruction 985: 17.7251% +Rate for instruction 986: 17.7383% +Rate for instruction 987: 17.7515% +Rate for instruction 988: 17.7608% +Rate for instruction 989: 17.7661% +Rate for instruction 990: 17.7598% +Rate for instruction 991: 17.7574% +Rate for instruction 992: 17.7473% +Rate for instruction 993: 17.7643% +Rate for instruction 994: 17.7542% +Rate for instruction 995: 17.7595% +Rate for instruction 996: 17.7494% +Rate for instruction 997: 17.7432% +Rate for instruction 998: 17.7331% +Rate for instruction 999: 17.7231% +Rate for instruction 1000: 17.7284% +Rate for instruction 1001: 17.7222% +Rate for instruction 1002: 17.7161% +Rate for instruction 1003: 17.7099% +Rate for instruction 1004: 17.7114% +Rate for instruction 1005: 17.7091% +Rate for instruction 1006: 17.6954% +Rate for instruction 1007: 17.7007% +Rate for instruction 1008: 17.687% +Rate for instruction 1009: 17.6733% +Rate for instruction 1010: 17.6596% +Rate for instruction 1011: 17.6497% +Rate for instruction 1012: 17.6399% +Rate for instruction 1013: 17.6377% +Rate for instruction 1014: 17.6544% +Rate for instruction 1015: 17.6408% +Rate for instruction 1016: 17.65% +Rate for instruction 1017: 17.6742% +Rate for instruction 1018: 17.6832% +Rate for instruction 1019: 17.6923% +Rate for instruction 1020: 17.6825% +Rate for instruction 1021: 17.684% +Rate for instruction 1022: 17.6855% +Rate for instruction 1023: 17.6946% +Rate for instruction 1024: 17.6998% +Rate for instruction 1025: 17.6976% +Rate for instruction 1026: 17.7103% +Rate for instruction 1027: 17.6968% +Rate for instruction 1028: 17.702% +Rate for instruction 1029: 17.696% +Rate for instruction 1030: 17.7125% +Rate for instruction 1031: 17.7326% +Rate for instruction 1032: 17.7452% +Rate for instruction 1033: 17.7317% +Rate for instruction 1034: 17.7332% +Rate for instruction 1035: 17.7383% +Rate for instruction 1036: 17.7509% +Rate for instruction 1037: 17.756% +Rate for instruction 1038: 17.7612% +Rate for instruction 1039: 17.7552% +Rate for instruction 1040: 17.7677% +Rate for instruction 1041: 17.758% +Rate for instruction 1042: 17.7484% +Rate for instruction 1043: 17.7424% +Rate for instruction 1044: 17.7365% +Rate for instruction 1045: 17.7269% +Rate for instruction 1046: 17.7393% +Rate for instruction 1047: 17.7297% +Rate for instruction 1048: 17.7385% +Rate for instruction 1049: 17.7546% +Rate for instruction 1050: 17.7706% +Rate for instruction 1051: 17.783% +Rate for instruction 1052: 17.7953% +Rate for instruction 1053: 17.8076% +Rate for instruction 1054: 17.8163% +Rate for instruction 1055: 17.8212% +Rate for instruction 1056: 17.8117% +Rate for instruction 1057: 17.8166% +Rate for instruction 1058: 17.8034% +Rate for instruction 1059: 17.8157% +Rate for instruction 1060: 17.8279% +Rate for instruction 1061: 17.8147% +Rate for instruction 1062: 17.8341% +Rate for instruction 1063: 17.8246% +Rate for instruction 1064: 17.844% +Rate for instruction 1065: 17.8345% +Rate for instruction 1066: 17.8214% +Rate for instruction 1067: 17.8227% +Rate for instruction 1068: 17.8456% +Rate for instruction 1069: 17.8433% +Rate for instruction 1070: 17.8482% +Rate for instruction 1071: 17.8459% +Rate for instruction 1072: 17.8579% +Rate for instruction 1073: 17.8484% +Rate for instruction 1074: 17.8354% +Rate for instruction 1075: 17.826% +Rate for instruction 1076: 17.8273% +Rate for instruction 1077: 17.8143% +Rate for instruction 1078: 17.8049% +Rate for instruction 1079: 17.792% +Rate for instruction 1080: 17.8005% +Rate for instruction 1081: 17.8053% +Rate for instruction 1082: 17.7925% +Rate for instruction 1083: 17.7831% +Rate for instruction 1084: 17.7703% +Rate for instruction 1085: 17.7893% +Rate for instruction 1086: 17.8084% +Rate for instruction 1087: 17.8167% +Rate for instruction 1088: 17.8286% +Rate for instruction 1089: 17.8158% +Rate for instruction 1090: 17.8101% +Rate for instruction 1091: 17.829% +Rate for instruction 1092: 17.8443% +Rate for instruction 1093: 17.8315% +Rate for instruction 1094: 17.8258% +Rate for instruction 1095: 17.8306% +Rate for instruction 1096: 17.8213% +Rate for instruction 1097: 17.8156% +Rate for instruction 1098: 17.8029% +Rate for instruction 1099: 17.8112% +Rate for instruction 1100: 17.8195% +Rate for instruction 1101: 17.8347% +Rate for instruction 1102: 17.822% +Rate for instruction 1103: 17.8303% +Rate for instruction 1104: 17.8211% +Rate for instruction 1105: 17.8119% +Rate for instruction 1106: 17.8028% +Rate for instruction 1107: 17.8145% +Rate for instruction 1108: 17.8019% +Rate for instruction 1109: 17.7928% +Rate for instruction 1110: 17.7837% +Rate for instruction 1111: 17.7919% +Rate for instruction 1112: 17.7828% +Rate for instruction 1113: 17.7738% +Rate for instruction 1114: 17.7854% +Rate for instruction 1115: 17.7936% +Rate for instruction 1116: 17.788% +Rate for instruction 1117: 17.7756% +Rate for instruction 1118: 17.7906% +Rate for instruction 1119: 17.7953% +Rate for instruction 1120: 17.7829% +Rate for instruction 1121: 17.7705% +Rate for instruction 1122: 17.7649% +Rate for instruction 1123: 17.756% +Rate for instruction 1124: 17.7538% +Rate for instruction 1125: 17.7483% +Rate for instruction 1126: 17.736% +Rate for instruction 1127: 17.7339% +Rate for instruction 1128: 17.7489% +Rate for instruction 1129: 17.757% +Rate for instruction 1130: 17.7447% +Rate for instruction 1131: 17.7596% +Rate for instruction 1132: 17.7473% +Rate for instruction 1133: 17.7588% +Rate for instruction 1134: 17.7736% +Rate for instruction 1135: 17.7817% +Rate for instruction 1136: 17.7694% +Rate for instruction 1137: 17.7707% +Rate for instruction 1138: 17.7754% +Rate for instruction 1139: 17.7901% +Rate for instruction 1140: 17.7847% +Rate for instruction 1141: 17.8095% +Rate for instruction 1142: 17.8242% +Rate for instruction 1143: 17.8322% +Rate for instruction 1144: 17.8535% +Rate for instruction 1145: 17.8648% +Rate for instruction 1146: 17.8593% +Rate for instruction 1147: 17.8605% +Rate for instruction 1148: 17.865% +Rate for instruction 1149: 17.8696% +Rate for instruction 1150: 17.8808% +Rate for instruction 1151: 17.8953% +Rate for instruction 1152: 17.9065% +Rate for instruction 1153: 17.8976% +Rate for instruction 1154: 17.8988% +Rate for instruction 1155: 17.9032% +Rate for instruction 1156: 17.8944% +Rate for instruction 1157: 17.9089% +Rate for instruction 1158: 17.9332% +Rate for instruction 1159: 17.9211% +Rate for instruction 1160: 17.9322% +Rate for instruction 1161: 17.9399% +Rate for instruction 1162: 17.9509% +Rate for instruction 1163: 17.9619% +Rate for instruction 1164: 17.9663% +Rate for instruction 1165: 17.9575% +Rate for instruction 1166: 17.9817% +Rate for instruction 1167: 17.9926% +Rate for instruction 1168: 17.9805% +Rate for instruction 1169: 17.9849% +Rate for instruction 1170: 17.9892% +Rate for instruction 1171: 17.9936% +Rate for instruction 1172: 18.0077% +Rate for instruction 1173: 18.0022% +Rate for instruction 1174: 18% +Rate for instruction 1175: 17.988% +Rate for instruction 1176: 17.9792% +Rate for instruction 1177: 17.9672% +Rate for instruction 1178: 17.9618% +Rate for instruction 1179: 17.9498% +Rate for instruction 1180: 17.9411% +Rate for instruction 1181: 17.9487% +Rate for instruction 1182: 17.9368% +Rate for instruction 1183: 17.9281% +Rate for instruction 1184: 17.9163% +Rate for instruction 1185: 17.9076% +Rate for instruction 1186: 17.8958% +Rate for instruction 1187: 17.8872% +Rate for instruction 1188: 17.8819% +Rate for instruction 1189: 17.8733% +Rate for instruction 1190: 17.8648% +Rate for instruction 1191: 17.853% +Rate for instruction 1192: 17.8413% +Rate for instruction 1193: 17.8328% +Rate for instruction 1194: 17.821% +Rate for instruction 1195: 17.8158% +Rate for instruction 1196: 17.8106% +Rate for instruction 1197: 17.8021% +Rate for instruction 1198: 17.7905% +Rate for instruction 1199: 17.7885% +Rate for instruction 1200: 17.7801% +Rate for instruction 1201: 17.7845% +Rate for instruction 1202: 17.7793% +Rate for instruction 1203: 17.7837% +Rate for instruction 1204: 17.7817% +Rate for instruction 1205: 17.7701% +Rate for instruction 1206: 17.7681% +Rate for instruction 1207: 17.7598% +Rate for instruction 1208: 17.7483% +Rate for instruction 1209: 17.7432% +Rate for instruction 1210: 17.7476% +Rate for instruction 1211: 17.7361% +Rate for instruction 1212: 17.7373% +Rate for instruction 1213: 17.7259% +Rate for instruction 1214: 17.724% +Rate for instruction 1215: 17.7126% +Rate for instruction 1216: 17.7106% +Rate for instruction 1217: 17.6993% +Rate for instruction 1218: 17.6974% +Rate for instruction 1219: 17.686% +Rate for instruction 1220: 17.6778% +Rate for instruction 1221: 17.6822% +Rate for instruction 1222: 17.6866% +Rate for instruction 1223: 17.6816% +Rate for instruction 1224: 17.6703% +Rate for instruction 1225: 17.6716% +Rate for instruction 1226: 17.6635% +Rate for instruction 1227: 17.6741% +Rate for instruction 1228: 17.6817% +Rate for instruction 1229: 17.6829% +Rate for instruction 1230: 17.6811% +Rate for instruction 1231: 17.6854% +Rate for instruction 1232: 17.6805% +Rate for instruction 1233: 17.6973% +Rate for instruction 1234: 17.6861% +Rate for instruction 1235: 17.6811% +Rate for instruction 1236: 17.6761% +Rate for instruction 1237: 17.6743% +Rate for instruction 1238: 17.6911% +Rate for instruction 1239: 17.683% +Rate for instruction 1240: 17.6935% +Rate for instruction 1241: 17.6886% +Rate for instruction 1242: 17.6898% +Rate for instruction 1243: 17.6818% +Rate for instruction 1244: 17.6923% +Rate for instruction 1245: 17.6874% +Rate for instruction 1246: 17.6794% +Rate for instruction 1247: 17.6868% +Rate for instruction 1248: 17.6972% +Rate for instruction 1249: 17.7046% +Rate for instruction 1250: 17.6966% +Rate for instruction 1251: 17.7163% +Rate for instruction 1252: 17.7175% +Rate for instruction 1253: 17.7248% +Rate for instruction 1254: 17.7138% +Rate for instruction 1255: 17.715% +Rate for instruction 1256: 17.7039% +Rate for instruction 1257: 17.7235% +Rate for instruction 1258: 17.7277% +Rate for instruction 1259: 17.7228% +Rate for instruction 1260: 17.7271% +Rate for instruction 1261: 17.7313% +Rate for instruction 1262: 17.7325% +Rate for instruction 1263: 17.7398% +Rate for instruction 1264: 17.7318% +Rate for instruction 1265: 17.7482% +Rate for instruction 1266: 17.7554% +Rate for instruction 1267: 17.7687% +Rate for instruction 1268: 17.7669% +Rate for instruction 1269: 17.7862% +Rate for instruction 1270: 17.7752% +Rate for instruction 1271: 17.7643% +Rate for instruction 1272: 17.7533% +Rate for instruction 1273: 17.7605% +Rate for instruction 1274: 17.7738% +Rate for instruction 1275: 17.7659% +Rate for instruction 1276: 17.773% +Rate for instruction 1277: 17.7651% +Rate for instruction 1278: 17.7753% +Rate for instruction 1279: 17.7674% +Rate for instruction 1280: 17.7566% +Rate for instruction 1281: 17.7637% +Rate for instruction 1282: 17.7738% +Rate for instruction 1283: 17.766% +Rate for instruction 1284: 17.7731% +Rate for instruction 1285: 17.7772% +Rate for instruction 1286: 17.7873% +Rate for instruction 1287: 17.7765% +Rate for instruction 1288: 17.7657% +Rate for instruction 1289: 17.7609% +Rate for instruction 1290: 17.7501% +Rate for instruction 1291: 17.7423% +Rate for instruction 1292: 17.7316% +Rate for instruction 1293: 17.7268% +Rate for instruction 1294: 17.719% +Rate for instruction 1295: 17.7083% +Rate for instruction 1296: 17.6976% +Rate for instruction 1297: 17.687% +Rate for instruction 1298: 17.6793% +Rate for instruction 1299: 17.6953% +Rate for instruction 1300: 17.7053% +Rate for instruction 1301: 17.7006% +Rate for instruction 1302: 17.7018% +Rate for instruction 1303: 17.697% +Rate for instruction 1304: 17.6982% +Rate for instruction 1305: 17.7053% +Rate for instruction 1306: 17.7182% +Rate for instruction 1307: 17.7341% +Rate for instruction 1308: 17.7235% +Rate for instruction 1309: 17.7305% +Rate for instruction 1310: 17.7199% +Rate for instruction 1311: 17.7298% +Rate for instruction 1312: 17.7222% +Rate for instruction 1313: 17.7116% +Rate for instruction 1314: 17.7245% +Rate for instruction 1315: 17.7227% +Rate for instruction 1316: 17.7268% +Rate for instruction 1317: 17.7308% +Rate for instruction 1318: 17.7203% +Rate for instruction 1319: 17.7098% +Rate for instruction 1320: 17.708% +Rate for instruction 1321: 17.7063% +Rate for instruction 1322: 17.7045% +Rate for instruction 1323: 17.697% +Rate for instruction 1324: 17.6865% +Rate for instruction 1325: 17.6877% +Rate for instruction 1326: 17.683% +Rate for instruction 1327: 17.7016% +Rate for instruction 1328: 17.6998% +Rate for instruction 1329: 17.7039% +Rate for instruction 1330: 17.7224% +Rate for instruction 1331: 17.7119% +Rate for instruction 1332: 17.716% +Rate for instruction 1333: 17.7056% +Rate for instruction 1334: 17.7211% +Rate for instruction 1335: 17.7222% +Rate for instruction 1336: 17.7176% +Rate for instruction 1337: 17.7159% +Rate for instruction 1338: 17.7141% +Rate for instruction 1339: 17.7239% +Rate for instruction 1340: 17.7135% +Rate for instruction 1341: 17.7089% +Rate for instruction 1342: 17.7015% +Rate for instruction 1343: 17.6912% +Rate for instruction 1344: 17.6837% +Rate for instruction 1345: 17.682% +Rate for instruction 1346: 17.6746% +Rate for instruction 1347: 17.6843% +Rate for instruction 1348: 17.6912% +Rate for instruction 1349: 17.6809% +Rate for instruction 1350: 17.6735% +Rate for instruction 1351: 17.6661% +Rate for instruction 1352: 17.6701% +Rate for instruction 1353: 17.6826% +Rate for instruction 1354: 17.6951% +Rate for instruction 1355: 17.7048% +Rate for instruction 1356: 17.7144% +Rate for instruction 1357: 17.7099% +Rate for instruction 1358: 17.711% +Rate for instruction 1359: 17.7206% +Rate for instruction 1360: 17.7273% +Rate for instruction 1361: 17.7285% +Rate for instruction 1362: 17.7267% +Rate for instruction 1363: 17.7194% +Rate for instruction 1364: 17.712% +Rate for instruction 1365: 17.7075% +Rate for instruction 1366: 17.7002% +Rate for instruction 1367: 17.6901% +Rate for instruction 1368: 17.6828% +Rate for instruction 1369: 17.6755% +Rate for instruction 1370: 17.6682% +Rate for instruction 1371: 17.6749% +Rate for instruction 1372: 17.6677% +Rate for instruction 1373: 17.6632% +Rate for instruction 1374: 17.6755% +Rate for instruction 1375: 17.6655% +Rate for instruction 1376: 17.661% +Rate for instruction 1377: 17.6761% +Rate for instruction 1378: 17.6661% +Rate for instruction 1379: 17.6756% +Rate for instruction 1380: 17.6851% +Rate for instruction 1381: 17.6862% +Rate for instruction 1382: 17.6929% +Rate for instruction 1383: 17.6968% +Rate for instruction 1384: 17.7117% +Rate for instruction 1385: 17.7212% +Rate for instruction 1386: 17.7167% +Rate for instruction 1387: 17.7206% +Rate for instruction 1388: 17.7217% +Rate for instruction 1389: 17.72% +Rate for instruction 1390: 17.71% +Rate for instruction 1391: 17.7028% +Rate for instruction 1392: 17.6929% +Rate for instruction 1393: 17.6912% +Rate for instruction 1394: 17.6813% +Rate for instruction 1395: 17.6741% +Rate for instruction 1396: 17.6642% +Rate for instruction 1397: 17.6653% +Rate for instruction 1398: 17.6582% +Rate for instruction 1399: 17.6484% +Rate for instruction 1400: 17.6385% +Rate for instruction 1401: 17.6287% +Rate for instruction 1402: 17.6216% +Rate for instruction 1403: 17.6145% +Rate for instruction 1404: 17.6211% +Rate for instruction 1405: 17.6305% +Rate for instruction 1406: 17.6289% +Rate for instruction 1407: 17.63% +Rate for instruction 1408: 17.6312% +Rate for instruction 1409: 17.6405% +Rate for instruction 1410: 17.6416% +Rate for instruction 1411: 17.6509% +Rate for instruction 1412: 17.6466% +Rate for instruction 1413: 17.6586% +Rate for instruction 1414: 17.6488% +Rate for instruction 1415: 17.6418% +Rate for instruction 1416: 17.6321% +Rate for instruction 1417: 17.6223% +Rate for instruction 1418: 17.6153% +Rate for instruction 1419: 17.6273% +Rate for instruction 1420: 17.623% +Rate for instruction 1421: 17.616% +Rate for instruction 1422: 17.6199% +Rate for instruction 1423: 17.6156% +Rate for instruction 1424: 17.6059% +Rate for instruction 1425: 17.599% +Rate for instruction 1426: 17.6082% +Rate for instruction 1427: 17.6094% +Rate for instruction 1428: 17.6105% +Rate for instruction 1429: 17.6089% +Rate for instruction 1430: 17.6181% +Rate for instruction 1431: 17.6112% +Rate for instruction 1432: 17.6177% +Rate for instruction 1433: 17.6242% +Rate for instruction 1434: 17.6333% +Rate for instruction 1435: 17.6478% +Rate for instruction 1436: 17.6543% +Rate for instruction 1437: 17.65% +Rate for instruction 1438: 17.6565% +Rate for instruction 1439: 17.6522% +Rate for instruction 1440: 17.6453% +Rate for instruction 1441: 17.6358% +Rate for instruction 1442: 17.6369% +Rate for instruction 1443: 17.6406% +Rate for instruction 1444: 17.6338% +Rate for instruction 1445: 17.6242% +Rate for instruction 1446: 17.636% +Rate for instruction 1447: 17.6424% +Rate for instruction 1448: 17.6488% +Rate for instruction 1449: 17.6419% +Rate for instruction 1450: 17.643% +Rate for instruction 1451: 17.6547% +Rate for instruction 1452: 17.6558% +Rate for instruction 1453: 17.6542% +Rate for instruction 1454: 17.6685% +Rate for instruction 1455: 17.6775% +Rate for instruction 1456: 17.6839% +Rate for instruction 1457: 17.677% +Rate for instruction 1458: 17.6833% +Rate for instruction 1459: 17.687% +Rate for instruction 1460: 17.6828% +Rate for instruction 1461: 17.6918% +Rate for instruction 1462: 17.6876% +Rate for instruction 1463: 17.6991% +Rate for instruction 1464: 17.7107% +Rate for instruction 1465: 17.7196% +Rate for instruction 1466: 17.7128% +Rate for instruction 1467: 17.7243% +Rate for instruction 1468: 17.7305% +Rate for instruction 1469: 17.7211% +Rate for instruction 1470: 17.7143% +Rate for instruction 1471: 17.7231% +Rate for instruction 1472: 17.7294% +Rate for instruction 1473: 17.7356% +Rate for instruction 1474: 17.7314% +Rate for instruction 1475: 17.7455% +Rate for instruction 1476: 17.7517% +Rate for instruction 1477: 17.7631% +Rate for instruction 1478: 17.7797% +Rate for instruction 1479: 17.7729% +Rate for instruction 1480: 17.7687% +Rate for instruction 1481: 17.7619% +Rate for instruction 1482: 17.768% +Rate for instruction 1483: 17.782% +Rate for instruction 1484: 17.7907% +Rate for instruction 1485: 17.7995% +Rate for instruction 1486: 17.803% +Rate for instruction 1487: 17.7936% +Rate for instruction 1488: 17.7998% +Rate for instruction 1489: 17.8085% +Rate for instruction 1490: 17.8146% +Rate for instruction 1491: 17.8181% +Rate for instruction 1492: 17.8139% +Rate for instruction 1493: 17.8046% +Rate for instruction 1494: 17.8107% +Rate for instruction 1495: 17.8065% +Rate for instruction 1496: 17.8023% +Rate for instruction 1497: 17.8084% +Rate for instruction 1498: 17.799% +Rate for instruction 1499: 17.7923% +Rate for instruction 1500: 17.7856% +Rate for instruction 1501: 17.7763% +Rate for instruction 1502: 17.7747% +Rate for instruction 1503: 17.7654% +Rate for instruction 1504: 17.7664% +Rate for instruction 1505: 17.7699% +Rate for instruction 1506: 17.7607% +Rate for instruction 1507: 17.7515% +Rate for instruction 1508: 17.7627% +Rate for instruction 1509: 17.7534% +Rate for instruction 1510: 17.7646% +Rate for instruction 1511: 17.7656% +Rate for instruction 1512: 17.7615% +Rate for instruction 1513: 17.7523% +Rate for instruction 1514: 17.7482% +Rate for instruction 1515: 17.7415% +Rate for instruction 1516: 17.745% +Rate for instruction 1517: 17.7384% +Rate for instruction 1518: 17.7343% +Rate for instruction 1519: 17.7353% +Rate for instruction 1520: 17.7388% +Rate for instruction 1521: 17.7423% +Rate for instruction 1522: 17.7458% +Rate for instruction 1523: 17.7544% +Rate for instruction 1524: 17.7554% +Rate for instruction 1525: 17.7488% +Rate for instruction 1526: 17.7422% +Rate for instruction 1527: 17.7432% +Rate for instruction 1528: 17.7517% +Rate for instruction 1529: 17.7577% +Rate for instruction 1530: 17.7536% +Rate for instruction 1531: 17.7671% +Rate for instruction 1532: 17.7681% +Rate for instruction 1533: 17.759% +Rate for instruction 1534: 17.76% +Rate for instruction 1535: 17.7509% +Rate for instruction 1536: 17.7419% +Rate for instruction 1537: 17.7403% +Rate for instruction 1538: 17.7363% +Rate for instruction 1539: 17.7348% +Rate for instruction 1540: 17.7282% +Rate for instruction 1541: 17.7217% +Rate for instruction 1542: 17.7127% +Rate for instruction 1543: 17.7187% +Rate for instruction 1544: 17.7147% +Rate for instruction 1545: 17.7132% +Rate for instruction 1546: 17.7216% +Rate for instruction 1547: 17.7276% +Rate for instruction 1548: 17.7211% +Rate for instruction 1549: 17.7146% +Rate for instruction 1550: 17.7082% +Rate for instruction 1551: 17.7116% +Rate for instruction 1552: 17.7176% +Rate for instruction 1553: 17.7161% +Rate for instruction 1554: 17.7071% +Rate for instruction 1555: 17.7007% +Rate for instruction 1556: 17.7066% +Rate for instruction 1557: 17.7027% +Rate for instruction 1558: 17.6963% +Rate for instruction 1559: 17.6948% +Rate for instruction 1560: 17.6933% +Rate for instruction 1561: 17.6894% +Rate for instruction 1562: 17.6977% +Rate for instruction 1563: 17.7061% +Rate for instruction 1564: 17.7071% +Rate for instruction 1565: 17.7129% +Rate for instruction 1566: 17.7065% +Rate for instruction 1567: 17.7051% +Rate for instruction 1568: 17.7036% +Rate for instruction 1569: 17.7119% +Rate for instruction 1570: 17.7104% +Rate for instruction 1571: 17.7114% +Rate for instruction 1572: 17.7026% +Rate for instruction 1573: 17.6987% +Rate for instruction 1574: 17.6923% +Rate for instruction 1575: 17.6835% +Rate for instruction 1576: 17.6845% +Rate for instruction 1577: 17.6879% +Rate for instruction 1578: 17.6938% +Rate for instruction 1579: 17.6874% +Rate for instruction 1580: 17.6884% +Rate for instruction 1581: 17.6918% +Rate for instruction 1582: 17.7049% +Rate for instruction 1583: 17.718% +Rate for instruction 1584: 17.7263% +Rate for instruction 1585: 17.7224% +Rate for instruction 1586: 17.7233% +Rate for instruction 1587: 17.7219% +Rate for instruction 1588: 17.7228% +Rate for instruction 1589: 17.7238% +Rate for instruction 1590: 17.7199% +Rate for instruction 1591: 17.7184% +Rate for instruction 1592: 17.7169% +Rate for instruction 1593: 17.7179% +Rate for instruction 1594: 17.7092% +Rate for instruction 1595: 17.7174% +Rate for instruction 1596: 17.7111% +Rate for instruction 1597: 17.7169% +Rate for instruction 1598: 17.7202% +Rate for instruction 1599: 17.7115% +Rate for instruction 1600: 17.7077% +Rate for instruction 1601: 17.711% +Rate for instruction 1602: 17.7168% +Rate for instruction 1603: 17.7225% +Rate for instruction 1604: 17.7211% +Rate for instruction 1605: 17.7244% +Rate for instruction 1606: 17.7158% +Rate for instruction 1607: 17.7239% +Rate for instruction 1608: 17.7272% +Rate for instruction 1609: 17.7186% +Rate for instruction 1610: 17.7147% +Rate for instruction 1611: 17.7276% +Rate for instruction 1612: 17.7357% +Rate for instruction 1613: 17.7295% +Rate for instruction 1614: 17.7328% +Rate for instruction 1615: 17.7456% +Rate for instruction 1616: 17.7465% +Rate for instruction 1617: 17.7593% +Rate for instruction 1618: 17.7674% +Rate for instruction 1619: 17.7754% +Rate for instruction 1620: 17.7716% +Rate for instruction 1621: 17.7677% +Rate for instruction 1622: 17.7591% +Rate for instruction 1623: 17.76% +Rate for instruction 1624: 17.7633% +Rate for instruction 1625: 17.7619% +Rate for instruction 1626: 17.758% +Rate for instruction 1627: 17.7566% +Rate for instruction 1628: 17.7528% +Rate for instruction 1629: 17.7466% +Rate for instruction 1630: 17.7404% +Rate for instruction 1631: 17.739% +Rate for instruction 1632: 17.7399% +Rate for instruction 1633: 17.7432% +Rate for instruction 1634: 17.7464% +Rate for instruction 1635: 17.7473% +Rate for instruction 1636: 17.7529% +Rate for instruction 1637: 17.7679% +Rate for instruction 1638: 17.7852% +Rate for instruction 1639: 17.7814% +Rate for instruction 1640: 17.7847% +Rate for instruction 1641: 17.7785% +Rate for instruction 1642: 17.7817% +Rate for instruction 1643: 17.7803% +Rate for instruction 1644: 17.7975% +Rate for instruction 1645: 17.8054% +Rate for instruction 1646: 17.7993% +Rate for instruction 1647: 17.8001% +Rate for instruction 1648: 17.8173% +Rate for instruction 1649: 17.8159% +Rate for instruction 1650: 17.8284% +Rate for instruction 1651: 17.8292% +Rate for instruction 1652: 17.8324% +Rate for instruction 1653: 17.8239% +Rate for instruction 1654: 17.8155% +Rate for instruction 1655: 17.8117% +Rate for instruction 1656: 17.8033% +Rate for instruction 1657: 17.7972% +Rate for instruction 1658: 17.8073% +Rate for instruction 1659: 17.8174% +Rate for instruction 1660: 17.8136% +Rate for instruction 1661: 17.8238% +Rate for instruction 1662: 17.82% +Rate for instruction 1663: 17.8116% +Rate for instruction 1664: 17.8032% +Rate for instruction 1665: 17.7948% +Rate for instruction 1666: 17.7864% +Rate for instruction 1667: 17.7804% +Rate for instruction 1668: 17.7813% +Rate for instruction 1669: 17.789% +Rate for instruction 1670: 17.7876% +Rate for instruction 1671: 17.7862% +Rate for instruction 1672: 17.7916% +Rate for instruction 1673: 17.7833% +Rate for instruction 1674: 17.7796% +Rate for instruction 1675: 17.785% +Rate for instruction 1676: 17.7767% +Rate for instruction 1677: 17.7684% +Rate for instruction 1678: 17.7624% +Rate for instruction 1679: 17.7541% +Rate for instruction 1680: 17.7619% +Rate for instruction 1681: 17.7605% +Rate for instruction 1682: 17.7613% +Rate for instruction 1683: 17.7599% +Rate for instruction 1684: 17.7517% +Rate for instruction 1685: 17.748% +Rate for instruction 1686: 17.7534% +Rate for instruction 1687: 17.7452% +Rate for instruction 1688: 17.7392% +Rate for instruction 1689: 17.7401% +Rate for instruction 1690: 17.7387% +Rate for instruction 1691: 17.735% +Rate for instruction 1692: 17.7337% +Rate for instruction 1693: 17.7277% +Rate for instruction 1694: 17.7445% +Rate for instruction 1695: 17.7567% +Rate for instruction 1696: 17.7508% +Rate for instruction 1697: 17.7426% +Rate for instruction 1698: 17.7548% +Rate for instruction 1699: 17.7466% +Rate for instruction 1700: 17.7407% +Rate for instruction 1701: 17.7393% +Rate for instruction 1702: 17.7357% +Rate for instruction 1703: 17.7298% +Rate for instruction 1704: 17.7261% +Rate for instruction 1705: 17.7338% +Rate for instruction 1706: 17.7459% +Rate for instruction 1707: 17.7581% +Rate for instruction 1708: 17.7634% +Rate for instruction 1709: 17.7553% +Rate for instruction 1710: 17.7494% +Rate for instruction 1711: 17.7435% +Rate for instruction 1712: 17.7399% +Rate for instruction 1713: 17.734% +Rate for instruction 1714: 17.7439% +Rate for instruction 1715: 17.738% +Rate for instruction 1716: 17.7367% +Rate for instruction 1717: 17.7286% +Rate for instruction 1718: 17.7272% +Rate for instruction 1719: 17.7281% +Rate for instruction 1720: 17.7245% +Rate for instruction 1721: 17.7231% +Rate for instruction 1722: 17.7307% +Rate for instruction 1723: 17.7249% +Rate for instruction 1724: 17.7191% +Rate for instruction 1725: 17.7133% +Rate for instruction 1726: 17.7097% +Rate for instruction 1727: 17.7039% +Rate for instruction 1728: 17.7048% +Rate for instruction 1729: 17.7101% +Rate for instruction 1730: 17.7132% +Rate for instruction 1731: 17.7118% +Rate for instruction 1732: 17.7061% +Rate for instruction 1733: 17.7136% +Rate for instruction 1734: 17.7189% +Rate for instruction 1735: 17.7309% +Rate for instruction 1736: 17.7361% +Rate for instruction 1737: 17.737% +Rate for instruction 1738: 17.7578% +Rate for instruction 1739: 17.752% +Rate for instruction 1740: 17.755% +Rate for instruction 1741: 17.7603% +Rate for instruction 1742: 17.77% +Rate for instruction 1743: 17.7686% +Rate for instruction 1744: 17.7805% +Rate for instruction 1745: 17.7835% +Rate for instruction 1746: 17.7909% +Rate for instruction 1747: 17.7852% +Rate for instruction 1748: 17.786% +Rate for instruction 1749: 17.8% +Rate for instruction 1750: 17.792% +Rate for instruction 1751: 17.795% +Rate for instruction 1752: 17.8068% +Rate for instruction 1753: 17.8076% +Rate for instruction 1754: 17.8063% +Rate for instruction 1755: 17.8005% +Rate for instruction 1756: 17.7926% +Rate for instruction 1757: 17.789% +Rate for instruction 1758: 17.7811% +Rate for instruction 1759: 17.7863% +Rate for instruction 1760: 17.7958% +Rate for instruction 1761: 17.7945% +Rate for instruction 1762: 17.7866% +Rate for instruction 1763: 17.7939% +Rate for instruction 1764: 17.8034% +Rate for instruction 1765: 17.8108% +Rate for instruction 1766: 17.8072% +Rate for instruction 1767: 17.8146% +Rate for instruction 1768: 17.8262% +Rate for instruction 1769: 17.8249% +Rate for instruction 1770: 17.8191% +Rate for instruction 1771: 17.8156% +Rate for instruction 1772: 17.8099% +Rate for instruction 1773: 17.8042% +Rate for instruction 1774: 17.7963% +Rate for instruction 1775: 17.795% +Rate for instruction 1776: 17.7936% +Rate for instruction 1777: 17.7879% +Rate for instruction 1778: 17.7822% +Rate for instruction 1779: 17.7744% +Rate for instruction 1780: 17.7688% +Rate for instruction 1781: 17.7609% +Rate for instruction 1782: 17.7704% +Rate for instruction 1783: 17.7691% +Rate for instruction 1784: 17.7634% +Rate for instruction 1785: 17.7707% +Rate for instruction 1786: 17.7844% +Rate for instruction 1787: 17.7809% +Rate for instruction 1788: 17.7817% +Rate for instruction 1789: 17.7869% +Rate for instruction 1790: 17.792% +Rate for instruction 1791: 17.8013% +Rate for instruction 1792: 17.8021% +Rate for instruction 1793: 17.7986% +Rate for instruction 1794: 17.8016% +Rate for instruction 1795: 17.796% +Rate for instruction 1796: 17.7989% +Rate for instruction 1797: 17.7911% +Rate for instruction 1798: 17.8005% +Rate for instruction 1799: 17.7927% +Rate for instruction 1800: 17.7871% +Rate for instruction 1801: 17.7794% +Rate for instruction 1802: 17.7759% +Rate for instruction 1803: 17.7853% +Rate for instruction 1804: 17.7775% +Rate for instruction 1805: 17.789% +Rate for instruction 1806: 17.794% +Rate for instruction 1807: 17.7927% +Rate for instruction 1808: 17.7914% +Rate for instruction 1809: 17.7858% +Rate for instruction 1810: 17.7845% +Rate for instruction 1811: 17.781% +Rate for instruction 1812: 17.7797% +Rate for instruction 1813: 17.7741% +Rate for instruction 1814: 17.7686% +Rate for instruction 1815: 17.763% +Rate for instruction 1816: 17.7617% +Rate for instruction 1817: 17.7689% +Rate for instruction 1818: 17.7739% +Rate for instruction 1819: 17.7684% +Rate for instruction 1820: 17.7607% +Rate for instruction 1821: 17.7573% +Rate for instruction 1822: 17.7497% +Rate for instruction 1823: 17.7526% +Rate for instruction 1824: 17.7513% +Rate for instruction 1825: 17.7521% +Rate for instruction 1826: 17.7593% +Rate for instruction 1827: 17.7537% +Rate for instruction 1828: 17.7524% +Rate for instruction 1829: 17.7512% +Rate for instruction 1830: 17.7583% +Rate for instruction 1831: 17.7507% +Rate for instruction 1832: 17.7578% +Rate for instruction 1833: 17.7628% +Rate for instruction 1834: 17.7552% +Rate for instruction 1835: 17.7497% +Rate for instruction 1836: 17.7421% +Rate for instruction 1837: 17.745% +Rate for instruction 1838: 17.7396% +Rate for instruction 1839: 17.732% +Rate for instruction 1840: 17.7245% +Rate for instruction 1841: 17.719% +Rate for instruction 1842: 17.7282% +Rate for instruction 1843: 17.7248% +Rate for instruction 1844: 17.7215% +Rate for instruction 1845: 17.7181% +Rate for instruction 1846: 17.7252% +Rate for instruction 1847: 17.7219% +Rate for instruction 1848: 17.7164% +Rate for instruction 1849: 17.7089% +Rate for instruction 1850: 17.7035% +Rate for instruction 1851: 17.7002% +Rate for instruction 1852: 17.6927% +Rate for instruction 1853: 17.6894% +Rate for instruction 1854: 17.6923% +Rate for instruction 1855: 17.6973% +Rate for instruction 1856: 17.6898% +Rate for instruction 1857: 17.6824% +Rate for instruction 1858: 17.6894% +Rate for instruction 1859: 17.682% +Rate for instruction 1860: 17.6766% +Rate for instruction 1861: 17.6754% +Rate for instruction 1862: 17.6762% +Rate for instruction 1863: 17.6832% +Rate for instruction 1864: 17.6779% +Rate for instruction 1865: 17.6705% +Rate for instruction 1866: 17.6795% +Rate for instruction 1867: 17.6907% +Rate for instruction 1868: 17.6977% +Rate for instruction 1869: 17.6944% +Rate for instruction 1870: 17.6911% +Rate for instruction 1871: 17.7001% +Rate for instruction 1872: 17.6989% +Rate for instruction 1873: 17.6935% +Rate for instruction 1874: 17.6985% +Rate for instruction 1875: 17.7013% +Rate for instruction 1876: 17.6939% +Rate for instruction 1877: 17.6927% +Rate for instruction 1878: 17.6915% +Rate for instruction 1879: 17.6841% +Rate for instruction 1880: 17.6809% +Rate for instruction 1881: 17.6735% +Rate for instruction 1882: 17.6784% +Rate for instruction 1883: 17.6833% +Rate for instruction 1884: 17.6801% +Rate for instruction 1885: 17.6809% +Rate for instruction 1886: 17.6858% +Rate for instruction 1887: 17.6805% +Rate for instruction 1888: 17.6956% +Rate for instruction 1889: 17.7066% +Rate for instruction 1890: 17.7175% +Rate for instruction 1891: 17.7183% +Rate for instruction 1892: 17.7151% +Rate for instruction 1893: 17.7199% +Rate for instruction 1894: 17.7228% +Rate for instruction 1895: 17.7175% +Rate for instruction 1896: 17.7162% +Rate for instruction 1897: 17.715% +Rate for instruction 1898: 17.7077% +Rate for instruction 1899: 17.7024% +Rate for instruction 1900: 17.7012% +Rate for instruction 1901: 17.698% +Rate for instruction 1902: 17.6988% +Rate for instruction 1903: 17.7016% +Rate for instruction 1904: 17.6943% +Rate for instruction 1905: 17.6911% +Rate for instruction 1906: 17.6919% +Rate for instruction 1907: 17.6907% +Rate for instruction 1908: 17.6875% +Rate for instruction 1909: 17.6863% +Rate for instruction 1910: 17.681% +Rate for instruction 1911: 17.6919% +Rate for instruction 1912: 17.6847% +Rate for instruction 1913: 17.6875% +Rate for instruction 1914: 17.6903% +Rate for instruction 1915: 17.6831% +Rate for instruction 1916: 17.6799% +Rate for instruction 1917: 17.6807% +Rate for instruction 1918: 17.6835% +Rate for instruction 1919: 17.6763% +Rate for instruction 1920: 17.6811% +Rate for instruction 1921: 17.6779% +Rate for instruction 1922: 17.6767% +Rate for instruction 1923: 17.6755% +Rate for instruction 1924: 17.6683% +Rate for instruction 1925: 17.6691% +Rate for instruction 1926: 17.668% +Rate for instruction 1927: 17.6608% +Rate for instruction 1928: 17.6596% +Rate for instruction 1929: 17.6564% +Rate for instruction 1930: 17.6513% +Rate for instruction 1931: 17.6481% +Rate for instruction 1932: 17.6489% +Rate for instruction 1933: 17.6438% +Rate for instruction 1934: 17.6426% +Rate for instruction 1935: 17.6534% +Rate for instruction 1936: 17.6542% +Rate for instruction 1937: 17.649% +Rate for instruction 1938: 17.6419% +Rate for instruction 1939: 17.6388% +Rate for instruction 1940: 17.6317% +Rate for instruction 1941: 17.6266% +Rate for instruction 1942: 17.6195% +Rate for instruction 1943: 17.6203% +Rate for instruction 1944: 17.6231% +Rate for instruction 1945: 17.6259% +Rate for instruction 1946: 17.6247% +Rate for instruction 1947: 17.6177% +Rate for instruction 1948: 17.6126% +Rate for instruction 1949: 17.6055% +Rate for instruction 1950: 17.6004% +Rate for instruction 1951: 17.5934% +Rate for instruction 1952: 17.5883% +Rate for instruction 1953: 17.5872% +Rate for instruction 1954: 17.5861% +Rate for instruction 1955: 17.5849% +Rate for instruction 1956: 17.5936% +Rate for instruction 1957: 17.6023% +Rate for instruction 1958: 17.6032% +Rate for instruction 1959: 17.6119% +Rate for instruction 1960: 17.6225% +Rate for instruction 1961: 17.6174% +Rate for instruction 1962: 17.6261% +Rate for instruction 1963: 17.623% +Rate for instruction 1964: 17.6297% +Rate for instruction 1965: 17.6344% +Rate for instruction 1966: 17.6274% +Rate for instruction 1967: 17.6243% +Rate for instruction 1968: 17.6349% +Rate for instruction 1969: 17.6318% +Rate for instruction 1970: 17.6248% +Rate for instruction 1971: 17.6198% +Rate for instruction 1972: 17.6245% +Rate for instruction 1973: 17.6272% +Rate for instruction 1974: 17.6203% +Rate for instruction 1975: 17.6172% +Rate for instruction 1976: 17.6141% +Rate for instruction 1977: 17.6091% +Rate for instruction 1978: 17.606% +Rate for instruction 1979: 17.6068% +Rate for instruction 1980: 17.6018% +Rate for instruction 1981: 17.6046% +Rate for instruction 1982: 17.6093% +Rate for instruction 1983: 17.6062% +Rate for instruction 1984: 17.6012% +Rate for instruction 1985: 17.604% +Rate for instruction 1986: 17.6087% +Rate for instruction 1987: 17.6192% +Rate for instruction 1988: 17.6239% +Rate for instruction 1989: 17.6285% +Rate for instruction 1990: 17.639% +Rate for instruction 1991: 17.634% +Rate for instruction 1992: 17.6271% +Rate for instruction 1993: 17.6202% +Rate for instruction 1994: 17.6133% +Rate for instruction 1995: 17.6218% +Rate for instruction 1996: 17.6168% +Rate for instruction 1997: 17.6234% +Rate for instruction 1998: 17.6223% +Rate for instruction 1999: 17.6192% +Rate for instruction 2000: 17.6162% +Rate for instruction 2001: 17.6132% +Rate for instruction 2002: 17.6101% +Rate for instruction 2003: 17.6052% +Rate for instruction 2004: 17.6117% +Rate for instruction 2005: 17.6183% +Rate for instruction 2006: 17.6153% +Rate for instruction 2007: 17.6142% +Rate for instruction 2008: 17.6092% +Rate for instruction 2009: 17.6024% +Rate for instruction 2010: 17.6013% +Rate for instruction 2011: 17.6002% +Rate for instruction 2012: 17.5933% +Rate for instruction 2013: 17.5999% +Rate for instruction 2014: 17.6007% +Rate for instruction 2015: 17.6015% +Rate for instruction 2016: 17.6004% +Rate for instruction 2017: 17.5955% +Rate for instruction 2018: 17.6001% +Rate for instruction 2019: 17.599% +Rate for instruction 2020: 17.6074% +Rate for instruction 2021: 17.612% +Rate for instruction 2022: 17.6204% +Rate for instruction 2023: 17.6326% +Rate for instruction 2024: 17.6467% +Rate for instruction 2025: 17.6551% +Rate for instruction 2026: 17.6692% +Rate for instruction 2027: 17.6623% +Rate for instruction 2028: 17.665% +Rate for instruction 2029: 17.6677% +Rate for instruction 2030: 17.6609% +Rate for instruction 2031: 17.6673% +Rate for instruction 2032: 17.6662% +Rate for instruction 2033: 17.6651% +Rate for instruction 2034: 17.6602% +Rate for instruction 2035: 17.6609% +Rate for instruction 2036: 17.6542% +Rate for instruction 2037: 17.6512% +Rate for instruction 2038: 17.6501% +Rate for instruction 2039: 17.6433% +Rate for instruction 2040: 17.6365% +Rate for instruction 2041: 17.6373% +Rate for instruction 2042: 17.6306% +Rate for instruction 2043: 17.6295% +Rate for instruction 2044: 17.6265% +Rate for instruction 2045: 17.6235% +Rate for instruction 2046: 17.6187% +Rate for instruction 2047: 17.6251% +Rate for instruction 2048: 17.6202% +Rate for instruction 2049: 17.6248% +Rate for instruction 2050: 17.618% +Rate for instruction 2051: 17.6207% +Rate for instruction 2052: 17.6196% +Rate for instruction 2053: 17.6148% +Rate for instruction 2054: 17.6249% +Rate for instruction 2055: 17.622% +Rate for instruction 2056: 17.6153% +Rate for instruction 2057: 17.6105% +Rate for instruction 2058: 17.6206% +Rate for instruction 2059: 17.6214% +Rate for instruction 2060: 17.6184% +Rate for instruction 2061: 17.6211% +Rate for instruction 2062: 17.6218% +Rate for instruction 2063: 17.6189% +Rate for instruction 2064: 17.6234% +Rate for instruction 2065: 17.6167% +Rate for instruction 2066: 17.6101% +Rate for instruction 2067: 17.6034% +Rate for instruction 2068: 17.6023% +Rate for instruction 2069: 17.5957% +Rate for instruction 2070: 17.5909% +Rate for instruction 2071: 17.5843% +Rate for instruction 2072: 17.5814% +Rate for instruction 2073: 17.5784% +Rate for instruction 2074: 17.5792% +Rate for instruction 2075: 17.5745% +Rate for instruction 2076: 17.5734% +Rate for instruction 2077: 17.5742% +Rate for instruction 2078: 17.5713% +Rate for instruction 2079: 17.5684% +Rate for instruction 2080: 17.5655% +Rate for instruction 2081: 17.5626% +Rate for instruction 2082: 17.5616% +Rate for instruction 2083: 17.5624% +Rate for instruction 2084: 17.5576% +Rate for instruction 2085: 17.5566% +Rate for instruction 2086: 17.5611% +Rate for instruction 2087: 17.5564% +Rate for instruction 2088: 17.5608% +Rate for instruction 2089: 17.5543% +Rate for instruction 2090: 17.5496% +Rate for instruction 2091: 17.5485% +Rate for instruction 2092: 17.5438% +Rate for instruction 2093: 17.541% +Rate for instruction 2094: 17.5454% +Rate for instruction 2095: 17.5481% +Rate for instruction 2096: 17.5452% +Rate for instruction 2097: 17.546% +Rate for instruction 2098: 17.5468% +Rate for instruction 2099: 17.5458% +Rate for instruction 2100: 17.5429% +Rate for instruction 2101: 17.5492% +Rate for instruction 2102: 17.55% +Rate for instruction 2103: 17.549% +Rate for instruction 2104: 17.548% +Rate for instruction 2105: 17.5469% +Rate for instruction 2106: 17.5423% +Rate for instruction 2107: 17.5358% +Rate for instruction 2108: 17.5293% +Rate for instruction 2109: 17.5246% +Rate for instruction 2110: 17.5181% +Rate for instruction 2111: 17.5153% +Rate for instruction 2112: 17.5216% +Rate for instruction 2113: 17.5187% +Rate for instruction 2114: 17.5195% +Rate for instruction 2115: 17.524% +Rate for instruction 2116: 17.5175% +Rate for instruction 2117: 17.5129% +Rate for instruction 2118: 17.5101% +Rate for instruction 2119: 17.5109% +Rate for instruction 2120: 17.5099% +Rate for instruction 2121: 17.5143% +Rate for instruction 2122: 17.5097% +Rate for instruction 2123: 17.5105% +Rate for instruction 2124: 17.5059% +Rate for instruction 2125: 17.5067% +Rate for instruction 2126: 17.5039% +Rate for instruction 2127: 17.5011% +Rate for instruction 2128: 17.5073% +Rate for instruction 2129: 17.5009% +Rate for instruction 2130: 17.4963% +Rate for instruction 2131: 17.4899% +Rate for instruction 2132: 17.4961% +Rate for instruction 2133: 17.4915% +Rate for instruction 2134: 17.4869% +Rate for instruction 2135: 17.4842% +Rate for instruction 2136: 17.4814% +Rate for instruction 2137: 17.4786% +Rate for instruction 2138: 17.4758% +Rate for instruction 2139: 17.4694% +Rate for instruction 2140: 17.4739% +Rate for instruction 2141: 17.4693% +Rate for instruction 2142: 17.4719% +Rate for instruction 2143: 17.4745% +Rate for instruction 2144: 17.47% +Rate for instruction 2145: 17.4744% +Rate for instruction 2146: 17.4734% +Rate for instruction 2147: 17.4688% +Rate for instruction 2148: 17.475% +Rate for instruction 2149: 17.4741% +Rate for instruction 2150: 17.4695% +Rate for instruction 2151: 17.4685% +Rate for instruction 2152: 17.4622% +Rate for instruction 2153: 17.463% +Rate for instruction 2154: 17.4639% +Rate for instruction 2155: 17.4665% +Rate for instruction 2156: 17.4691% +Rate for instruction 2157: 17.4663% +Rate for instruction 2158: 17.476% +Rate for instruction 2159: 17.4715% +Rate for instruction 2160: 17.4741% +Rate for instruction 2161: 17.4838% +Rate for instruction 2162: 17.4935% +Rate for instruction 2163: 17.4979% +Rate for instruction 2164: 17.504% +Rate for instruction 2165: 17.5083% +Rate for instruction 2166: 17.5145% +Rate for instruction 2167: 17.5082% +Rate for instruction 2168: 17.5072% +Rate for instruction 2169: 17.5009% +Rate for instruction 2170: 17.5052% +Rate for instruction 2171: 17.5007% +Rate for instruction 2172: 17.498% +Rate for instruction 2173: 17.5023% +Rate for instruction 2174: 17.5084% +Rate for instruction 2175: 17.5092% +Rate for instruction 2176: 17.5029% +Rate for instruction 2177: 17.5055% +Rate for instruction 2178: 17.5027% +Rate for instruction 2179: 17.5106% +Rate for instruction 2180: 17.5202% +Rate for instruction 2181: 17.5316% +Rate for instruction 2182: 17.527% +Rate for instruction 2183: 17.5261% +Rate for instruction 2184: 17.5233% +Rate for instruction 2185: 17.5188% +Rate for instruction 2186: 17.5126% +Rate for instruction 2187: 17.5098% +Rate for instruction 2188: 17.5054% +Rate for instruction 2189: 17.5009% +Rate for instruction 2190: 17.4946% +Rate for instruction 2191: 17.4902% +Rate for instruction 2192: 17.4875% +Rate for instruction 2193: 17.4935% +Rate for instruction 2194: 17.4908% +Rate for instruction 2195: 17.4898% +Rate for instruction 2196: 17.4854% +Rate for instruction 2197: 17.4879% +Rate for instruction 2198: 17.487% +Rate for instruction 2199: 17.4825% +Rate for instruction 2200: 17.4868% +Rate for instruction 2201: 17.4946% +Rate for instruction 2202: 17.4989% +Rate for instruction 2203: 17.4962% +Rate for instruction 2204: 17.5004% +Rate for instruction 2205: 17.4942% +Rate for instruction 2206: 17.4881% +Rate for instruction 2207: 17.4836% +Rate for instruction 2208: 17.4775% +Rate for instruction 2209: 17.473% +Rate for instruction 2210: 17.4669% +Rate for instruction 2211: 17.4694% +Rate for instruction 2212: 17.4737% +Rate for instruction 2213: 17.471% +Rate for instruction 2214: 17.4648% +Rate for instruction 2215: 17.4622% +Rate for instruction 2216: 17.4664% +Rate for instruction 2217: 17.4724% +Rate for instruction 2218: 17.4663% +Rate for instruction 2219: 17.4636% +Rate for instruction 2220: 17.4627% +Rate for instruction 2221: 17.4617% +Rate for instruction 2222: 17.4625% +Rate for instruction 2223: 17.4581% +Rate for instruction 2224: 17.4624% +Rate for instruction 2225: 17.4649% +Rate for instruction 2226: 17.4623% +Rate for instruction 2227: 17.4682% +Rate for instruction 2228: 17.4656% +Rate for instruction 2229: 17.4698% +Rate for instruction 2230: 17.4654% +Rate for instruction 2231: 17.4697% +Rate for instruction 2232: 17.4636% +Rate for instruction 2233: 17.4575% +Rate for instruction 2234: 17.4531% +Rate for instruction 2235: 17.447% +Rate for instruction 2236: 17.4427% +Rate for instruction 2237: 17.4366% +Rate for instruction 2238: 17.4357% +Rate for instruction 2239: 17.4382% +Rate for instruction 2240: 17.4338% +Rate for instruction 2241: 17.4312% +Rate for instruction 2242: 17.432% +Rate for instruction 2243: 17.4362% +Rate for instruction 2244: 17.437% +Rate for instruction 2245: 17.4413% +Rate for instruction 2246: 17.4369% +Rate for instruction 2247: 17.4429% +Rate for instruction 2248: 17.4368% +Rate for instruction 2249: 17.4427% +Rate for instruction 2250: 17.4452% +Rate for instruction 2251: 17.446% +Rate for instruction 2252: 17.44% +Rate for instruction 2253: 17.4357% +Rate for instruction 2254: 17.4433% +Rate for instruction 2255: 17.4458% +Rate for instruction 2256: 17.4449% +Rate for instruction 2257: 17.4406% +Rate for instruction 2258: 17.4379% +Rate for instruction 2259: 17.4404% +Rate for instruction 2260: 17.4361% +Rate for instruction 2261: 17.4386% +Rate for instruction 2262: 17.436% +Rate for instruction 2263: 17.4317% +Rate for instruction 2264: 17.4376% +Rate for instruction 2265: 17.4435% +Rate for instruction 2266: 17.4392% +Rate for instruction 2267: 17.4366% +Rate for instruction 2268: 17.4323% +Rate for instruction 2269: 17.4263% +Rate for instruction 2270: 17.4254% +Rate for instruction 2271: 17.4194% +Rate for instruction 2272: 17.4202% +Rate for instruction 2273: 17.4193% +Rate for instruction 2274: 17.4167% +Rate for instruction 2275: 17.4192% +Rate for instruction 2276: 17.4133% +Rate for instruction 2277: 17.4107% +Rate for instruction 2278: 17.4098% +Rate for instruction 2279: 17.4072% +Rate for instruction 2280: 17.4013% +Rate for instruction 2281: 17.3987% +Rate for instruction 2282: 17.3978% +Rate for instruction 2283: 17.3986% +Rate for instruction 2284: 17.3977% +Rate for instruction 2285: 17.3935% +Rate for instruction 2286: 17.396% +Rate for instruction 2287: 17.3968% +Rate for instruction 2288: 17.4026% +Rate for instruction 2289: 17.3984% +Rate for instruction 2290: 17.3975% +Rate for instruction 2291: 17.3966% +Rate for instruction 2292: 17.3974% +Rate for instruction 2293: 17.3949% +Rate for instruction 2294: 17.3923% +Rate for instruction 2295: 17.3898% +Rate for instruction 2296: 17.3839% +Rate for instruction 2297: 17.3847% +Rate for instruction 2298: 17.3788% +Rate for instruction 2299: 17.3796% +Rate for instruction 2300: 17.3787% +Rate for instruction 2301: 17.3729% +Rate for instruction 2302: 17.3753% +Rate for instruction 2303: 17.3695% +Rate for instruction 2304: 17.3636% +Rate for instruction 2305: 17.3694% +Rate for instruction 2306: 17.3735% +Rate for instruction 2307: 17.3827% +Rate for instruction 2308: 17.3785% +Rate for instruction 2309: 17.381% +Rate for instruction 2310: 17.3801% +Rate for instruction 2311: 17.3792% +Rate for instruction 2312: 17.385% +Rate for instruction 2313: 17.3891% +Rate for instruction 2314: 17.3849% +Rate for instruction 2315: 17.3907% +Rate for instruction 2316: 17.3865% +Rate for instruction 2317: 17.3907% +Rate for instruction 2318: 17.3848% +Rate for instruction 2319: 17.3806% +Rate for instruction 2320: 17.3881% +Rate for instruction 2321: 17.3922% +Rate for instruction 2322: 17.4029% +Rate for instruction 2323: 17.3987% +Rate for instruction 2324: 17.3962% +Rate for instruction 2325: 17.4003% +Rate for instruction 2326: 17.3978% +Rate for instruction 2327: 17.392% +Rate for instruction 2328: 17.3977% +Rate for instruction 2329: 17.3985% +Rate for instruction 2330: 17.3993% +Rate for instruction 2331: 17.4001% +Rate for instruction 2332: 17.4008% +Rate for instruction 2333: 17.4% +Rate for instruction 2334: 17.3975% +Rate for instruction 2335: 17.3933% +Rate for instruction 2336: 17.3908% +Rate for instruction 2337: 17.3899% +Rate for instruction 2338: 17.3874% +Rate for instruction 2339: 17.3817% +Rate for instruction 2340: 17.3792% +Rate for instruction 2341: 17.375% +Rate for instruction 2342: 17.3824% +Rate for instruction 2343: 17.3766% +Rate for instruction 2344: 17.3807% +Rate for instruction 2345: 17.3749% +Rate for instruction 2346: 17.379% +Rate for instruction 2347: 17.3749% +Rate for instruction 2348: 17.3822% +Rate for instruction 2349: 17.3764% +Rate for instruction 2350: 17.3838% +Rate for instruction 2351: 17.3845% +Rate for instruction 2352: 17.3821% +Rate for instruction 2353: 17.3861% +Rate for instruction 2354: 17.3853% +Rate for instruction 2355: 17.3877% +Rate for instruction 2356: 17.3819% +Rate for instruction 2357: 17.3778% +Rate for instruction 2358: 17.3737% +Rate for instruction 2359: 17.368% +Rate for instruction 2360: 17.3737% +Rate for instruction 2361: 17.3712% +Rate for instruction 2362: 17.3655% +Rate for instruction 2363: 17.3614% +Rate for instruction 2364: 17.3573% +Rate for instruction 2365: 17.3565% +Rate for instruction 2366: 17.3573% +Rate for instruction 2367: 17.3532% +Rate for instruction 2368: 17.3491% +Rate for instruction 2369: 17.3434% +Rate for instruction 2370: 17.3474% +Rate for instruction 2371: 17.345% +Rate for instruction 2372: 17.3393% +Rate for instruction 2373: 17.3352% +Rate for instruction 2374: 17.3296% +Rate for instruction 2375: 17.3271% +Rate for instruction 2376: 17.3279% +Rate for instruction 2377: 17.3287% +Rate for instruction 2378: 17.3263% +Rate for instruction 2379: 17.3255% +Rate for instruction 2380: 17.323% +Rate for instruction 2381: 17.3174% +Rate for instruction 2382: 17.3133% +Rate for instruction 2383: 17.3158% +Rate for instruction 2384: 17.3117% +Rate for instruction 2385: 17.3093% +Rate for instruction 2386: 17.3085% +Rate for instruction 2387: 17.3077% +Rate for instruction 2388: 17.3021% +Rate for instruction 2389: 17.3045% +Rate for instruction 2390: 17.3037% +Rate for instruction 2391: 17.3061% +Rate for instruction 2392: 17.3101% +Rate for instruction 2393: 17.3061% +Rate for instruction 2394: 17.3117% +Rate for instruction 2395: 17.3077% +Rate for instruction 2396: 17.3021% +Rate for instruction 2397: 17.2981% +Rate for instruction 2398: 17.2989% +Rate for instruction 2399: 17.2965% +Rate for instruction 2400: 17.2941% +Rate for instruction 2401: 17.2885% +Rate for instruction 2402: 17.2861% +Rate for instruction 2403: 17.2821% +Rate for instruction 2404: 17.2781% +Rate for instruction 2405: 17.2805% +Rate for instruction 2406: 17.2781% +Rate for instruction 2407: 17.2773% +Rate for instruction 2408: 17.2829% +Rate for instruction 2409: 17.2822% +Rate for instruction 2410: 17.283% +Rate for instruction 2411: 17.2838% +Rate for instruction 2412: 17.2782% +Rate for instruction 2413: 17.2822% +Rate for instruction 2414: 17.2782% +Rate for instruction 2415: 17.2854% +Rate for instruction 2416: 17.2846% +Rate for instruction 2417: 17.287% +Rate for instruction 2418: 17.2894% +Rate for instruction 2419: 17.2886% +Rate for instruction 2420: 17.2878% +Rate for instruction 2421: 17.2902% +Rate for instruction 2422: 17.2942% +Rate for instruction 2423: 17.2918% +Rate for instruction 2424: 17.2879% +Rate for instruction 2425: 17.2871% +Rate for instruction 2426: 17.2815% +Rate for instruction 2427: 17.2776% +Rate for instruction 2428: 17.2721% +Rate for instruction 2429: 17.2745% +Rate for instruction 2430: 17.2784% +Rate for instruction 2431: 17.2761% +Rate for instruction 2432: 17.2705% +Rate for instruction 2433: 17.2713% +Rate for instruction 2434: 17.2658% +Rate for instruction 2435: 17.2651% +Rate for instruction 2436: 17.2674% +Rate for instruction 2437: 17.2714% +Rate for instruction 2438: 17.2722% +Rate for instruction 2439: 17.2777% +Rate for instruction 2440: 17.2848% +Rate for instruction 2441: 17.2809% +Rate for instruction 2442: 17.277% +Rate for instruction 2443: 17.2778% +Rate for instruction 2444: 17.2739% +Rate for instruction 2445: 17.2778% +Rate for instruction 2446: 17.2802% +Rate for instruction 2447: 17.2747% +Rate for instruction 2448: 17.2786% +Rate for instruction 2449: 17.281% +Rate for instruction 2450: 17.2771% +Rate for instruction 2451: 17.2748% +Rate for instruction 2452: 17.2724% +Rate for instruction 2453: 17.2795% +Rate for instruction 2454: 17.2818% +Rate for instruction 2455: 17.2811% +Rate for instruction 2456: 17.2819% +Rate for instruction 2457: 17.2827% +Rate for instruction 2458: 17.2913% +Rate for instruction 2459: 17.2858% +Rate for instruction 2460: 17.296% +Rate for instruction 2461: 17.3046% +Rate for instruction 2462: 17.3069% +Rate for instruction 2463: 17.3077% +Rate for instruction 2464: 17.31% +Rate for instruction 2465: 17.3046% +Rate for instruction 2466: 17.3085% +Rate for instruction 2467: 17.3077% +Rate for instruction 2468: 17.3038% +Rate for instruction 2469: 17.303% +Rate for instruction 2470: 17.3116% +Rate for instruction 2471: 17.3061% +Rate for instruction 2472: 17.3007% +Rate for instruction 2473: 17.2953% +Rate for instruction 2474: 17.2945% +Rate for instruction 2475: 17.2891% +Rate for instruction 2476: 17.2852% +Rate for instruction 2477: 17.2798% +Rate for instruction 2478: 17.2883% +Rate for instruction 2479: 17.286% +Rate for instruction 2480: 17.2821% +Rate for instruction 2481: 17.2798% +Rate for instruction 2482: 17.279% +Rate for instruction 2483: 17.2752% +Rate for instruction 2484: 17.2729% +Rate for instruction 2485: 17.2706% +Rate for instruction 2486: 17.2698% +Rate for instruction 2487: 17.266% +Rate for instruction 2488: 17.2606% +Rate for instruction 2489: 17.2567% +Rate for instruction 2490: 17.2575% +Rate for instruction 2491: 17.2537% +Rate for instruction 2492: 17.2498% +Rate for instruction 2493: 17.2491% +Rate for instruction 2494: 17.2453% +Rate for instruction 2495: 17.2399% +Rate for instruction 2496: 17.2391% +Rate for instruction 2497: 17.2353% +Rate for instruction 2498: 17.2346% +Rate for instruction 2499: 17.2292% +Rate for instruction 2500: 17.2285% +Rate for instruction 2501: 17.2278% +Rate for instruction 2502: 17.227% +Rate for instruction 2503: 17.2217% +Rate for instruction 2504: 17.2179% +Rate for instruction 2505: 17.2125% +Rate for instruction 2506: 17.2118% +Rate for instruction 2507: 17.208% +Rate for instruction 2508: 17.2058% +Rate for instruction 2509: 17.2035% +Rate for instruction 2510: 17.1997% +Rate for instruction 2511: 17.2005% +Rate for instruction 2512: 17.2029% +Rate for instruction 2513: 17.1991% +Rate for instruction 2514: 17.1983% +Rate for instruction 2515: 17.1976% +Rate for instruction 2516: 17.1939% +Rate for instruction 2517: 17.1931% +Rate for instruction 2518: 17.1878% +Rate for instruction 2519: 17.1902% +Rate for instruction 2520: 17.1879% +Rate for instruction 2521: 17.1826% +Rate for instruction 2522: 17.1865% +Rate for instruction 2523: 17.1812% +Rate for instruction 2524: 17.1835% +Rate for instruction 2525: 17.1844% +Rate for instruction 2526: 17.1852% +Rate for instruction 2527: 17.186% +Rate for instruction 2528: 17.1822% +Rate for instruction 2529: 17.1815% +Rate for instruction 2530: 17.1793% +Rate for instruction 2531: 17.174% +Rate for instruction 2532: 17.1688% +Rate for instruction 2533: 17.1681% +Rate for instruction 2534: 17.1658% +Rate for instruction 2535: 17.1636% +Rate for instruction 2536: 17.1584% +Rate for instruction 2537: 17.1607% +Rate for instruction 2538: 17.1585% +Rate for instruction 2539: 17.1563% +Rate for instruction 2540: 17.1571% +Rate for instruction 2541: 17.1534% +Rate for instruction 2542: 17.1617% +Rate for instruction 2543: 17.1671% +Rate for instruction 2544: 17.1694% +Rate for instruction 2545: 17.1763% +Rate for instruction 2546: 17.1756% +Rate for instruction 2547: 17.1794% +Rate for instruction 2548: 17.1742% +Rate for instruction 2549: 17.1795% +Rate for instruction 2550: 17.1758% +Rate for instruction 2551: 17.1721% +Rate for instruction 2552: 17.1668% +Rate for instruction 2553: 17.1631% +Rate for instruction 2554: 17.1654% +Rate for instruction 2555: 17.1617% +Rate for instruction 2556: 17.1655% +Rate for instruction 2557: 17.1649% +Rate for instruction 2558: 17.1612% +Rate for instruction 2559: 17.165% +Rate for instruction 2560: 17.1598% +Rate for instruction 2561: 17.1606% +Rate for instruction 2562: 17.1674% +Rate for instruction 2563: 17.1712% +Rate for instruction 2564: 17.1765% +Rate for instruction 2565: 17.1713% +Rate for instruction 2566: 17.1736% +Rate for instruction 2567: 17.1729% +Rate for instruction 2568: 17.1812% +Rate for instruction 2569: 17.1895% +Rate for instruction 2570: 17.1933% +Rate for instruction 2571: 17.1925% +Rate for instruction 2572: 17.1918% +Rate for instruction 2573: 17.1882% +Rate for instruction 2574: 17.186% +Rate for instruction 2575: 17.1823% +Rate for instruction 2576: 17.1786% +Rate for instruction 2577: 17.1764% +Rate for instruction 2578: 17.1727% +Rate for instruction 2579: 17.178% +Rate for instruction 2580: 17.1803% +Rate for instruction 2581: 17.1751% +Rate for instruction 2582: 17.17% +Rate for instruction 2583: 17.1678% +Rate for instruction 2584: 17.1626% +Rate for instruction 2585: 17.1619% +Rate for instruction 2586: 17.1598% +Rate for instruction 2587: 17.1546% +Rate for instruction 2588: 17.1524% +Rate for instruction 2589: 17.1518% +Rate for instruction 2590: 17.1511% +Rate for instruction 2591: 17.1489% +Rate for instruction 2592: 17.1468% +Rate for instruction 2593: 17.1476% +Rate for instruction 2594: 17.1454% +Rate for instruction 2595: 17.1521% +Rate for instruction 2596: 17.1574% +Rate for instruction 2597: 17.1582% +Rate for instruction 2598: 17.1634% +Rate for instruction 2599: 17.1583% +Rate for instruction 2600: 17.1606% +Rate for instruction 2601: 17.1658% +Rate for instruction 2602: 17.171% +Rate for instruction 2603: 17.1748% +Rate for instruction 2604: 17.1741% +Rate for instruction 2605: 17.1749% +Rate for instruction 2606: 17.1698% +Rate for instruction 2607: 17.1735% +Rate for instruction 2608: 17.1802% +Rate for instruction 2609: 17.1854% +Rate for instruction 2610: 17.1862% +Rate for instruction 2611: 17.184% +Rate for instruction 2612: 17.1921% +Rate for instruction 2613: 17.2003% +Rate for instruction 2614: 17.1996% +Rate for instruction 2615: 17.1974% +Rate for instruction 2616: 17.1967% +Rate for instruction 2617: 17.1931% +Rate for instruction 2618: 17.188% +Rate for instruction 2619: 17.1858% +Rate for instruction 2620: 17.1896% +Rate for instruction 2621: 17.1918% +Rate for instruction 2622: 17.1882% +Rate for instruction 2623: 17.1875% +Rate for instruction 2624: 17.1883% +Rate for instruction 2625: 17.1876% +Rate for instruction 2626: 17.1884% +Rate for instruction 2627: 17.1891% +Rate for instruction 2628: 17.1855% +Rate for instruction 2629: 17.1819% +Rate for instruction 2630: 17.1783% +Rate for instruction 2631: 17.1791% +Rate for instruction 2632: 17.1755% +Rate for instruction 2633: 17.1734% +Rate for instruction 2634: 17.1741% +Rate for instruction 2635: 17.172% +Rate for instruction 2636: 17.1728% +Rate for instruction 2637: 17.1706% +Rate for instruction 2638: 17.17% +Rate for instruction 2639: 17.1678% +Rate for instruction 2640: 17.1642% +Rate for instruction 2641: 17.165% +Rate for instruction 2642: 17.16% +Rate for instruction 2643: 17.1622% +Rate for instruction 2644: 17.1659% +Rate for instruction 2645: 17.1638% +Rate for instruction 2646: 17.1602% +Rate for instruction 2647: 17.161% +Rate for instruction 2648: 17.1589% +Rate for instruction 2649: 17.1582% +Rate for instruction 2650: 17.159% +Rate for instruction 2651: 17.154% +Rate for instruction 2652: 17.1489% +Rate for instruction 2653: 17.1468% +Rate for instruction 2654: 17.1433% +Rate for instruction 2655: 17.1426% +Rate for instruction 2656: 17.1419% +Rate for instruction 2657: 17.1413% +Rate for instruction 2658: 17.1421% +Rate for instruction 2659: 17.1371% +Rate for instruction 2660: 17.135% +Rate for instruction 2661: 17.1343% +Rate for instruction 2662: 17.1351% +Rate for instruction 2663: 17.133% +Rate for instruction 2664: 17.1338% +Rate for instruction 2665: 17.1331% +Rate for instruction 2666: 17.1325% +Rate for instruction 2667: 17.1275% +Rate for instruction 2668: 17.1297% +Rate for instruction 2669: 17.132% +Rate for instruction 2670: 17.1284% +Rate for instruction 2671: 17.1278% +Rate for instruction 2672: 17.1257% +Rate for instruction 2673: 17.1236% +Rate for instruction 2674: 17.1215% +Rate for instruction 2675: 17.1223% +Rate for instruction 2676: 17.1202% +Rate for instruction 2677: 17.1181% +Rate for instruction 2678: 17.1146% +Rate for instruction 2679: 17.1096% +Rate for instruction 2680: 17.109% +Rate for instruction 2681: 17.1098% +Rate for instruction 2682: 17.1091% +Rate for instruction 2683: 17.1085% +Rate for instruction 2684: 17.105% +Rate for instruction 2685: 17.1015% +Rate for instruction 2686: 17.1009% +Rate for instruction 2687: 17.0988% +Rate for instruction 2688: 17.0967% +Rate for instruction 2689: 17.0947% +Rate for instruction 2690: 17.0926% +Rate for instruction 2691: 17.0934% +Rate for instruction 2692: 17.0942% +Rate for instruction 2693: 17.0935% +Rate for instruction 2694: 17.0915% +Rate for instruction 2695: 17.0894% +Rate for instruction 2696: 17.0874% +Rate for instruction 2697: 17.0939% +Rate for instruction 2698: 17.1004% +Rate for instruction 2699: 17.0983% +Rate for instruction 2700: 17.0934% +Rate for instruction 2701: 17.0885% +Rate for instruction 2702: 17.0879% +Rate for instruction 2703: 17.083% +Rate for instruction 2704: 17.0823% +Rate for instruction 2705: 17.086% +Rate for instruction 2706: 17.0825% +Rate for instruction 2707: 17.0833% +Rate for instruction 2708: 17.0883% +Rate for instruction 2709: 17.0891% +Rate for instruction 2710: 17.0913% +Rate for instruction 2711: 17.0978% +Rate for instruction 2712: 17.1014% +Rate for instruction 2713: 17.1065% +Rate for instruction 2714: 17.1058% +Rate for instruction 2715: 17.1123% +Rate for instruction 2716: 17.1159% +Rate for instruction 2717: 17.111% +Rate for instruction 2718: 17.1089% +Rate for instruction 2719: 17.114% +Rate for instruction 2720: 17.1119% +Rate for instruction 2721: 17.107% +Rate for instruction 2722: 17.1036% +Rate for instruction 2723: 17.1015% +Rate for instruction 2724: 17.0981% +Rate for instruction 2725: 17.0961% +Rate for instruction 2726: 17.0912% +Rate for instruction 2727: 17.0863% +Rate for instruction 2728: 17.0829% +Rate for instruction 2729: 17.0823% +Rate for instruction 2730: 17.0873% +Rate for instruction 2731: 17.0909% +Rate for instruction 2732: 17.1001% +Rate for instruction 2733: 17.0953% +Rate for instruction 2734: 17.0918% +Rate for instruction 2735: 17.094% +Rate for instruction 2736: 17.092% +Rate for instruction 2737: 17.0956% +Rate for instruction 2738: 17.0992% +Rate for instruction 2739: 17.0957% +Rate for instruction 2740: 17.0993% +Rate for instruction 2741: 17.1057% +Rate for instruction 2742: 17.1051% +Rate for instruction 2743: 17.1031% +Rate for instruction 2744: 17.1108% +Rate for instruction 2745: 17.1116% +Rate for instruction 2746: 17.1068% +Rate for instruction 2747: 17.1033% +Rate for instruction 2748: 17.0985% +Rate for instruction 2749: 17.0965% +Rate for instruction 2750: 17.0917% +Rate for instruction 2751: 17.0883% +Rate for instruction 2752: 17.0835% +Rate for instruction 2753: 17.0842% +Rate for instruction 2754: 17.085% +Rate for instruction 2755: 17.0816% +Rate for instruction 2756: 17.0796% +Rate for instruction 2757: 17.0804% +Rate for instruction 2758: 17.077% +Rate for instruction 2759: 17.0722% +Rate for instruction 2760: 17.0674% +Rate for instruction 2761: 17.0668% +Rate for instruction 2762: 17.062% +Rate for instruction 2763: 17.0614% +Rate for instruction 2764: 17.0594% +Rate for instruction 2765: 17.0657% +Rate for instruction 2766: 17.0721% +Rate for instruction 2767: 17.0715% +Rate for instruction 2768: 17.0667% +Rate for instruction 2769: 17.0675% +Rate for instruction 2770: 17.0669% +Rate for instruction 2771: 17.0635% +Rate for instruction 2772: 17.0587% +Rate for instruction 2773: 17.054% +Rate for instruction 2774: 17.052% +Rate for instruction 2775: 17.05% +Rate for instruction 2776: 17.0549% +Rate for instruction 2777: 17.0557% +Rate for instruction 2778: 17.0551% +Rate for instruction 2779: 17.0587% +Rate for instruction 2780: 17.0553% +Rate for instruction 2781: 17.0575% +Rate for instruction 2782: 17.0527% +Rate for instruction 2783: 17.048% +Rate for instruction 2784: 17.0515% +Rate for instruction 2785: 17.0495% +Rate for instruction 2786: 17.0489% +Rate for instruction 2787: 17.0456% +Rate for instruction 2788: 17.0408% +Rate for instruction 2789: 17.0458% +Rate for instruction 2790: 17.0507% +Rate for instruction 2791: 17.0501% +Rate for instruction 2792: 17.0454% +Rate for instruction 2793: 17.042% +Rate for instruction 2794: 17.04% +Rate for instruction 2795: 17.0353% +Rate for instruction 2796: 17.0444% +Rate for instruction 2797: 17.0548% +Rate for instruction 2798: 17.0542% +Rate for instruction 2799: 17.0549% +Rate for instruction 2800: 17.053% +Rate for instruction 2801: 17.0483% +Rate for instruction 2802: 17.0463% +Rate for instruction 2803: 17.0443% +Rate for instruction 2804: 17.052% +Rate for instruction 2805: 17.0582% +Rate for instruction 2806: 17.0563% +Rate for instruction 2807: 17.0557% +Rate for instruction 2808: 17.0537% +Rate for instruction 2809: 17.06% +Rate for instruction 2810: 17.0621% +Rate for instruction 2811: 17.0629% +Rate for instruction 2812: 17.0609% +Rate for instruction 2813: 17.063% +Rate for instruction 2814: 17.0583% +Rate for instruction 2815: 17.0577% +Rate for instruction 2816: 17.0544% +Rate for instruction 2817: 17.0525% +Rate for instruction 2818: 17.0546% +Rate for instruction 2819: 17.0499% +Rate for instruction 2820: 17.0466% +Rate for instruction 2821: 17.0433% +Rate for instruction 2822: 17.0468% +Rate for instruction 2823: 17.0448% +Rate for instruction 2824: 17.0511% +Rate for instruction 2825: 17.0477% +Rate for instruction 2826: 17.0472% +Rate for instruction 2827: 17.0425% +Rate for instruction 2828: 17.0487% +Rate for instruction 2829: 17.044% +Rate for instruction 2830: 17.0394% +Rate for instruction 2831: 17.0401% +Rate for instruction 2832: 17.0436% +Rate for instruction 2833: 17.0417% +Rate for instruction 2834: 17.0452% +Rate for instruction 2835: 17.0514% +Rate for instruction 2836: 17.0589% +Rate for instruction 2837: 17.061% +Rate for instruction 2838: 17.0618% +Rate for instruction 2839: 17.0599% +Rate for instruction 2840: 17.0593% +Rate for instruction 2841: 17.0668% +Rate for instruction 2842: 17.0689% +Rate for instruction 2843: 17.0683% +Rate for instruction 2844: 17.0731% +Rate for instruction 2845: 17.0685% +Rate for instruction 2846: 17.0733% +Rate for instruction 2847: 17.07% +Rate for instruction 2848: 17.0721% +Rate for instruction 2849: 17.0729% +Rate for instruction 2850: 17.075% +Rate for instruction 2851: 17.0825% +Rate for instruction 2852: 17.0805% +Rate for instruction 2853: 17.0786% +Rate for instruction 2854: 17.0767% +Rate for instruction 2855: 17.0828% +Rate for instruction 2856: 17.0889% +Rate for instruction 2857: 17.087% +Rate for instruction 2858: 17.085% +Rate for instruction 2859: 17.0818% +Rate for instruction 2860: 17.0906% +Rate for instruction 2861: 17.09% +Rate for instruction 2862: 17.0948% +Rate for instruction 2863: 17.0901% +Rate for instruction 2864: 17.0963% +Rate for instruction 2865: 17.0997% +Rate for instruction 2866: 17.0991% +Rate for instruction 2867: 17.0945% +Rate for instruction 2868: 17.1019% +Rate for instruction 2869: 17.1094% +Rate for instruction 2870: 17.1061% +Rate for instruction 2871: 17.1055% +Rate for instruction 2872: 17.1035% +Rate for instruction 2873: 17.1029% +Rate for instruction 2874: 17.1023% +Rate for instruction 2875: 17.1071% +Rate for instruction 2876: 17.1065% +Rate for instruction 2877: 17.1019% +Rate for instruction 2878: 17.0986% +Rate for instruction 2879: 17.0967% +Rate for instruction 2880: 17.0988% +Rate for instruction 2881: 17.1022% +Rate for instruction 2882: 17.1056% +Rate for instruction 2883: 17.113% +Rate for instruction 2884: 17.1124% +Rate for instruction 2885: 17.1198% +Rate for instruction 2886: 17.1298% +Rate for instruction 2887: 17.1252% +Rate for instruction 2888: 17.1246% +Rate for instruction 2889: 17.1254% +Rate for instruction 2890: 17.1208% +Rate for instruction 2891: 17.1188% +Rate for instruction 2892: 17.1143% +Rate for instruction 2893: 17.119% +Rate for instruction 2894: 17.125% +Rate for instruction 2895: 17.1218% +Rate for instruction 2896: 17.1185% +Rate for instruction 2897: 17.1166% +Rate for instruction 2898: 17.1239% +Rate for instruction 2899: 17.126% +Rate for instruction 2900: 17.132% +Rate for instruction 2901: 17.1301% +Rate for instruction 2902: 17.1361% +Rate for instruction 2903: 17.1408% +Rate for instruction 2904: 17.1362% +Rate for instruction 2905: 17.1409% +Rate for instruction 2906: 17.1496% +Rate for instruction 2907: 17.1477% +Rate for instruction 2908: 17.155% +Rate for instruction 2909: 17.1597% +Rate for instruction 2910: 17.163% +Rate for instruction 2911: 17.1637% +Rate for instruction 2912: 17.1644% +Rate for instruction 2913: 17.1665% +Rate for instruction 2914: 17.1672% +Rate for instruction 2915: 17.1652% +Rate for instruction 2916: 17.1699% +Rate for instruction 2917: 17.1719% +Rate for instruction 2918: 17.1779% +Rate for instruction 2919: 17.1773% +Rate for instruction 2920: 17.1754% +Rate for instruction 2921: 17.1708% +Rate for instruction 2922: 17.1676% +Rate for instruction 2923: 17.163% +Rate for instruction 2924: 17.1637% +Rate for instruction 2925: 17.1592% +Rate for instruction 2926: 17.1559% +Rate for instruction 2927: 17.1606% +Rate for instruction 2928: 17.1639% +Rate for instruction 2929: 17.1646% +Rate for instruction 2930: 17.1627% +Rate for instruction 2931: 17.1581% +Rate for instruction 2932: 17.1549% +Rate for instruction 2933: 17.153% +Rate for instruction 2934: 17.1485% +Rate for instruction 2935: 17.1439% +Rate for instruction 2936: 17.1447% +Rate for instruction 2937: 17.1414% +Rate for instruction 2938: 17.1369% +Rate for instruction 2939: 17.1363% +Rate for instruction 2940: 17.1357% +Rate for instruction 2941: 17.1312% +Rate for instruction 2942: 17.1345% +Rate for instruction 2943: 17.1326% +Rate for instruction 2944: 17.1333% +Rate for instruction 2945: 17.1354% +Rate for instruction 2946: 17.1387% +Rate for instruction 2947: 17.1342% +Rate for instruction 2948: 17.1323% +Rate for instruction 2949: 17.1278% +Rate for instruction 2950: 17.1298% +Rate for instruction 2951: 17.1279% +Rate for instruction 2952: 17.1247% +Rate for instruction 2953: 17.1215% +Rate for instruction 2954: 17.1196% +Rate for instruction 2955: 17.119% +Rate for instruction 2956: 17.1197% +Rate for instruction 2957: 17.1179% +Rate for instruction 2958: 17.1186% +Rate for instruction 2959: 17.1206% +Rate for instruction 2960: 17.1252% +Rate for instruction 2961: 17.122% +Rate for instruction 2962: 17.124% +Rate for instruction 2963: 17.1247% +Rate for instruction 2964: 17.1228% +Rate for instruction 2965: 17.1223% +Rate for instruction 2966: 17.1191% +Rate for instruction 2967: 17.1159% +Rate for instruction 2968: 17.1166% +Rate for instruction 2969: 17.1147% +Rate for instruction 2970: 17.1193% +Rate for instruction 2971: 17.1162% +Rate for instruction 2972: 17.1169% +Rate for instruction 2973: 17.115% +Rate for instruction 2974: 17.1131% +Rate for instruction 2975: 17.1112% +Rate for instruction 2976: 17.1094% +Rate for instruction 2977: 17.1062% +Rate for instruction 2978: 17.1056% +Rate for instruction 2979: 17.1025% +Rate for instruction 2980: 17.1006% +Rate for instruction 2981: 17.0987% +Rate for instruction 2982: 17.0943% +Rate for instruction 2983: 17.0976% +Rate for instruction 2984: 17.0983% +Rate for instruction 2985: 17.0977% +Rate for instruction 2986: 17.0946% +Rate for instruction 2987: 17.0979% +Rate for instruction 2988: 17.1012% +Rate for instruction 2989: 17.0967% +Rate for instruction 2990: 17.0974% +Rate for instruction 2991: 17.0943% +Rate for instruction 2992: 17.1014% +Rate for instruction 2993: 17.097% +Rate for instruction 2994: 17.1041% +Rate for instruction 2995: 17.1061% +Rate for instruction 2996: 17.1081% +Rate for instruction 2997: 17.114% +Rate for instruction 2998: 17.116% +Rate for instruction 2999: 17.1141% +Rate for instruction 3000: 17.1135% +Rate for instruction 3001: 17.1104% +Rate for instruction 3002: 17.1149% +Rate for instruction 3003: 17.1195% +Rate for instruction 3004: 17.1215% +Rate for instruction 3005: 17.1209% +Rate for instruction 3006: 17.1229% +Rate for instruction 3007: 17.1236% +Rate for instruction 3008: 17.1217% +Rate for instruction 3009: 17.1199% +Rate for instruction 3010: 17.118% +Rate for instruction 3011: 17.1187% +Rate for instruction 3012: 17.1194% +Rate for instruction 3013: 17.115% +Rate for instruction 3014: 17.1119% +Rate for instruction 3015: 17.1113% +Rate for instruction 3016: 17.1069% +Rate for instruction 3017: 17.1063% +Rate for instruction 3018: 17.107% +Rate for instruction 3019: 17.109% +Rate for instruction 3020: 17.1059% +Rate for instruction 3021: 17.1079% +Rate for instruction 3022: 17.1099% +Rate for instruction 3023: 17.1055% +Rate for instruction 3024: 17.1062% +Rate for instruction 3025: 17.1043% +Rate for instruction 3026: 17.1076% +Rate for instruction 3027: 17.1134% +Rate for instruction 3028: 17.1141% +Rate for instruction 3029: 17.1135% +Rate for instruction 3030: 17.1091% +Rate for instruction 3031: 17.1111% +Rate for instruction 3032: 17.108% +Rate for instruction 3033: 17.1087% +Rate for instruction 3034: 17.1043% +Rate for instruction 3035: 17.1075% +Rate for instruction 3036: 17.112% +Rate for instruction 3037: 17.1077% +Rate for instruction 3038: 17.1122% +Rate for instruction 3039: 17.1103% +Rate for instruction 3040: 17.1136% +Rate for instruction 3041: 17.1168% +Rate for instruction 3042: 17.1187% +Rate for instruction 3043: 17.1182% +Rate for instruction 3044: 17.1176% +Rate for instruction 3045: 17.1158% +Rate for instruction 3046: 17.119% +Rate for instruction 3047: 17.1222% +Rate for instruction 3048: 17.1229% +Rate for instruction 3049: 17.1185% +Rate for instruction 3050: 17.1192% +Rate for instruction 3051: 17.1212% +Rate for instruction 3052: 17.1257% +Rate for instruction 3053: 17.1301% +Rate for instruction 3054: 17.1258% +Rate for instruction 3055: 17.134% +Rate for instruction 3056: 17.1372% +Rate for instruction 3057: 17.1366% +Rate for instruction 3058: 17.1411% +Rate for instruction 3059: 17.143% +Rate for instruction 3060: 17.145% +Rate for instruction 3061: 17.1419% +Rate for instruction 3062: 17.1413% +Rate for instruction 3063: 17.1382% +Rate for instruction 3064: 17.1351% +Rate for instruction 3065: 17.1371% +Rate for instruction 3066: 17.1378% +Rate for instruction 3067: 17.1372% +Rate for instruction 3068: 17.1404% +Rate for instruction 3069: 17.1373% +Rate for instruction 3070: 17.1417% +Rate for instruction 3071: 17.1474% +Rate for instruction 3072: 17.1469% +Rate for instruction 3073: 17.1488% +Rate for instruction 3074: 17.1507% +Rate for instruction 3075: 17.1551% +Rate for instruction 3076: 17.1521% +Rate for instruction 3077: 17.1577% +Rate for instruction 3078: 17.1547% +Rate for instruction 3079: 17.1603% +Rate for instruction 3080: 17.1635% +Rate for instruction 3081: 17.1642% +Rate for instruction 3082: 17.1711% +Rate for instruction 3083: 17.1755% +Rate for instruction 3084: 17.1712% +Rate for instruction 3085: 17.1756% +Rate for instruction 3086: 17.1713% +Rate for instruction 3087: 17.1669% +Rate for instruction 3088: 17.1651% +Rate for instruction 3089: 17.1708% +Rate for instruction 3090: 17.1714% +Rate for instruction 3091: 17.1758% +Rate for instruction 3092: 17.1715% +Rate for instruction 3093: 17.171% +Rate for instruction 3094: 17.1716% +Rate for instruction 3095: 17.176% +Rate for instruction 3096: 17.1717% +Rate for instruction 3097: 17.1749% +Rate for instruction 3098: 17.1706% +Rate for instruction 3099: 17.1725% +Rate for instruction 3100: 17.1682% +Rate for instruction 3101: 17.1663% +Rate for instruction 3102: 17.172% +Rate for instruction 3103: 17.1726% +Rate for instruction 3104: 17.1721% +Rate for instruction 3105: 17.1678% +Rate for instruction 3106: 17.1647% +Rate for instruction 3107: 17.1604% +Rate for instruction 3108: 17.1586% +Rate for instruction 3109: 17.1543% +Rate for instruction 3110: 17.1538% +Rate for instruction 3111: 17.152% +Rate for instruction 3112: 17.1477% +Rate for instruction 3113: 17.1447% +Rate for instruction 3114: 17.1404% +Rate for instruction 3115: 17.1423% +Rate for instruction 3116: 17.1405% +Rate for instruction 3117: 17.1387% +Rate for instruction 3118: 17.1381% +Rate for instruction 3119: 17.1351% +Rate for instruction 3120: 17.1321% +Rate for instruction 3121: 17.1315% +Rate for instruction 3122: 17.131% +Rate for instruction 3123: 17.1279% +Rate for instruction 3124: 17.1262% +Rate for instruction 3125: 17.1231% +Rate for instruction 3126: 17.125% +Rate for instruction 3127: 17.1208% +Rate for instruction 3128: 17.1178% +Rate for instruction 3129: 17.1135% +Rate for instruction 3130: 17.1118% +Rate for instruction 3131: 17.1088% +Rate for instruction 3132: 17.1107% +Rate for instruction 3133: 17.1113% +Rate for instruction 3134: 17.1132% +Rate for instruction 3135: 17.1115% +Rate for instruction 3136: 17.1134% +Rate for instruction 3137: 17.1128% +Rate for instruction 3138: 17.1147% +Rate for instruction 3139: 17.1105% +Rate for instruction 3140: 17.1075% +Rate for instruction 3141: 17.1045% +Rate for instruction 3142: 17.1052% +Rate for instruction 3143: 17.1046% +Rate for instruction 3144: 17.1004% +Rate for instruction 3145: 17.0974% +Rate for instruction 3146: 17.0932% +Rate for instruction 3147: 17.0927% +Rate for instruction 3148: 17.0933% +Rate for instruction 3149: 17.0891% +Rate for instruction 3150: 17.0849% +Rate for instruction 3151: 17.082% +Rate for instruction 3152: 17.0826% +Rate for instruction 3153: 17.0833% +Rate for instruction 3154: 17.0901% +Rate for instruction 3155: 17.0908% +Rate for instruction 3156: 17.0939% +Rate for instruction 3157: 17.0921% +Rate for instruction 3158: 17.0891% +Rate for instruction 3159: 17.085% +Rate for instruction 3160: 17.0832% +Rate for instruction 3161: 17.0802% +Rate for instruction 3162: 17.0773% +Rate for instruction 3163: 17.0767% +Rate for instruction 3164: 17.0786% +Rate for instruction 3165: 17.0757% +Rate for instruction 3166: 17.0848% +Rate for instruction 3167: 17.0855% +Rate for instruction 3168: 17.0923% +Rate for instruction 3169: 17.0966% +Rate for instruction 3170: 17.0924% +Rate for instruction 3171: 17.0943% +Rate for instruction 3172: 17.0998% +Rate for instruction 3173: 17.1041% +Rate for instruction 3174: 17.1084% +Rate for instruction 3175: 17.1067% +Rate for instruction 3176: 17.1073% +Rate for instruction 3177: 17.1104% +Rate for instruction 3178: 17.1111% +Rate for instruction 3179: 17.1154% +Rate for instruction 3180: 17.1209% +Rate for instruction 3181: 17.1252% +Rate for instruction 3182: 17.1307% +Rate for instruction 3183: 17.1337% +Rate for instruction 3184: 17.1296% +Rate for instruction 3185: 17.1266% +Rate for instruction 3186: 17.1309% +Rate for instruction 3187: 17.1303% +Rate for instruction 3188: 17.1286% +Rate for instruction 3189: 17.1317% +Rate for instruction 3190: 17.1359% +Rate for instruction 3191: 17.1354% +Rate for instruction 3192: 17.1372% +Rate for instruction 3193: 17.1427% +Rate for instruction 3194: 17.1482% +Rate for instruction 3195: 17.144% +Rate for instruction 3196: 17.1483% +Rate for instruction 3197: 17.1477% +Rate for instruction 3198: 17.1436% +Rate for instruction 3199: 17.1454% +Rate for instruction 3200: 17.1413% +Rate for instruction 3201: 17.1371% +Rate for instruction 3202: 17.1354% +Rate for instruction 3203: 17.1336% +Rate for instruction 3204: 17.1355% +Rate for instruction 3205: 17.1361% +Rate for instruction 3206: 17.144% +Rate for instruction 3207: 17.1458% +Rate for instruction 3208: 17.1513% +Rate for instruction 3209: 17.1495% +Rate for instruction 3210: 17.1466% +Rate for instruction 3211: 17.1448% +Rate for instruction 3212: 17.1419% +Rate for instruction 3213: 17.1414% +Rate for instruction 3214: 17.1372% +Rate for instruction 3215: 17.1355% +Rate for instruction 3216: 17.1349% +Rate for instruction 3217: 17.132% +Rate for instruction 3218: 17.1303% +Rate for instruction 3219: 17.1297% +Rate for instruction 3220: 17.1292% +Rate for instruction 3221: 17.1286% +Rate for instruction 3222: 17.1245% +Rate for instruction 3223: 17.1228% +Rate for instruction 3224: 17.1234% +Rate for instruction 3225: 17.1205% +Rate for instruction 3226: 17.1247% +Rate for instruction 3227: 17.1302% +Rate for instruction 3228: 17.132% +Rate for instruction 3229: 17.1327% +Rate for instruction 3230: 17.1345% +Rate for instruction 3231: 17.1304% +Rate for instruction 3232: 17.1286% +Rate for instruction 3233: 17.1269% +Rate for instruction 3234: 17.1228% +Rate for instruction 3235: 17.1211% +Rate for instruction 3236: 17.117% +Rate for instruction 3237: 17.1165% +Rate for instruction 3238: 17.1135% +Rate for instruction 3239: 17.1118% +Rate for instruction 3240: 17.1089% +Rate for instruction 3241: 17.1084% +Rate for instruction 3242: 17.1079% +Rate for instruction 3243: 17.1038% +Rate for instruction 3244: 17.1009% +Rate for instruction 3245: 17.1051% +Rate for instruction 3246: 17.1022% +Rate for instruction 3247: 17.1052% +Rate for instruction 3248: 17.1035% +Rate for instruction 3249: 17.103% +Rate for instruction 3250: 17.0989% +Rate for instruction 3251: 17.0984% +Rate for instruction 3252: 17.099% +Rate for instruction 3253: 17.0973% +Rate for instruction 3254: 17.0991% +Rate for instruction 3255: 17.1022% +Rate for instruction 3256: 17.0993% +Rate for instruction 3257: 17.0964% +Rate for instruction 3258: 17.0947% +Rate for instruction 3259: 17.0965% +Rate for instruction 3260: 17.1007% +Rate for instruction 3261: 17.1096% +Rate for instruction 3262: 17.1067% +Rate for instruction 3263: 17.1109% +Rate for instruction 3264: 17.1139% +Rate for instruction 3265: 17.1134% +Rate for instruction 3266: 17.1176% +Rate for instruction 3267: 17.1135% +Rate for instruction 3268: 17.1153% +Rate for instruction 3269: 17.1124% +Rate for instruction 3270: 17.1096% +Rate for instruction 3271: 17.1079% +Rate for instruction 3272: 17.1073% +Rate for instruction 3273: 17.1068% +Rate for instruction 3274: 17.1075% +Rate for instruction 3275: 17.1034% +Rate for instruction 3276: 17.1017% +Rate for instruction 3277: 17.1024% +Rate for instruction 3278: 17.1042% +Rate for instruction 3279: 17.1013% +Rate for instruction 3280: 17.102% +Rate for instruction 3281: 17.0991% +Rate for instruction 3282: 17.0962% +Rate for instruction 3283: 17.0945% +Rate for instruction 3284: 17.0917% +Rate for instruction 3285: 17.0888% +Rate for instruction 3286: 17.0918% +Rate for instruction 3287: 17.096% +Rate for instruction 3288: 17.0943% +Rate for instruction 3289: 17.0961% +Rate for instruction 3290: 17.0979% +Rate for instruction 3291: 17.0986% +Rate for instruction 3292: 17.0957% +Rate for instruction 3293: 17.0928% +Rate for instruction 3294: 17.0935% +Rate for instruction 3295: 17.0965% +Rate for instruction 3296: 17.0936% +Rate for instruction 3297: 17.0931% +Rate for instruction 3298: 17.0914% +Rate for instruction 3299: 17.0932% +Rate for instruction 3300: 17.0904% +Rate for instruction 3301: 17.0922% +Rate for instruction 3302: 17.0894% +Rate for instruction 3303: 17.0923% +Rate for instruction 3304: 17.0895% +Rate for instruction 3305: 17.0855% +Rate for instruction 3306: 17.0826% +Rate for instruction 3307: 17.0798% +Rate for instruction 3308: 17.077% +Rate for instruction 3309: 17.0765% +Rate for instruction 3310: 17.0783% +Rate for instruction 3311: 17.0743% +Rate for instruction 3312: 17.0726% +Rate for instruction 3313: 17.0709% +Rate for instruction 3314: 17.0681% +Rate for instruction 3315: 17.0653% +Rate for instruction 3316: 17.0659% +Rate for instruction 3317: 17.0654% +Rate for instruction 3318: 17.0649% +Rate for instruction 3319: 17.0621% +Rate for instruction 3320: 17.0651% +Rate for instruction 3321: 17.0634% +Rate for instruction 3322: 17.0606% +Rate for instruction 3323: 17.0566% +Rate for instruction 3324: 17.0526% +Rate for instruction 3325: 17.0533% +Rate for instruction 3326: 17.0493% +Rate for instruction 3327: 17.0558% +Rate for instruction 3328: 17.0552% +Rate for instruction 3329: 17.0559% +Rate for instruction 3330: 17.0531% +Rate for instruction 3331: 17.0491% +Rate for instruction 3332: 17.0509% +Rate for instruction 3333: 17.0493% +Rate for instruction 3334: 17.0488% +Rate for instruction 3335: 17.0506% +Rate for instruction 3336: 17.0478% +Rate for instruction 3337: 17.0554% +Rate for instruction 3338: 17.0583% +Rate for instruction 3339: 17.0567% +Rate for instruction 3340: 17.0608% +Rate for instruction 3341: 17.0637% +Rate for instruction 3342: 17.0632% +Rate for instruction 3343: 17.0662% +Rate for instruction 3344: 17.0622% +Rate for instruction 3345: 17.0629% +Rate for instruction 3346: 17.0589% +Rate for instruction 3347: 17.0561% +Rate for instruction 3348: 17.0591% +Rate for instruction 3349: 17.062% +Rate for instruction 3350: 17.0672% +Rate for instruction 3351: 17.069% +Rate for instruction 3352: 17.0674% +Rate for instruction 3353: 17.0703% +Rate for instruction 3354: 17.071% +Rate for instruction 3355: 17.0693% +Rate for instruction 3356: 17.0677% +Rate for instruction 3357: 17.0649% +Rate for instruction 3358: 17.0644% +Rate for instruction 3359: 17.0616% +Rate for instruction 3360: 17.0577% +Rate for instruction 3361: 17.0537% +Rate for instruction 3362: 17.0521% +Rate for instruction 3363: 17.0504% +Rate for instruction 3364: 17.0511% +Rate for instruction 3365: 17.0506% +Rate for instruction 3366: 17.049% +Rate for instruction 3367: 17.0496% +Rate for instruction 3368: 17.0457% +Rate for instruction 3369: 17.0441% +Rate for instruction 3370: 17.0447% +Rate for instruction 3371: 17.0476% +Rate for instruction 3372: 17.0517% +Rate for instruction 3373: 17.0489% +Rate for instruction 3374: 17.0462% +Rate for instruction 3375: 17.0525% +Rate for instruction 3376: 17.0543% +Rate for instruction 3377: 17.0561% +Rate for instruction 3378: 17.0533% +Rate for instruction 3379: 17.0551% +Rate for instruction 3380: 17.0534% +Rate for instruction 3381: 17.053% +Rate for instruction 3382: 17.0536% +Rate for instruction 3383: 17.0599% +Rate for instruction 3384: 17.0651% +Rate for instruction 3385: 17.0657% +Rate for instruction 3386: 17.0618% +Rate for instruction 3387: 17.0602% +Rate for instruction 3388: 17.0563% +Rate for instruction 3389: 17.0536% +Rate for instruction 3390: 17.0497% +Rate for instruction 3391: 17.0492% +Rate for instruction 3392: 17.0453% +Rate for instruction 3393: 17.0493% +Rate for instruction 3394: 17.0488% +Rate for instruction 3395: 17.0449% +Rate for instruction 3396: 17.0445% +Rate for instruction 3397: 17.044% +Rate for instruction 3398: 17.0435% +Rate for instruction 3399: 17.0407% +Rate for instruction 3400: 17.0402% +Rate for instruction 3401: 17.0375% +Rate for instruction 3402: 17.0347% +Rate for instruction 3403: 17.0309% +Rate for instruction 3404: 17.0281% +Rate for instruction 3405: 17.0276% +Rate for instruction 3406: 17.0283% +Rate for instruction 3407: 17.0244% +Rate for instruction 3408: 17.0239% +Rate for instruction 3409: 17.0212% +Rate for instruction 3410: 17.0207% +Rate for instruction 3411: 17.0191% +Rate for instruction 3412: 17.0186% +Rate for instruction 3413: 17.0159% +Rate for instruction 3414: 17.0211% +Rate for instruction 3415: 17.0172% +Rate for instruction 3416: 17.0201% +Rate for instruction 3417: 17.0207% +Rate for instruction 3418: 17.0191% +Rate for instruction 3419: 17.0175% +Rate for instruction 3420: 17.0182% +Rate for instruction 3421: 17.0155% +Rate for instruction 3422: 17.0161% +Rate for instruction 3423: 17.0134% +Rate for instruction 3424: 17.0152% +Rate for instruction 3425: 17.0124% +Rate for instruction 3426: 17.0108% +Rate for instruction 3427: 17.007% +Rate for instruction 3428: 17.0043% +Rate for instruction 3429: 17.0027% +Rate for instruction 3430: 17.0022% +Rate for instruction 3431: 17.0006% +Rate for instruction 3432: 17.0058% +Rate for instruction 3433: 17.0053% +Rate for instruction 3434: 17.0059% +Rate for instruction 3435: 17.0043% +Rate for instruction 3436: 17.0072% +Rate for instruction 3437: 17.0068% +Rate for instruction 3438: 17.0096% +Rate for instruction 3439: 17.0069% +Rate for instruction 3440: 17.0087% +Rate for instruction 3441: 17.0138% +Rate for instruction 3442: 17.0156% +Rate for instruction 3443: 17.0207% +Rate for instruction 3444: 17.0213% +Rate for instruction 3445: 17.022% +Rate for instruction 3446: 17.0193% +Rate for instruction 3447: 17.0232% +Rate for instruction 3448: 17.0239% +Rate for instruction 3449: 17.0201% +Rate for instruction 3450: 17.0196% +Rate for instruction 3451: 17.0191% +Rate for instruction 3452: 17.0198% +Rate for instruction 3453: 17.0204% +Rate for instruction 3454: 17.0177% +Rate for instruction 3455: 17.0206% +Rate for instruction 3456: 17.0245% +Rate for instruction 3457: 17.0285% +Rate for instruction 3458: 17.0247% +Rate for instruction 3459: 17.0242% +Rate for instruction 3460: 17.0204% +Rate for instruction 3461: 17.0188% +Rate for instruction 3462: 17.0161% +Rate for instruction 3463: 17.0146% +Rate for instruction 3464: 17.0108% +Rate for instruction 3465: 17.0125% +Rate for instruction 3466: 17.0143% +Rate for instruction 3467: 17.0116% +Rate for instruction 3468: 17.0089% +Rate for instruction 3469: 17.0084% +Rate for instruction 3470: 17.0057% +Rate for instruction 3471: 17.0019% +Rate for instruction 3472: 16.9982% +Rate for instruction 3473: 16.9944% +Rate for instruction 3474: 16.995% +Rate for instruction 3475: 16.9923% +Rate for instruction 3476: 16.9952% +Rate for instruction 3477: 16.9947% +Rate for instruction 3478: 16.9921% +Rate for instruction 3479: 16.9883% +Rate for instruction 3480: 16.9922% +Rate for instruction 3481: 16.9973% +Rate for instruction 3482: 16.9946% +Rate for instruction 3483: 16.9909% +Rate for instruction 3484: 16.9882% +Rate for instruction 3485: 16.9888% +Rate for instruction 3486: 16.9895% +Rate for instruction 3487: 16.9879% +Rate for instruction 3488: 16.9875% +Rate for instruction 3489: 16.987% +Rate for instruction 3490: 16.9887% +Rate for instruction 3491: 16.9883% +Rate for instruction 3492: 16.9856% +Rate for instruction 3493: 16.9819% +Rate for instruction 3494: 16.9803% +Rate for instruction 3495: 16.9831% +Rate for instruction 3496: 16.9838% +Rate for instruction 3497: 16.9822% +Rate for instruction 3498: 16.9807% +Rate for instruction 3499: 16.9791% +Rate for instruction 3500: 16.9754% +Rate for instruction 3501: 16.9815% +Rate for instruction 3502: 16.9876% +Rate for instruction 3503: 16.9872% +Rate for instruction 3504: 16.9878% +Rate for instruction 3505: 16.995% +Rate for instruction 3506: 17.0001% +Rate for instruction 3507: 16.9963% +Rate for instruction 3508: 17.0002% +Rate for instruction 3509: 17.0031% +Rate for instruction 3510: 16.9993% +Rate for instruction 3511: 17.0032% +Rate for instruction 3512: 17.0072% +Rate for instruction 3513: 17.0056% +Rate for instruction 3514: 17.0019% +Rate for instruction 3515: 17.0025% +Rate for instruction 3516: 16.9988% +Rate for instruction 3517: 16.9994% +Rate for instruction 3518: 16.9967% +Rate for instruction 3519: 17.0028% +Rate for instruction 3520: 17.0078% +Rate for instruction 3521: 17.0128% +Rate for instruction 3522: 17.0091% +Rate for instruction 3523: 17.0119% +Rate for instruction 3524: 17.0104% +Rate for instruction 3525: 17.0066% +Rate for instruction 3526: 17.0051% +Rate for instruction 3527: 17.0014% +Rate for instruction 3528: 16.9976% +Rate for instruction 3529: 16.995% +Rate for instruction 3530: 16.9934% +Rate for instruction 3531: 16.9908% +Rate for instruction 3532: 16.9871% +Rate for instruction 3533: 16.9866% +Rate for instruction 3534: 16.984% +Rate for instruction 3535: 16.9846% +Rate for instruction 3536: 16.9842% +Rate for instruction 3537: 16.9892% +Rate for instruction 3538: 16.9855% +Rate for instruction 3539: 16.9894% +Rate for instruction 3540: 16.9856% +Rate for instruction 3541: 16.9884% +Rate for instruction 3542: 16.9858% +Rate for instruction 3543: 16.9821% +Rate for instruction 3544: 16.9827% +Rate for instruction 3545: 16.9845% +Rate for instruction 3546: 16.9884% +Rate for instruction 3547: 16.9847% +Rate for instruction 3548: 16.9885% +Rate for instruction 3549: 16.9913% +Rate for instruction 3550: 16.992% +Rate for instruction 3551: 16.9883% +Rate for instruction 3552: 16.9856% +Rate for instruction 3553: 16.9819% +Rate for instruction 3554: 16.9804% +Rate for instruction 3555: 16.9767% +Rate for instruction 3556: 16.9741% +Rate for instruction 3557: 16.9704% +Rate for instruction 3558: 16.9732% +Rate for instruction 3559: 16.9782% +Rate for instruction 3560: 16.9766% +Rate for instruction 3561: 16.973% +Rate for instruction 3562: 16.9725% +Rate for instruction 3563: 16.9753% +Rate for instruction 3564: 16.9792% +Rate for instruction 3565: 16.9852% +Rate for instruction 3566: 16.9869% +Rate for instruction 3567: 16.9832% +Rate for instruction 3568: 16.9828% +Rate for instruction 3569: 16.9823% +Rate for instruction 3570: 16.983% +Rate for instruction 3571: 16.9868% +Rate for instruction 3572: 16.9907% +Rate for instruction 3573: 16.9913% +Rate for instruction 3574: 16.9876% +Rate for instruction 3575: 16.9872% +Rate for instruction 3576: 16.99% +Rate for instruction 3577: 16.9949% +Rate for instruction 3578: 16.9912% +Rate for instruction 3579: 16.9908% +Rate for instruction 3580: 16.9935% +Rate for instruction 3581: 16.9899% +Rate for instruction 3582: 16.9862% +Rate for instruction 3583: 16.9847% +Rate for instruction 3584: 16.9821% +Rate for instruction 3585: 16.9795% +Rate for instruction 3586: 16.9801% +Rate for instruction 3587: 16.9775% +Rate for instruction 3588: 16.9749% +Rate for instruction 3589: 16.9777% +Rate for instruction 3590: 16.9751% +Rate for instruction 3591: 16.98% +Rate for instruction 3592: 16.9785% +Rate for instruction 3593: 16.9759% +Rate for instruction 3594: 16.9734% +Rate for instruction 3595: 16.9697% +Rate for instruction 3596: 16.9735% +Rate for instruction 3597: 16.971% +Rate for instruction 3598: 16.9684% +Rate for instruction 3599: 16.9669% +Rate for instruction 3600: 16.9718% +Rate for instruction 3601: 16.9703% +Rate for instruction 3602: 16.9666% +Rate for instruction 3603: 16.9662% +Rate for instruction 3604: 16.9679% +Rate for instruction 3605: 16.9653% +Rate for instruction 3606: 16.967% +Rate for instruction 3607: 16.9676% +Rate for instruction 3608: 16.9693% +Rate for instruction 3609: 16.9657% +Rate for instruction 3610: 16.9642% +Rate for instruction 3611: 16.9648% +Rate for instruction 3612: 16.9623% +Rate for instruction 3613: 16.9639% +Rate for instruction 3614: 16.9678% +Rate for instruction 3615: 16.9663% +Rate for instruction 3616: 16.9669% +Rate for instruction 3617: 16.9664% +Rate for instruction 3618: 16.9639% +Rate for instruction 3619: 16.9613% +Rate for instruction 3620: 16.9609% +Rate for instruction 3621: 16.9605% +Rate for instruction 3622: 16.959% +Rate for instruction 3623: 16.9564% +Rate for instruction 3624: 16.956% +Rate for instruction 3625: 16.9545% +Rate for instruction 3626: 16.9519% +Rate for instruction 3627: 16.9515% +Rate for instruction 3628: 16.95% +Rate for instruction 3629: 16.9496% +Rate for instruction 3630: 16.947% +Rate for instruction 3631: 16.9434% +Rate for instruction 3632: 16.9409% +Rate for instruction 3633: 16.9394% +Rate for instruction 3634: 16.9368% +Rate for instruction 3635: 16.9375% +Rate for instruction 3636: 16.936% +Rate for instruction 3637: 16.9377% +Rate for instruction 3638: 16.9351% +Rate for instruction 3639: 16.9347% +Rate for instruction 3640: 16.9343% +Rate for instruction 3641: 16.9338% +Rate for instruction 3642: 16.9303% +Rate for instruction 3643: 16.933% +Rate for instruction 3644: 16.9294% +Rate for instruction 3645: 16.9258% +Rate for instruction 3646: 16.9296% +Rate for instruction 3647: 16.9313% +Rate for instruction 3648: 16.9309% +Rate for instruction 3649: 16.9315% +Rate for instruction 3650: 16.929% +Rate for instruction 3651: 16.9338% +Rate for instruction 3652: 16.9302% +Rate for instruction 3653: 16.9372% +Rate for instruction 3654: 16.9431% +Rate for instruction 3655: 16.9479% +Rate for instruction 3656: 16.9475% +Rate for instruction 3657: 16.9492% +Rate for instruction 3658: 16.954% +Rate for instruction 3659: 16.9588% +Rate for instruction 3660: 16.9552% +Rate for instruction 3661: 16.9537% +Rate for instruction 3662: 16.9502% +Rate for instruction 3663: 16.9487% +Rate for instruction 3664: 16.9504% +Rate for instruction 3665: 16.9489% +Rate for instruction 3666: 16.9506% +Rate for instruction 3667: 16.9491% +Rate for instruction 3668: 16.9518% +Rate for instruction 3669: 16.9482% +Rate for instruction 3670: 16.9457% +Rate for instruction 3671: 16.9495% +Rate for instruction 3672: 16.948% +Rate for instruction 3673: 16.9497% +Rate for instruction 3674: 16.9513% +Rate for instruction 3675: 16.953% +Rate for instruction 3676: 16.9547% +Rate for instruction 3677: 16.9563% +Rate for instruction 3678: 16.9601% +Rate for instruction 3679: 16.9628% +Rate for instruction 3680: 16.9624% +Rate for instruction 3681: 16.964% +Rate for instruction 3682: 16.9636% +Rate for instruction 3683: 16.9642% +Rate for instruction 3684: 16.9607% +Rate for instruction 3685: 16.9581% +Rate for instruction 3686: 16.9629% +Rate for instruction 3687: 16.9625% +Rate for instruction 3688: 16.9642% +Rate for instruction 3689: 16.9648% +Rate for instruction 3690: 16.9633% +Rate for instruction 3691: 16.9691% +Rate for instruction 3692: 16.9739% +Rate for instruction 3693: 16.9724% +Rate for instruction 3694: 16.9751% +Rate for instruction 3695: 16.9726% +Rate for instruction 3696: 16.9763% +Rate for instruction 3697: 16.9728% +Rate for instruction 3698: 16.9776% +Rate for instruction 3699: 16.9802% +Rate for instruction 3700: 16.9788% +Rate for instruction 3701: 16.9752% +Rate for instruction 3702: 16.9738% +Rate for instruction 3703: 16.9702% +Rate for instruction 3704: 16.9677% +Rate for instruction 3705: 16.9642% +Rate for instruction 3706: 16.9637% +Rate for instruction 3707: 16.9664% +Rate for instruction 3708: 16.9639% +Rate for instruction 3709: 16.9625% +Rate for instruction 3710: 16.96% +Rate for instruction 3711: 16.9575% +Rate for instruction 3712: 16.9539% +Rate for instruction 3713: 16.9515% +Rate for instruction 3714: 16.951% +Rate for instruction 3715: 16.9496% +Rate for instruction 3716: 16.9492% +Rate for instruction 3717: 16.9456% +Rate for instruction 3718: 16.9452% +Rate for instruction 3719: 16.9448% +Rate for instruction 3720: 16.9475% +Rate for instruction 3721: 16.9481% +Rate for instruction 3722: 16.9497% +Rate for instruction 3723: 16.9503% +Rate for instruction 3724: 16.9479% +Rate for instruction 3725: 16.9443% +Rate for instruction 3726: 16.947% +Rate for instruction 3727: 16.9445% +Rate for instruction 3728: 16.9421% +Rate for instruction 3729: 16.9385% +Rate for instruction 3730: 16.9361% +Rate for instruction 3731: 16.9377% +Rate for instruction 3732: 16.9373% +Rate for instruction 3733: 16.9348% +Rate for instruction 3734: 16.9385% +Rate for instruction 3735: 16.9412% +Rate for instruction 3736: 16.9377% +Rate for instruction 3737: 16.9393% +Rate for instruction 3738: 16.941% +Rate for instruction 3739: 16.9395% +Rate for instruction 3740: 16.9443% +Rate for instruction 3741: 16.9418% +Rate for instruction 3742: 16.9475% +Rate for instruction 3743: 16.9451% +Rate for instruction 3744: 16.9488% +Rate for instruction 3745: 16.9494% +Rate for instruction 3746: 16.9459% +Rate for instruction 3747: 16.9496% +Rate for instruction 3748: 16.9461% +Rate for instruction 3749: 16.9436% +Rate for instruction 3750: 16.9421% +Rate for instruction 3751: 16.9428% +Rate for instruction 3752: 16.9434% +Rate for instruction 3753: 16.9471% +Rate for instruction 3754: 16.9446% +Rate for instruction 3755: 16.9431% +Rate for instruction 3756: 16.9427% +Rate for instruction 3757: 16.9444% +Rate for instruction 3758: 16.9419% +Rate for instruction 3759: 16.9394% +Rate for instruction 3760: 16.938% +Rate for instruction 3761: 16.9366% +Rate for instruction 3762: 16.9341% +Rate for instruction 3763: 16.9306% +Rate for instruction 3764: 16.9343% +Rate for instruction 3765: 16.9339% +Rate for instruction 3766: 16.9304% +Rate for instruction 3767: 16.927% +Rate for instruction 3768: 16.9286% +Rate for instruction 3769: 16.9333% +Rate for instruction 3770: 16.9369% +Rate for instruction 3771: 16.9447% +Rate for instruction 3772: 16.9433% +Rate for instruction 3773: 16.9479% +Rate for instruction 3774: 16.9455% +Rate for instruction 3775: 16.9451% +Rate for instruction 3776: 16.9477% +Rate for instruction 3777: 16.9463% +Rate for instruction 3778: 16.9449% +Rate for instruction 3779: 16.9434% +Rate for instruction 3780: 16.9471% +Rate for instruction 3781: 16.9497% +Rate for instruction 3782: 16.9534% +Rate for instruction 3783: 16.954% +Rate for instruction 3784: 16.9505% +Rate for instruction 3785: 16.9481% +Rate for instruction 3786: 16.9477% +Rate for instruction 3787: 16.9483% +Rate for instruction 3788: 16.9539% +Rate for instruction 3789: 16.9515% +Rate for instruction 3790: 16.9531% +Rate for instruction 3791: 16.9568% +Rate for instruction 3792: 16.9604% +Rate for instruction 3793: 16.962% +Rate for instruction 3794: 16.9585% +Rate for instruction 3795: 16.9612% +Rate for instruction 3796: 16.9587% +Rate for instruction 3797: 16.9593% +Rate for instruction 3798: 16.9589% +Rate for instruction 3799: 16.9595% +Rate for instruction 3800: 16.9591% +Rate for instruction 3801: 16.9557% +Rate for instruction 3802: 16.9562% +Rate for instruction 3803: 16.9579% +Rate for instruction 3804: 16.9554% +Rate for instruction 3805: 16.952% +Rate for instruction 3806: 16.9495% +Rate for instruction 3807: 16.9522% +Rate for instruction 3808: 16.9548% +Rate for instruction 3809: 16.9524% +Rate for instruction 3810: 16.956% +Rate for instruction 3811: 16.9566% +Rate for instruction 3812: 16.9602% +Rate for instruction 3813: 16.9568% +Rate for instruction 3814: 16.9533% +Rate for instruction 3815: 16.9539% +Rate for instruction 3816: 16.9555% +Rate for instruction 3817: 16.9561% +Rate for instruction 3818: 16.9547% +Rate for instruction 3819: 16.9573% +Rate for instruction 3820: 16.9579% +Rate for instruction 3821: 16.9565% +Rate for instruction 3822: 16.9591% +Rate for instruction 3823: 16.9567% +Rate for instruction 3824: 16.9563% +Rate for instruction 3825: 16.9589% +Rate for instruction 3826: 16.9625% +Rate for instruction 3827: 16.9651% +Rate for instruction 3828: 16.9627% +Rate for instruction 3829: 16.9592% +Rate for instruction 3830: 16.9648% +Rate for instruction 3831: 16.9705% +Rate for instruction 3832: 16.973% +Rate for instruction 3833: 16.9736% +Rate for instruction 3834: 16.9722% +Rate for instruction 3835: 16.9738% +Rate for instruction 3836: 16.9754% +Rate for instruction 3837: 16.975% +Rate for instruction 3838: 16.9766% +Rate for instruction 3839: 16.9732% +Rate for instruction 3840: 16.9707% +Rate for instruction 3841: 16.9703% +Rate for instruction 3842: 16.9669% +Rate for instruction 3843: 16.9645% +Rate for instruction 3844: 16.9611% +Rate for instruction 3845: 16.9597% +Rate for instruction 3846: 16.9603% +Rate for instruction 3847: 16.9579% +Rate for instruction 3848: 16.9565% +Rate for instruction 3849: 16.954% +Rate for instruction 3850: 16.9516% +Rate for instruction 3851: 16.9532% +Rate for instruction 3852: 16.9518% +Rate for instruction 3853: 16.9514% +Rate for instruction 3854: 16.948% +Rate for instruction 3855: 16.9446% +Rate for instruction 3856: 16.9452% +Rate for instruction 3857: 16.9418% +Rate for instruction 3858: 16.9404% +Rate for instruction 3859: 16.94% +Rate for instruction 3860: 16.9376% +Rate for instruction 3861: 16.9362% +Rate for instruction 3862: 16.9368% +Rate for instruction 3863: 16.9364% +Rate for instruction 3864: 16.934% +Rate for instruction 3865: 16.9336% +Rate for instruction 3866: 16.9332% +Rate for instruction 3867: 16.9338% +Rate for instruction 3868: 16.9314% +Rate for instruction 3869: 16.928% +Rate for instruction 3870: 16.9267% +Rate for instruction 3871: 16.9263% +Rate for instruction 3872: 16.9259% +Rate for instruction 3873: 16.9225% +Rate for instruction 3874: 16.9211% +Rate for instruction 3875: 16.9237% +Rate for instruction 3876: 16.9233% +Rate for instruction 3877: 16.9219% +Rate for instruction 3878: 16.9245% +Rate for instruction 3879: 16.9261% +Rate for instruction 3880: 16.9237% +Rate for instruction 3881: 16.9262% +Rate for instruction 3882: 16.9278% +Rate for instruction 3883: 16.9274% +Rate for instruction 3884: 16.931% +Rate for instruction 3885: 16.9286% +Rate for instruction 3886: 16.9312% +Rate for instruction 3887: 16.9298% +Rate for instruction 3888: 16.9314% +Rate for instruction 3889: 16.93% +Rate for instruction 3890: 16.9336% +Rate for instruction 3891: 16.9332% +Rate for instruction 3892: 16.9308% +Rate for instruction 3893: 16.9294% +Rate for instruction 3894: 16.928% +Rate for instruction 3895: 16.9266% +Rate for instruction 3896: 16.9312% +Rate for instruction 3897: 16.9318% +Rate for instruction 3898: 16.9402% +Rate for instruction 3899: 16.9389% +Rate for instruction 3900: 16.9404% +Rate for instruction 3901: 16.944% +Rate for instruction 3902: 16.9416% +Rate for instruction 3903: 16.9382% +Rate for instruction 3904: 16.9369% +Rate for instruction 3905: 16.9335% +Rate for instruction 3906: 16.9361% +Rate for instruction 3907: 16.9396% +Rate for instruction 3908: 16.9431% +Rate for instruction 3909: 16.9457% +Rate for instruction 3910: 16.9424% +Rate for instruction 3911: 16.94% +Rate for instruction 3912: 16.9396% +Rate for instruction 3913: 16.9392% +Rate for instruction 3914: 16.9398% +Rate for instruction 3915: 16.9364% +Rate for instruction 3916: 16.9351% +Rate for instruction 3917: 16.9337% +Rate for instruction 3918: 16.9313% +Rate for instruction 3919: 16.929% +Rate for instruction 3920: 16.9364% +Rate for instruction 3921: 16.9409% +Rate for instruction 3922: 16.9425% +Rate for instruction 3923: 16.945% +Rate for instruction 3924: 16.9505% +Rate for instruction 3925: 16.957% +Rate for instruction 3926: 16.9605% +Rate for instruction 3927: 16.9611% +Rate for instruction 3928: 16.9607% +Rate for instruction 3929: 16.9642% +Rate for instruction 3930: 16.9687% +Rate for instruction 3931: 16.9761% +Rate for instruction 3932: 16.9757% +Rate for instruction 3933: 16.9733% +Rate for instruction 3934: 16.9719% +Rate for instruction 3935: 16.9696% +Rate for instruction 3936: 16.9692% +Rate for instruction 3937: 16.9688% +Rate for instruction 3938: 16.9674% +Rate for instruction 3939: 16.9651% +Rate for instruction 3940: 16.9627% +Rate for instruction 3941: 16.9613% +Rate for instruction 3942: 16.9619% +Rate for instruction 3943: 16.9644% +Rate for instruction 3944: 16.9689% +Rate for instruction 3945: 16.9675% +Rate for instruction 3946: 16.9671% +Rate for instruction 3947: 16.9638% +Rate for instruction 3948: 16.9634% +Rate for instruction 3949: 16.9601% +Rate for instruction 3950: 16.9694% +Rate for instruction 3951: 16.9749% +Rate for instruction 3952: 16.9754% +Rate for instruction 3953: 16.974% +Rate for instruction 3954: 16.9756% +Rate for instruction 3955: 16.9752% +Rate for instruction 3956: 16.9728% +Rate for instruction 3957: 16.9734% +Rate for instruction 3958: 16.9711% +Rate for instruction 3959: 16.9707% +Rate for instruction 3960: 16.9712% +Rate for instruction 3961: 16.9679% +Rate for instruction 3962: 16.9646% +Rate for instruction 3963: 16.9749% +Rate for instruction 3964: 16.9716% +Rate for instruction 3965: 16.9702% +Rate for instruction 3966: 16.9698% +Rate for instruction 3967: 16.9762% +Rate for instruction 3968: 16.9797% +Rate for instruction 3969: 16.9764% +Rate for instruction 3970: 16.9837% +Rate for instruction 3971: 16.9804% +Rate for instruction 3972: 16.9781% +Rate for instruction 3973: 16.9815% +Rate for instruction 3974: 16.984% +Rate for instruction 3975: 16.9827% +Rate for instruction 3976: 16.9794% +Rate for instruction 3977: 16.9799% +Rate for instruction 3978: 16.9844% +Rate for instruction 3979: 16.9849% +Rate for instruction 3980: 16.9836% +Rate for instruction 3981: 16.988% +Rate for instruction 3982: 16.9914% +Rate for instruction 3983: 16.9881% +Rate for instruction 3984: 16.9916% +Rate for instruction 3985: 16.9902% +Rate for instruction 3986: 16.9889% +Rate for instruction 3987: 16.9865% +Rate for instruction 3988: 16.9852% +Rate for instruction 3989: 16.9828% +Rate for instruction 3990: 16.9805% +Rate for instruction 3991: 16.9811% +Rate for instruction 3992: 16.9807% +Rate for instruction 3993: 16.9793% +Rate for instruction 3994: 16.978% +Rate for instruction 3995: 16.9766% +Rate for instruction 3996: 16.9762% +Rate for instruction 3997: 16.9758% +Rate for instruction 3998: 16.9744% +Rate for instruction 3999: 16.9712% +Rate for instruction 4000: 16.9698% +Rate for instruction 4001: 16.9675% +Rate for instruction 4002: 16.9661% +Rate for instruction 4003: 16.9744% +Rate for instruction 4004: 16.9711% +Rate for instruction 4005: 16.9755% +Rate for instruction 4006: 16.977% +Rate for instruction 4007: 16.9824% +Rate for instruction 4008: 16.9858% +Rate for instruction 4009: 16.9835% +Rate for instruction 4010: 16.9802% +Rate for instruction 4011: 16.9837% +Rate for instruction 4012: 16.99% +Rate for instruction 4013: 16.9896% +Rate for instruction 4014: 16.9873% +Rate for instruction 4015: 16.984% +Rate for instruction 4016: 16.9826% +Rate for instruction 4017: 16.9794% +Rate for instruction 4018: 16.9771% +Rate for instruction 4019: 16.9738% +Rate for instruction 4020: 16.9743% +Rate for instruction 4021: 16.9711% +Rate for instruction 4022: 16.9697% +Rate for instruction 4023: 16.9674% +Rate for instruction 4024: 16.9642% +Rate for instruction 4025: 16.9628% +Rate for instruction 4026: 16.9596% +Rate for instruction 4027: 16.9573% +Rate for instruction 4028: 16.9569% +Rate for instruction 4029: 16.966% +Rate for instruction 4030: 16.9742% +Rate for instruction 4031: 16.971% +Rate for instruction 4032: 16.9677% +Rate for instruction 4033: 16.9683% +Rate for instruction 4034: 16.9669% +Rate for instruction 4035: 16.9665% +Rate for instruction 4036: 16.9633% +Rate for instruction 4037: 16.9657% +Rate for instruction 4038: 16.9644% +Rate for instruction 4039: 16.9669% +Rate for instruction 4040: 16.9646% +Rate for instruction 4041: 16.9642% +Rate for instruction 4042: 16.9609% +Rate for instruction 4043: 16.9596% +Rate for instruction 4044: 16.9564% +Rate for instruction 4045: 16.955% +Rate for instruction 4046: 16.9632% +Rate for instruction 4047: 16.9694% +Rate for instruction 4048: 16.9662% +Rate for instruction 4049: 16.9677% +Rate for instruction 4050: 16.9654% +Rate for instruction 4051: 16.965% +Rate for instruction 4052: 16.9637% +Rate for instruction 4053: 16.9652% +Rate for instruction 4054: 16.9648% +Rate for instruction 4055: 16.9625% +Rate for instruction 4056: 16.964% +Rate for instruction 4057: 16.9617% +Rate for instruction 4058: 16.9604% +Rate for instruction 4059: 16.9572% +Rate for instruction 4060: 16.9568% +Rate for instruction 4061: 16.9545% +Rate for instruction 4062: 16.9513% +Rate for instruction 4063: 16.9509% +Rate for instruction 4064: 16.9486% +Rate for instruction 4065: 16.9473% +Rate for instruction 4066: 16.946% +Rate for instruction 4067: 16.9475% +Rate for instruction 4068: 16.949% +Rate for instruction 4069: 16.9458% +Rate for instruction 4070: 16.9463% +Rate for instruction 4071: 16.944% +Rate for instruction 4072: 16.9427% +Rate for instruction 4073: 16.9414% +Rate for instruction 4074: 16.9476% +Rate for instruction 4075: 16.9529% +Rate for instruction 4076: 16.9506% +Rate for instruction 4077: 16.9484% +Rate for instruction 4078: 16.9451% +Rate for instruction 4079: 16.9466% +Rate for instruction 4080: 16.9481% +Rate for instruction 4081: 16.9478% +Rate for instruction 4082: 16.9483% +Rate for instruction 4083: 16.9508% +Rate for instruction 4084: 16.9513% +Rate for instruction 4085: 16.9509% +Rate for instruction 4086: 16.9534% +Rate for instruction 4087: 16.9577% +Rate for instruction 4088: 16.9573% +Rate for instruction 4089: 16.9541% +Rate for instruction 4090: 16.9528% +Rate for instruction 4091: 16.9505% +Rate for instruction 4092: 16.9492% +Rate for instruction 4093: 16.946% +Rate for instruction 4094: 16.9447% +Rate for instruction 4095: 16.9415% +Rate for instruction 4096: 16.9383% +Rate for instruction 4097: 16.936% +Rate for instruction 4098: 16.9375% +Rate for instruction 4099: 16.9381% +Rate for instruction 4100: 16.9349% +Rate for instruction 4101: 16.9326% +Rate for instruction 4102: 16.9407% +Rate for instruction 4103: 16.9506% +Rate for instruction 4104: 16.9484% +Rate for instruction 4105: 16.948% +Rate for instruction 4106: 16.9448% +Rate for instruction 4107: 16.9454% +Rate for instruction 4108: 16.944% +Rate for instruction 4109: 16.9502% +Rate for instruction 4110: 16.9508% +Rate for instruction 4111: 16.9513% +Rate for instruction 4112: 16.9491% +Rate for instruction 4113: 16.9571% +Rate for instruction 4114: 16.9558% +Rate for instruction 4115: 16.9648% +Rate for instruction 4116: 16.9644% +Rate for instruction 4117: 16.9631% +Rate for instruction 4118: 16.9617% +Rate for instruction 4119: 16.9614% +Rate for instruction 4120: 16.96% +Rate for instruction 4121: 16.9578% +Rate for instruction 4122: 16.9555% +Rate for instruction 4123: 16.9524% +Rate for instruction 4124: 16.9585% +Rate for instruction 4125: 16.9637% +Rate for instruction 4126: 16.9633% +Rate for instruction 4127: 16.9713% +Rate for instruction 4128: 16.9793% +Rate for instruction 4129: 16.9873% +Rate for instruction 4130: 16.9907% +Rate for instruction 4131: 16.9884% +Rate for instruction 4132: 16.988% +Rate for instruction 4133: 16.9876% +Rate for instruction 4134: 16.9938% +Rate for instruction 4135: 16.9962% +Rate for instruction 4136: 17.0023% +Rate for instruction 4137: 17.0028% +Rate for instruction 4138: 17.0062% +Rate for instruction 4139: 17.0067% +Rate for instruction 4140: 17.0119% +Rate for instruction 4141: 17.0105% +Rate for instruction 4142: 17.0157% +Rate for instruction 4143: 17.0172% +Rate for instruction 4144: 17.0168% +Rate for instruction 4145: 17.0164% +Rate for instruction 4146: 17.0142% +Rate for instruction 4147: 17.011% +Rate for instruction 4148: 17.0097% +Rate for instruction 4149: 17.0065% +Rate for instruction 4150: 17.0042% +Rate for instruction 4151: 17.0011% +Rate for instruction 4152: 17.0007% +Rate for instruction 4153: 16.9984% +Rate for instruction 4154: 16.9971% +Rate for instruction 4155: 16.9995% +Rate for instruction 4156: 17.001% +Rate for instruction 4157: 17.0024% +Rate for instruction 4158: 17.0002% +Rate for instruction 4159: 16.997% +Rate for instruction 4160: 16.9967% +Rate for instruction 4161: 16.9972% +Rate for instruction 4162: 16.9959% +Rate for instruction 4163: 16.9936% +Rate for instruction 4164: 16.9942% +Rate for instruction 4165: 16.9929% +Rate for instruction 4166: 16.9925% +Rate for instruction 4167: 16.993% +Rate for instruction 4168: 16.9926% +Rate for instruction 4169: 16.9913% +Rate for instruction 4170: 16.9928% +Rate for instruction 4171: 16.9906% +Rate for instruction 4172: 16.9874% +Rate for instruction 4173: 16.9879% +Rate for instruction 4174: 16.9894% +Rate for instruction 4175: 16.9909% +Rate for instruction 4176: 16.9923% +Rate for instruction 4177: 16.9929% +Rate for instruction 4178: 16.9943% +Rate for instruction 4179: 16.9958% +Rate for instruction 4180: 17% +Rate for instruction 4181: 17.006% +Rate for instruction 4182: 17.0029% +Rate for instruction 4183: 16.9997% +Rate for instruction 4184: 16.9984% +Rate for instruction 4185: 16.999% +Rate for instruction 4186: 16.9995% +Rate for instruction 4187: 16.9982% +Rate for instruction 4188: 16.9969% +Rate for instruction 4189: 17.0002% +Rate for instruction 4190: 16.998% +Rate for instruction 4191: 17.0012% +Rate for instruction 4192: 17.0027% +Rate for instruction 4193: 17.0032% +Rate for instruction 4194: 17.001% +Rate for instruction 4195: 16.9979% +Rate for instruction 4196: 16.9966% +Rate for instruction 4197: 16.9999% +Rate for instruction 4198: 17.0004% +Rate for instruction 4199: 17.0009% +Rate for instruction 4200: 17.0088% +Rate for instruction 4201: 17.0075% +Rate for instruction 4202: 17.0135% +Rate for instruction 4203: 17.0149% +Rate for instruction 4204: 17.0145% +Rate for instruction 4205: 17.0123% +Rate for instruction 4206: 17.0129% +Rate for instruction 4207: 17.0143% +Rate for instruction 4208: 17.0139% +Rate for instruction 4209: 17.0117% +Rate for instruction 4210: 17.0095% +Rate for instruction 4211: 17.0109% +Rate for instruction 4212: 17.016% +Rate for instruction 4213: 17.0147% +Rate for instruction 4214: 17.0134% +Rate for instruction 4215: 17.0194% +Rate for instruction 4216: 17.0181% +Rate for instruction 4217: 17.0241% +Rate for instruction 4218: 17.0292% +Rate for instruction 4219: 17.0279% +Rate for instruction 4220: 17.0302% +Rate for instruction 4221: 17.0335% +Rate for instruction 4222: 17.0322% +Rate for instruction 4223: 17.0373% +Rate for instruction 4224: 17.035% +Rate for instruction 4225: 17.0337% +Rate for instruction 4226: 17.0315% +Rate for instruction 4227: 17.0348% +Rate for instruction 4228: 17.0362% +Rate for instruction 4229: 17.034% +Rate for instruction 4230: 17.0363% +Rate for instruction 4231: 17.0423% +Rate for instruction 4232: 17.0428% +Rate for instruction 4233: 17.0488% +Rate for instruction 4234: 17.0475% +Rate for instruction 4235: 17.0535% +Rate for instruction 4236: 17.0594% +Rate for instruction 4237: 17.0627% +Rate for instruction 4238: 17.0659% +Rate for instruction 4239: 17.0628% +Rate for instruction 4240: 17.066% +Rate for instruction 4241: 17.0647% +Rate for instruction 4242: 17.0634% +Rate for instruction 4243: 17.0675% +Rate for instruction 4244: 17.0671% +Rate for instruction 4245: 17.0713% +Rate for instruction 4246: 17.0754% +Rate for instruction 4247: 17.0741% +Rate for instruction 4248: 17.0773% +Rate for instruction 4249: 17.0814% +Rate for instruction 4250: 17.0874% +Rate for instruction 4251: 17.0852% +Rate for instruction 4252: 17.092% +Rate for instruction 4253: 17.0898% +Rate for instruction 4254: 17.0894% +Rate for instruction 4255: 17.0881% +Rate for instruction 4256: 17.0913% +Rate for instruction 4257: 17.0882% +Rate for instruction 4258: 17.086% +Rate for instruction 4259: 17.0829% +Rate for instruction 4260: 17.0825% +Rate for instruction 4261: 17.0794% +Rate for instruction 4262: 17.0772% +Rate for instruction 4263: 17.0741% +Rate for instruction 4264: 17.0782% +Rate for instruction 4265: 17.0778% +Rate for instruction 4266: 17.0828% +Rate for instruction 4267: 17.0887% +Rate for instruction 4268: 17.0928% +Rate for instruction 4269: 17.0924% +Rate for instruction 4270: 17.0974% +Rate for instruction 4271: 17.1015% +Rate for instruction 4272: 17.1056% +Rate for instruction 4273: 17.1079% +Rate for instruction 4274: 17.1048% +Rate for instruction 4275: 17.1116% +Rate for instruction 4276: 17.1157% +Rate for instruction 4277: 17.1144% +Rate for instruction 4278: 17.1176% +Rate for instruction 4279: 17.1145% +Rate for instruction 4280: 17.1213% +Rate for instruction 4281: 17.1191% +Rate for instruction 4282: 17.1258% +Rate for instruction 4283: 17.1254% +Rate for instruction 4284: 17.1241% +Rate for instruction 4285: 17.1246% +Rate for instruction 4286: 17.1215% +Rate for instruction 4287: 17.1193% +Rate for instruction 4288: 17.1171% +Rate for instruction 4289: 17.114% +Rate for instruction 4290: 17.1118% +Rate for instruction 4291: 17.1123% +Rate for instruction 4292: 17.111% +Rate for instruction 4293: 17.108% +Rate for instruction 4294: 17.1129% +Rate for instruction 4295: 17.1134% +Rate for instruction 4296: 17.1103% +Rate for instruction 4297: 17.1072% +Rate for instruction 4298: 17.1042% +Rate for instruction 4299: 17.1073% +Rate for instruction 4300: 17.1078% +Rate for instruction 4301: 17.111% +Rate for instruction 4302: 17.1133% +Rate for instruction 4303: 17.1174% +Rate for instruction 4304: 17.1196% +Rate for instruction 4305: 17.1237% +Rate for instruction 4306: 17.1215% +Rate for instruction 4307: 17.122% +Rate for instruction 4308: 17.1216% +Rate for instruction 4309: 17.1194% +Rate for instruction 4310: 17.1172% +Rate for instruction 4311: 17.1141% +Rate for instruction 4312: 17.1137% +Rate for instruction 4313: 17.1107% +Rate for instruction 4314: 17.112% +Rate for instruction 4315: 17.1116% +Rate for instruction 4316: 17.1104% +Rate for instruction 4317: 17.1091% +Rate for instruction 4318: 17.1078% +Rate for instruction 4319: 17.1047% +Rate for instruction 4320: 17.1096% +Rate for instruction 4321: 17.1137% +Rate for instruction 4322: 17.1124% +Rate for instruction 4323: 17.1093% +Rate for instruction 4324: 17.1072% +Rate for instruction 4325: 17.105% +Rate for instruction 4326: 17.1037% +Rate for instruction 4327: 17.1015% +Rate for instruction 4328: 17.0993% +Rate for instruction 4329: 17.0963% +Rate for instruction 4330: 17.0977% +Rate for instruction 4331: 17.0946% +Rate for instruction 4332: 17.0969% +Rate for instruction 4333: 17.0974% +Rate for instruction 4334: 17.0943% +Rate for instruction 4335: 17.093% +Rate for instruction 4336: 17.0953% +Rate for instruction 4337: 17.1011% +Rate for instruction 4338: 17.0989% +Rate for instruction 4339: 17.0959% +Rate for instruction 4340: 17.099% +Rate for instruction 4341: 17.096% +Rate for instruction 4342: 17.0974% +Rate for instruction 4343: 17.0996% +Rate for instruction 4344: 17.0992% +Rate for instruction 4345: 17.1059% +Rate for instruction 4346: 17.1108% +Rate for instruction 4347: 17.1149% +Rate for instruction 4348: 17.1206% +Rate for instruction 4349: 17.1273% +Rate for instruction 4350: 17.1243% +Rate for instruction 4351: 17.1239% +Rate for instruction 4352: 17.1279% +Rate for instruction 4353: 17.1293% +Rate for instruction 4354: 17.1297% +Rate for instruction 4355: 17.1338% +Rate for instruction 4356: 17.136% +Rate for instruction 4357: 17.1427% +Rate for instruction 4358: 17.144% +Rate for instruction 4359: 17.1507% +Rate for instruction 4360: 17.1582% +Rate for instruction 4361: 17.1552% +Rate for instruction 4362: 17.153% +Rate for instruction 4363: 17.1499% +Rate for instruction 4364: 17.1557% +Rate for instruction 4365: 17.1535% +Rate for instruction 4366: 17.1611% +Rate for instruction 4367: 17.1624% +Rate for instruction 4368: 17.1673% +Rate for instruction 4369: 17.1722% +Rate for instruction 4370: 17.1761% +Rate for instruction 4371: 17.174% +Rate for instruction 4372: 17.1771% +Rate for instruction 4373: 17.1811% +Rate for instruction 4374: 17.1789% +Rate for instruction 4375: 17.1802% +Rate for instruction 4376: 17.1781% +Rate for instruction 4377: 17.1786% +Rate for instruction 4378: 17.1799% +Rate for instruction 4379: 17.1848% +Rate for instruction 4380: 17.1817% +Rate for instruction 4381: 17.1874% +Rate for instruction 4382: 17.1844% +Rate for instruction 4383: 17.1849% +Rate for instruction 4384: 17.1818% +Rate for instruction 4385: 17.1876% +Rate for instruction 4386: 17.1924% +Rate for instruction 4387: 17.1946% +Rate for instruction 4388: 17.1986% +Rate for instruction 4389: 17.2026% +Rate for instruction 4390: 17.2004% +Rate for instruction 4391: 17.1982% +Rate for instruction 4392: 17.1969% +Rate for instruction 4393: 17.1948% +Rate for instruction 4394: 17.1926% +Rate for instruction 4395: 17.1896% +Rate for instruction 4396: 17.1883% +Rate for instruction 4397: 17.1861% +Rate for instruction 4398: 17.1848% +Rate for instruction 4399: 17.1818% +Rate for instruction 4400: 17.1788% +Rate for instruction 4401: 17.181% +Rate for instruction 4402: 17.1806% +Rate for instruction 4403: 17.1863% +Rate for instruction 4404: 17.192% +Rate for instruction 4405: 17.1977% +Rate for instruction 4406: 17.2043% +Rate for instruction 4407: 17.2091% +Rate for instruction 4408: 17.2113% +Rate for instruction 4409: 17.2083% +Rate for instruction 4410: 17.2105% +Rate for instruction 4411: 17.2127% +Rate for instruction 4412: 17.2157% +Rate for instruction 4413: 17.2206% +Rate for instruction 4414: 17.2193% +Rate for instruction 4415: 17.2215% +Rate for instruction 4416: 17.2202% +Rate for instruction 4417: 17.2172% +Rate for instruction 4418: 17.2167% +Rate for instruction 4419: 17.2181% +Rate for instruction 4420: 17.2203% +Rate for instruction 4421: 17.2181% +Rate for instruction 4422: 17.2151% +Rate for instruction 4423: 17.2129% +Rate for instruction 4424: 17.2125% +Rate for instruction 4425: 17.2095% +Rate for instruction 4426: 17.2073% +Rate for instruction 4427: 17.2087% +Rate for instruction 4428: 17.2083% +Rate for instruction 4429: 17.2061% +Rate for instruction 4430: 17.2074% +Rate for instruction 4431: 17.2096% +Rate for instruction 4432: 17.2092% +Rate for instruction 4433: 17.2062% +Rate for instruction 4434: 17.2032% +Rate for instruction 4435: 17.2028% +Rate for instruction 4436: 17.2032% +Rate for instruction 4437: 17.2037% +Rate for instruction 4438: 17.2024% +Rate for instruction 4439: 17.1994% +Rate for instruction 4440: 17.199% +Rate for instruction 4441: 17.196% +Rate for instruction 4442: 17.1956% +Rate for instruction 4443: 17.1952% +Rate for instruction 4444: 17.1956% +Rate for instruction 4445: 17.1926% +Rate for instruction 4446: 17.1922% +Rate for instruction 4447: 17.1892% +Rate for instruction 4448: 17.1897% +Rate for instruction 4449: 17.1901% +Rate for instruction 4450: 17.188% +Rate for instruction 4451: 17.1893% +Rate for instruction 4452: 17.1898% +Rate for instruction 4453: 17.1877% +Rate for instruction 4454: 17.189% +Rate for instruction 4455: 17.1869% +Rate for instruction 4456: 17.1873% +Rate for instruction 4457: 17.1852% +Rate for instruction 4458: 17.1865% +Rate for instruction 4459: 17.1913% +Rate for instruction 4460: 17.1891% +Rate for instruction 4461: 17.1879% +Rate for instruction 4462: 17.1926% +Rate for instruction 4463: 17.1897% +Rate for instruction 4464: 17.1884% +Rate for instruction 4465: 17.1854% +Rate for instruction 4466: 17.1841% +Rate for instruction 4467: 17.1846% +Rate for instruction 4468: 17.1816% +Rate for instruction 4469: 17.1855% +Rate for instruction 4470: 17.192% +Rate for instruction 4471: 17.195% +Rate for instruction 4472: 17.1938% +Rate for instruction 4473: 17.1951% +Rate for instruction 4474: 17.1938% +Rate for instruction 4475: 17.1925% +Rate for instruction 4476: 17.1896% +Rate for instruction 4477: 17.1883% +Rate for instruction 4478: 17.187% +Rate for instruction 4479: 17.1849% +Rate for instruction 4480: 17.1837% +Rate for instruction 4481: 17.1824% +Rate for instruction 4482: 17.1829% +Rate for instruction 4483: 17.1807% +Rate for instruction 4484: 17.1821% +Rate for instruction 4485: 17.1808% +Rate for instruction 4486: 17.1795% +Rate for instruction 4487: 17.1826% +Rate for instruction 4488: 17.1873% +Rate for instruction 4489: 17.1869% +Rate for instruction 4490: 17.1908% +Rate for instruction 4491: 17.1938% +Rate for instruction 4492: 17.196% +Rate for instruction 4493: 17.2007% +Rate for instruction 4494: 17.2037% +Rate for instruction 4495: 17.2008% +Rate for instruction 4496: 17.2004% +Rate for instruction 4497: 17.2034% +Rate for instruction 4498: 17.2013% +Rate for instruction 4499: 17.2% +Rate for instruction 4500: 17.1979% +Rate for instruction 4501: 17.1975% +Rate for instruction 4502: 17.1988% +Rate for instruction 4503: 17.1967% +Rate for instruction 4504: 17.1963% +Rate for instruction 4505: 17.1984% +Rate for instruction 4506: 17.1972% +Rate for instruction 4507: 17.1993% +Rate for instruction 4508: 17.1972% +Rate for instruction 4509: 17.1943% +Rate for instruction 4510: 17.1964% +Rate for instruction 4511: 17.1952% +Rate for instruction 4512: 17.1939% +Rate for instruction 4513: 17.1961% +Rate for instruction 4514: 17.1931% +Rate for instruction 4515: 17.197% +Rate for instruction 4516: 17.194% +Rate for instruction 4517: 17.1928% +Rate for instruction 4518: 17.1907% +Rate for instruction 4519: 17.1928% +Rate for instruction 4520: 17.1941% +Rate for instruction 4521: 17.1937% +Rate for instruction 4522: 17.1933% +Rate for instruction 4523: 17.1946% +Rate for instruction 4524: 17.1985% +Rate for instruction 4525: 17.1964% +Rate for instruction 4526: 17.2028% +Rate for instruction 4527: 17.21% +Rate for instruction 4528: 17.2113% +Rate for instruction 4529: 17.2126% +Rate for instruction 4530: 17.2147% +Rate for instruction 4531: 17.2135% +Rate for instruction 4532: 17.2105% +Rate for instruction 4533: 17.2084% +Rate for instruction 4534: 17.2055% +Rate for instruction 4535: 17.2042% +Rate for instruction 4536: 17.2013% +Rate for instruction 4537: 17.1992% +Rate for instruction 4538: 17.2013% +Rate for instruction 4539: 17.1993% +Rate for instruction 4540: 17.2014% +Rate for instruction 4541: 17.2027% +Rate for instruction 4542: 17.2048% +Rate for instruction 4543: 17.2019% +Rate for instruction 4544: 17.204% +Rate for instruction 4545: 17.2062% +Rate for instruction 4546: 17.2049% +Rate for instruction 4547: 17.2028% +Rate for instruction 4548: 17.2041% +Rate for instruction 4549: 17.2029% +Rate for instruction 4550: 17.2025% +Rate for instruction 4551: 17.2012% +Rate for instruction 4552: 17.2034% +Rate for instruction 4553: 17.2021% +Rate for instruction 4554: 17.2017% +Rate for instruction 4555: 17.2005% +Rate for instruction 4556: 17.1992% +Rate for instruction 4557: 17.1972% +Rate for instruction 4558: 17.1968% +Rate for instruction 4559: 17.1938% +Rate for instruction 4560: 17.1951% +Rate for instruction 4561: 17.1956% +Rate for instruction 4562: 17.1977% +Rate for instruction 4563: 17.1948% +Rate for instruction 4564: 17.1927% +Rate for instruction 4565: 17.1948% +Rate for instruction 4566: 17.1927% +Rate for instruction 4567: 17.1907% +Rate for instruction 4568: 17.1903% +Rate for instruction 4569: 17.1916% +Rate for instruction 4570: 17.1895% +Rate for instruction 4571: 17.1899% +Rate for instruction 4572: 17.1887% +Rate for instruction 4573: 17.1874% +Rate for instruction 4574: 17.1879% +Rate for instruction 4575: 17.19% +Rate for instruction 4576: 17.1938% +Rate for instruction 4577: 17.1909% +Rate for instruction 4578: 17.1956% +Rate for instruction 4579: 17.1994% +Rate for instruction 4580: 17.1973% +Rate for instruction 4581: 17.2011% +Rate for instruction 4582: 17.199% +Rate for instruction 4583: 17.1961% +Rate for instruction 4584: 17.1965% +Rate for instruction 4585: 17.1936% +Rate for instruction 4586: 17.1999% +Rate for instruction 4587: 17.197% +Rate for instruction 4588: 17.1958% +Rate for instruction 4589: 17.1962% +Rate for instruction 4590: 17.1942% +Rate for instruction 4591: 17.1929% +Rate for instruction 4592: 17.1917% +Rate for instruction 4593: 17.1913% +Rate for instruction 4594: 17.1918% +Rate for instruction 4595: 17.193% +Rate for instruction 4596: 17.191% +Rate for instruction 4597: 17.1964% +Rate for instruction 4598: 17.2044% +Rate for instruction 4599: 17.2048% +Rate for instruction 4600: 17.2028% +Rate for instruction 4601: 17.2066% +Rate for instruction 4602: 17.2045% +Rate for instruction 4603: 17.2049% +Rate for instruction 4604: 17.2062% +Rate for instruction 4605: 17.2058% +Rate for instruction 4606: 17.2038% +Rate for instruction 4607: 17.2034% +Rate for instruction 4608: 17.2038% +Rate for instruction 4609: 17.2059% +Rate for instruction 4610: 17.2038% +Rate for instruction 4611: 17.2026% +Rate for instruction 4612: 17.2014% +Rate for instruction 4613: 17.201% +Rate for instruction 4614: 17.1981% +Rate for instruction 4615: 17.201% +Rate for instruction 4616: 17.1998% +Rate for instruction 4617: 17.2019% +Rate for instruction 4618: 17.2057% +Rate for instruction 4619: 17.2045% +Rate for instruction 4620: 17.2024% +Rate for instruction 4621: 17.2012% +Rate for instruction 4622: 17.2016% +Rate for instruction 4623: 17.1996% +Rate for instruction 4624: 17.1975% +Rate for instruction 4625: 17.1955% +Rate for instruction 4626: 17.1934% +Rate for instruction 4627: 17.1913% +Rate for instruction 4628: 17.1885% +Rate for instruction 4629: 17.1881% +Rate for instruction 4630: 17.1885% +Rate for instruction 4631: 17.1873% +Rate for instruction 4632: 17.1886% +Rate for instruction 4633: 17.1882% +Rate for instruction 4634: 17.187% +Rate for instruction 4635: 17.1857% +Rate for instruction 4636: 17.1845% +Rate for instruction 4637: 17.1841% +Rate for instruction 4638: 17.1829% +Rate for instruction 4639: 17.18% +Rate for instruction 4640: 17.1805% +Rate for instruction 4641: 17.1784% +Rate for instruction 4642: 17.1822% +Rate for instruction 4643: 17.1793% +Rate for instruction 4644: 17.1798% +Rate for instruction 4645: 17.1769% +Rate for instruction 4646: 17.1765% +Rate for instruction 4647: 17.1736% +Rate for instruction 4648: 17.1757% +Rate for instruction 4649: 17.177% +Rate for instruction 4650: 17.1783% +Rate for instruction 4651: 17.1804% +Rate for instruction 4652: 17.1792% +Rate for instruction 4653: 17.1779% +Rate for instruction 4654: 17.18% +Rate for instruction 4655: 17.1813% +Rate for instruction 4656: 17.185% +Rate for instruction 4657: 17.1822% +Rate for instruction 4658: 17.1801% +Rate for instruction 4659: 17.1773% +Rate for instruction 4660: 17.1761% +Rate for instruction 4661: 17.1732% +Rate for instruction 4662: 17.1712% +Rate for instruction 4663: 17.17% +Rate for instruction 4664: 17.1679% +Rate for instruction 4665: 17.1676% +Rate for instruction 4666: 17.1688% +Rate for instruction 4667: 17.1709% +Rate for instruction 4668: 17.173% +Rate for instruction 4669: 17.1734% +Rate for instruction 4670: 17.1714% +Rate for instruction 4671: 17.1686% +Rate for instruction 4672: 17.169% +Rate for instruction 4673: 17.1719% +Rate for instruction 4674: 17.1732% +Rate for instruction 4675: 17.1736% +Rate for instruction 4676: 17.1708% +Rate for instruction 4677: 17.1696% +Rate for instruction 4678: 17.1667% +Rate for instruction 4679: 17.168% +Rate for instruction 4680: 17.1692% +Rate for instruction 4681: 17.1672% +Rate for instruction 4682: 17.1644% +Rate for instruction 4683: 17.1648% +Rate for instruction 4684: 17.1636% +Rate for instruction 4685: 17.1616% +Rate for instruction 4686: 17.1604% +Rate for instruction 4687: 17.1576% +Rate for instruction 4688: 17.1605% +Rate for instruction 4689: 17.1601% +Rate for instruction 4690: 17.1572% +Rate for instruction 4691: 17.1544% +Rate for instruction 4692: 17.1573% +Rate for instruction 4693: 17.1577% +Rate for instruction 4694: 17.1549% +Rate for instruction 4695: 17.1545% +Rate for instruction 4696: 17.1558% +Rate for instruction 4697: 17.1579% +Rate for instruction 4698: 17.1649% +Rate for instruction 4699: 17.1669% +Rate for instruction 4700: 17.1649% +Rate for instruction 4701: 17.1621% +Rate for instruction 4702: 17.1593% +Rate for instruction 4703: 17.1572% +Rate for instruction 4704: 17.1544% +Rate for instruction 4705: 17.1573% +Rate for instruction 4706: 17.1602% +Rate for instruction 4707: 17.159% +Rate for instruction 4708: 17.1627% +Rate for instruction 4709: 17.1656% +Rate for instruction 4710: 17.1693% +Rate for instruction 4711: 17.1706% +Rate for instruction 4712: 17.1726% +Rate for instruction 4713: 17.1739% +Rate for instruction 4714: 17.1735% +Rate for instruction 4715: 17.1731% +Rate for instruction 4716: 17.1711% +Rate for instruction 4717: 17.1732% +Rate for instruction 4718: 17.1736% +Rate for instruction 4719: 17.1749% +Rate for instruction 4720: 17.172% +Rate for instruction 4721: 17.17% +Rate for instruction 4722: 17.1672% +Rate for instruction 4723: 17.1668% +Rate for instruction 4724: 17.1665% +Rate for instruction 4725: 17.1645% +Rate for instruction 4726: 17.1641% +Rate for instruction 4727: 17.1645% +Rate for instruction 4728: 17.1617% +Rate for instruction 4729: 17.1597% +Rate for instruction 4730: 17.1585% +Rate for instruction 4731: 17.1557% +Rate for instruction 4732: 17.157% +Rate for instruction 4733: 17.1541% +Rate for instruction 4734: 17.1562% +Rate for instruction 4735: 17.1534% +Rate for instruction 4736: 17.1555% +Rate for instruction 4737: 17.1535% +Rate for instruction 4738: 17.1539% +Rate for instruction 4739: 17.1551% +Rate for instruction 4740: 17.1613% +Rate for instruction 4741: 17.1641% +Rate for instruction 4742: 17.1613% +Rate for instruction 4743: 17.1674% +Rate for instruction 4744: 17.1679% +Rate for instruction 4745: 17.1659% +Rate for instruction 4746: 17.1728% +Rate for instruction 4747: 17.1748% +Rate for instruction 4748: 17.1737% +Rate for instruction 4749: 17.1709% +Rate for instruction 4750: 17.1713% +Rate for instruction 4751: 17.1725% +Rate for instruction 4752: 17.1746% +Rate for instruction 4753: 17.1718% +Rate for instruction 4754: 17.1706% +Rate for instruction 4755: 17.1694% +Rate for instruction 4756: 17.1674% +Rate for instruction 4757: 17.1678% +Rate for instruction 4758: 17.165% +Rate for instruction 4759: 17.1647% +Rate for instruction 4760: 17.1635% +Rate for instruction 4761: 17.1607% +Rate for instruction 4762: 17.1595% +Rate for instruction 4763: 17.1575% +Rate for instruction 4764: 17.1572% +Rate for instruction 4765: 17.156% +Rate for instruction 4766: 17.1548% +Rate for instruction 4767: 17.1536% +Rate for instruction 4768: 17.1532% +Rate for instruction 4769: 17.1521% +Rate for instruction 4770: 17.1517% +Rate for instruction 4771: 17.1537% +Rate for instruction 4772: 17.1566% +Rate for instruction 4773: 17.157% +Rate for instruction 4774: 17.1542% +Rate for instruction 4775: 17.1547% +Rate for instruction 4776: 17.1527% +Rate for instruction 4777: 17.1596% +Rate for instruction 4778: 17.1632% +Rate for instruction 4779: 17.1637% +Rate for instruction 4780: 17.1609% +Rate for instruction 4781: 17.1629% +Rate for instruction 4782: 17.1625% +Rate for instruction 4783: 17.1598% +Rate for instruction 4784: 17.1602% +Rate for instruction 4785: 17.159% +Rate for instruction 4786: 17.1595% +Rate for instruction 4787: 17.1567% +Rate for instruction 4788: 17.1555% +Rate for instruction 4789: 17.1527% +Rate for instruction 4790: 17.1507% +Rate for instruction 4791: 17.148% +Rate for instruction 4792: 17.1492% +Rate for instruction 4793: 17.1464% +Rate for instruction 4794: 17.1493% +Rate for instruction 4795: 17.1465% +Rate for instruction 4796: 17.1445% +Rate for instruction 4797: 17.1434% +Rate for instruction 4798: 17.1414% +Rate for instruction 4799: 17.1402% +Rate for instruction 4800: 17.1383% +Rate for instruction 4801: 17.1371% +Rate for instruction 4802: 17.1351% +Rate for instruction 4803: 17.1332% +Rate for instruction 4804: 17.1304% +Rate for instruction 4805: 17.1292% +Rate for instruction 4806: 17.1265% +Rate for instruction 4807: 17.1245% +Rate for instruction 4808: 17.1217% +Rate for instruction 4809: 17.123% +Rate for instruction 4810: 17.1258% +Rate for instruction 4811: 17.1231% +Rate for instruction 4812: 17.1203% +Rate for instruction 4813: 17.1191% +Rate for instruction 4814: 17.1204% +Rate for instruction 4815: 17.1208% +Rate for instruction 4816: 17.1197% +Rate for instruction 4817: 17.1177% +Rate for instruction 4818: 17.1173% +Rate for instruction 4819: 17.1162% +Rate for instruction 4820: 17.1166% +Rate for instruction 4821: 17.1155% +Rate for instruction 4822: 17.1135% +Rate for instruction 4823: 17.1132% +Rate for instruction 4824: 17.1128% +Rate for instruction 4825: 17.1116% +Rate for instruction 4826: 17.1105% +Rate for instruction 4827: 17.1101% +Rate for instruction 4828: 17.109% +Rate for instruction 4829: 17.107% +Rate for instruction 4830: 17.1059% +Rate for instruction 4831: 17.1071% +Rate for instruction 4832: 17.1044% +Rate for instruction 4833: 17.1064% +Rate for instruction 4834: 17.1037% +Rate for instruction 4835: 17.1049% +Rate for instruction 4836: 17.1141% +Rate for instruction 4837: 17.1129% +Rate for instruction 4838: 17.111% +Rate for instruction 4839: 17.109% +Rate for instruction 4840: 17.1063% +Rate for instruction 4841: 17.1115% +Rate for instruction 4842: 17.1088% +Rate for instruction 4843: 17.1084% +Rate for instruction 4844: 17.1088% +Rate for instruction 4845: 17.1077% +Rate for instruction 4846: 17.1065% +Rate for instruction 4847: 17.1046% +Rate for instruction 4848: 17.1027% +Rate for instruction 4849: 17.1015% +Rate for instruction 4850: 17.1035% +Rate for instruction 4851: 17.1056% +Rate for instruction 4852: 17.1052% +Rate for instruction 4853: 17.1033% +Rate for instruction 4854: 17.1005% +Rate for instruction 4855: 17.0986% +Rate for instruction 4856: 17.0967% +Rate for instruction 4857: 17.0947% +Rate for instruction 4858: 17.0967% +Rate for instruction 4859: 17.0964% +Rate for instruction 4860: 17.096% +Rate for instruction 4861: 17.1004% +Rate for instruction 4862: 17.1025% +Rate for instruction 4863: 17.1021% +Rate for instruction 4864: 17.1017% +Rate for instruction 4865: 17.1006% +Rate for instruction 4866: 17.0987% +Rate for instruction 4867: 17.0975% +Rate for instruction 4868: 17.0988% +Rate for instruction 4869: 17.1008% +Rate for instruction 4870: 17.102% +Rate for instruction 4871: 17.1009% +Rate for instruction 4872: 17.0989% +Rate for instruction 4873: 17.1025% +Rate for instruction 4874: 17.1006% +Rate for instruction 4875: 17.1018% +Rate for instruction 4876: 17.0999% +Rate for instruction 4877: 17.098% +Rate for instruction 4878: 17.1% +Rate for instruction 4879: 17.0973% +Rate for instruction 4880: 17.0977% +Rate for instruction 4881: 17.0958% +Rate for instruction 4882: 17.0962% +Rate for instruction 4883: 17.0943% +Rate for instruction 4884: 17.0939% +Rate for instruction 4885: 17.0936% +Rate for instruction 4886: 17.094% +Rate for instruction 4887: 17.0945% +Rate for instruction 4888: 17.0965% +Rate for instruction 4889: 17.0969% +Rate for instruction 4890: 17.0966% +Rate for instruction 4891: 17.0986% +Rate for instruction 4892: 17.099% +Rate for instruction 4893: 17.0963% +Rate for instruction 4894: 17.0967% +Rate for instruction 4895: 17.0987% +Rate for instruction 4896: 17.0976% +Rate for instruction 4897: 17.0965% +Rate for instruction 4898: 17.0945% +Rate for instruction 4899: 17.0934% +Rate for instruction 4900: 17.0923% +Rate for instruction 4901: 17.0904% +Rate for instruction 4902: 17.0892% +Rate for instruction 4903: 17.0873% +Rate for instruction 4904: 17.0877% +Rate for instruction 4905: 17.089% +Rate for instruction 4906: 17.0925% +Rate for instruction 4907: 17.093% +Rate for instruction 4908: 17.0958% +Rate for instruction 4909: 17.0931% +Rate for instruction 4910: 17.0904% +Rate for instruction 4911: 17.0908% +Rate for instruction 4912: 17.0905% +Rate for instruction 4913: 17.0909% +Rate for instruction 4914: 17.0905% +Rate for instruction 4915: 17.091% +Rate for instruction 4916: 17.0891% +Rate for instruction 4917: 17.0895% +Rate for instruction 4918: 17.0915% +Rate for instruction 4919: 17.0888% +Rate for instruction 4920: 17.0869% +Rate for instruction 4921: 17.0897% +Rate for instruction 4922: 17.0878% +Rate for instruction 4923: 17.0898% +Rate for instruction 4924: 17.0879% +Rate for instruction 4925: 17.0922% +Rate for instruction 4926: 17.0934% +Rate for instruction 4927: 17.0946% +Rate for instruction 4928: 17.0935% +Rate for instruction 4929: 17.0939% +Rate for instruction 4930: 17.0975% +Rate for instruction 4931: 17.0979% +Rate for instruction 4932: 17.1007% +Rate for instruction 4933: 17.1035% +Rate for instruction 4934: 17.1008% +Rate for instruction 4935: 17.1035% +Rate for instruction 4936: 17.1024% +Rate for instruction 4937: 17.1052% +Rate for instruction 4938: 17.1072% +Rate for instruction 4939: 17.1084% +Rate for instruction 4940: 17.1088% +Rate for instruction 4941: 17.1085% +Rate for instruction 4942: 17.1081% +Rate for instruction 4943: 17.1054% +Rate for instruction 4944: 17.109% +Rate for instruction 4945: 17.1086% +Rate for instruction 4946: 17.1122% +Rate for instruction 4947: 17.1103% +Rate for instruction 4948: 17.1122% +Rate for instruction 4949: 17.1134% +Rate for instruction 4950: 17.1185% +Rate for instruction 4951: 17.1252% +Rate for instruction 4952: 17.124% +Rate for instruction 4953: 17.1245% +Rate for instruction 4954: 17.1233% +Rate for instruction 4955: 17.1238% +Rate for instruction 4956: 17.1257% +Rate for instruction 4957: 17.1238% +Rate for instruction 4958: 17.1235% +Rate for instruction 4959: 17.1231% +Rate for instruction 4960: 17.1212% +Rate for instruction 4961: 17.1201% +Rate for instruction 4962: 17.1174% +Rate for instruction 4963: 17.1179% +Rate for instruction 4964: 17.1152% +Rate for instruction 4965: 17.1133% +Rate for instruction 4966: 17.1114% +Rate for instruction 4967: 17.1118% +Rate for instruction 4968: 17.1115% +Rate for instruction 4969: 17.1127% +Rate for instruction 4970: 17.1108% +Rate for instruction 4971: 17.1104% +Rate for instruction 4972: 17.1132% +Rate for instruction 4973: 17.1136% +Rate for instruction 4974: 17.1109% +Rate for instruction 4975: 17.1121% +Rate for instruction 4976: 17.111% +Rate for instruction 4977: 17.1107% +Rate for instruction 4978: 17.1096% +Rate for instruction 4979: 17.1108% +Rate for instruction 4980: 17.1081% +Rate for instruction 4981: 17.1108% +Rate for instruction 4982: 17.1113% +Rate for instruction 4983: 17.1109% +Rate for instruction 4984: 17.1098% +Rate for instruction 4985: 17.1133% +Rate for instruction 4986: 17.1137% +Rate for instruction 4987: 17.1134% +Rate for instruction 4988: 17.1153% +Rate for instruction 4989: 17.1135% +Rate for instruction 4990: 17.117% +Rate for instruction 4991: 17.1151% +Rate for instruction 4992: 17.1124% +Rate for instruction 4993: 17.1105% +Rate for instruction 4994: 17.1102% +Rate for instruction 4995: 17.1075% +Rate for instruction 4996: 17.1056% +Rate for instruction 4997: 17.1107% +Rate for instruction 4998: 17.108% +Rate for instruction 4999: 17.1085% +Rate for instruction 5000: 17.1058% +Rate for instruction 5001: 17.1062% +Rate for instruction 5002: 17.1051% +Rate for instruction 5003: 17.1025% +Rate for instruction 5004: 17.1029% +Rate for instruction 5005: 17.1002% +Rate for instruction 5006: 17.1007% +Rate for instruction 5007: 17.0988% +Rate for instruction 5008: 17.0962% +Rate for instruction 5009: 17.0958% +Rate for instruction 5010: 17.0947% +Rate for instruction 5011: 17.0921% +Rate for instruction 5012: 17.0917% +Rate for instruction 5013: 17.0906% +Rate for instruction 5014: 17.0887% +Rate for instruction 5015: 17.0892% +Rate for instruction 5016: 17.0873% +Rate for instruction 5017: 17.0862% +Rate for instruction 5018: 17.0851% +Rate for instruction 5019: 17.0832% +Rate for instruction 5020: 17.0813% +Rate for instruction 5021: 17.0787% +Rate for instruction 5022: 17.0768% +Rate for instruction 5023: 17.078% +Rate for instruction 5024: 17.0769% +Rate for instruction 5025: 17.0758% +Rate for instruction 5026: 17.074% +Rate for instruction 5027: 17.0744% +Rate for instruction 5028: 17.074% +Rate for instruction 5029: 17.0791% +Rate for instruction 5030: 17.0772% +Rate for instruction 5031: 17.0746% +Rate for instruction 5032: 17.0727% +Rate for instruction 5033: 17.0701% +Rate for instruction 5034: 17.0743% +Rate for instruction 5035: 17.0725% +Rate for instruction 5036: 17.0706% +Rate for instruction 5037: 17.068% +Rate for instruction 5038: 17.0676% +Rate for instruction 5039: 17.0673% +Rate for instruction 5040: 17.0647% +Rate for instruction 5041: 17.0628% +Rate for instruction 5042: 17.0655% +Rate for instruction 5043: 17.0667% +Rate for instruction 5044: 17.071% +Rate for instruction 5045: 17.0691% +Rate for instruction 5046: 17.0673% +Rate for instruction 5047: 17.0662% +Rate for instruction 5048: 17.0635% +Rate for instruction 5049: 17.0625% +Rate for instruction 5050: 17.0598% +Rate for instruction 5051: 17.0595% +Rate for instruction 5052: 17.0569% +Rate for instruction 5053: 17.055% +Rate for instruction 5054: 17.0539% +Rate for instruction 5055: 17.0513% +Rate for instruction 5056: 17.051% +Rate for instruction 5057: 17.0514% +Rate for instruction 5058: 17.0526% +Rate for instruction 5059: 17.05% +Rate for instruction 5060: 17.0489% +Rate for instruction 5061: 17.0532% +Rate for instruction 5062: 17.0597% +Rate for instruction 5063: 17.0631% +Rate for instruction 5064: 17.0658% +Rate for instruction 5065: 17.0678% +Rate for instruction 5066: 17.0659% +Rate for instruction 5067: 17.0709% +Rate for instruction 5068: 17.0744% +Rate for instruction 5069: 17.0771% +Rate for instruction 5070: 17.079% +Rate for instruction 5071: 17.0764% +Rate for instruction 5072: 17.0768% +Rate for instruction 5073: 17.0765% +Rate for instruction 5074: 17.083% +Rate for instruction 5075: 17.0887% +Rate for instruction 5076: 17.0891% +Rate for instruction 5077: 17.0888% +Rate for instruction 5078: 17.0885% +Rate for instruction 5079: 17.0874% +Rate for instruction 5080: 17.0886% +Rate for instruction 5081: 17.089% +Rate for instruction 5082: 17.0894% +Rate for instruction 5083: 17.0891% +Rate for instruction 5084: 17.0887% +Rate for instruction 5085: 17.0876% +Rate for instruction 5086: 17.0881% +Rate for instruction 5087: 17.09% +Rate for instruction 5088: 17.0897% +Rate for instruction 5089: 17.0886% +Rate for instruction 5090: 17.089% +Rate for instruction 5091: 17.0871% +Rate for instruction 5092: 17.0891% +Rate for instruction 5093: 17.0865% +Rate for instruction 5094: 17.0884% +Rate for instruction 5095: 17.0896% +Rate for instruction 5096: 17.0907% +Rate for instruction 5097: 17.0904% +Rate for instruction 5098: 17.0931% +Rate for instruction 5099: 17.0935% +Rate for instruction 5100: 17.0954% +Rate for instruction 5101: 17.1011% +Rate for instruction 5102: 17.1016% +Rate for instruction 5103: 17.099% +Rate for instruction 5104: 17.0971% +Rate for instruction 5105: 17.0953% +Rate for instruction 5106: 17.0927% +Rate for instruction 5107: 17.0938% +Rate for instruction 5108: 17.0913% +Rate for instruction 5109: 17.0917% +Rate for instruction 5110: 17.0891% +Rate for instruction 5111: 17.091% +Rate for instruction 5112: 17.0907% +Rate for instruction 5113: 17.0881% +Rate for instruction 5114: 17.0862% +Rate for instruction 5115: 17.0844% +Rate for instruction 5116: 17.0878% +Rate for instruction 5117: 17.0913% +Rate for instruction 5118: 17.0902% +Rate for instruction 5119: 17.0876% +Rate for instruction 5120: 17.091% +Rate for instruction 5121: 17.0884% +Rate for instruction 5122: 17.0873% +Rate for instruction 5123: 17.0848% +Rate for instruction 5124: 17.0882% +Rate for instruction 5125: 17.0871% +Rate for instruction 5126: 17.0868% +Rate for instruction 5127: 17.0849% +Rate for instruction 5128: 17.0831% +Rate for instruction 5129: 17.0805% +Rate for instruction 5130: 17.0809% +Rate for instruction 5131: 17.0791% +Rate for instruction 5132: 17.081% +Rate for instruction 5133: 17.0785% +Rate for instruction 5134: 17.0796% +Rate for instruction 5135: 17.0785% +Rate for instruction 5136: 17.0805% +Rate for instruction 5137: 17.0779% +Rate for instruction 5138: 17.0783% +Rate for instruction 5139: 17.0772% +Rate for instruction 5140: 17.0791% +Rate for instruction 5141: 17.0781% +Rate for instruction 5142: 17.0785% +Rate for instruction 5143: 17.0774% +Rate for instruction 5144: 17.0793% +Rate for instruction 5145: 17.0797% +Rate for instruction 5146: 17.0794% +Rate for instruction 5147: 17.0768% +Rate for instruction 5148: 17.0758% +Rate for instruction 5149: 17.0754% +Rate for instruction 5150: 17.0744% +Rate for instruction 5151: 17.077% +Rate for instruction 5152: 17.0759% +Rate for instruction 5153: 17.0838% +Rate for instruction 5154: 17.085% +Rate for instruction 5155: 17.0869% +Rate for instruction 5156: 17.0881% +Rate for instruction 5157: 17.0922% +Rate for instruction 5158: 17.0904% +Rate for instruction 5159: 17.09% +Rate for instruction 5160: 17.0875% +Rate for instruction 5161: 17.0864% +Rate for instruction 5162: 17.0838% +Rate for instruction 5163: 17.0835% +Rate for instruction 5164: 17.0824% +Rate for instruction 5165: 17.0799% +Rate for instruction 5166: 17.0788% +Rate for instruction 5167: 17.077% +Rate for instruction 5168: 17.0767% +Rate for instruction 5169: 17.0771% +Rate for instruction 5170: 17.076% +Rate for instruction 5171: 17.0742% +Rate for instruction 5172: 17.0716% +Rate for instruction 5173: 17.072% +Rate for instruction 5174: 17.071% +Rate for instruction 5175: 17.0707% +Rate for instruction 5176: 17.0718% +Rate for instruction 5177: 17.0737% +Rate for instruction 5178: 17.0764% +Rate for instruction 5179: 17.076% +Rate for instruction 5180: 17.0764% +Rate for instruction 5181: 17.0746% +Rate for instruction 5182: 17.0758% +Rate for instruction 5183: 17.0762% +Rate for instruction 5184: 17.0737% +Rate for instruction 5185: 17.0711% +Rate for instruction 5186: 17.0686% +Rate for instruction 5187: 17.066% +Rate for instruction 5188: 17.0657% +Rate for instruction 5189: 17.0661% +Rate for instruction 5190: 17.065% +Rate for instruction 5191: 17.0632% +Rate for instruction 5192: 17.0614% +Rate for instruction 5193: 17.0641% +Rate for instruction 5194: 17.0615% +Rate for instruction 5195: 17.0642% +Rate for instruction 5196: 17.0631% +Rate for instruction 5197: 17.0635% +Rate for instruction 5198: 17.0632% +Rate for instruction 5199: 17.0621% +Rate for instruction 5200: 17.0625% +Rate for instruction 5201: 17.0644% +Rate for instruction 5202: 17.0656% +Rate for instruction 5203: 17.0668% +Rate for instruction 5204: 17.0664% +Rate for instruction 5205: 17.0683% +Rate for instruction 5206: 17.0695% +Rate for instruction 5207: 17.0692% +Rate for instruction 5208: 17.0688% +Rate for instruction 5209: 17.0685% +Rate for instruction 5210: 17.0689% +Rate for instruction 5211: 17.0686% +Rate for instruction 5212: 17.0661% +Rate for instruction 5213: 17.0665% +Rate for instruction 5214: 17.0647% +Rate for instruction 5215: 17.0673% +Rate for instruction 5216: 17.0729% +Rate for instruction 5217: 17.0777% +Rate for instruction 5218: 17.0759% +Rate for instruction 5219: 17.0734% +Rate for instruction 5220: 17.0767% +Rate for instruction 5221: 17.0779% +Rate for instruction 5222: 17.0754% +Rate for instruction 5223: 17.0787% +Rate for instruction 5224: 17.0762% +Rate for instruction 5225: 17.0751% +Rate for instruction 5226: 17.0785% +Rate for instruction 5227: 17.084% +Rate for instruction 5228: 17.0859% +Rate for instruction 5229: 17.0871% +Rate for instruction 5230: 17.0926% +Rate for instruction 5231: 17.0923% +Rate for instruction 5232: 17.0898% +Rate for instruction 5233: 17.0902% +Rate for instruction 5234: 17.0884% +Rate for instruction 5235: 17.0873% +Rate for instruction 5236: 17.087% +Rate for instruction 5237: 17.0867% +Rate for instruction 5238: 17.0863% +Rate for instruction 5239: 17.0846% +Rate for instruction 5240: 17.085% +Rate for instruction 5241: 17.0832% +Rate for instruction 5242: 17.0836% +Rate for instruction 5243: 17.0833% +Rate for instruction 5244: 17.0873% +Rate for instruction 5245: 17.0855% +Rate for instruction 5246: 17.0889% +Rate for instruction 5247: 17.0871% +Rate for instruction 5248: 17.089% +Rate for instruction 5249: 17.0908% +Rate for instruction 5250: 17.0891% +Rate for instruction 5251: 17.0887% +Rate for instruction 5252: 17.0935% +Rate for instruction 5253: 17.091% +Rate for instruction 5254: 17.0885% +Rate for instruction 5255: 17.0904% +Rate for instruction 5256: 17.0878% +Rate for instruction 5257: 17.0904% +Rate for instruction 5258: 17.0923% +Rate for instruction 5259: 17.0905% +Rate for instruction 5260: 17.0931% +Rate for instruction 5261: 17.095% +Rate for instruction 5262: 17.1005% +Rate for instruction 5263: 17.0995% +Rate for instruction 5264: 17.0984% +Rate for instruction 5265: 17.0981% +Rate for instruction 5266: 17.0999% +Rate for instruction 5267: 17.1025% +Rate for instruction 5268: 17.1029% +Rate for instruction 5269: 17.1033% +Rate for instruction 5270: 17.1008% +Rate for instruction 5271: 17.099% +Rate for instruction 5272: 17.0965% +Rate for instruction 5273: 17.0955% +Rate for instruction 5274: 17.093% +Rate for instruction 5275: 17.0934% +Rate for instruction 5276: 17.0923% +Rate for instruction 5277: 17.0935% +Rate for instruction 5278: 17.0953% +Rate for instruction 5279: 17.0943% +Rate for instruction 5280: 17.0947% +Rate for instruction 5281: 17.0936% +Rate for instruction 5282: 17.0918% +Rate for instruction 5283: 17.0922% +Rate for instruction 5284: 17.0934% +Rate for instruction 5285: 17.0938% +Rate for instruction 5286: 17.0942% +Rate for instruction 5287: 17.0924% +Rate for instruction 5288: 17.0928% +Rate for instruction 5289: 17.0918% +Rate for instruction 5290: 17.0907% +Rate for instruction 5291: 17.0882% +Rate for instruction 5292: 17.0901% +Rate for instruction 5293: 17.0876% +Rate for instruction 5294: 17.0887% +Rate for instruction 5295: 17.0862% +Rate for instruction 5296: 17.0873% +Rate for instruction 5297: 17.0848% +Rate for instruction 5298: 17.083% +Rate for instruction 5299: 17.0849% +Rate for instruction 5300: 17.086% +Rate for instruction 5301: 17.0843% +Rate for instruction 5302: 17.0847% +Rate for instruction 5303: 17.0851% +Rate for instruction 5304: 17.084% +Rate for instruction 5305: 17.0837% +Rate for instruction 5306: 17.0834% +Rate for instruction 5307: 17.0809% +Rate for instruction 5308: 17.0791% +Rate for instruction 5309: 17.0766% +Rate for instruction 5310: 17.0741% +Rate for instruction 5311: 17.0724% +Rate for instruction 5312: 17.0713% +Rate for instruction 5313: 17.071% +Rate for instruction 5314: 17.07% +Rate for instruction 5315: 17.0704% +Rate for instruction 5316: 17.0693% +Rate for instruction 5317: 17.0676% +Rate for instruction 5318: 17.0665% +Rate for instruction 5319: 17.0677% +Rate for instruction 5320: 17.0659% +Rate for instruction 5321: 17.0649% +Rate for instruction 5322: 17.0638% +Rate for instruction 5323: 17.065% +Rate for instruction 5324: 17.0625% +Rate for instruction 5325: 17.0629% +Rate for instruction 5326: 17.0683% +Rate for instruction 5327: 17.0724% +Rate for instruction 5328: 17.0713% +Rate for instruction 5329: 17.0717% +Rate for instruction 5330: 17.0707% +Rate for instruction 5331: 17.0718% +Rate for instruction 5332: 17.0693% +Rate for instruction 5333: 17.0712% +Rate for instruction 5334: 17.0694% +Rate for instruction 5335: 17.0669% +Rate for instruction 5336: 17.071% +Rate for instruction 5337: 17.0728% +Rate for instruction 5338: 17.0746% +Rate for instruction 5339: 17.0758% +Rate for instruction 5340: 17.0762% +Rate for instruction 5341: 17.0751% +Rate for instruction 5342: 17.0741% +Rate for instruction 5343: 17.0723% +Rate for instruction 5344: 17.0763% +Rate for instruction 5345: 17.0753% +Rate for instruction 5346: 17.075% +Rate for instruction 5347: 17.0732% +Rate for instruction 5348: 17.0708% +Rate for instruction 5349: 17.0683% +Rate for instruction 5350: 17.0665% +Rate for instruction 5351: 17.0662% +Rate for instruction 5352: 17.0645% +Rate for instruction 5353: 17.0663% +Rate for instruction 5354: 17.0674% +Rate for instruction 5355: 17.0722% +Rate for instruction 5356: 17.0747% +Rate for instruction 5357: 17.0787% +Rate for instruction 5358: 17.0784% +Rate for instruction 5359: 17.0759% +Rate for instruction 5360: 17.0742% +Rate for instruction 5361: 17.0731% +Rate for instruction 5362: 17.0707% +Rate for instruction 5363: 17.0689% +Rate for instruction 5364: 17.0693% +Rate for instruction 5365: 17.0676% +Rate for instruction 5366: 17.0665% +Rate for instruction 5367: 17.0684% +Rate for instruction 5368: 17.0702% +Rate for instruction 5369: 17.0699% +Rate for instruction 5370: 17.0689% +Rate for instruction 5371: 17.0671% +Rate for instruction 5372: 17.0697% +Rate for instruction 5373: 17.0708% +Rate for instruction 5374: 17.0698% +Rate for instruction 5375: 17.0702% +Rate for instruction 5376: 17.072% +Rate for instruction 5377: 17.0724% +Rate for instruction 5378: 17.0714% +Rate for instruction 5379: 17.0739% +Rate for instruction 5380: 17.0772% +Rate for instruction 5381: 17.0769% +Rate for instruction 5382: 17.0787% +Rate for instruction 5383: 17.0777% +Rate for instruction 5384: 17.0824% +Rate for instruction 5385: 17.0863% +Rate for instruction 5386: 17.0853% +Rate for instruction 5387: 17.085% +Rate for instruction 5388: 17.0825% +Rate for instruction 5389: 17.0808% +Rate for instruction 5390: 17.0812% +Rate for instruction 5391: 17.0787% +Rate for instruction 5392: 17.0813% +Rate for instruction 5393: 17.0845% +Rate for instruction 5394: 17.0863% +Rate for instruction 5395: 17.0896% +Rate for instruction 5396: 17.0914% +Rate for instruction 5397: 17.0939% +Rate for instruction 5398: 17.0922% +Rate for instruction 5399: 17.0905% +Rate for instruction 5400: 17.0973% +Rate for instruction 5401: 17.1026% +Rate for instruction 5402: 17.103% +Rate for instruction 5403: 17.102% +Rate for instruction 5404: 17.1024% +Rate for instruction 5405: 17.1007% +Rate for instruction 5406: 17.1046% +Rate for instruction 5407: 17.1078% +Rate for instruction 5408: 17.1104% +Rate for instruction 5409: 17.1101% +Rate for instruction 5410: 17.1104% +Rate for instruction 5411: 17.1123% +Rate for instruction 5412: 17.1126% +Rate for instruction 5413: 17.113% +Rate for instruction 5414: 17.1127% +Rate for instruction 5415: 17.1152% +Rate for instruction 5416: 17.1149% +Rate for instruction 5417: 17.1139% +Rate for instruction 5418: 17.115% +Rate for instruction 5419: 17.1133% +Rate for instruction 5420: 17.1136% +Rate for instruction 5421: 17.114% +Rate for instruction 5422: 17.1137% +Rate for instruction 5423: 17.1162% +Rate for instruction 5424: 17.118% +Rate for instruction 5425: 17.1156% +Rate for instruction 5426: 17.1146% +Rate for instruction 5427: 17.1121% +Rate for instruction 5428: 17.1104% +Rate for instruction 5429: 17.1079% +Rate for instruction 5430: 17.1083% +Rate for instruction 5431: 17.1059% +Rate for instruction 5432: 17.1049% +Rate for instruction 5433: 17.1024% +Rate for instruction 5434: 17.1014% +Rate for instruction 5435: 17.0997% +Rate for instruction 5436: 17.0972% +Rate for instruction 5437: 17.0955% +Rate for instruction 5438: 17.0931% +Rate for instruction 5439: 17.0956% +Rate for instruction 5440: 17.0946% +Rate for instruction 5441: 17.0921% +Rate for instruction 5442: 17.0897% +Rate for instruction 5443: 17.0922% +Rate for instruction 5444: 17.0898% +Rate for instruction 5445: 17.0902% +Rate for instruction 5446: 17.092% +Rate for instruction 5447: 17.0931% +Rate for instruction 5448: 17.0949% +Rate for instruction 5449: 17.0981% +Rate for instruction 5450: 17.0971% +Rate for instruction 5451: 17.0953% +Rate for instruction 5452: 17.0943% +Rate for instruction 5453: 17.094% +Rate for instruction 5454: 17.093% +Rate for instruction 5455: 17.0955% +Rate for instruction 5456: 17.0973% +Rate for instruction 5457: 17.0956% +Rate for instruction 5458: 17.0939% +Rate for instruction 5459: 17.0964% +Rate for instruction 5460: 17.0975% +Rate for instruction 5461: 17.0964% +Rate for instruction 5462: 17.094% +Rate for instruction 5463: 17.0916% +Rate for instruction 5464: 17.0892% +Rate for instruction 5465: 17.0889% +Rate for instruction 5466: 17.0878% +Rate for instruction 5467: 17.0861% +Rate for instruction 5468: 17.0879% +Rate for instruction 5469: 17.0883% +Rate for instruction 5470: 17.0873% +Rate for instruction 5471: 17.0849% +Rate for instruction 5472: 17.0853% +Rate for instruction 5473: 17.0871% +Rate for instruction 5474: 17.0861% +Rate for instruction 5475: 17.0843% +Rate for instruction 5476: 17.0861% +Rate for instruction 5477: 17.0907% +Rate for instruction 5478: 17.0953% +Rate for instruction 5479: 17.0978% +Rate for instruction 5480: 17.0961% +Rate for instruction 5481: 17.0986% +Rate for instruction 5482: 17.099% +Rate for instruction 5483: 17.0966% +Rate for instruction 5484: 17.0977% +Rate for instruction 5485: 17.0953% +Rate for instruction 5486: 17.0957% +Rate for instruction 5487: 17.1009% +Rate for instruction 5488: 17.0985% +Rate for instruction 5489: 17.0982% +Rate for instruction 5490: 17.1% +Rate for instruction 5491: 17.099% +Rate for instruction 5492: 17.1001% +Rate for instruction 5493: 17.1019% +Rate for instruction 5494: 17.1079% +Rate for instruction 5495: 17.1103% +Rate for instruction 5496: 17.1079% +Rate for instruction 5497: 17.1097% +Rate for instruction 5498: 17.1122% +Rate for instruction 5499: 17.1105% +Rate for instruction 5500: 17.113% +Rate for instruction 5501: 17.1134% +Rate for instruction 5502: 17.1165% +Rate for instruction 5503: 17.1169% +Rate for instruction 5504: 17.1173% +Rate for instruction 5505: 17.1184% +Rate for instruction 5506: 17.1181% +Rate for instruction 5507: 17.1171% +Rate for instruction 5508: 17.1153% +Rate for instruction 5509: 17.1143% +Rate for instruction 5510: 17.1126% +Rate for instruction 5511: 17.1109% +Rate for instruction 5512: 17.1099% +Rate for instruction 5513: 17.1089% +Rate for instruction 5514: 17.1093% +Rate for instruction 5515: 17.1083% +Rate for instruction 5516: 17.1087% +Rate for instruction 5517: 17.1063% +Rate for instruction 5518: 17.108% +Rate for instruction 5519: 17.1091% +Rate for instruction 5520: 17.1074% +Rate for instruction 5521: 17.1071% +Rate for instruction 5522: 17.1068% +Rate for instruction 5523: 17.1072% +Rate for instruction 5524: 17.1062% +Rate for instruction 5525: 17.1086% +Rate for instruction 5526: 17.1083% +Rate for instruction 5527: 17.1087% +Rate for instruction 5528: 17.1084% +Rate for instruction 5529: 17.106% +Rate for instruction 5530: 17.1064% +Rate for instruction 5531: 17.1061% +Rate for instruction 5532: 17.1051% +Rate for instruction 5533: 17.1027% +Rate for instruction 5534: 17.101% +Rate for instruction 5535: 17.0986% +Rate for instruction 5536: 17.0983% +Rate for instruction 5537: 17.0959% +Rate for instruction 5538: 17.0942% +Rate for instruction 5539: 17.098% +Rate for instruction 5540: 17.0984% +Rate for instruction 5541: 17.0981% +Rate for instruction 5542: 17.0957% +Rate for instruction 5543: 17.0933% +Rate for instruction 5544: 17.0909% +Rate for instruction 5545: 17.0892% +Rate for instruction 5546: 17.0889% +Rate for instruction 5547: 17.0872% +Rate for instruction 5548: 17.0855% +Rate for instruction 5549: 17.0852% +Rate for instruction 5550: 17.0842% +Rate for instruction 5551: 17.0853% +Rate for instruction 5552: 17.0843% +Rate for instruction 5553: 17.084% +Rate for instruction 5554: 17.083% +Rate for instruction 5555: 17.0806% +Rate for instruction 5556: 17.081% +Rate for instruction 5557: 17.08% +Rate for instruction 5558: 17.0797% +Rate for instruction 5559: 17.0808% +Rate for instruction 5560: 17.0798% +Rate for instruction 5561: 17.0774% +Rate for instruction 5562: 17.0757% +Rate for instruction 5563: 17.0747% +Rate for instruction 5564: 17.0744% +Rate for instruction 5565: 17.0734% +Rate for instruction 5566: 17.0724% +Rate for instruction 5567: 17.0715% +Rate for instruction 5568: 17.0705% +Rate for instruction 5569: 17.0722% +Rate for instruction 5570: 17.0699% +Rate for instruction 5571: 17.0696% +Rate for instruction 5572: 17.0686% +Rate for instruction 5573: 17.0662% +Rate for instruction 5574: 17.0659% +Rate for instruction 5575: 17.0649% +Rate for instruction 5576: 17.0653% +Rate for instruction 5577: 17.065% +Rate for instruction 5578: 17.0633% +Rate for instruction 5579: 17.0609% +Rate for instruction 5580: 17.0593% +Rate for instruction 5581: 17.0576% +Rate for instruction 5582: 17.0566% +Rate for instruction 5583: 17.0549% +Rate for instruction 5584: 17.0581% +Rate for instruction 5585: 17.0584% +Rate for instruction 5586: 17.0595% +Rate for instruction 5587: 17.0585% +Rate for instruction 5588: 17.0617% +Rate for instruction 5589: 17.0648% +Rate for instruction 5590: 17.0686% +Rate for instruction 5591: 17.0718% +Rate for instruction 5592: 17.0701% +Rate for instruction 5593: 17.0684% +Rate for instruction 5594: 17.0695% +Rate for instruction 5595: 17.0671% +Rate for instruction 5596: 17.0648% +Rate for instruction 5597: 17.0652% +Rate for instruction 5598: 17.0683% +Rate for instruction 5599: 17.0666% +Rate for instruction 5600: 17.0663% +Rate for instruction 5601: 17.0674% +Rate for instruction 5602: 17.0698% +Rate for instruction 5603: 17.0689% +Rate for instruction 5604: 17.072% +Rate for instruction 5605: 17.071% +Rate for instruction 5606: 17.0686% +Rate for instruction 5607: 17.0711% +Rate for instruction 5608: 17.0749% +Rate for instruction 5609: 17.0773% +Rate for instruction 5610: 17.0757% +Rate for instruction 5611: 17.0774% +Rate for instruction 5612: 17.0792% +Rate for instruction 5613: 17.0816% +Rate for instruction 5614: 17.0847% +Rate for instruction 5615: 17.0906% +Rate for instruction 5616: 17.0951% +Rate for instruction 5617: 17.0996% +Rate for instruction 5618: 17.0979% +Rate for instruction 5619: 17.0983% +Rate for instruction 5620: 17.0966% +Rate for instruction 5621: 17.0949% +Rate for instruction 5622: 17.0933% +Rate for instruction 5623: 17.0916% +Rate for instruction 5624: 17.0892% +Rate for instruction 5625: 17.0889% +Rate for instruction 5626: 17.0879% +Rate for instruction 5627: 17.087% +Rate for instruction 5628: 17.0853% +Rate for instruction 5629: 17.0843% +Rate for instruction 5630: 17.0833% +Rate for instruction 5631: 17.083% +Rate for instruction 5632: 17.0834% +Rate for instruction 5633: 17.0831% +Rate for instruction 5634: 17.0835% +Rate for instruction 5635: 17.0832% +Rate for instruction 5636: 17.0815% +Rate for instruction 5637: 17.086% +Rate for instruction 5638: 17.0843% +Rate for instruction 5639: 17.0854% +Rate for instruction 5640: 17.083% +Rate for instruction 5641: 17.0814% +Rate for instruction 5642: 17.0804% +Rate for instruction 5643: 17.078% +Rate for instruction 5644: 17.0784% +Rate for instruction 5645: 17.0761% +Rate for instruction 5646: 17.0778% +Rate for instruction 5647: 17.0768% +Rate for instruction 5648: 17.0793% +Rate for instruction 5649: 17.079% +Rate for instruction 5650: 17.078% +Rate for instruction 5651: 17.0777% +Rate for instruction 5652: 17.076% +Rate for instruction 5653: 17.0737% +Rate for instruction 5654: 17.0727% +Rate for instruction 5655: 17.0744% +Rate for instruction 5656: 17.0721% +Rate for instruction 5657: 17.0745% +Rate for instruction 5658: 17.0736% +Rate for instruction 5659: 17.0726% +Rate for instruction 5660: 17.0723% +Rate for instruction 5661: 17.0747% +Rate for instruction 5662: 17.0778% +Rate for instruction 5663: 17.0775% +Rate for instruction 5664: 17.0772% +Rate for instruction 5665: 17.0803% +Rate for instruction 5666: 17.0813% +Rate for instruction 5667: 17.081% +Rate for instruction 5668: 17.0801% +Rate for instruction 5669: 17.0798% +Rate for instruction 5670: 17.0808% +Rate for instruction 5671: 17.0785% +Rate for instruction 5672: 17.0809% +Rate for instruction 5673: 17.0806% +Rate for instruction 5674: 17.083% +Rate for instruction 5675: 17.0807% +Rate for instruction 5676: 17.0845% +Rate for instruction 5677: 17.0869% +Rate for instruction 5678: 17.0845% +Rate for instruction 5679: 17.0829% +Rate for instruction 5680: 17.0833% +Rate for instruction 5681: 17.0816% +Rate for instruction 5682: 17.082% +Rate for instruction 5683: 17.0803% +Rate for instruction 5684: 17.0814% +Rate for instruction 5685: 17.0797% +Rate for instruction 5686: 17.0781% +Rate for instruction 5687: 17.0785% +Rate for instruction 5688: 17.0782% +Rate for instruction 5689: 17.0792% +Rate for instruction 5690: 17.0769% +Rate for instruction 5691: 17.0759% +Rate for instruction 5692: 17.0763% +Rate for instruction 5693: 17.0774% +Rate for instruction 5694: 17.0764% +Rate for instruction 5695: 17.0754% +Rate for instruction 5696: 17.0731% +Rate for instruction 5697: 17.0741% +Rate for instruction 5698: 17.0772% +Rate for instruction 5699: 17.0749% +Rate for instruction 5700: 17.0733% +Rate for instruction 5701: 17.0723% +Rate for instruction 5702: 17.0747% +Rate for instruction 5703: 17.0724% +Rate for instruction 5704: 17.0734% +Rate for instruction 5705: 17.0711% +Rate for instruction 5706: 17.0715% +Rate for instruction 5707: 17.0692% +Rate for instruction 5708: 17.0702% +Rate for instruction 5709: 17.0699% +Rate for instruction 5710: 17.0689% +Rate for instruction 5711: 17.068% +Rate for instruction 5712: 17.0657% +Rate for instruction 5713: 17.0654% +Rate for instruction 5714: 17.0651% +Rate for instruction 5715: 17.0628% +Rate for instruction 5716: 17.0618% +Rate for instruction 5717: 17.0608% +Rate for instruction 5718: 17.0599% +Rate for instruction 5719: 17.0582% +Rate for instruction 5720: 17.0566% +Rate for instruction 5721: 17.057% +Rate for instruction 5722: 17.0553% +Rate for instruction 5723: 17.0544% +Rate for instruction 5724: 17.0527% +Rate for instruction 5725: 17.0538% +Rate for instruction 5726: 17.0548% +Rate for instruction 5727: 17.0545% +Rate for instruction 5728: 17.0556% +Rate for instruction 5729: 17.0533% +Rate for instruction 5730: 17.055% +Rate for instruction 5731: 17.0554% +Rate for instruction 5732: 17.0531% +Rate for instruction 5733: 17.0508% +Rate for instruction 5734: 17.0525% +Rate for instruction 5735: 17.0542% +Rate for instruction 5736: 17.06% +Rate for instruction 5737: 17.0583% +Rate for instruction 5738: 17.0607% +Rate for instruction 5739: 17.0645% +Rate for instruction 5740: 17.0682% +Rate for instruction 5741: 17.0739% +Rate for instruction 5742: 17.0797% +Rate for instruction 5743: 17.078% +Rate for instruction 5744: 17.0771% +Rate for instruction 5745: 17.0754% +Rate for instruction 5746: 17.0738% +Rate for instruction 5747: 17.0735% +Rate for instruction 5748: 17.0712% +Rate for instruction 5749: 17.0702% +Rate for instruction 5750: 17.0693% +Rate for instruction 5751: 17.069% +Rate for instruction 5752: 17.0673% +Rate for instruction 5753: 17.0671% +Rate for instruction 5754: 17.0654% +Rate for instruction 5755: 17.0631% +Rate for instruction 5756: 17.0628% +Rate for instruction 5757: 17.0612% +Rate for instruction 5758: 17.0603% +Rate for instruction 5759: 17.06% +Rate for instruction 5760: 17.0583% +Rate for instruction 5761: 17.0574% +Rate for instruction 5762: 17.0571% +Rate for instruction 5763: 17.0575% +Rate for instruction 5764: 17.0572% +Rate for instruction 5765: 17.0596% +Rate for instruction 5766: 17.0593% +Rate for instruction 5767: 17.057% +Rate for instruction 5768: 17.0567% +Rate for instruction 5769: 17.0551% +Rate for instruction 5770: 17.0568% +Rate for instruction 5771: 17.0551% +Rate for instruction 5772: 17.0555% +Rate for instruction 5773: 17.0559% +Rate for instruction 5774: 17.0589% +Rate for instruction 5775: 17.0606% +Rate for instruction 5776: 17.063% +Rate for instruction 5777: 17.0647% +Rate for instruction 5778: 17.0684% +Rate for instruction 5779: 17.0661% +Rate for instruction 5780: 17.0712% +Rate for instruction 5781: 17.0749% +Rate for instruction 5782: 17.0733% +Rate for instruction 5783: 17.0763% +Rate for instruction 5784: 17.0753% +Rate for instruction 5785: 17.0764% +Rate for instruction 5786: 17.0781% +Rate for instruction 5787: 17.0784% +Rate for instruction 5788: 17.0788% +Rate for instruction 5789: 17.0765% +Rate for instruction 5790: 17.0769% +Rate for instruction 5791: 17.0753% +Rate for instruction 5792: 17.073% +Rate for instruction 5793: 17.072% +Rate for instruction 5794: 17.0698% +Rate for instruction 5795: 17.0715% +Rate for instruction 5796: 17.0718% +Rate for instruction 5797: 17.0715% +Rate for instruction 5798: 17.0719% +Rate for instruction 5799: 17.0716% +Rate for instruction 5800: 17.072% +Rate for instruction 5801: 17.0704% +Rate for instruction 5802: 17.0714% +Rate for instruction 5803: 17.0705% +Rate for instruction 5804: 17.0688% +Rate for instruction 5805: 17.0672% +Rate for instruction 5806: 17.0683% +Rate for instruction 5807: 17.068% +Rate for instruction 5808: 17.069% +Rate for instruction 5809: 17.0694% +Rate for instruction 5810: 17.0671% +Rate for instruction 5811: 17.0655% +Rate for instruction 5812: 17.0645% +Rate for instruction 5813: 17.0636% +Rate for instruction 5814: 17.0633% +Rate for instruction 5815: 17.0637% +Rate for instruction 5816: 17.0634% +Rate for instruction 5817: 17.0631% +Rate for instruction 5818: 17.0635% +Rate for instruction 5819: 17.0638% +Rate for instruction 5820: 17.0649% +Rate for instruction 5821: 17.0659% +Rate for instruction 5822: 17.0656% +Rate for instruction 5823: 17.064% +Rate for instruction 5824: 17.0617% +Rate for instruction 5825: 17.0634% +Rate for instruction 5826: 17.0638% +Rate for instruction 5827: 17.0642% +Rate for instruction 5828: 17.0645% +Rate for instruction 5829: 17.0649% +Rate for instruction 5830: 17.064% +Rate for instruction 5831: 17.0657% +Rate for instruction 5832: 17.066% +Rate for instruction 5833: 17.0671% +Rate for instruction 5834: 17.0648% +Rate for instruction 5835: 17.0645% +Rate for instruction 5836: 17.0655% +Rate for instruction 5837: 17.0639% +Rate for instruction 5838: 17.0656% +Rate for instruction 5839: 17.068% +Rate for instruction 5840: 17.0683% +Rate for instruction 5841: 17.0674% +Rate for instruction 5842: 17.0671% +Rate for instruction 5843: 17.0662% +Rate for instruction 5844: 17.0692% +Rate for instruction 5845: 17.0702% +Rate for instruction 5846: 17.0732% +Rate for instruction 5847: 17.0768% +Rate for instruction 5848: 17.0752% +Rate for instruction 5849: 17.0743% +Rate for instruction 5850: 17.072% +Rate for instruction 5851: 17.0724% +Rate for instruction 5852: 17.0721% +Rate for instruction 5853: 17.0699% +Rate for instruction 5854: 17.0676% +Rate for instruction 5855: 17.068% +Rate for instruction 5856: 17.0683% +Rate for instruction 5857: 17.0667% +Rate for instruction 5858: 17.0658% +Rate for instruction 5859: 17.0642% +Rate for instruction 5860: 17.0646% +Rate for instruction 5861: 17.0643% +Rate for instruction 5862: 17.0653% +Rate for instruction 5863: 17.065% +Rate for instruction 5864: 17.0641% +Rate for instruction 5865: 17.0631% +Rate for instruction 5866: 17.0622% +Rate for instruction 5867: 17.0658% +Rate for instruction 5868: 17.0655% +Rate for instruction 5869: 17.0639% +Rate for instruction 5870: 17.063% +Rate for instruction 5871: 17.0627% +Rate for instruction 5872: 17.0644% +Rate for instruction 5873: 17.0654% +Rate for instruction 5874: 17.0671% +Rate for instruction 5875: 17.0655% +Rate for instruction 5876: 17.0665% +Rate for instruction 5877: 17.0682% +Rate for instruction 5878: 17.066% +Rate for instruction 5879: 17.0644% +Rate for instruction 5880: 17.0634% +Rate for instruction 5881: 17.0612% +Rate for instruction 5882: 17.0602% +Rate for instruction 5883: 17.0593% +Rate for instruction 5884: 17.059% +Rate for instruction 5885: 17.0581% +Rate for instruction 5886: 17.0558% +Rate for instruction 5887: 17.0542% +Rate for instruction 5888: 17.0546% +Rate for instruction 5889: 17.0576% +Rate for instruction 5890: 17.0593% +Rate for instruction 5891: 17.057% +Rate for instruction 5892: 17.0554% +Rate for instruction 5893: 17.0565% +Rate for instruction 5894: 17.0562% +Rate for instruction 5895: 17.0539% +Rate for instruction 5896: 17.0576% +Rate for instruction 5897: 17.0586% +Rate for instruction 5898: 17.059% +Rate for instruction 5899: 17.0619% +Rate for instruction 5900: 17.061% +Rate for instruction 5901: 17.0594% +Rate for instruction 5902: 17.0585% +Rate for instruction 5903: 17.0562% +Rate for instruction 5904: 17.0546% +Rate for instruction 5905: 17.0563% +Rate for instruction 5906: 17.0573% +Rate for instruction 5907: 17.0584% +Rate for instruction 5908: 17.0574% +Rate for instruction 5909: 17.0552% +Rate for instruction 5910: 17.0569% +Rate for instruction 5911: 17.0572% +Rate for instruction 5912: 17.055% +Rate for instruction 5913: 17.0573% +Rate for instruction 5914: 17.0609% +Rate for instruction 5915: 17.0593% +Rate for instruction 5916: 17.0597% +Rate for instruction 5917: 17.0646% +Rate for instruction 5918: 17.0643% +Rate for instruction 5919: 17.0673% +Rate for instruction 5920: 17.0651% +Rate for instruction 5921: 17.068% +Rate for instruction 5922: 17.0678% +Rate for instruction 5923: 17.0694% +Rate for instruction 5924: 17.0672% +Rate for instruction 5925: 17.0676% +Rate for instruction 5926: 17.0686% +Rate for instruction 5927: 17.0696% +Rate for instruction 5928: 17.0699% +Rate for instruction 5929: 17.0684% +Rate for instruction 5930: 17.0726% +Rate for instruction 5931: 17.0736% +Rate for instruction 5932: 17.0766% +Rate for instruction 5933: 17.0763% +Rate for instruction 5934: 17.0812% +Rate for instruction 5935: 17.0867% +Rate for instruction 5936: 17.0865% +Rate for instruction 5937: 17.0855% +Rate for instruction 5938: 17.0833% +Rate for instruction 5939: 17.083% +Rate for instruction 5940: 17.0821% +Rate for instruction 5941: 17.0805% +Rate for instruction 5942: 17.0783% +Rate for instruction 5943: 17.076% +Rate for instruction 5944: 17.0751% +Rate for instruction 5945: 17.0742% +Rate for instruction 5946: 17.0732% +Rate for instruction 5947: 17.073% +Rate for instruction 5948: 17.0714% +Rate for instruction 5949: 17.0692% +Rate for instruction 5950: 17.0682% +Rate for instruction 5951: 17.0686% +Rate for instruction 5952: 17.0664% +Rate for instruction 5953: 17.0655% +Rate for instruction 5954: 17.0632% +Rate for instruction 5955: 17.0623% +Rate for instruction 5956: 17.0601% +Rate for instruction 5957: 17.0617% +Rate for instruction 5958: 17.0608% +Rate for instruction 5959: 17.0631% +Rate for instruction 5960: 17.0635% +Rate for instruction 5961: 17.0645% +Rate for instruction 5962: 17.0655% +Rate for instruction 5963: 17.0639% +Rate for instruction 5964: 17.0643% +Rate for instruction 5965: 17.0621% +Rate for instruction 5966: 17.0637% +Rate for instruction 5967: 17.0615% +Rate for instruction 5968: 17.0619% +Rate for instruction 5969: 17.0616% +Rate for instruction 5970: 17.0607% +Rate for instruction 5971: 17.0591% +Rate for instruction 5972: 17.0569% +Rate for instruction 5973: 17.056% +Rate for instruction 5974: 17.0537% +Rate for instruction 5975: 17.0522% +Rate for instruction 5976: 17.05% +Rate for instruction 5977: 17.051% +Rate for instruction 5978: 17.0488% +Rate for instruction 5979: 17.0491% +Rate for instruction 5980: 17.0489% +Rate for instruction 5981: 17.0467% +Rate for instruction 5982: 17.047% +Rate for instruction 5983: 17.0461% +Rate for instruction 5984: 17.0452% +Rate for instruction 5985: 17.0443% +Rate for instruction 5986: 17.0427% +Rate for instruction 5987: 17.0424% +Rate for instruction 5988: 17.0428% +Rate for instruction 5989: 17.0431% +Rate for instruction 5990: 17.0435% +Rate for instruction 5991: 17.0445% +Rate for instruction 5992: 17.0442% +Rate for instruction 5993: 17.0459% +Rate for instruction 5994: 17.0456% +Rate for instruction 5995: 17.0441% +Rate for instruction 5996: 17.0438% +Rate for instruction 5997: 17.0429% +Rate for instruction 5998: 17.0413% +Rate for instruction 5999: 17.0429% +Rate for instruction 6000: 17.042% +Rate for instruction 6001: 17.0398% +Rate for instruction 6002: 17.0396% +Rate for instruction 6003: 17.0399% +Rate for instruction 6004: 17.0403% +Rate for instruction 6005: 17.0381% +Rate for instruction 6006: 17.0417% +Rate for instruction 6007: 17.0452% +Rate for instruction 6008: 17.0449% +Rate for instruction 6009: 17.0434% +Rate for instruction 6010: 17.0418% +Rate for instruction 6011: 17.0396% +Rate for instruction 6012: 17.0381% +Rate for instruction 6013: 17.0359% +Rate for instruction 6014: 17.0363% +Rate for instruction 6015: 17.0373% +Rate for instruction 6016: 17.0357% +Rate for instruction 6017: 17.0335% +Rate for instruction 6018: 17.0332% +Rate for instruction 6019: 17.0311% +Rate for instruction 6020: 17.0321% +Rate for instruction 6021: 17.0331% +Rate for instruction 6022: 17.036% +Rate for instruction 6023: 17.0376% +Rate for instruction 6024: 17.0399% +Rate for instruction 6025: 17.039% +Rate for instruction 6026: 17.0368% +Rate for instruction 6027: 17.0359% +Rate for instruction 6028: 17.0343% +Rate for instruction 6029: 17.0328% +Rate for instruction 6030: 17.0312% +Rate for instruction 6031: 17.0291% +Rate for instruction 6032: 17.0294% +Rate for instruction 6033: 17.0272% +Rate for instruction 6034: 17.0263% +Rate for instruction 6035: 17.0241% +Rate for instruction 6036: 17.0239% +Rate for instruction 6037: 17.0217% +Rate for instruction 6038: 17.0265% +Rate for instruction 6039: 17.0243% +Rate for instruction 6040: 17.0266% +Rate for instruction 6041: 17.0295% +Rate for instruction 6042: 17.028% +Rate for instruction 6043: 17.0296% +Rate for instruction 6044: 17.0319% +Rate for instruction 6045: 17.031% +Rate for instruction 6046: 17.0339% +Rate for instruction 6047: 17.0374% +Rate for instruction 6048: 17.0352% +Rate for instruction 6049: 17.0343% +Rate for instruction 6050: 17.0334% +Rate for instruction 6051: 17.0331% +Rate for instruction 6052: 17.031% +Rate for instruction 6053: 17.0301% +Rate for instruction 6054: 17.0279% +Rate for instruction 6055: 17.0263% +Rate for instruction 6056: 17.0248% +Rate for instruction 6057: 17.0264% +Rate for instruction 6058: 17.0262% +Rate for instruction 6059: 17.0246% +Rate for instruction 6060: 17.0231% +Rate for instruction 6061: 17.0228% +Rate for instruction 6062: 17.0225% +Rate for instruction 6063: 17.0223% +Rate for instruction 6064: 17.0226% +Rate for instruction 6065: 17.0224% +Rate for instruction 6066: 17.0208% +Rate for instruction 6067: 17.0187% +Rate for instruction 6068: 17.0203% +Rate for instruction 6069: 17.0188% +Rate for instruction 6070: 17.0204% +Rate for instruction 6071: 17.0214% +Rate for instruction 6072: 17.0243% +Rate for instruction 6073: 17.0259% +Rate for instruction 6074: 17.0275% +Rate for instruction 6075: 17.0273% +Rate for instruction 6076: 17.0283% +Rate for instruction 6077: 17.0293% +Rate for instruction 6078: 17.0271% +Rate for instruction 6079: 17.0281% +Rate for instruction 6080: 17.0259% +Rate for instruction 6081: 17.0275% +Rate for instruction 6082: 17.0285% +Rate for instruction 6083: 17.0264% +Rate for instruction 6084: 17.0248% +Rate for instruction 6085: 17.0239% +Rate for instruction 6086: 17.023% +Rate for instruction 6087: 17.0247% +Rate for instruction 6088: 17.0231% +Rate for instruction 6089: 17.0216% +Rate for instruction 6090: 17.0194% +Rate for instruction 6091: 17.0179% +Rate for instruction 6092: 17.0183% +Rate for instruction 6093: 17.0161% +Rate for instruction 6094: 17.0146% +Rate for instruction 6095: 17.0124% +Rate for instruction 6096: 17.0121% +Rate for instruction 6097: 17.0113% +Rate for instruction 6098: 17.0097% +Rate for instruction 6099: 17.0095% +Rate for instruction 6100: 17.0086% +Rate for instruction 6101: 17.007% +Rate for instruction 6102: 17.0049% +Rate for instruction 6103: 17.0052% +Rate for instruction 6104: 17.0062% +Rate for instruction 6105: 17.0053% +Rate for instruction 6106: 17.0044% +Rate for instruction 6107: 17.0029% +Rate for instruction 6108: 17.002% +Rate for instruction 6109: 17.003% +Rate for instruction 6110: 17.0046% +Rate for instruction 6111: 17.0044% +Rate for instruction 6112: 17.0047% +Rate for instruction 6113: 17.0038% +Rate for instruction 6114: 17.0023% +Rate for instruction 6115: 17.0014% +Rate for instruction 6116: 16.9993% +Rate for instruction 6117: 16.9996% +Rate for instruction 6118: 16.9981% +Rate for instruction 6119: 16.9966% +Rate for instruction 6120: 16.9945% +Rate for instruction 6121: 16.9942% +Rate for instruction 6122: 16.9939% +Rate for instruction 6123: 16.9918% +Rate for instruction 6124: 16.9922% +Rate for instruction 6125: 16.9913% +Rate for instruction 6126: 16.9904% +Rate for instruction 6127: 16.9895% +Rate for instruction 6128: 16.9892% +Rate for instruction 6129: 16.9877% +Rate for instruction 6130: 16.9868% +Rate for instruction 6131: 16.9866% +Rate for instruction 6132: 16.9857% +Rate for instruction 6133: 16.9835% +Rate for instruction 6134: 16.9858% +Rate for instruction 6135: 16.9861% +Rate for instruction 6136: 16.9852% +Rate for instruction 6137: 16.9869% +Rate for instruction 6138: 16.9885% +Rate for instruction 6139: 16.9863% +Rate for instruction 6140: 16.9873% +Rate for instruction 6141: 16.9858% +Rate for instruction 6142: 16.9862% +Rate for instruction 6143: 16.9884% +Rate for instruction 6144: 16.9882% +Rate for instruction 6145: 16.9892% +Rate for instruction 6146: 16.9902% +Rate for instruction 6147: 16.9899% +Rate for instruction 6148: 16.9884% +Rate for instruction 6149: 16.9887% +Rate for instruction 6150: 16.9872% +Rate for instruction 6151: 16.9851% +Rate for instruction 6152: 16.9855% +Rate for instruction 6153: 16.9846% +Rate for instruction 6154: 16.9837% +Rate for instruction 6155: 16.9847% +Rate for instruction 6156: 16.9844% +Rate for instruction 6157: 16.9842% +Rate for instruction 6158: 16.9827% +Rate for instruction 6159: 16.9818% +Rate for instruction 6160: 16.9803% +Rate for instruction 6161: 16.9794% +Rate for instruction 6162: 16.9791% +Rate for instruction 6163: 16.9776% +Rate for instruction 6164: 16.978% +Rate for instruction 6165: 16.9771% +Rate for instruction 6166: 16.9756% +Rate for instruction 6167: 16.9747% +Rate for instruction 6168: 16.9726% +Rate for instruction 6169: 16.9729% +Rate for instruction 6170: 16.9714% +Rate for instruction 6171: 16.9718% +Rate for instruction 6172: 16.9728% +Rate for instruction 6173: 16.9725% +Rate for instruction 6174: 16.9717% +Rate for instruction 6175: 16.9702% +Rate for instruction 6176: 16.968% +Rate for instruction 6177: 16.969% +Rate for instruction 6178: 16.9669% +Rate for instruction 6179: 16.9685% +Rate for instruction 6180: 16.9701% +Rate for instruction 6181: 16.9755% +Rate for instruction 6182: 16.9746% +Rate for instruction 6183: 16.9737% +Rate for instruction 6184: 16.9741% +Rate for instruction 6185: 16.9757% +Rate for instruction 6186: 16.9736% +Rate for instruction 6187: 16.9727% +Rate for instruction 6188: 16.9724% +Rate for instruction 6189: 16.9728% +Rate for instruction 6190: 16.9713% +Rate for instruction 6191: 16.9692% +Rate for instruction 6192: 16.9695% +Rate for instruction 6193: 16.9674% +Rate for instruction 6194: 16.9665% +Rate for instruction 6195: 16.9644% +Rate for instruction 6196: 16.9635% +Rate for instruction 6197: 16.9633% +Rate for instruction 6198: 16.9618% +Rate for instruction 6199: 16.9622% +Rate for instruction 6200: 16.9613% +Rate for instruction 6201: 16.9617% +Rate for instruction 6202: 16.9602% +Rate for instruction 6203: 16.9593% +Rate for instruction 6204: 16.9572% +Rate for instruction 6205: 16.9588% +Rate for instruction 6206: 16.9573% +Rate for instruction 6207: 16.962% +Rate for instruction 6208: 16.9599% +Rate for instruction 6209: 16.9658% +Rate for instruction 6210: 16.9687% +Rate for instruction 6211: 16.9709% +Rate for instruction 6212: 16.9725% +Rate for instruction 6213: 16.9722% +Rate for instruction 6214: 16.9751% +Rate for instruction 6215: 16.9729% +Rate for instruction 6216: 16.9764% +Rate for instruction 6217: 16.9786% +Rate for instruction 6218: 16.9777% +Rate for instruction 6219: 16.9763% +Rate for instruction 6220: 16.9754% +Rate for instruction 6221: 16.9739% +Rate for instruction 6222: 16.9718% +Rate for instruction 6223: 16.9734% +Rate for instruction 6224: 16.9744% +Rate for instruction 6225: 16.9778% +Rate for instruction 6226: 16.9757% +Rate for instruction 6227: 16.9736% +Rate for instruction 6228: 16.974% +Rate for instruction 6229: 16.9743% +Rate for instruction 6230: 16.9734% +Rate for instruction 6231: 16.9744% +Rate for instruction 6232: 16.9766% +Rate for instruction 6233: 16.9758% +Rate for instruction 6234: 16.9737% +Rate for instruction 6235: 16.974% +Rate for instruction 6236: 16.9762% +Rate for instruction 6237: 16.9766% +Rate for instruction 6238: 16.9745% +Rate for instruction 6239: 16.9742% +Rate for instruction 6240: 16.9721% +Rate for instruction 6241: 16.9706% +Rate for instruction 6242: 16.9722% +Rate for instruction 6243: 16.9726% +Rate for instruction 6244: 16.9723% +Rate for instruction 6245: 16.9746% +Rate for instruction 6246: 16.9731% +Rate for instruction 6247: 16.9759% +Rate for instruction 6248: 16.9763% +Rate for instruction 6249: 16.9754% +Rate for instruction 6250: 16.9745% +Rate for instruction 6251: 16.9724% +Rate for instruction 6252: 16.9734% +Rate for instruction 6253: 16.9744% +Rate for instruction 6254: 16.9723% +Rate for instruction 6255: 16.9726% +Rate for instruction 6256: 16.9705% +Rate for instruction 6257: 16.9697% +Rate for instruction 6258: 16.9694% +Rate for instruction 6259: 16.9679% +Rate for instruction 6260: 16.9671% +Rate for instruction 6261: 16.9656% +Rate for instruction 6262: 16.9709% +Rate for instruction 6263: 16.9688% +Rate for instruction 6264: 16.9728% +Rate for instruction 6265: 16.9713% +Rate for instruction 6266: 16.9705% +Rate for instruction 6267: 16.969% +Rate for instruction 6268: 16.9699% +Rate for instruction 6269: 16.9715% +Rate for instruction 6270: 16.9744% +Rate for instruction 6271: 16.9766% +Rate for instruction 6272: 16.9794% +Rate for instruction 6273: 16.9773% +Rate for instruction 6274: 16.9764% +Rate for instruction 6275: 16.9786% +Rate for instruction 6276: 16.982% +Rate for instruction 6277: 16.9818% +Rate for instruction 6278: 16.9858% +Rate for instruction 6279: 16.9843% +Rate for instruction 6280: 16.9822% +Rate for instruction 6281: 16.9832% +Rate for instruction 6282: 16.9854% +Rate for instruction 6283: 16.9851% +Rate for instruction 6284: 16.9879% +Rate for instruction 6285: 16.9883% +Rate for instruction 6286: 16.9911% +Rate for instruction 6287: 16.989% +Rate for instruction 6288: 16.9875% +Rate for instruction 6289: 16.9873% +Rate for instruction 6290: 16.9852% +Rate for instruction 6291: 16.9831% +Rate for instruction 6292: 16.9847% +Rate for instruction 6293: 16.9857% +Rate for instruction 6294: 16.9891% +Rate for instruction 6295: 16.9931% +Rate for instruction 6296: 16.9916% +Rate for instruction 6297: 16.9907% +Rate for instruction 6298: 16.9893% +Rate for instruction 6299: 16.9921% +Rate for instruction 6300: 16.99% +Rate for instruction 6301: 16.9928% +Rate for instruction 6302: 16.9919% +Rate for instruction 6303: 16.9953% +Rate for instruction 6304: 16.9987% +Rate for instruction 6305: 17.0009% +Rate for instruction 6306: 17.0043% +Rate for instruction 6307: 17.0034% +Rate for instruction 6308: 17.0026% +Rate for instruction 6309: 17.0017% +Rate for instruction 6310: 17.0002% +Rate for instruction 6311: 17.0018% +Rate for instruction 6312: 16.9997% +Rate for instruction 6313: 17.0001% +Rate for instruction 6314: 16.9986% +Rate for instruction 6315: 17.0002% +Rate for instruction 6316: 16.9981% +Rate for instruction 6317: 16.9972% +Rate for instruction 6318: 16.997% +Rate for instruction 6319: 16.9973% +Rate for instruction 6320: 16.9995% +Rate for instruction 6321: 16.9974% +Rate for instruction 6322: 16.9959% +Rate for instruction 6323: 16.9981% +Rate for instruction 6324: 17.0021% +Rate for instruction 6325: 17% +Rate for instruction 6326: 16.9998% +Rate for instruction 6327: 16.9995% +Rate for instruction 6328: 16.9975% +Rate for instruction 6329: 16.9984% +Rate for instruction 6330: 16.9994% +Rate for instruction 6331: 17.0016% +Rate for instruction 6332: 17.0056% +Rate for instruction 6333: 17.0071% +Rate for instruction 6334: 17.0081% +Rate for instruction 6335: 17.009% +Rate for instruction 6336: 17.0082% +Rate for instruction 6337: 17.0085% +Rate for instruction 6338: 17.0083% +Rate for instruction 6339: 17.0062% +Rate for instruction 6340: 17.0071% +Rate for instruction 6341: 17.0111% +Rate for instruction 6342: 17.0127% +Rate for instruction 6343: 17.0106% +Rate for instruction 6344: 17.0134% +Rate for instruction 6345: 17.0125% +Rate for instruction 6346: 17.0117% +Rate for instruction 6347: 17.0096% +Rate for instruction 6348: 17.0087% +Rate for instruction 6349: 17.0085% +Rate for instruction 6350: 17.007% +Rate for instruction 6351: 17.0049% +Rate for instruction 6352: 17.0089% +Rate for instruction 6353: 17.0123% +Rate for instruction 6354: 17.0114% +Rate for instruction 6355: 17.0154% +Rate for instruction 6356: 17.0146% +Rate for instruction 6357: 17.0167% +Rate for instruction 6358: 17.0146% +Rate for instruction 6359: 17.015% +Rate for instruction 6360: 17.0141% +Rate for instruction 6361: 17.0127% +Rate for instruction 6362: 17.013% +Rate for instruction 6363: 17.0122% +Rate for instruction 6364: 17.0137% +Rate for instruction 6365: 17.0165% +Rate for instruction 6366: 17.0168% +Rate for instruction 6367: 17.019% +Rate for instruction 6368: 17.0193% +Rate for instruction 6369: 17.0191% +Rate for instruction 6370: 17.017% +Rate for instruction 6371: 17.0155% +Rate for instruction 6372: 17.0135% +Rate for instruction 6373: 17.0126% +Rate for instruction 6374: 17.0106% +Rate for instruction 6375: 17.0091% +Rate for instruction 6376: 17.01% +Rate for instruction 6377: 17.0086% +Rate for instruction 6378: 17.0077% +Rate for instruction 6379: 17.0063% +Rate for instruction 6380: 17.0048% +Rate for instruction 6381: 17.0052% +Rate for instruction 6382: 17.0049% +Rate for instruction 6383: 17.0028% +Rate for instruction 6384: 17.0038% +Rate for instruction 6385: 17.0047% +Rate for instruction 6386: 17.0045% +Rate for instruction 6387: 17.0079% +Rate for instruction 6388: 17.0106% +Rate for instruction 6389: 17.0091% +Rate for instruction 6390: 17.0083% +Rate for instruction 6391: 17.0092% +Rate for instruction 6392: 17.0072% +Rate for instruction 6393: 17.0075% +Rate for instruction 6394: 17.0061% +Rate for instruction 6395: 17.007% +Rate for instruction 6396: 17.008% +Rate for instruction 6397: 17.0059% +Rate for instruction 6398: 17.0075% +Rate for instruction 6399: 17.0054% +Rate for instruction 6400: 17.0034% +Rate for instruction 6401: 17.0037% +Rate for instruction 6402: 17.0046% +Rate for instruction 6403: 17.0026% +Rate for instruction 6404: 17.0029% +Rate for instruction 6405: 17.0015% +Rate for instruction 6406: 17.0006% +Rate for instruction 6407: 16.9998% +Rate for instruction 6408: 16.9977% +Rate for instruction 6409: 16.9969% +Rate for instruction 6410: 16.999% +Rate for instruction 6411: 17.003% +Rate for instruction 6412: 17.0009% +Rate for instruction 6413: 17.0043% +Rate for instruction 6414: 17.0022% +Rate for instruction 6415: 17.0008% +Rate for instruction 6416: 16.9987% +Rate for instruction 6417: 16.9973% +Rate for instruction 6418: 16.9952% +Rate for instruction 6419: 16.9956% +Rate for instruction 6420: 16.9935% +Rate for instruction 6421: 16.9951% +Rate for instruction 6422: 16.996% +Rate for instruction 6423: 16.9964% +Rate for instruction 6424: 16.9967% +Rate for instruction 6425: 16.9959% +Rate for instruction 6426: 16.9938% +Rate for instruction 6427: 16.9942% +Rate for instruction 6428: 16.9927% +Rate for instruction 6429: 16.9919% +Rate for instruction 6430: 16.9934% +Rate for instruction 6431: 16.992% +Rate for instruction 6432: 16.9935% +Rate for instruction 6433: 16.9939% +Rate for instruction 6434: 16.9918% +Rate for instruction 6435: 16.9916% +Rate for instruction 6436: 16.9901% +Rate for instruction 6437: 16.994% +Rate for instruction 6438: 16.9974% +Rate for instruction 6439: 16.9989% +Rate for instruction 6440: 17.0011% +Rate for instruction 6441: 17.0014% +Rate for instruction 6442: 17.0006% +Rate for instruction 6443: 17.0027% +Rate for instruction 6444: 17.0048% +Rate for instruction 6445: 17.004% +Rate for instruction 6446: 17.0067% +Rate for instruction 6447: 17.0047% +Rate for instruction 6448: 17.0044% +Rate for instruction 6449: 17.003% +Rate for instruction 6450: 17.0021% +Rate for instruction 6451: 17.0007% +Rate for instruction 6452: 16.9992% +Rate for instruction 6453: 16.9984% +Rate for instruction 6454: 16.9982% +Rate for instruction 6455: 16.9967% +Rate for instruction 6456: 16.9965% +Rate for instruction 6457: 16.9968% +Rate for instruction 6458: 17.0007% +Rate for instruction 6459: 17.004% +Rate for instruction 6460: 17.0032% +Rate for instruction 6461: 17.0065% +Rate for instruction 6462: 17.0045% +Rate for instruction 6463: 17.0084% +Rate for instruction 6464: 17.0087% +Rate for instruction 6465: 17.0133% +Rate for instruction 6466: 17.0189% +Rate for instruction 6467: 17.0205% +Rate for instruction 6468: 17.025% +Rate for instruction 6469: 17.0283% +Rate for instruction 6470: 17.028% +Rate for instruction 6471: 17.0284% +Rate for instruction 6472: 17.0263% +Rate for instruction 6473: 17.0243% +Rate for instruction 6474: 17.0235% +Rate for instruction 6475: 17.0214% +Rate for instruction 6476: 17.02% +Rate for instruction 6477: 17.018% +Rate for instruction 6478: 17.0183% +Rate for instruction 6479: 17.0163% +Rate for instruction 6480: 17.0142% +Rate for instruction 6481: 17.0128% +Rate for instruction 6482: 17.0125% +Rate for instruction 6483: 17.0105% +Rate for instruction 6484: 17.0091% +Rate for instruction 6485: 17.007% +Rate for instruction 6486: 17.0062% +Rate for instruction 6487: 17.0048% +Rate for instruction 6488: 17.0039% +Rate for instruction 6489: 17.0031% +Rate for instruction 6490: 17.0011% +Rate for instruction 6491: 16.9996% +Rate for instruction 6492: 16.9976% +Rate for instruction 6493: 16.9968% +Rate for instruction 6494: 16.9977% +Rate for instruction 6495: 16.9957% +Rate for instruction 6496: 16.9936% +Rate for instruction 6497: 16.9934% +Rate for instruction 6498: 16.9926% +Rate for instruction 6499: 16.9911% +Rate for instruction 6500: 16.9897% +Rate for instruction 6501: 16.9912% +Rate for instruction 6502: 16.9898% +Rate for instruction 6503: 16.9895% +Rate for instruction 6504: 16.9881% +Rate for instruction 6505: 16.9867% +Rate for instruction 6506: 16.9864% +Rate for instruction 6507: 16.9868% +Rate for instruction 6508: 16.9848% +Rate for instruction 6509: 16.9839% +Rate for instruction 6510: 16.9837% +Rate for instruction 6511: 16.9823% +Rate for instruction 6512: 16.9856% +Rate for instruction 6513: 16.99% +Rate for instruction 6514: 16.9898% +Rate for instruction 6515: 16.9884% +Rate for instruction 6516: 16.9893% +Rate for instruction 6517: 16.9896% +Rate for instruction 6518: 16.9912% +Rate for instruction 6519: 16.9891% +Rate for instruction 6520: 16.9901% +Rate for instruction 6521: 16.9892% +Rate for instruction 6522: 16.9902% +Rate for instruction 6523: 16.9917% +Rate for instruction 6524: 16.9897% +Rate for instruction 6525: 16.9883% +Rate for instruction 6526: 16.9886% +Rate for instruction 6527: 16.9884% +Rate for instruction 6528: 16.9863% +Rate for instruction 6529: 16.9843% +Rate for instruction 6530: 16.9835% +Rate for instruction 6531: 16.9821% +Rate for instruction 6532: 16.9824% +Rate for instruction 6533: 16.9851% +Rate for instruction 6534: 16.9872% +Rate for instruction 6535: 16.9858% +Rate for instruction 6536: 16.985% +Rate for instruction 6537: 16.983% +Rate for instruction 6538: 16.9827% +Rate for instruction 6539: 16.9819% +Rate for instruction 6540: 16.9805% +Rate for instruction 6541: 16.9785% +Rate for instruction 6542: 16.977% +Rate for instruction 6543: 16.9762% +Rate for instruction 6544: 16.9754% +Rate for instruction 6545: 16.9751% +Rate for instruction 6546: 16.9749% +Rate for instruction 6547: 16.9729% +Rate for instruction 6548: 16.9715% +Rate for instruction 6549: 16.9706% +Rate for instruction 6550: 16.9698% +Rate for instruction 6551: 16.9684% +Rate for instruction 6552: 16.967% +Rate for instruction 6553: 16.9662% +Rate for instruction 6554: 16.9665% +Rate for instruction 6555: 16.9651% +Rate for instruction 6556: 16.9654% +Rate for instruction 6557: 16.9675% +Rate for instruction 6558: 16.9685% +Rate for instruction 6559: 16.967% +Rate for instruction 6560: 16.965% +Rate for instruction 6561: 16.9666% +Rate for instruction 6562: 16.9687% +Rate for instruction 6563: 16.9714% +Rate for instruction 6564: 16.9723% +Rate for instruction 6565: 16.9732% +Rate for instruction 6566: 16.9771% +Rate for instruction 6567: 16.9774% +Rate for instruction 6568: 16.9789% +Rate for instruction 6569: 16.9775% +Rate for instruction 6570: 16.9784% +Rate for instruction 6571: 16.9776% +Rate for instruction 6572: 16.9762% +Rate for instruction 6573: 16.976% +Rate for instruction 6574: 16.9746% +Rate for instruction 6575: 16.9726% +Rate for instruction 6576: 16.9706% +Rate for instruction 6577: 16.9697% +Rate for instruction 6578: 16.9689% +Rate for instruction 6579: 16.9739% +Rate for instruction 6580: 16.9731% +Rate for instruction 6581: 16.9781% +Rate for instruction 6582: 16.9785% +Rate for instruction 6583: 16.9788% +Rate for instruction 6584: 16.9827% +Rate for instruction 6585: 16.9853% +Rate for instruction 6586: 16.9892% +Rate for instruction 6587: 16.9883% +Rate for instruction 6588: 16.9869% +Rate for instruction 6589: 16.9908% +Rate for instruction 6590: 16.9894% +Rate for instruction 6591: 16.9891% +Rate for instruction 6592: 16.9912% +Rate for instruction 6593: 16.9933% +Rate for instruction 6594: 16.9913% +Rate for instruction 6595: 16.9899% +Rate for instruction 6596: 16.9879% +Rate for instruction 6597: 16.9888% +Rate for instruction 6598: 16.9868% +Rate for instruction 6599: 16.9854% +Rate for instruction 6600: 16.9846% +Rate for instruction 6601: 16.9838% +Rate for instruction 6602: 16.9824% +Rate for instruction 6603: 16.9804% +Rate for instruction 6604: 16.9796% +Rate for instruction 6605: 16.9776% +Rate for instruction 6606: 16.9802% +Rate for instruction 6607: 16.9835% +Rate for instruction 6608: 16.9827% +Rate for instruction 6609: 16.9824% +Rate for instruction 6610: 16.9828% +Rate for instruction 6611: 16.9814% +Rate for instruction 6612: 16.9811% +Rate for instruction 6613: 16.9803% +Rate for instruction 6614: 16.9789% +Rate for instruction 6615: 16.9804% +Rate for instruction 6616: 16.9813% +Rate for instruction 6617: 16.9834% +Rate for instruction 6618: 16.9843% +Rate for instruction 6619: 16.9858% +Rate for instruction 6620: 16.9856% +Rate for instruction 6621: 16.9842% +Rate for instruction 6622: 16.9851% +Rate for instruction 6623: 16.9866% +Rate for instruction 6624: 16.9869% +Rate for instruction 6625: 16.985% +Rate for instruction 6626: 16.9841% +Rate for instruction 6627: 16.9851% +Rate for instruction 6628: 16.9842% +Rate for instruction 6629: 16.9822% +Rate for instruction 6630: 16.9849% +Rate for instruction 6631: 16.9835% +Rate for instruction 6632: 16.985% +Rate for instruction 6633: 16.9842% +Rate for instruction 6634: 16.9834% +Rate for instruction 6635: 16.986% +Rate for instruction 6636: 16.9881% +Rate for instruction 6637: 16.9861% +Rate for instruction 6638: 16.9882% +Rate for instruction 6639: 16.9926% +Rate for instruction 6640: 16.9947% +Rate for instruction 6641: 16.995% +Rate for instruction 6642: 16.9959% +Rate for instruction 6643: 16.9951% +Rate for instruction 6644: 16.996% +Rate for instruction 6645: 16.9958% +Rate for instruction 6646: 16.9961% +Rate for instruction 6647: 16.9959% +Rate for instruction 6648: 16.9945% +Rate for instruction 6649: 16.9936% +Rate for instruction 6650: 16.9917% +Rate for instruction 6651: 16.9926% +Rate for instruction 6652: 16.9929% +Rate for instruction 6653: 16.9909% +Rate for instruction 6654: 16.9895% +Rate for instruction 6655: 16.991% +Rate for instruction 6656: 16.9902% +Rate for instruction 6657: 16.9882% +Rate for instruction 6658: 16.992% +Rate for instruction 6659: 16.9924% +Rate for instruction 6660: 16.9927% +Rate for instruction 6661: 16.9948% +Rate for instruction 6662: 16.9963% +Rate for instruction 6663: 16.9955% +Rate for instruction 6664: 16.9935% +Rate for instruction 6665: 16.9927% +Rate for instruction 6666: 16.9907% +Rate for instruction 6667: 16.9887% +Rate for instruction 6668: 16.9873% +Rate for instruction 6669: 16.9865% +Rate for instruction 6670: 16.9851% +Rate for instruction 6671: 16.9831% +Rate for instruction 6672: 16.9829% +Rate for instruction 6673: 16.9815% +Rate for instruction 6674: 16.9818% +Rate for instruction 6675: 16.981% +Rate for instruction 6676: 16.9814% +Rate for instruction 6677: 16.9834% +Rate for instruction 6678: 16.9855% +Rate for instruction 6679: 16.9881% +Rate for instruction 6680: 16.9896% +Rate for instruction 6681: 16.9888% +Rate for instruction 6682: 16.9914% +Rate for instruction 6683: 16.9935% +Rate for instruction 6684: 16.9915% +Rate for instruction 6685: 16.9902% +Rate for instruction 6686: 16.9888% +Rate for instruction 6687: 16.9868% +Rate for instruction 6688: 16.9866% +Rate for instruction 6689: 16.9846% +Rate for instruction 6690: 16.9844% +Rate for instruction 6691: 16.9824% +Rate for instruction 6692: 16.9816% +Rate for instruction 6693: 16.9802% +Rate for instruction 6694: 16.9788% +Rate for instruction 6695: 16.978% +Rate for instruction 6696: 16.9766% +Rate for instruction 6697: 16.9758% +Rate for instruction 6698: 16.9738% +Rate for instruction 6699: 16.9724% +Rate for instruction 6700: 16.9711% +Rate for instruction 6701: 16.9708% +Rate for instruction 6702: 16.9706% +Rate for instruction 6703: 16.9686% +Rate for instruction 6704: 16.9684% +Rate for instruction 6705: 16.967% +Rate for instruction 6706: 16.9651% +Rate for instruction 6707: 16.9665% +Rate for instruction 6708: 16.9657% +Rate for instruction 6709: 16.9638% +Rate for instruction 6710: 16.9624% +Rate for instruction 6711: 16.9622% +Rate for instruction 6712: 16.9619% +Rate for instruction 6713: 16.9611% +Rate for instruction 6714: 16.9592% +Rate for instruction 6715: 16.9584% +Rate for instruction 6716: 16.9587% +Rate for instruction 6717: 16.9573% +Rate for instruction 6718: 16.9582% +Rate for instruction 6719: 16.9568% +Rate for instruction 6720: 16.96% +Rate for instruction 6721: 16.9581% +Rate for instruction 6722: 16.9607% +Rate for instruction 6723: 16.9605% +Rate for instruction 6724: 16.9625% +Rate for instruction 6725: 16.9652% +Rate for instruction 6726: 16.9638% +Rate for instruction 6727: 16.9624% +Rate for instruction 6728: 16.9616% +Rate for instruction 6729: 16.9614% +Rate for instruction 6730: 16.9594% +Rate for instruction 6731: 16.958% +Rate for instruction 6732: 16.959% +Rate for instruction 6733: 16.9576% +Rate for instruction 6734: 16.9602% +Rate for instruction 6735: 16.9594% +Rate for instruction 6736: 16.958% +Rate for instruction 6737: 16.9589% +Rate for instruction 6738: 16.9587% +Rate for instruction 6739: 16.9607% +Rate for instruction 6740: 16.9611% +Rate for instruction 6741: 16.962% +Rate for instruction 6742: 16.9606% +Rate for instruction 6743: 16.9615% +Rate for instruction 6744: 16.9596% +Rate for instruction 6745: 16.9628% +Rate for instruction 6746: 16.962% +Rate for instruction 6747: 16.9663% +Rate for instruction 6748: 16.9695% +Rate for instruction 6749: 16.9698% +Rate for instruction 6750: 16.969% +Rate for instruction 6751: 16.9716% +Rate for instruction 6752: 16.9697% +Rate for instruction 6753: 16.9717% +Rate for instruction 6754: 16.9755% +Rate for instruction 6755: 16.9792% +Rate for instruction 6756: 16.9773% +Rate for instruction 6757: 16.977% +Rate for instruction 6758: 16.9762% +Rate for instruction 6759: 16.9754% +Rate for instruction 6760: 16.974% +Rate for instruction 6761: 16.9727% +Rate for instruction 6762: 16.9764% +Rate for instruction 6763: 16.9813% +Rate for instruction 6764: 16.9805% +Rate for instruction 6765: 16.9808% +Rate for instruction 6766: 16.9834% +Rate for instruction 6767: 16.9855% +Rate for instruction 6768: 16.9858% +Rate for instruction 6769: 16.9873% +Rate for instruction 6770: 16.9887% +Rate for instruction 6771: 16.9885% +Rate for instruction 6772: 16.9894% +Rate for instruction 6773: 16.9926% +Rate for instruction 6774: 16.9969% +Rate for instruction 6775: 16.9949% +Rate for instruction 6776: 16.9941% +Rate for instruction 6777: 16.9922% +Rate for instruction 6778: 16.9914% +Rate for instruction 6779: 16.9929% +Rate for instruction 6780: 16.992% +Rate for instruction 6781: 16.9935% +Rate for instruction 6782: 16.9927% +Rate for instruction 6783: 16.9947% +Rate for instruction 6784: 16.9928% +Rate for instruction 6785: 16.9914% +Rate for instruction 6786: 16.994% +Rate for instruction 6787: 16.9932% +Rate for instruction 6788: 16.9947% +Rate for instruction 6789: 16.9961% +Rate for instruction 6790: 16.9976% +Rate for instruction 6791: 16.9991% +Rate for instruction 6792: 17.0005% +Rate for instruction 6793: 17.0031% +Rate for instruction 6794: 17.0052% +Rate for instruction 6795: 17.0049% +Rate for instruction 6796: 17.0064% +Rate for instruction 6797: 17.0061% +Rate for instruction 6798: 17.0048% +Rate for instruction 6799: 17.0028% +Rate for instruction 6800: 17.0026% +Rate for instruction 6801: 17.0007% +Rate for instruction 6802: 17.0021% +Rate for instruction 6803: 17.0047% +Rate for instruction 6804: 17.0067% +Rate for instruction 6805: 17.0048% +Rate for instruction 6806: 17.0096% +Rate for instruction 6807: 17.0122% +Rate for instruction 6808: 17.0137% +Rate for instruction 6809: 17.0157% +Rate for instruction 6810: 17.0149% +Rate for instruction 6811: 17.0169% +Rate for instruction 6812: 17.0184% +Rate for instruction 6813: 17.0164% +Rate for instruction 6814: 17.0179% +Rate for instruction 6815: 17.0193% +Rate for instruction 6816: 17.0197% +Rate for instruction 6817: 17.0217% +Rate for instruction 6818: 17.0198% +Rate for instruction 6819: 17.0223% +Rate for instruction 6820: 17.0204% +Rate for instruction 6821: 17.019% +Rate for instruction 6822: 17.0171% +Rate for instruction 6823: 17.0163% +Rate for instruction 6824: 17.0172% +Rate for instruction 6825: 17.0153% +Rate for instruction 6826: 17.0167% +Rate for instruction 6827: 17.021% +Rate for instruction 6828: 17.023% +Rate for instruction 6829: 17.0256% +Rate for instruction 6830: 17.0242% +Rate for instruction 6831: 17.0279% +Rate for instruction 6832: 17.026% +Rate for instruction 6833: 17.0246% +Rate for instruction 6834: 17.0238% +Rate for instruction 6835: 17.023% +Rate for instruction 6836: 17.0244% +Rate for instruction 6837: 17.0242% +Rate for instruction 6838: 17.0228% +Rate for instruction 6839: 17.0226% +Rate for instruction 6840: 17.0218% +Rate for instruction 6841: 17.0204% +Rate for instruction 6842: 17.0236% +Rate for instruction 6843: 17.0256% +Rate for instruction 6844: 17.0242% +Rate for instruction 6845: 17.0234% +Rate for instruction 6846: 17.0215% +Rate for instruction 6847: 17.0201% +Rate for instruction 6848: 17.0188% +Rate for instruction 6849: 17.018% +Rate for instruction 6850: 17.0189% +Rate for instruction 6851: 17.0192% +Rate for instruction 6852: 17.0184% +Rate for instruction 6853: 17.0181% +Rate for instruction 6854: 17.0201% +Rate for instruction 6855: 17.0233% +Rate for instruction 6856: 17.0225% +Rate for instruction 6857: 17.0217% +Rate for instruction 6858: 17.022% +Rate for instruction 6859: 17.0201% +Rate for instruction 6860: 17.0187% +Rate for instruction 6861: 17.0168% +Rate for instruction 6862: 17.0166% +Rate for instruction 6863: 17.0158% +Rate for instruction 6864: 17.015% +Rate for instruction 6865: 17.0142% +Rate for instruction 6866: 17.0167% +Rate for instruction 6867: 17.0159% +Rate for instruction 6868: 17.019% +Rate for instruction 6869: 17.0199% +Rate for instruction 6870: 17.0236% +Rate for instruction 6871: 17.0217% +Rate for instruction 6872: 17.0198% +Rate for instruction 6873: 17.0195% +Rate for instruction 6874: 17.0193% +Rate for instruction 6875: 17.0191% +Rate for instruction 6876: 17.0188% +Rate for instruction 6877: 17.0203% +Rate for instruction 6878: 17.0217% +Rate for instruction 6879: 17.0203% +Rate for instruction 6880: 17.0207% +Rate for instruction 6881: 17.0216% +Rate for instruction 6882: 17.0213% +Rate for instruction 6883: 17.0211% +Rate for instruction 6884: 17.0214% +Rate for instruction 6885: 17.0212% +Rate for instruction 6886: 17.022% +Rate for instruction 6887: 17.0218% +Rate for instruction 6888: 17.0238% +Rate for instruction 6889: 17.0219% +Rate for instruction 6890: 17.0216% +Rate for instruction 6891: 17.0208% +Rate for instruction 6892: 17.0201% +Rate for instruction 6893: 17.0181% +Rate for instruction 6894: 17.0185% +Rate for instruction 6895: 17.0182% +Rate for instruction 6896: 17.0163% +Rate for instruction 6897: 17.0144% +Rate for instruction 6898: 17.0153% +Rate for instruction 6899: 17.0178% +Rate for instruction 6900: 17.0209% +Rate for instruction 6901: 17.0224% +Rate for instruction 6902: 17.0244% +Rate for instruction 6903: 17.0258% +Rate for instruction 6904: 17.0278% +Rate for instruction 6905: 17.0303% +Rate for instruction 6906: 17.0295% +Rate for instruction 6907: 17.0282% +Rate for instruction 6908: 17.028% +Rate for instruction 6909: 17.0294% +Rate for instruction 6910: 17.0286% +Rate for instruction 6911: 17.0306% +Rate for instruction 6912: 17.0326% +Rate for instruction 6913: 17.0334% +Rate for instruction 6914: 17.0315% +Rate for instruction 6915: 17.0352% +Rate for instruction 6916: 17.0344% +Rate for instruction 6917: 17.0381% +Rate for instruction 6918: 17.0406% +Rate for instruction 6919: 17.0454% +Rate for instruction 6920: 17.0451% +Rate for instruction 6921: 17.0493% +Rate for instruction 6922: 17.0513% +Rate for instruction 6923: 17.0494% +Rate for instruction 6924: 17.0497% +Rate for instruction 6925: 17.0489% +Rate for instruction 6926: 17.0476% +Rate for instruction 6927: 17.0457% +Rate for instruction 6928: 17.0443% +Rate for instruction 6929: 17.0441% +Rate for instruction 6930: 17.0438% +Rate for instruction 6931: 17.0425% +Rate for instruction 6932: 17.0428% +Rate for instruction 6933: 17.0431% +Rate for instruction 6934: 17.0434% +Rate for instruction 6935: 17.0415% +Rate for instruction 6936: 17.0396% +Rate for instruction 6937: 17.0399% +Rate for instruction 6938: 17.0391% +Rate for instruction 6939: 17.0389% +Rate for instruction 6940: 17.037% +Rate for instruction 6941: 17.0379% +Rate for instruction 6942: 17.0371% +Rate for instruction 6943: 17.0368% +Rate for instruction 6944: 17.0372% +Rate for instruction 6945: 17.0364% +Rate for instruction 6946: 17.0378% +Rate for instruction 6947: 17.0414% +Rate for instruction 6948: 17.0395% +Rate for instruction 6949: 17.0376% +Rate for instruction 6950: 17.0407% +Rate for instruction 6951: 17.0421% +Rate for instruction 6952: 17.0441% +Rate for instruction 6953: 17.0466% +Rate for instruction 6954: 17.0492% +Rate for instruction 6955: 17.0522% +Rate for instruction 6956: 17.0559% +Rate for instruction 6957: 17.0551% +Rate for instruction 6958: 17.0548% +Rate for instruction 6959: 17.0546% +Rate for instruction 6960: 17.0571% +Rate for instruction 6961: 17.0574% +Rate for instruction 6962: 17.0594% +Rate for instruction 6963: 17.0575% +Rate for instruction 6964: 17.0567% +Rate for instruction 6965: 17.0548% +Rate for instruction 6966: 17.0535% +Rate for instruction 6967: 17.0516% +Rate for instruction 6968: 17.0513% +Rate for instruction 6969: 17.0494% +Rate for instruction 6970: 17.0503% +Rate for instruction 6971: 17.0506% +Rate for instruction 6972: 17.0487% +Rate for instruction 6973: 17.049% +Rate for instruction 6974: 17.0471% +Rate for instruction 6975: 17.0464% +Rate for instruction 6976: 17.0478% +Rate for instruction 6977: 17.0492% +Rate for instruction 6978: 17.0473% +Rate for instruction 6979: 17.0471% +Rate for instruction 6980: 17.0468% +Rate for instruction 6981: 17.0449% +Rate for instruction 6982: 17.0447% +Rate for instruction 6983: 17.0439% +Rate for instruction 6984: 17.0453% +Rate for instruction 6985: 17.0489% +Rate for instruction 6986: 17.0476% +Rate for instruction 6987: 17.0468% +Rate for instruction 6988: 17.0455% +Rate for instruction 6989: 17.0463% +Rate for instruction 6990: 17.0461% +Rate for instruction 6991: 17.0464% +Rate for instruction 6992: 17.0456% +Rate for instruction 6993: 17.0454% +Rate for instruction 6994: 17.044% +Rate for instruction 6995: 17.0427% +Rate for instruction 6996: 17.0458% +Rate for instruction 6997: 17.0472% +Rate for instruction 6998: 17.0453% +Rate for instruction 6999: 17.0467% +Rate for instruction 7000: 17.0448% +Rate for instruction 7001: 17.0429% +Rate for instruction 7002: 17.0416% +Rate for instruction 7003: 17.0425% +Rate for instruction 7004: 17.0411% +Rate for instruction 7005: 17.0442% +Rate for instruction 7006: 17.0456% +Rate for instruction 7007: 17.0459% +Rate for instruction 7008: 17.0468% +Rate for instruction 7009: 17.0487% +Rate for instruction 7010: 17.0474% +Rate for instruction 7011: 17.0455% +Rate for instruction 7012: 17.0475% +Rate for instruction 7013: 17.0489% +Rate for instruction 7014: 17.0481% +Rate for instruction 7015: 17.0522% +Rate for instruction 7016: 17.0553% +Rate for instruction 7017: 17.0561% +Rate for instruction 7018: 17.0581% +Rate for instruction 7019: 17.0584% +Rate for instruction 7020: 17.062% +Rate for instruction 7021: 17.0661% +Rate for instruction 7022: 17.0686% +Rate for instruction 7023: 17.07% +Rate for instruction 7024: 17.0731% +Rate for instruction 7025: 17.0767% +Rate for instruction 7026: 17.0786% +Rate for instruction 7027: 17.0795% +Rate for instruction 7028: 17.0787% +Rate for instruction 7029: 17.0801% +Rate for instruction 7030: 17.082% +Rate for instruction 7031: 17.0807% +Rate for instruction 7032: 17.0827% +Rate for instruction 7033: 17.083% +Rate for instruction 7034: 17.0816% +Rate for instruction 7035: 17.0841% +Rate for instruction 7036: 17.0822% +Rate for instruction 7037: 17.082% +Rate for instruction 7038: 17.0812% +Rate for instruction 7039: 17.0799% +Rate for instruction 7040: 17.084% +Rate for instruction 7041: 17.0843% +Rate for instruction 7042: 17.0824% +Rate for instruction 7043: 17.0827% +Rate for instruction 7044: 17.0814% +Rate for instruction 7045: 17.0806% +Rate for instruction 7046: 17.0836% +Rate for instruction 7047: 17.0823% +Rate for instruction 7048: 17.0843% +Rate for instruction 7049: 17.0873% +Rate for instruction 7050: 17.0876% +Rate for instruction 7051: 17.0895% +Rate for instruction 7052: 17.0887% +Rate for instruction 7053: 17.0874% +Rate for instruction 7054: 17.0904% +Rate for instruction 7055: 17.0886% +Rate for instruction 7056: 17.0921% +Rate for instruction 7057: 17.0935% +Rate for instruction 7058: 17.0917% +Rate for instruction 7059: 17.0914% +Rate for instruction 7060: 17.0923% +Rate for instruction 7061: 17.0937% +Rate for instruction 7062: 17.095% +Rate for instruction 7063: 17.0953% +Rate for instruction 7064: 17.094% +Rate for instruction 7065: 17.0932% +Rate for instruction 7066: 17.0914% +Rate for instruction 7067: 17.0917% +Rate for instruction 7068: 17.0936% +Rate for instruction 7069: 17.0944% +Rate for instruction 7070: 17.0964% +Rate for instruction 7071: 17.0989% +Rate for instruction 7072: 17.0981% +Rate for instruction 7073: 17.0973% +Rate for instruction 7074: 17.0959% +Rate for instruction 7075: 17.0952% +Rate for instruction 7076: 17.0938% +Rate for instruction 7077: 17.0925% +Rate for instruction 7078: 17.0928% +Rate for instruction 7079: 17.0926% +Rate for instruction 7080: 17.0918% +Rate for instruction 7081: 17.091% +Rate for instruction 7082: 17.0902% +Rate for instruction 7083: 17.09% +Rate for instruction 7084: 17.0897% +Rate for instruction 7085: 17.0933% +Rate for instruction 7086: 17.0952% +Rate for instruction 7087: 17.0955% +Rate for instruction 7088: 17.0964% +Rate for instruction 7089: 17.0988% +Rate for instruction 7090: 17.1008% +Rate for instruction 7091: 17.0994% +Rate for instruction 7092: 17.0992% +Rate for instruction 7093: 17.0973% +Rate for instruction 7094: 17.0971% +Rate for instruction 7095: 17.099% +Rate for instruction 7096: 17.0971% +Rate for instruction 7097: 17.0985% +Rate for instruction 7098: 17.0972% +Rate for instruction 7099: 17.1008% +Rate for instruction 7100: 17.1054% +Rate for instruction 7101: 17.1084% +Rate for instruction 7102: 17.1109% +Rate for instruction 7103: 17.109% +Rate for instruction 7104: 17.1115% +Rate for instruction 7105: 17.115% +Rate for instruction 7106: 17.1137% +Rate for instruction 7107: 17.1118% +Rate for instruction 7108: 17.1099% +Rate for instruction 7109: 17.1086% +Rate for instruction 7110: 17.1068% +Rate for instruction 7111: 17.1054% +Rate for instruction 7112: 17.1036% +Rate for instruction 7113: 17.1044% +Rate for instruction 7114: 17.1063% +Rate for instruction 7115: 17.105% +Rate for instruction 7116: 17.1058% +Rate for instruction 7117: 17.104% +Rate for instruction 7118: 17.1037% +Rate for instruction 7119: 17.103% +Rate for instruction 7120: 17.1011% +Rate for instruction 7121: 17.0992% +Rate for instruction 7122: 17.1001% +Rate for instruction 7123: 17.0993% +Rate for instruction 7124: 17.0996% +Rate for instruction 7125: 17.0994% +Rate for instruction 7126: 17.0997% +Rate for instruction 7127: 17.1016% +Rate for instruction 7128: 17.0997% +Rate for instruction 7129: 17.1% +Rate for instruction 7130: 17.0992% +Rate for instruction 7131: 17.1001% +Rate for instruction 7132: 17.1009% +Rate for instruction 7133: 17.1017% +Rate for instruction 7134: 17.1026% +Rate for instruction 7135: 17.1034% +Rate for instruction 7136: 17.1037% +Rate for instruction 7137: 17.1029% +Rate for instruction 7138: 17.1027% +Rate for instruction 7139: 17.1014% +Rate for instruction 7140: 17.1011% +Rate for instruction 7141: 17.0993% +Rate for instruction 7142: 17.099% +Rate for instruction 7143: 17.0999% +Rate for instruction 7144: 17.1018% +Rate for instruction 7145: 17.1005% +Rate for instruction 7146: 17.1019% +Rate for instruction 7147: 17.1005% +Rate for instruction 7148: 17.1014% +Rate for instruction 7149: 17.1027% +Rate for instruction 7150: 17.1014% +Rate for instruction 7151: 17.1006% +Rate for instruction 7152: 17.0993% +Rate for instruction 7153: 17.1007% +Rate for instruction 7154: 17.101% +Rate for instruction 7155: 17.1018% +Rate for instruction 7156: 17.1011% +Rate for instruction 7157: 17.1008% +Rate for instruction 7158: 17.1017% +Rate for instruction 7159: 17.1025% +Rate for instruction 7160: 17.1023% +Rate for instruction 7161: 17.1025% +Rate for instruction 7162: 17.1023% +Rate for instruction 7163: 17.1021% +Rate for instruction 7164: 17.1018% +Rate for instruction 7165: 17.1011% +Rate for instruction 7166: 17.1003% +Rate for instruction 7167: 17.0984% +Rate for instruction 7168: 17.0998% +Rate for instruction 7169: 17.098% +Rate for instruction 7170: 17.0993% +Rate for instruction 7171: 17.0975% +Rate for instruction 7172: 17.0999% +Rate for instruction 7173: 17.0981% +Rate for instruction 7174: 17.0968% +Rate for instruction 7175: 17.096% +Rate for instruction 7176: 17.0995% +Rate for instruction 7177: 17.0993% +Rate for instruction 7178: 17.0979% +Rate for instruction 7179: 17.0982% +Rate for instruction 7180: 17.0991% +Rate for instruction 7181: 17.101% +Rate for instruction 7182: 17.1018% +Rate for instruction 7183: 17.1% +Rate for instruction 7184: 17.1003% +Rate for instruction 7185: 17.1011% +Rate for instruction 7186: 17.1035% +Rate for instruction 7187: 17.1065% +Rate for instruction 7188: 17.1052% +Rate for instruction 7189: 17.1039% +Rate for instruction 7190: 17.1069% +Rate for instruction 7191: 17.1098% +Rate for instruction 7192: 17.1096% +Rate for instruction 7193: 17.1083% +Rate for instruction 7194: 17.1075% +Rate for instruction 7195: 17.1073% +Rate for instruction 7196: 17.1081% +Rate for instruction 7197: 17.1079% +Rate for instruction 7198: 17.1065% +Rate for instruction 7199: 17.1058% +Rate for instruction 7200: 17.1077% +Rate for instruction 7201: 17.1085% +Rate for instruction 7202: 17.1067% +Rate for instruction 7203: 17.1048% +Rate for instruction 7204: 17.1051% +Rate for instruction 7205: 17.1065% +Rate for instruction 7206: 17.111% +Rate for instruction 7207: 17.1119% +Rate for instruction 7208: 17.1143% +Rate for instruction 7209: 17.1167% +Rate for instruction 7210: 17.1154% +Rate for instruction 7211: 17.1141% +Rate for instruction 7212: 17.1133% +Rate for instruction 7213: 17.1168% +Rate for instruction 7214: 17.115% +Rate for instruction 7215: 17.1174% +Rate for instruction 7216: 17.1177% +Rate for instruction 7217: 17.1164% +Rate for instruction 7218: 17.1183% +Rate for instruction 7219: 17.1175% +Rate for instruction 7220: 17.1199% +Rate for instruction 7221: 17.1197% +Rate for instruction 7222: 17.1189% +Rate for instruction 7223: 17.1182% +Rate for instruction 7224: 17.1179% +Rate for instruction 7225: 17.1171% +Rate for instruction 7226: 17.1158% +Rate for instruction 7227: 17.1145% +Rate for instruction 7228: 17.1164% +Rate for instruction 7229: 17.1178% +Rate for instruction 7230: 17.1186% +Rate for instruction 7231: 17.1189% +Rate for instruction 7232: 17.1187% +Rate for instruction 7233: 17.1205% +Rate for instruction 7234: 17.1208% +Rate for instruction 7235: 17.1195% +Rate for instruction 7236: 17.1214% +Rate for instruction 7237: 17.1201% +Rate for instruction 7238: 17.122% +Rate for instruction 7239: 17.1234% +Rate for instruction 7240: 17.1215% +Rate for instruction 7241: 17.1213% +Rate for instruction 7242: 17.1221% +Rate for instruction 7243: 17.1229% +Rate for instruction 7244: 17.1259% +Rate for instruction 7245: 17.1288% +Rate for instruction 7246: 17.1275% +Rate for instruction 7247: 17.1289% +Rate for instruction 7248: 17.1276% +Rate for instruction 7249: 17.1289% +Rate for instruction 7250: 17.1308% +Rate for instruction 7251: 17.129% +Rate for instruction 7252: 17.1277% +Rate for instruction 7253: 17.1306% +Rate for instruction 7254: 17.1298% +Rate for instruction 7255: 17.128% +Rate for instruction 7256: 17.1267% +Rate for instruction 7257: 17.1249% +Rate for instruction 7258: 17.1241% +Rate for instruction 7259: 17.1239% +Rate for instruction 7260: 17.1242% +Rate for instruction 7261: 17.1229% +Rate for instruction 7262: 17.1216% +Rate for instruction 7263: 17.1213% +Rate for instruction 7264: 17.1205% +Rate for instruction 7265: 17.1192% +Rate for instruction 7266: 17.118% +Rate for instruction 7267: 17.1188% +Rate for instruction 7268: 17.1201% +Rate for instruction 7269: 17.1199% +Rate for instruction 7270: 17.1228% +Rate for instruction 7271: 17.1258% +Rate for instruction 7272: 17.1255% +Rate for instruction 7273: 17.1242% +Rate for instruction 7274: 17.1234% +Rate for instruction 7275: 17.1232% +Rate for instruction 7276: 17.1219% +Rate for instruction 7277: 17.1227% +Rate for instruction 7278: 17.122% +Rate for instruction 7279: 17.1223% +Rate for instruction 7280: 17.121% +Rate for instruction 7281: 17.1202% +Rate for instruction 7282: 17.1184% +Rate for instruction 7283: 17.1171% +Rate for instruction 7284: 17.1184% +Rate for instruction 7285: 17.1166% +Rate for instruction 7286: 17.1158% +Rate for instruction 7287: 17.114% +Rate for instruction 7288: 17.1154% +Rate for instruction 7289: 17.1141% +Rate for instruction 7290: 17.1128% +Rate for instruction 7291: 17.1115% +Rate for instruction 7292: 17.1134% +Rate for instruction 7293: 17.1115% +Rate for instruction 7294: 17.1139% +Rate for instruction 7295: 17.1148% +Rate for instruction 7296: 17.1135% +Rate for instruction 7297: 17.1127% +Rate for instruction 7298: 17.1146% +Rate for instruction 7299: 17.1138% +Rate for instruction 7300: 17.1141% +Rate for instruction 7301: 17.1128% +Rate for instruction 7302: 17.1147% +Rate for instruction 7303: 17.1165% +Rate for instruction 7304: 17.1158% +Rate for instruction 7305: 17.114% +Rate for instruction 7306: 17.1121% +Rate for instruction 7307: 17.1119% +Rate for instruction 7308: 17.1138% +Rate for instruction 7309: 17.113% +Rate for instruction 7310: 17.1138% +Rate for instruction 7311: 17.1131% +Rate for instruction 7312: 17.1128% +Rate for instruction 7313: 17.1126% +Rate for instruction 7314: 17.1134% +Rate for instruction 7315: 17.1142% +Rate for instruction 7316: 17.1135% +Rate for instruction 7317: 17.1174% +Rate for instruction 7318: 17.1198% +Rate for instruction 7319: 17.1201% +Rate for instruction 7320: 17.1199% +Rate for instruction 7321: 17.1196% +Rate for instruction 7322: 17.1178% +Rate for instruction 7323: 17.1181% +Rate for instruction 7324: 17.1163% +Rate for instruction 7325: 17.1161% +Rate for instruction 7326: 17.1148% +Rate for instruction 7327: 17.1135% +Rate for instruction 7328: 17.1143% +Rate for instruction 7329: 17.1146% +Rate for instruction 7330: 17.1159% +Rate for instruction 7331: 17.1141% +Rate for instruction 7332: 17.1128% +Rate for instruction 7333: 17.1131% +Rate for instruction 7334: 17.1113% +Rate for instruction 7335: 17.11% +Rate for instruction 7336: 17.114% +Rate for instruction 7337: 17.1159% +Rate for instruction 7338: 17.1167% +Rate for instruction 7339: 17.1149% +Rate for instruction 7340: 17.1188% +Rate for instruction 7341: 17.1217% +Rate for instruction 7342: 17.1231% +Rate for instruction 7343: 17.1228% +Rate for instruction 7344: 17.1236% +Rate for instruction 7345: 17.1244% +Rate for instruction 7346: 17.1232% +Rate for instruction 7347: 17.1224% +Rate for instruction 7348: 17.1206% +Rate for instruction 7349: 17.1224% +Rate for instruction 7350: 17.1233% +Rate for instruction 7351: 17.1215% +Rate for instruction 7352: 17.1196% +Rate for instruction 7353: 17.1199% +Rate for instruction 7354: 17.1213% +Rate for instruction 7355: 17.1231% +Rate for instruction 7356: 17.1224% +Rate for instruction 7357: 17.1242% +Rate for instruction 7358: 17.1229% +Rate for instruction 7359: 17.1227% +Rate for instruction 7360: 17.1225% +Rate for instruction 7361: 17.1233% +Rate for instruction 7362: 17.1215% +Rate for instruction 7363: 17.1249% +Rate for instruction 7364: 17.1247% +Rate for instruction 7365: 17.127% +Rate for instruction 7366: 17.1268% +Rate for instruction 7367: 17.1255% +Rate for instruction 7368: 17.1237% +Rate for instruction 7369: 17.123% +Rate for instruction 7370: 17.1212% +Rate for instruction 7371: 17.1199% +Rate for instruction 7372: 17.1181% +Rate for instruction 7373: 17.1173% +Rate for instruction 7374: 17.1171% +Rate for instruction 7375: 17.1163% +Rate for instruction 7376: 17.1161% +Rate for instruction 7377: 17.1153% +Rate for instruction 7378: 17.1141% +Rate for instruction 7379: 17.1154% +Rate for instruction 7380: 17.1152% +Rate for instruction 7381: 17.1154% +Rate for instruction 7382: 17.1152% +Rate for instruction 7383: 17.1155% +Rate for instruction 7384: 17.1147% +Rate for instruction 7385: 17.115% +Rate for instruction 7386: 17.1148% +Rate for instruction 7387: 17.1161% +Rate for instruction 7388: 17.1169% +Rate for instruction 7389: 17.1167% +Rate for instruction 7390: 17.1159% +Rate for instruction 7391: 17.1147% +Rate for instruction 7392: 17.1149% +Rate for instruction 7393: 17.1152% +Rate for instruction 7394: 17.1145% +Rate for instruction 7395: 17.1132% +Rate for instruction 7396: 17.1114% +Rate for instruction 7397: 17.1117% +Rate for instruction 7398: 17.1099% +Rate for instruction 7399: 17.1091% +Rate for instruction 7400: 17.11% +Rate for instruction 7401: 17.1082% +Rate for instruction 7402: 17.1074% +Rate for instruction 7403: 17.1072% +Rate for instruction 7404: 17.1054% +Rate for instruction 7405: 17.1046% +Rate for instruction 7406: 17.1028% +Rate for instruction 7407: 17.1021% +Rate for instruction 7408: 17.1013% +Rate for instruction 7409: 17.1042% +Rate for instruction 7410: 17.1061% +Rate for instruction 7411: 17.1064% +Rate for instruction 7412: 17.1056% +Rate for instruction 7413: 17.1049% +Rate for instruction 7414: 17.1031% +Rate for instruction 7415: 17.1028% +Rate for instruction 7416: 17.1042% +Rate for instruction 7417: 17.107% +Rate for instruction 7418: 17.1104% +Rate for instruction 7419: 17.1102% +Rate for instruction 7420: 17.11% +Rate for instruction 7421: 17.1082% +Rate for instruction 7422: 17.1079% +Rate for instruction 7423: 17.1067% +Rate for instruction 7424: 17.1075% +Rate for instruction 7425: 17.1078% +Rate for instruction 7426: 17.107% +Rate for instruction 7427: 17.1063% +Rate for instruction 7428: 17.105% +Rate for instruction 7429: 17.1053% +Rate for instruction 7430: 17.1066% +Rate for instruction 7431: 17.1084% +Rate for instruction 7432: 17.1077% +Rate for instruction 7433: 17.109% +Rate for instruction 7434: 17.1078% +Rate for instruction 7435: 17.108% +Rate for instruction 7436: 17.1078% +Rate for instruction 7437: 17.106% +Rate for instruction 7438: 17.1063% +Rate for instruction 7439: 17.1092% +Rate for instruction 7440: 17.1121% +Rate for instruction 7441: 17.1123% +Rate for instruction 7442: 17.1142% +Rate for instruction 7443: 17.116% +Rate for instruction 7444: 17.1173% +Rate for instruction 7445: 17.1155% +Rate for instruction 7446: 17.1189% +Rate for instruction 7447: 17.1218% +Rate for instruction 7448: 17.1205% +Rate for instruction 7449: 17.1198% +Rate for instruction 7450: 17.119% +Rate for instruction 7451: 17.1178% +Rate for instruction 7452: 17.116% +Rate for instruction 7453: 17.1142% +Rate for instruction 7454: 17.1129% +Rate for instruction 7455: 17.1122% +Rate for instruction 7456: 17.1145% +Rate for instruction 7457: 17.1153% +Rate for instruction 7458: 17.1141% +Rate for instruction 7459: 17.1144% +Rate for instruction 7460: 17.1141% +Rate for instruction 7461: 17.1134% +Rate for instruction 7462: 17.1147% +Rate for instruction 7463: 17.115% +Rate for instruction 7464: 17.1168% +Rate for instruction 7465: 17.1197% +Rate for instruction 7466: 17.1179% +Rate for instruction 7467: 17.1166% +Rate for instruction 7468: 17.1174% +Rate for instruction 7469: 17.1203% +Rate for instruction 7470: 17.1211% +Rate for instruction 7471: 17.1198% +Rate for instruction 7472: 17.1206% +Rate for instruction 7473: 17.124% +Rate for instruction 7474: 17.1222% +Rate for instruction 7475: 17.1204% +Rate for instruction 7476: 17.1187% +Rate for instruction 7477: 17.1184% +Rate for instruction 7478: 17.1166% +Rate for instruction 7479: 17.1154% +Rate for instruction 7480: 17.1136% +Rate for instruction 7481: 17.1154% +Rate for instruction 7482: 17.1137% +Rate for instruction 7483: 17.117% +Rate for instruction 7484: 17.1194% +Rate for instruction 7485: 17.1181% +Rate for instruction 7486: 17.1179% +Rate for instruction 7487: 17.1166% +Rate for instruction 7488: 17.1148% +Rate for instruction 7489: 17.1146% +Rate for instruction 7490: 17.1128% +Rate for instruction 7491: 17.1131% +Rate for instruction 7492: 17.116% +Rate for instruction 7493: 17.1188% +Rate for instruction 7494: 17.1196% +Rate for instruction 7495: 17.1225% +Rate for instruction 7496: 17.1207% +Rate for instruction 7497: 17.1199% +Rate for instruction 7498: 17.1182% +Rate for instruction 7499: 17.1169% +Rate for instruction 7500: 17.1167% +Rate for instruction 7501: 17.1201% +Rate for instruction 7502: 17.1183% +Rate for instruction 7503: 17.117% +Rate for instruction 7504: 17.1173% +Rate for instruction 7505: 17.1176% +Rate for instruction 7506: 17.1204% +Rate for instruction 7507: 17.1197% +Rate for instruction 7508: 17.123% +Rate for instruction 7509: 17.1223% +Rate for instruction 7510: 17.121% +Rate for instruction 7511: 17.1198% +Rate for instruction 7512: 17.119% +Rate for instruction 7513: 17.1183% +Rate for instruction 7514: 17.117% +Rate for instruction 7515: 17.1178% +Rate for instruction 7516: 17.1171% +Rate for instruction 7517: 17.1169% +Rate for instruction 7518: 17.1151% +Rate for instruction 7519: 17.1144% +Rate for instruction 7520: 17.1141% +Rate for instruction 7521: 17.1129% +Rate for instruction 7522: 17.1126% +Rate for instruction 7523: 17.1119% +Rate for instruction 7524: 17.1107% +Rate for instruction 7525: 17.1135% +Rate for instruction 7526: 17.1122% +Rate for instruction 7527: 17.1115% +Rate for instruction 7528: 17.1103% +Rate for instruction 7529: 17.109% +Rate for instruction 7530: 17.1077% +Rate for instruction 7531: 17.108% +Rate for instruction 7532: 17.1063% +Rate for instruction 7533: 17.1081% +Rate for instruction 7534: 17.1063% +Rate for instruction 7535: 17.1066% +Rate for instruction 7536: 17.1048% +Rate for instruction 7537: 17.1077% +Rate for instruction 7538: 17.1069% +Rate for instruction 7539: 17.1098% +Rate for instruction 7540: 17.1095% +Rate for instruction 7541: 17.1088% +Rate for instruction 7542: 17.107% +Rate for instruction 7543: 17.1063% +Rate for instruction 7544: 17.1051% +Rate for instruction 7545: 17.1048% +Rate for instruction 7546: 17.1046% +Rate for instruction 7547: 17.1064% +Rate for instruction 7548: 17.1057% +Rate for instruction 7549: 17.1049% +Rate for instruction 7550: 17.1042% +Rate for instruction 7551: 17.103% +Rate for instruction 7552: 17.1058% +Rate for instruction 7553: 17.1081% +Rate for instruction 7554: 17.1074% +Rate for instruction 7555: 17.1071% +Rate for instruction 7556: 17.1084% +Rate for instruction 7557: 17.1077% +Rate for instruction 7558: 17.1059% +Rate for instruction 7559: 17.1057% +Rate for instruction 7560: 17.1055% +Rate for instruction 7561: 17.1037% +Rate for instruction 7562: 17.1025% +Rate for instruction 7563: 17.1018% +Rate for instruction 7564: 17.102% +Rate for instruction 7565: 17.1003% +Rate for instruction 7566: 17.1016% +Rate for instruction 7567: 17.1019% +Rate for instruction 7568: 17.1027% +Rate for instruction 7569: 17.106% +Rate for instruction 7570: 17.1073% +Rate for instruction 7571: 17.1081% +Rate for instruction 7572: 17.1089% +Rate for instruction 7573: 17.1096% +Rate for instruction 7574: 17.1114% +Rate for instruction 7575: 17.1127% +Rate for instruction 7576: 17.113% +Rate for instruction 7577: 17.1153% +Rate for instruction 7578: 17.1171% +Rate for instruction 7579: 17.12% +Rate for instruction 7580: 17.1192% +Rate for instruction 7581: 17.121% +Rate for instruction 7582: 17.1193% +Rate for instruction 7583: 17.1221% +Rate for instruction 7584: 17.1203% +Rate for instruction 7585: 17.1191% +Rate for instruction 7586: 17.1184% +Rate for instruction 7587: 17.1207% +Rate for instruction 7588: 17.1189% +Rate for instruction 7589: 17.1217% +Rate for instruction 7590: 17.1245% +Rate for instruction 7591: 17.1238% +Rate for instruction 7592: 17.1261% +Rate for instruction 7593: 17.1254% +Rate for instruction 7594: 17.1272% +Rate for instruction 7595: 17.1259% +Rate for instruction 7596: 17.1257% +Rate for instruction 7597: 17.129% +Rate for instruction 7598: 17.1283% +Rate for instruction 7599: 17.127% +Rate for instruction 7600: 17.1288% +Rate for instruction 7601: 17.1291% +Rate for instruction 7602: 17.1294% +Rate for instruction 7603: 17.1291% +Rate for instruction 7604: 17.1274% +Rate for instruction 7605: 17.1277% +Rate for instruction 7606: 17.1279% +Rate for instruction 7607: 17.1267% +Rate for instruction 7608: 17.1255% +Rate for instruction 7609: 17.1237% +Rate for instruction 7610: 17.126% +Rate for instruction 7611: 17.1263% +Rate for instruction 7612: 17.1246% +Rate for instruction 7613: 17.1233% +Rate for instruction 7614: 17.1216% +Rate for instruction 7615: 17.1208% +Rate for instruction 7616: 17.1191% +Rate for instruction 7617: 17.1179% +Rate for instruction 7618: 17.1181% +Rate for instruction 7619: 17.1169% +Rate for instruction 7620: 17.1177% +Rate for instruction 7621: 17.1164% +Rate for instruction 7622: 17.1167% +Rate for instruction 7623: 17.116% +Rate for instruction 7624: 17.1168% +Rate for instruction 7625: 17.117% +Rate for instruction 7626: 17.1168% +Rate for instruction 7627: 17.1151% +Rate for instruction 7628: 17.1154% +Rate for instruction 7629: 17.1151% +Rate for instruction 7630: 17.1139% +Rate for instruction 7631: 17.1142% +Rate for instruction 7632: 17.1134% +Rate for instruction 7633: 17.1122% +Rate for instruction 7634: 17.1105% +Rate for instruction 7635: 17.1113% +Rate for instruction 7636: 17.1125% +Rate for instruction 7637: 17.1113% +Rate for instruction 7638: 17.1111% +Rate for instruction 7639: 17.1098% +Rate for instruction 7640: 17.1081% +Rate for instruction 7641: 17.1069% +Rate for instruction 7642: 17.1067% +Rate for instruction 7643: 17.1054% +Rate for instruction 7644: 17.1057% +Rate for instruction 7645: 17.1055% +Rate for instruction 7646: 17.1058% +Rate for instruction 7647: 17.105% +Rate for instruction 7648: 17.1048% +Rate for instruction 7649: 17.1036% +Rate for instruction 7650: 17.1018% +Rate for instruction 7651: 17.1016% +Rate for instruction 7652: 17.1014% +Rate for instruction 7653: 17.1022% +Rate for instruction 7654: 17.1029% +Rate for instruction 7655: 17.1032% +Rate for instruction 7656: 17.1015% +Rate for instruction 7657: 17.1003% +Rate for instruction 7658: 17.0985% +Rate for instruction 7659: 17.0978% +Rate for instruction 7660: 17.0971% +Rate for instruction 7661: 17.0974% +Rate for instruction 7662: 17.0966% +Rate for instruction 7663: 17.0964% +Rate for instruction 7664: 17.0957% +Rate for instruction 7665: 17.0965% +Rate for instruction 7666: 17.0947% +Rate for instruction 7667: 17.095% +Rate for instruction 7668: 17.0948% +Rate for instruction 7669: 17.0951% +Rate for instruction 7670: 17.0933% +Rate for instruction 7671: 17.0931% +Rate for instruction 7672: 17.0929% +Rate for instruction 7673: 17.0932% +Rate for instruction 7674: 17.093% +Rate for instruction 7675: 17.0917% +Rate for instruction 7676: 17.09% +Rate for instruction 7677: 17.0898% +Rate for instruction 7678: 17.0891% +Rate for instruction 7679: 17.0873% +Rate for instruction 7680: 17.0861% +Rate for instruction 7681: 17.0844% +Rate for instruction 7682: 17.0842% +Rate for instruction 7683: 17.084% +Rate for instruction 7684: 17.0827% +Rate for instruction 7685: 17.081% +Rate for instruction 7686: 17.0803% +Rate for instruction 7687: 17.0796% +Rate for instruction 7688: 17.0783% +Rate for instruction 7689: 17.0796% +Rate for instruction 7690: 17.0779% +Rate for instruction 7691: 17.0802% +Rate for instruction 7692: 17.082% +Rate for instruction 7693: 17.0852% +Rate for instruction 7694: 17.0875% +Rate for instruction 7695: 17.0893% +Rate for instruction 7696: 17.0906% +Rate for instruction 7697: 17.0914% +Rate for instruction 7698: 17.0926% +Rate for instruction 7699: 17.0944% +Rate for instruction 7700: 17.0957% +Rate for instruction 7701: 17.096% +Rate for instruction 7702: 17.0942% +Rate for instruction 7703: 17.094% +Rate for instruction 7704: 17.0953% +Rate for instruction 7705: 17.0971% +Rate for instruction 7706: 17.0963% +Rate for instruction 7707: 17.0946% +Rate for instruction 7708: 17.0939% +Rate for instruction 7709: 17.0957% +Rate for instruction 7710: 17.097% +Rate for instruction 7711: 17.1007% +Rate for instruction 7712: 17.1035% +Rate for instruction 7713: 17.1053% +Rate for instruction 7714: 17.106% +Rate for instruction 7715: 17.1078% +Rate for instruction 7716: 17.1091% +Rate for instruction 7717: 17.1079% +Rate for instruction 7718: 17.1061% +Rate for instruction 7719: 17.1049% +Rate for instruction 7720: 17.1047% +Rate for instruction 7721: 17.103% +Rate for instruction 7722: 17.1018% +Rate for instruction 7723: 17.104% +Rate for instruction 7724: 17.1028% +Rate for instruction 7725: 17.1026% +Rate for instruction 7726: 17.1019% +Rate for instruction 7727: 17.1016% +Rate for instruction 7728: 17.1009% +Rate for instruction 7729: 17.1017% +Rate for instruction 7730: 17.1015% +Rate for instruction 7731: 17.1013% +Rate for instruction 7732: 17.1015% +Rate for instruction 7733: 17.0998% +Rate for instruction 7734: 17.0996% +Rate for instruction 7735: 17.0999% +Rate for instruction 7736: 17.0982% +Rate for instruction 7737: 17.0984% +Rate for instruction 7738: 17.0977% +Rate for instruction 7739: 17.096% +Rate for instruction 7740: 17.0943% +Rate for instruction 7741: 17.0936% +Rate for instruction 7742: 17.0939% +Rate for instruction 7743: 17.0941% +Rate for instruction 7744: 17.0929% +Rate for instruction 7745: 17.0917% +Rate for instruction 7746: 17.0905% +Rate for instruction 7747: 17.0908% +Rate for instruction 7748: 17.09% +Rate for instruction 7749: 17.0903% +Rate for instruction 7750: 17.0906% +Rate for instruction 7751: 17.0909% +Rate for instruction 7752: 17.0916% +Rate for instruction 7753: 17.0934% +Rate for instruction 7754: 17.0937% +Rate for instruction 7755: 17.093% +Rate for instruction 7756: 17.0913% +Rate for instruction 7757: 17.0901% +Rate for instruction 7758: 17.0918% +Rate for instruction 7759: 17.0911% +Rate for instruction 7760: 17.0899% +Rate for instruction 7761: 17.0897% +Rate for instruction 7762: 17.0885% +Rate for instruction 7763: 17.0912% +Rate for instruction 7764: 17.0945% +Rate for instruction 7765: 17.0942% +Rate for instruction 7766: 17.0945% +Rate for instruction 7767: 17.0973% +Rate for instruction 7768: 17.1% +Rate for instruction 7769: 17.0998% +Rate for instruction 7770: 17.0996% +Rate for instruction 7771: 17.0998% +Rate for instruction 7772: 17.0986% +Rate for instruction 7773: 17.0994% +Rate for instruction 7774: 17.0997% +Rate for instruction 7775: 17.098% +Rate for instruction 7776: 17.0992% +Rate for instruction 7777: 17.1005% +Rate for instruction 7778: 17.1028% +Rate for instruction 7779: 17.104% +Rate for instruction 7780: 17.1068% +Rate for instruction 7781: 17.109% +Rate for instruction 7782: 17.1113% +Rate for instruction 7783: 17.112% +Rate for instruction 7784: 17.1108% +Rate for instruction 7785: 17.1121% +Rate for instruction 7786: 17.1114% +Rate for instruction 7787: 17.1101% +Rate for instruction 7788: 17.1094% +Rate for instruction 7789: 17.1082% +Rate for instruction 7790: 17.108% +Rate for instruction 7791: 17.1063% +Rate for instruction 7792: 17.1056% +Rate for instruction 7793: 17.1049% +Rate for instruction 7794: 17.1047% +Rate for instruction 7795: 17.1059% +Rate for instruction 7796: 17.1072% +Rate for instruction 7797: 17.1055% +Rate for instruction 7798: 17.1067% +Rate for instruction 7799: 17.1055% +Rate for instruction 7800: 17.1053% +Rate for instruction 7801: 17.1061% +Rate for instruction 7802: 17.1044% +Rate for instruction 7803: 17.1046% +Rate for instruction 7804: 17.1074% +Rate for instruction 7805: 17.1096% +Rate for instruction 7806: 17.1084% +Rate for instruction 7807: 17.1067% +Rate for instruction 7808: 17.1099% +Rate for instruction 7809: 17.1127% +Rate for instruction 7810: 17.1159% +Rate for instruction 7811: 17.1176% +Rate for instruction 7812: 17.1164% +Rate for instruction 7813: 17.1192% +Rate for instruction 7814: 17.1175% +Rate for instruction 7815: 17.1163% +Rate for instruction 7816: 17.1175% +Rate for instruction 7817: 17.1163% +Rate for instruction 7818: 17.12% +Rate for instruction 7819: 17.1208% +Rate for instruction 7820: 17.1216% +Rate for instruction 7821: 17.1228% +Rate for instruction 7822: 17.1221% +Rate for instruction 7823: 17.1214% +Rate for instruction 7824: 17.1197% +Rate for instruction 7825: 17.119% +Rate for instruction 7826: 17.1173% +Rate for instruction 7827: 17.1161% +Rate for instruction 7828: 17.1178% +Rate for instruction 7829: 17.1166% +Rate for instruction 7830: 17.1169% +Rate for instruction 7831: 17.1186% +Rate for instruction 7832: 17.1174% +Rate for instruction 7833: 17.1172% +Rate for instruction 7834: 17.116% +Rate for instruction 7835: 17.1143% +Rate for instruction 7836: 17.1131% +Rate for instruction 7837: 17.1129% +Rate for instruction 7838: 17.1127% +Rate for instruction 7839: 17.1129% +Rate for instruction 7840: 17.1122% +Rate for instruction 7841: 17.1115% +Rate for instruction 7842: 17.1123% +Rate for instruction 7843: 17.1111% +Rate for instruction 7844: 17.1123% +Rate for instruction 7845: 17.1136% +Rate for instruction 7846: 17.1148% +Rate for instruction 7847: 17.1156% +Rate for instruction 7848: 17.1144% +Rate for instruction 7849: 17.1142% +Rate for instruction 7850: 17.1144% +Rate for instruction 7851: 17.1127% +Rate for instruction 7852: 17.1115% +Rate for instruction 7853: 17.1123% +Rate for instruction 7854: 17.1116% +Rate for instruction 7855: 17.1104% +Rate for instruction 7856: 17.1112% +Rate for instruction 7857: 17.1109% +Rate for instruction 7858: 17.1107% +Rate for instruction 7859: 17.11% +Rate for instruction 7860: 17.1088% +Rate for instruction 7861: 17.1071% +Rate for instruction 7862: 17.1064% +Rate for instruction 7863: 17.1047% +Rate for instruction 7864: 17.1045% +Rate for instruction 7865: 17.1028% +Rate for instruction 7866: 17.1036% +Rate for instruction 7867: 17.1034% +Rate for instruction 7868: 17.1027% +Rate for instruction 7869: 17.1029% +Rate for instruction 7870: 17.1012% +Rate for instruction 7871: 17.1015% +Rate for instruction 7872: 17.1023% +Rate for instruction 7873: 17.1016% +Rate for instruction 7874: 17.1009% +Rate for instruction 7875: 17.1006% +Rate for instruction 7876: 17.0999% +Rate for instruction 7877: 17.0997% +Rate for instruction 7878: 17.0985% +Rate for instruction 7879: 17.0968% +Rate for instruction 7880: 17.0952% +Rate for instruction 7881: 17.0935% +Rate for instruction 7882: 17.0952% +Rate for instruction 7883: 17.0969% +Rate for instruction 7884: 17.0958% +Rate for instruction 7885: 17.096% +Rate for instruction 7886: 17.0948% +Rate for instruction 7887: 17.0946% +Rate for instruction 7888: 17.0934% +Rate for instruction 7889: 17.0932% +Rate for instruction 7890: 17.0925% +Rate for instruction 7891: 17.0913% +Rate for instruction 7892: 17.093% +Rate for instruction 7893: 17.0914% +Rate for instruction 7894: 17.0907% +Rate for instruction 7895: 17.089% +Rate for instruction 7896: 17.0907% +Rate for instruction 7897: 17.092% +Rate for instruction 7898: 17.0913% +Rate for instruction 7899: 17.0896% +Rate for instruction 7900: 17.0879% +Rate for instruction 7901: 17.0872% +Rate for instruction 7902: 17.088% +Rate for instruction 7903: 17.0863% +Rate for instruction 7904: 17.0856% +Rate for instruction 7905: 17.0839% +Rate for instruction 7906: 17.0837% +Rate for instruction 7907: 17.0845% +Rate for instruction 7908: 17.0847% +Rate for instruction 7909: 17.0855% +Rate for instruction 7910: 17.0858% +Rate for instruction 7911: 17.0851% +Rate for instruction 7912: 17.0873% +Rate for instruction 7913: 17.0895% +Rate for instruction 7914: 17.0878% +Rate for instruction 7915: 17.0881% +Rate for instruction 7916: 17.0888% +Rate for instruction 7917: 17.0881% +Rate for instruction 7918: 17.0899% +Rate for instruction 7919: 17.0926% +Rate for instruction 7920: 17.0943% +Rate for instruction 7921: 17.098% +Rate for instruction 7922: 17.1021% +Rate for instruction 7923: 17.1043% +Rate for instruction 7924: 17.1065% +Rate for instruction 7925: 17.1083% +Rate for instruction 7926: 17.1075% +Rate for instruction 7927: 17.1068% +Rate for instruction 7928: 17.1086% +Rate for instruction 7929: 17.1074% +Rate for instruction 7930: 17.1072% +Rate for instruction 7931: 17.1094% +Rate for instruction 7932: 17.1101% +Rate for instruction 7933: 17.1118% +Rate for instruction 7934: 17.1102% +Rate for instruction 7935: 17.1109% +Rate for instruction 7936: 17.1122% +Rate for instruction 7937: 17.111% +Rate for instruction 7938: 17.1103% +Rate for instruction 7939: 17.1101% +Rate for instruction 7940: 17.1089% +Rate for instruction 7941: 17.1082% +Rate for instruction 7942: 17.1099% +Rate for instruction 7943: 17.1097% +Rate for instruction 7944: 17.108% +Rate for instruction 7945: 17.1092% +Rate for instruction 7946: 17.109% +Rate for instruction 7947: 17.1088% +Rate for instruction 7948: 17.1096% +Rate for instruction 7949: 17.1079% +Rate for instruction 7950: 17.1082% +Rate for instruction 7951: 17.1089% +Rate for instruction 7952: 17.1072% +Rate for instruction 7953: 17.1065% +Rate for instruction 7954: 17.1083% +Rate for instruction 7955: 17.1071% +Rate for instruction 7956: 17.1059% +Rate for instruction 7957: 17.1062% +Rate for instruction 7958: 17.1045% +Rate for instruction 7959: 17.1057% +Rate for instruction 7960: 17.106% +Rate for instruction 7961: 17.1048% +Rate for instruction 7962: 17.1065% +Rate for instruction 7963: 17.1049% +Rate for instruction 7964: 17.1037% +Rate for instruction 7965: 17.1025% +Rate for instruction 7966: 17.1008% +Rate for instruction 7967: 17.1011% +Rate for instruction 7968: 17.0994% +Rate for instruction 7969: 17.1002% +Rate for instruction 7970: 17.0995% +Rate for instruction 7971: 17.0978% +Rate for instruction 7972: 17.0966% +Rate for instruction 7973: 17.0959% +Rate for instruction 7974: 17.0948% +Rate for instruction 7975: 17.0941% +Rate for instruction 7976: 17.0943% +Rate for instruction 7977: 17.0951% +Rate for instruction 7978: 17.0944% +Rate for instruction 7979: 17.0937% +Rate for instruction 7980: 17.0925% +Rate for instruction 7981: 17.0913% +Rate for instruction 7982: 17.0906% +Rate for instruction 7983: 17.0895% +Rate for instruction 7984: 17.0883% +Rate for instruction 7985: 17.0881% +Rate for instruction 7986: 17.0874% +Rate for instruction 7987: 17.0872% +Rate for instruction 7988: 17.0855% +Rate for instruction 7989: 17.0858% +Rate for instruction 7990: 17.0846% +Rate for instruction 7991: 17.0829% +Rate for instruction 7992: 17.0847% +Rate for instruction 7993: 17.083% +Rate for instruction 7994: 17.0828% +Rate for instruction 7995: 17.0816% +Rate for instruction 7996: 17.08% +Rate for instruction 7997: 17.0798% +Rate for instruction 7998: 17.0795% +Rate for instruction 7999: 17.0798% +Rate for instruction 8000: 17.0786% +Rate for instruction 8001: 17.0808% +Rate for instruction 8002: 17.0806% +Rate for instruction 8003: 17.079% +Rate for instruction 8004: 17.0778% +Rate for instruction 8005: 17.0766% +Rate for instruction 8006: 17.0764% +Rate for instruction 8007: 17.0752% +Rate for instruction 8008: 17.0765% +Rate for instruction 8009: 17.0791% +Rate for instruction 8010: 17.0818% +Rate for instruction 8011: 17.0801% +Rate for instruction 8012: 17.079% +Rate for instruction 8013: 17.0773% +Rate for instruction 8014: 17.0771% +Rate for instruction 8015: 17.0779% +Rate for instruction 8016: 17.0791% +Rate for instruction 8017: 17.0803% +Rate for instruction 8018: 17.0791% +Rate for instruction 8019: 17.0775% +Rate for instruction 8020: 17.0763% +Rate for instruction 8021: 17.0766% +Rate for instruction 8022: 17.0759% +Rate for instruction 8023: 17.0757% +Rate for instruction 8024: 17.075% +Rate for instruction 8025: 17.0762% +Rate for instruction 8026: 17.0746% +Rate for instruction 8027: 17.0734% +Rate for instruction 8028: 17.0732% +Rate for instruction 8029: 17.0735% +Rate for instruction 8030: 17.0723% +Rate for instruction 8031: 17.0726% +Rate for instruction 8032: 17.0714% +Rate for instruction 8033: 17.0722% +Rate for instruction 8034: 17.071% +Rate for instruction 8035: 17.0717% +Rate for instruction 8036: 17.0706% +Rate for instruction 8037: 17.0728% +Rate for instruction 8038: 17.0749% +Rate for instruction 8039: 17.0771% +Rate for instruction 8040: 17.0755% +Rate for instruction 8041: 17.0786% +Rate for instruction 8042: 17.077% +Rate for instruction 8043: 17.0777% +Rate for instruction 8044: 17.0804% +Rate for instruction 8045: 17.0787% +Rate for instruction 8046: 17.0804% +Rate for instruction 8047: 17.0826% +Rate for instruction 8048: 17.0819% +Rate for instruction 8049: 17.0807% +Rate for instruction 8050: 17.0801% +Rate for instruction 8051: 17.0789% +Rate for instruction 8052: 17.0777% +Rate for instruction 8053: 17.077% +Rate for instruction 8054: 17.0768% +Rate for instruction 8055: 17.0752% +Rate for instruction 8056: 17.074% +Rate for instruction 8057: 17.0733% +Rate for instruction 8058: 17.0731% +Rate for instruction 8059: 17.0729% +Rate for instruction 8060: 17.0727% +Rate for instruction 8061: 17.0711% +Rate for instruction 8062: 17.0704% +Rate for instruction 8063: 17.0692% +Rate for instruction 8064: 17.069% +Rate for instruction 8065: 17.0678% +Rate for instruction 8066: 17.0667% +Rate for instruction 8067: 17.066% +Rate for instruction 8068: 17.0672% +Rate for instruction 8069: 17.0675% +Rate for instruction 8070: 17.0682% +Rate for instruction 8071: 17.069% +Rate for instruction 8072: 17.0688% +Rate for instruction 8073: 17.069% +Rate for instruction 8074: 17.0683% +Rate for instruction 8075: 17.0691% +Rate for instruction 8076: 17.0694% +Rate for instruction 8077: 17.0682% +Rate for instruction 8078: 17.0694% +Rate for instruction 8079: 17.073% +Rate for instruction 8080: 17.0761% +Rate for instruction 8081: 17.0769% +Rate for instruction 8082: 17.0772% +Rate for instruction 8083: 17.0788% +Rate for instruction 8084: 17.081% +Rate for instruction 8085: 17.0813% +Rate for instruction 8086: 17.0796% +Rate for instruction 8087: 17.0794% +Rate for instruction 8088: 17.0778% +Rate for instruction 8089: 17.0766% +Rate for instruction 8090: 17.075% +Rate for instruction 8091: 17.0743% +Rate for instruction 8092: 17.076% +Rate for instruction 8093: 17.0763% +Rate for instruction 8094: 17.0761% +Rate for instruction 8095: 17.0749% +Rate for instruction 8096: 17.0738% +Rate for instruction 8097: 17.0721% +Rate for instruction 8098: 17.071% +Rate for instruction 8099: 17.0703% +Rate for instruction 8100: 17.0691% +Rate for instruction 8101: 17.0689% +Rate for instruction 8102: 17.0687% +Rate for instruction 8103: 17.0675% +Rate for instruction 8104: 17.0673% +Rate for instruction 8105: 17.0676% +Rate for instruction 8106: 17.0669% +Rate for instruction 8107: 17.0667% +Rate for instruction 8108: 17.0665% +Rate for instruction 8109: 17.0682% +Rate for instruction 8110: 17.067% +Rate for instruction 8111: 17.0668% +Rate for instruction 8112: 17.0657% +Rate for instruction 8113: 17.0655% +Rate for instruction 8114: 17.0638% +Rate for instruction 8115: 17.0627% +Rate for instruction 8116: 17.0634% +Rate for instruction 8117: 17.0646% +Rate for instruction 8118: 17.0654% +Rate for instruction 8119: 17.0666% +Rate for instruction 8120: 17.0669% +Rate for instruction 8121: 17.0652% +Rate for instruction 8122: 17.0636% +Rate for instruction 8123: 17.0639% +Rate for instruction 8124: 17.0627% +Rate for instruction 8125: 17.0625% +Rate for instruction 8126: 17.0618% +Rate for instruction 8127: 17.0626% +Rate for instruction 8128: 17.0638% +Rate for instruction 8129: 17.0645% +Rate for instruction 8130: 17.0653% +Rate for instruction 8131: 17.067% +Rate for instruction 8132: 17.0667% +Rate for instruction 8133: 17.0694% +Rate for instruction 8134: 17.0715% +Rate for instruction 8135: 17.0699% +Rate for instruction 8136: 17.0692% +Rate for instruction 8137: 17.07% +Rate for instruction 8138: 17.0707% +Rate for instruction 8139: 17.0691% +Rate for instruction 8140: 17.0684% +Rate for instruction 8141: 17.0677% +Rate for instruction 8142: 17.0675% +Rate for instruction 8143: 17.0659% +Rate for instruction 8144: 17.0662% +Rate for instruction 8145: 17.0664% +Rate for instruction 8146: 17.0648% +Rate for instruction 8147: 17.0636% +Rate for instruction 8148: 17.0634% +Rate for instruction 8149: 17.0618% +Rate for instruction 8150: 17.0602% +Rate for instruction 8151: 17.06% +Rate for instruction 8152: 17.0593% +Rate for instruction 8153: 17.0582% +Rate for instruction 8154: 17.0594% +Rate for instruction 8155: 17.0601% +Rate for instruction 8156: 17.0618% +Rate for instruction 8157: 17.0602% +Rate for instruction 8158: 17.0604% +Rate for instruction 8159: 17.0593% +Rate for instruction 8160: 17.0614% +Rate for instruction 8161: 17.0636% +Rate for instruction 8162: 17.0639% +Rate for instruction 8163: 17.0646% +Rate for instruction 8164: 17.0635% +Rate for instruction 8165: 17.0632% +Rate for instruction 8166: 17.063% +Rate for instruction 8167: 17.0619% +Rate for instruction 8168: 17.0612% +Rate for instruction 8169: 17.0652% +Rate for instruction 8170: 17.0655% +Rate for instruction 8171: 17.0658% +Rate for instruction 8172: 17.0679% +Rate for instruction 8173: 17.071% +Rate for instruction 8174: 17.0694% +Rate for instruction 8175: 17.0692% +Rate for instruction 8176: 17.0676% +Rate for instruction 8177: 17.0707% +Rate for instruction 8178: 17.0705% +Rate for instruction 8179: 17.0721% +Rate for instruction 8180: 17.0757% +Rate for instruction 8181: 17.0741% +Rate for instruction 8182: 17.0743% +Rate for instruction 8183: 17.0755% +Rate for instruction 8184: 17.0753% +Rate for instruction 8185: 17.0737% +Rate for instruction 8186: 17.0754% +Rate for instruction 8187: 17.0747% +Rate for instruction 8188: 17.0754% +Rate for instruction 8189: 17.0766% +Rate for instruction 8190: 17.0778% +Rate for instruction 8191: 17.0786% +Rate for instruction 8192: 17.0821% +Rate for instruction 8193: 17.0814% +Rate for instruction 8194: 17.0826% +Rate for instruction 8195: 17.0834% +Rate for instruction 8196: 17.0827% +Rate for instruction 8197: 17.082% +Rate for instruction 8198: 17.0818% +Rate for instruction 8199: 17.0816% +Rate for instruction 8200: 17.08% +Rate for instruction 8201: 17.0793% +Rate for instruction 8202: 17.0782% +Rate for instruction 8203: 17.0766% +Rate for instruction 8204: 17.0764% +Rate for instruction 8205: 17.0762% +Rate for instruction 8206: 17.0755% +Rate for instruction 8207: 17.0753% +Rate for instruction 8208: 17.0769% +Rate for instruction 8209: 17.0781% +Rate for instruction 8210: 17.0765% +Rate for instruction 8211: 17.0777% +Rate for instruction 8212: 17.0771% +Rate for instruction 8213: 17.0783% +Rate for instruction 8214: 17.0771% +Rate for instruction 8215: 17.0769% +Rate for instruction 8216: 17.0753% +Rate for instruction 8217: 17.0756% +Rate for instruction 8218: 17.0739% +Rate for instruction 8219: 17.0761% +Rate for instruction 8220: 17.0773% +Rate for instruction 8221: 17.0757% +Rate for instruction 8222: 17.0769% +Rate for instruction 8223: 17.079% +Rate for instruction 8224: 17.0802% +Rate for instruction 8225: 17.0828% +Rate for instruction 8226: 17.0826% +Rate for instruction 8227: 17.0861% +Rate for instruction 8228: 17.0873% +Rate for instruction 8229: 17.0894% +Rate for instruction 8230: 17.0902% +Rate for instruction 8231: 17.0895% +Rate for instruction 8232: 17.0912% +Rate for instruction 8233: 17.0924% +Rate for instruction 8234: 17.0917% +Rate for instruction 8235: 17.091% +Rate for instruction 8236: 17.0894% +Rate for instruction 8237: 17.0887% +Rate for instruction 8238: 17.0871% +Rate for instruction 8239: 17.0864% +Rate for instruction 8240: 17.0862% +Rate for instruction 8241: 17.0851% +Rate for instruction 8242: 17.0835% +Rate for instruction 8243: 17.0828% +Rate for instruction 8244: 17.0821% +Rate for instruction 8245: 17.081% +Rate for instruction 8246: 17.0803% +Rate for instruction 8247: 17.0787% +Rate for instruction 8248: 17.0781% +Rate for instruction 8249: 17.0774% +Rate for instruction 8250: 17.0772% +Rate for instruction 8251: 17.0765% +Rate for instruction 8252: 17.0749% +Rate for instruction 8253: 17.0761% +Rate for instruction 8254: 17.0754% +Rate for instruction 8255: 17.0771% +Rate for instruction 8256: 17.0811% +Rate for instruction 8257: 17.0841% +Rate for instruction 8258: 17.0853% +Rate for instruction 8259: 17.0837% +Rate for instruction 8260: 17.0854% +Rate for instruction 8261: 17.0852% +Rate for instruction 8262: 17.0864% +Rate for instruction 8263: 17.0876% +Rate for instruction 8264: 17.0892% +Rate for instruction 8265: 17.0876% +Rate for instruction 8266: 17.0874% +Rate for instruction 8267: 17.0858% +Rate for instruction 8268: 17.0847% +Rate for instruction 8269: 17.0831% +Rate for instruction 8270: 17.0824% +Rate for instruction 8271: 17.0808% +Rate for instruction 8272: 17.0824% +Rate for instruction 8273: 17.0813% +Rate for instruction 8274: 17.082% +Rate for instruction 8275: 17.0814% +Rate for instruction 8276: 17.0802% +Rate for instruction 8277: 17.0796% +Rate for instruction 8278: 17.0784% +Rate for instruction 8279: 17.0792% +Rate for instruction 8280: 17.0808% +Rate for instruction 8281: 17.0797% +Rate for instruction 8282: 17.079% +Rate for instruction 8283: 17.0807% +Rate for instruction 8284: 17.0814% +Rate for instruction 8285: 17.0821% +Rate for instruction 8286: 17.0838% +Rate for instruction 8287: 17.0849% +Rate for instruction 8288: 17.0857% +Rate for instruction 8289: 17.0859% +Rate for instruction 8290: 17.0843% +Rate for instruction 8291: 17.0855% +Rate for instruction 8292: 17.0867% +Rate for instruction 8293: 17.0851% +Rate for instruction 8294: 17.0844% +Rate for instruction 8295: 17.0828% +Rate for instruction 8296: 17.0822% +Rate for instruction 8297: 17.082% +Rate for instruction 8298: 17.0827% +Rate for instruction 8299: 17.0825% +Rate for instruction 8300: 17.0818% +Rate for instruction 8301: 17.0835% +Rate for instruction 8302: 17.0846% +Rate for instruction 8303: 17.0858% +Rate for instruction 8304: 17.0875% +Rate for instruction 8305: 17.0891% +Rate for instruction 8306: 17.088% +Rate for instruction 8307: 17.0864% +Rate for instruction 8308: 17.0876% +Rate for instruction 8309: 17.0883% +Rate for instruction 8310: 17.0895% +Rate for instruction 8311: 17.0888% +Rate for instruction 8312: 17.0877% +Rate for instruction 8313: 17.087% +Rate for instruction 8314: 17.0868% +Rate for instruction 8315: 17.0852% +Rate for instruction 8316: 17.0855% +Rate for instruction 8317: 17.0844% +Rate for instruction 8318: 17.0846% +Rate for instruction 8319: 17.083% +Rate for instruction 8320: 17.0833% +Rate for instruction 8321: 17.0817% +Rate for instruction 8322: 17.081% +Rate for instruction 8323: 17.0817% +Rate for instruction 8324: 17.0857% +Rate for instruction 8325: 17.0887% +Rate for instruction 8326: 17.0913% +Rate for instruction 8327: 17.0943% +Rate for instruction 8328: 17.0983% +Rate for instruction 8329: 17.1004% +Rate for instruction 8330: 17.1025% +Rate for instruction 8331: 17.1023% +Rate for instruction 8332: 17.1016% +Rate for instruction 8333: 17.1014% +Rate for instruction 8334: 17.0998% +Rate for instruction 8335: 17.0991% +Rate for instruction 8336: 17.1012% +Rate for instruction 8337: 17.1033% +Rate for instruction 8338: 17.1036% +Rate for instruction 8339: 17.1057% +Rate for instruction 8340: 17.1083% +Rate for instruction 8341: 17.1076% +Rate for instruction 8342: 17.106% +Rate for instruction 8343: 17.1053% +Rate for instruction 8344: 17.1037% +Rate for instruction 8345: 17.1058% +Rate for instruction 8346: 17.1047% +Rate for instruction 8347: 17.105% +Rate for instruction 8348: 17.1043% +Rate for instruction 8349: 17.1046% +Rate for instruction 8350: 17.1076% +Rate for instruction 8351: 17.1092% +Rate for instruction 8352: 17.1095% +Rate for instruction 8353: 17.1093% +Rate for instruction 8354: 17.1114% +Rate for instruction 8355: 17.1111% +Rate for instruction 8356: 17.1114% +Rate for instruction 8357: 17.1126% +Rate for instruction 8358: 17.111% +Rate for instruction 8359: 17.1112% +Rate for instruction 8360: 17.1101% +Rate for instruction 8361: 17.1104% +Rate for instruction 8362: 17.1106% +Rate for instruction 8363: 17.11% +Rate for instruction 8364: 17.1125% +Rate for instruction 8365: 17.1137% +Rate for instruction 8366: 17.1144% +Rate for instruction 8367: 17.1174% +Rate for instruction 8368: 17.1181% +Rate for instruction 8369: 17.1225% +Rate for instruction 8370: 17.1269% +Rate for instruction 8371: 17.1258% +Rate for instruction 8372: 17.1246% +Rate for instruction 8373: 17.1249% +Rate for instruction 8374: 17.1242% +Rate for instruction 8375: 17.1236% +Rate for instruction 8376: 17.1238% +Rate for instruction 8377: 17.1222% +Rate for instruction 8378: 17.122% +Rate for instruction 8379: 17.1218% +Rate for instruction 8380: 17.1207% +Rate for instruction 8381: 17.12% +Rate for instruction 8382: 17.1184% +Rate for instruction 8383: 17.1187% +Rate for instruction 8384: 17.1176% +Rate for instruction 8385: 17.1169% +Rate for instruction 8386: 17.1153% +Rate for instruction 8387: 17.1151% +Rate for instruction 8388: 17.114% +Rate for instruction 8389: 17.1133% +Rate for instruction 8390: 17.1127% +Rate for instruction 8391: 17.1115% +Rate for instruction 8392: 17.1118% +Rate for instruction 8393: 17.1148% +Rate for instruction 8394: 17.1132% +Rate for instruction 8395: 17.1153% +Rate for instruction 8396: 17.1174% +Rate for instruction 8397: 17.1195% +Rate for instruction 8398: 17.1215% +Rate for instruction 8399: 17.1227% +Rate for instruction 8400: 17.1243% +Rate for instruction 8401: 17.1246% +Rate for instruction 8402: 17.1262% +Rate for instruction 8403: 17.1265% +Rate for instruction 8404: 17.1249% +Rate for instruction 8405: 17.1238% +Rate for instruction 8406: 17.1226% +Rate for instruction 8407: 17.1211% +Rate for instruction 8408: 17.1199% +Rate for instruction 8409: 17.1184% +Rate for instruction 8410: 17.1182% +Rate for instruction 8411: 17.1175% +Rate for instruction 8412: 17.1159% +Rate for instruction 8413: 17.1143% +Rate for instruction 8414: 17.1137% +Rate for instruction 8415: 17.1153% +Rate for instruction 8416: 17.1169% +Rate for instruction 8417: 17.1153% +Rate for instruction 8418: 17.1142% +Rate for instruction 8419: 17.1136% +Rate for instruction 8420: 17.1124% +Rate for instruction 8421: 17.1127% +Rate for instruction 8422: 17.1116% +Rate for instruction 8423: 17.1127% +Rate for instruction 8424: 17.1121% +Rate for instruction 8425: 17.1123% +Rate for instruction 8426: 17.1117% +Rate for instruction 8427: 17.1115% +Rate for instruction 8428: 17.1117% +Rate for instruction 8429: 17.1111% +Rate for instruction 8430: 17.1099% +Rate for instruction 8431: 17.1088% +Rate for instruction 8432: 17.1072% +Rate for instruction 8433: 17.107% +Rate for instruction 8434: 17.1055% +Rate for instruction 8435: 17.1044% +Rate for instruction 8436: 17.1032% +Rate for instruction 8437: 17.1021% +Rate for instruction 8438: 17.1037% +Rate for instruction 8439: 17.1063% +Rate for instruction 8440: 17.1079% +Rate for instruction 8441: 17.1068% +Rate for instruction 8442: 17.1066% +Rate for instruction 8443: 17.1059% +Rate for instruction 8444: 17.1048% +Rate for instruction 8445: 17.1046% +Rate for instruction 8446: 17.1048% +Rate for instruction 8447: 17.1065% +Rate for instruction 8448: 17.1049% +Rate for instruction 8449: 17.1033% +Rate for instruction 8450: 17.1022% +Rate for instruction 8451: 17.102% +Rate for instruction 8452: 17.1013% +Rate for instruction 8453: 17.1002% +Rate for instruction 8454: 17.1028% +Rate for instruction 8455: 17.1012% +Rate for instruction 8456: 17.1042% +Rate for instruction 8457: 17.1031% +Rate for instruction 8458: 17.1051% +Rate for instruction 8459: 17.1077% +Rate for instruction 8460: 17.1088% +Rate for instruction 8461: 17.1095% +Rate for instruction 8462: 17.1098% +Rate for instruction 8463: 17.11% +Rate for instruction 8464: 17.1112% +Rate for instruction 8465: 17.1137% +Rate for instruction 8466: 17.1167% +Rate for instruction 8467: 17.1151% +Rate for instruction 8468: 17.1149% +Rate for instruction 8469: 17.1156% +Rate for instruction 8470: 17.1145% +Rate for instruction 8471: 17.1161% +Rate for instruction 8472: 17.1145% +Rate for instruction 8473: 17.1152% +Rate for instruction 8474: 17.116% +Rate for instruction 8475: 17.1144% +Rate for instruction 8476: 17.1155% +Rate for instruction 8477: 17.114% +Rate for instruction 8478: 17.1138% +Rate for instruction 8479: 17.1158% +Rate for instruction 8480: 17.1165% +Rate for instruction 8481: 17.115% +Rate for instruction 8482: 17.1143% +Rate for instruction 8483: 17.1146% +Rate for instruction 8484: 17.1135% +Rate for instruction 8485: 17.1119% +Rate for instruction 8486: 17.1153% +Rate for instruction 8487: 17.1192% +Rate for instruction 8488: 17.1213% +Rate for instruction 8489: 17.1224% +Rate for instruction 8490: 17.124% +Rate for instruction 8491: 17.1243% +Rate for instruction 8492: 17.1245% +Rate for instruction 8493: 17.1248% +Rate for instruction 8494: 17.1232% +Rate for instruction 8495: 17.123% +Rate for instruction 8496: 17.1228% +Rate for instruction 8497: 17.1212% +Rate for instruction 8498: 17.121% +Rate for instruction 8499: 17.1204% +Rate for instruction 8500: 17.1188% +Rate for instruction 8501: 17.1172% +Rate for instruction 8502: 17.1175% +Rate for instruction 8503: 17.1177% +Rate for instruction 8504: 17.1166% +Rate for instruction 8505: 17.1169% +Rate for instruction 8506: 17.1176% +Rate for instruction 8507: 17.1165% +Rate for instruction 8508: 17.1154% +Rate for instruction 8509: 17.1143% +Rate for instruction 8510: 17.1136% +Rate for instruction 8511: 17.1125% +Rate for instruction 8512: 17.1114% +Rate for instruction 8513: 17.1121% +Rate for instruction 8514: 17.1128% +Rate for instruction 8515: 17.1135% +Rate for instruction 8516: 17.1124% +Rate for instruction 8517: 17.1149% +Rate for instruction 8518: 17.1183% +Rate for instruction 8519: 17.1217% +Rate for instruction 8520: 17.1224% +Rate for instruction 8521: 17.1254% +Rate for instruction 8522: 17.1252% +Rate for instruction 8523: 17.124% +Rate for instruction 8524: 17.1247% +Rate for instruction 8525: 17.1268% +Rate for instruction 8526: 17.1279% +Rate for instruction 8527: 17.1264% +Rate for instruction 8528: 17.1298% +Rate for instruction 8529: 17.1305% +Rate for instruction 8530: 17.1294% +Rate for instruction 8531: 17.1278% +Rate for instruction 8532: 17.1272% +Rate for instruction 8533: 17.1256% +Rate for instruction 8534: 17.1245% +Rate for instruction 8535: 17.123% +Rate for instruction 8536: 17.1228% +Rate for instruction 8537: 17.1225% +Rate for instruction 8538: 17.121% +Rate for instruction 8539: 17.1203% +Rate for instruction 8540: 17.1201% +Rate for instruction 8541: 17.1195% +Rate for instruction 8542: 17.1179% +Rate for instruction 8543: 17.1164% +Rate for instruction 8544: 17.1171% +Rate for instruction 8545: 17.1178% +Rate for instruction 8546: 17.1171% +Rate for instruction 8547: 17.1174% +Rate for instruction 8548: 17.1167% +Rate for instruction 8549: 17.1161% +Rate for instruction 8550: 17.1154% +Rate for instruction 8551: 17.1152% +Rate for instruction 8552: 17.1146% +Rate for instruction 8553: 17.1139% +Rate for instruction 8554: 17.1141% +Rate for instruction 8555: 17.1126% +Rate for instruction 8556: 17.111% +Rate for instruction 8557: 17.1108% +Rate for instruction 8558: 17.1106% +Rate for instruction 8559: 17.1104% +Rate for instruction 8560: 17.1102% +Rate for instruction 8561: 17.1105% +Rate for instruction 8562: 17.1094% +Rate for instruction 8563: 17.1083% +Rate for instruction 8564: 17.1076% +Rate for instruction 8565: 17.1065% +Rate for instruction 8566: 17.1054% +Rate for instruction 8567: 17.1039% +Rate for instruction 8568: 17.1037% +Rate for instruction 8569: 17.1035% +Rate for instruction 8570: 17.1042% +Rate for instruction 8571: 17.1026% +Rate for instruction 8572: 17.1051% +Rate for instruction 8573: 17.1076% +Rate for instruction 8574: 17.1065% +Rate for instruction 8575: 17.1054% +Rate for instruction 8576: 17.107% +Rate for instruction 8577: 17.1073% +Rate for instruction 8578: 17.1089% +Rate for instruction 8579: 17.1073% +Rate for instruction 8580: 17.1085% +Rate for instruction 8581: 17.1092% +Rate for instruction 8582: 17.1076% +Rate for instruction 8583: 17.1061% +Rate for instruction 8584: 17.1054% +Rate for instruction 8585: 17.1057% +Rate for instruction 8586: 17.1046% +Rate for instruction 8587: 17.1062% +Rate for instruction 8588: 17.1073% +Rate for instruction 8589: 17.1062% +Rate for instruction 8590: 17.1051% +Rate for instruction 8591: 17.104% +Rate for instruction 8592: 17.1029% +Rate for instruction 8593: 17.1027% +Rate for instruction 8594: 17.1012% +Rate for instruction 8595: 17.1005% +Rate for instruction 8596: 17.099% +Rate for instruction 8597: 17.0997% +Rate for instruction 8598: 17.0986% +Rate for instruction 8599: 17.0984% +Rate for instruction 8600: 17.0968% +Rate for instruction 8601: 17.0962% +Rate for instruction 8602: 17.0978% +Rate for instruction 8603: 17.0963% +Rate for instruction 8604: 17.0978% +Rate for instruction 8605: 17.1003% +Rate for instruction 8606: 17.1024% +Rate for instruction 8607: 17.1062% +Rate for instruction 8608: 17.11% +Rate for instruction 8609: 17.1111% +Rate for instruction 8610: 17.1118% +Rate for instruction 8611: 17.1116% +Rate for instruction 8612: 17.1123% +Rate for instruction 8613: 17.1117% +Rate for instruction 8614: 17.111% +Rate for instruction 8615: 17.1099% +Rate for instruction 8616: 17.1084% +Rate for instruction 8617: 17.1095% +Rate for instruction 8618: 17.1107% +Rate for instruction 8619: 17.1114% +Rate for instruction 8620: 17.1116% +Rate for instruction 8621: 17.1123% +Rate for instruction 8622: 17.1143% +Rate for instruction 8623: 17.1168% +Rate for instruction 8624: 17.1193% +Rate for instruction 8625: 17.1222% +Rate for instruction 8626: 17.1242% +Rate for instruction 8627: 17.1254% +Rate for instruction 8628: 17.1287% +Rate for instruction 8629: 17.1276% +Rate for instruction 8630: 17.1288% +Rate for instruction 8631: 17.1308% +Rate for instruction 8632: 17.1315% +Rate for instruction 8633: 17.1313% +Rate for instruction 8634: 17.132% +Rate for instruction 8635: 17.1309% +Rate for instruction 8636: 17.1293% +Rate for instruction 8637: 17.1309% +Rate for instruction 8638: 17.1325% +Rate for instruction 8639: 17.1341% +Rate for instruction 8640: 17.1365% +Rate for instruction 8641: 17.1368% +Rate for instruction 8642: 17.1375% +Rate for instruction 8643: 17.1382% +Rate for instruction 8644: 17.1402% +Rate for instruction 8645: 17.14% +Rate for instruction 8646: 17.1411% +Rate for instruction 8647: 17.1418% +Rate for instruction 8648: 17.1403% +Rate for instruction 8649: 17.1418% +Rate for instruction 8650: 17.1439% +Rate for instruction 8651: 17.1441% +Rate for instruction 8652: 17.1448% +Rate for instruction 8653: 17.1455% +Rate for instruction 8654: 17.1444% +Rate for instruction 8655: 17.1464% +Rate for instruction 8656: 17.1462% +Rate for instruction 8657: 17.1482% +Rate for instruction 8658: 17.1502% +Rate for instruction 8659: 17.1536% +Rate for instruction 8660: 17.1552% +Rate for instruction 8661: 17.1541% +Rate for instruction 8662: 17.1552% +Rate for instruction 8663: 17.1568% +Rate for instruction 8664: 17.1566% +Rate for instruction 8665: 17.1563% +Rate for instruction 8666: 17.1548% +Rate for instruction 8667: 17.1537% +Rate for instruction 8668: 17.1522% +Rate for instruction 8669: 17.1529% +Rate for instruction 8670: 17.1513% +Rate for instruction 8671: 17.1502% +Rate for instruction 8672: 17.1487% +Rate for instruction 8673: 17.1485% +Rate for instruction 8674: 17.1487% +Rate for instruction 8675: 17.1477% +Rate for instruction 8676: 17.147% +Rate for instruction 8677: 17.1459% +Rate for instruction 8678: 17.1448% +Rate for instruction 8679: 17.1433% +Rate for instruction 8680: 17.1422% +Rate for instruction 8681: 17.1425% +Rate for instruction 8682: 17.1418% +Rate for instruction 8683: 17.1407% +Rate for instruction 8684: 17.1418% +Rate for instruction 8685: 17.1439% +Rate for instruction 8686: 17.1441% +Rate for instruction 8687: 17.1448% +Rate for instruction 8688: 17.1446% +Rate for instruction 8689: 17.1448% +Rate for instruction 8690: 17.1433% +Rate for instruction 8691: 17.1422% +Rate for instruction 8692: 17.1424% +Rate for instruction 8693: 17.1409% +Rate for instruction 8694: 17.1394% +Rate for instruction 8695: 17.1392% +Rate for instruction 8696: 17.1381% +Rate for instruction 8697: 17.1383% +Rate for instruction 8698: 17.1408% +Rate for instruction 8699: 17.1424% +Rate for instruction 8700: 17.1417% +Rate for instruction 8701: 17.1424% +Rate for instruction 8702: 17.1409% +Rate for instruction 8703: 17.142% +Rate for instruction 8704: 17.1431% +Rate for instruction 8705: 17.1438% +Rate for instruction 8706: 17.1445% +Rate for instruction 8707: 17.1429% +Rate for instruction 8708: 17.1419% +Rate for instruction 8709: 17.1403% +Rate for instruction 8710: 17.1406% +Rate for instruction 8711: 17.1417% +Rate for instruction 8712: 17.1424% +Rate for instruction 8713: 17.1422% +Rate for instruction 8714: 17.1429% +Rate for instruction 8715: 17.144% +Rate for instruction 8716: 17.1451% +Rate for instruction 8717: 17.1436% +Rate for instruction 8718: 17.1434% +Rate for instruction 8719: 17.1467% +Rate for instruction 8720: 17.1483% +Rate for instruction 8721: 17.1481% +Rate for instruction 8722: 17.1474% +Rate for instruction 8723: 17.1485% +Rate for instruction 8724: 17.1475% +Rate for instruction 8725: 17.1473% +Rate for instruction 8726: 17.1493% +Rate for instruction 8727: 17.1526% +Rate for instruction 8728: 17.1511% +Rate for instruction 8729: 17.15% +Rate for instruction 8730: 17.1498% +Rate for instruction 8731: 17.15% +Rate for instruction 8732: 17.1498% +Rate for instruction 8733: 17.1522% +Rate for instruction 8734: 17.1534% +Rate for instruction 8735: 17.1549% +Rate for instruction 8736: 17.1574% +Rate for instruction 8737: 17.1589% +Rate for instruction 8738: 17.1609% +Rate for instruction 8739: 17.1603% +Rate for instruction 8740: 17.1587% +Rate for instruction 8741: 17.1603% +Rate for instruction 8742: 17.1619% +Rate for instruction 8743: 17.1603% +Rate for instruction 8744: 17.161% +Rate for instruction 8745: 17.1621% +Rate for instruction 8746: 17.1606% +Rate for instruction 8747: 17.1626% +Rate for instruction 8748: 17.1672% +Rate for instruction 8749: 17.1701% +Rate for instruction 8750: 17.1721% +Rate for instruction 8751: 17.1706% +Rate for instruction 8752: 17.1699% +Rate for instruction 8753: 17.1684% +Rate for instruction 8754: 17.1678% +Rate for instruction 8755: 17.1671% +Rate for instruction 8756: 17.1656% +Rate for instruction 8757: 17.1641% +Rate for instruction 8758: 17.163% +Rate for instruction 8759: 17.1619% +Rate for instruction 8760: 17.163% +Rate for instruction 8761: 17.162% +Rate for instruction 8762: 17.1618% +Rate for instruction 8763: 17.1616% +Rate for instruction 8764: 17.1609% +Rate for instruction 8765: 17.1594% +Rate for instruction 8766: 17.1592% +Rate for instruction 8767: 17.1581% +Rate for instruction 8768: 17.1597% +Rate for instruction 8769: 17.1586% +Rate for instruction 8770: 17.1614% +Rate for instruction 8771: 17.163% +Rate for instruction 8772: 17.1628% +Rate for instruction 8773: 17.1661% +Rate for instruction 8774: 17.1681% +Rate for instruction 8775: 17.171% +Rate for instruction 8776: 17.1708% +Rate for instruction 8777: 17.1697% +Rate for instruction 8778: 17.1699% +Rate for instruction 8779: 17.171% +Rate for instruction 8780: 17.1695% +Rate for instruction 8781: 17.168% +Rate for instruction 8782: 17.1691% +Rate for instruction 8783: 17.1676% +Rate for instruction 8784: 17.1665% +Rate for instruction 8785: 17.165% +Rate for instruction 8786: 17.1657% +Rate for instruction 8787: 17.1646% +Rate for instruction 8788: 17.1648% +Rate for instruction 8789: 17.1659% +Rate for instruction 8790: 17.1653% +Rate for instruction 8791: 17.166% +Rate for instruction 8792: 17.1649% +Rate for instruction 8793: 17.1655% +Rate for instruction 8794: 17.1645% +Rate for instruction 8795: 17.163% +Rate for instruction 8796: 17.1628% +Rate for instruction 8797: 17.1617% +Rate for instruction 8798: 17.1602% +Rate for instruction 8799: 17.1591% +Rate for instruction 8800: 17.1589% +Rate for instruction 8801: 17.1578% +Rate for instruction 8802: 17.1563% +Rate for instruction 8803: 17.1561% +Rate for instruction 8804: 17.1568% +Rate for instruction 8805: 17.157% +Rate for instruction 8806: 17.1572% +Rate for instruction 8807: 17.1557% +Rate for instruction 8808: 17.156% +Rate for instruction 8809: 17.1553% +Rate for instruction 8810: 17.1543% +Rate for instruction 8811: 17.1536% +Rate for instruction 8812: 17.153% +Rate for instruction 8813: 17.1537% +Rate for instruction 8814: 17.1535% +Rate for instruction 8815: 17.1537% +Rate for instruction 8816: 17.1522% +Rate for instruction 8817: 17.152% +Rate for instruction 8818: 17.1505% +Rate for instruction 8819: 17.1507% +Rate for instruction 8820: 17.1505% +Rate for instruction 8821: 17.1512% +Rate for instruction 8822: 17.1497% +Rate for instruction 8823: 17.1495% +Rate for instruction 8824: 17.1484% +Rate for instruction 8825: 17.1473% +Rate for instruction 8826: 17.1463% +Rate for instruction 8827: 17.1465% +Rate for instruction 8828: 17.1454% +Rate for instruction 8829: 17.1444% +Rate for instruction 8830: 17.1437% +Rate for instruction 8831: 17.1466% +Rate for instruction 8832: 17.149% +Rate for instruction 8833: 17.1501% +Rate for instruction 8834: 17.1486% +Rate for instruction 8835: 17.1479% +Rate for instruction 8836: 17.1482% +Rate for instruction 8837: 17.1515% +Rate for instruction 8838: 17.1521% +Rate for instruction 8839: 17.1541% +Rate for instruction 8840: 17.1556% +Rate for instruction 8841: 17.1554% +Rate for instruction 8842: 17.1587% +Rate for instruction 8843: 17.1577% +Rate for instruction 8844: 17.1583% +Rate for instruction 8845: 17.1573% +Rate for instruction 8846: 17.1562% +Rate for instruction 8847: 17.1551% +Rate for instruction 8848: 17.1545% +Rate for instruction 8849: 17.153% +Rate for instruction 8850: 17.1532% +Rate for instruction 8851: 17.1521% +Rate for instruction 8852: 17.1511% +Rate for instruction 8853: 17.153% +Rate for instruction 8854: 17.1533% +Rate for instruction 8855: 17.1526% +Rate for instruction 8856: 17.1524% +Rate for instruction 8857: 17.1527% +Rate for instruction 8858: 17.1516% +Rate for instruction 8859: 17.1505% +Rate for instruction 8860: 17.149% +Rate for instruction 8861: 17.148% +Rate for instruction 8862: 17.1465% +Rate for instruction 8863: 17.1467% +Rate for instruction 8864: 17.1474% +Rate for instruction 8865: 17.1459% +Rate for instruction 8866: 17.1483% +Rate for instruction 8867: 17.1468% +Rate for instruction 8868: 17.1488% +Rate for instruction 8869: 17.1507% +Rate for instruction 8870: 17.1514% +Rate for instruction 8871: 17.1534% +Rate for instruction 8872: 17.1558% +Rate for instruction 8873: 17.1547% +Rate for instruction 8874: 17.1567% +Rate for instruction 8875: 17.1552% +Rate for instruction 8876: 17.1554% +Rate for instruction 8877: 17.1543% +Rate for instruction 8878: 17.1537% +Rate for instruction 8879: 17.1522% +Rate for instruction 8880: 17.152% +Rate for instruction 8881: 17.1514% +Rate for instruction 8882: 17.1512% +Rate for instruction 8883: 17.1501% +Rate for instruction 8884: 17.149% +Rate for instruction 8885: 17.1488% +Rate for instruction 8886: 17.1482% +Rate for instruction 8887: 17.1484% +Rate for instruction 8888: 17.1487% +Rate for instruction 8889: 17.148% +Rate for instruction 8890: 17.1474% +Rate for instruction 8891: 17.1464% +Rate for instruction 8892: 17.1475% +Rate for instruction 8893: 17.146% +Rate for instruction 8894: 17.1471% +Rate for instruction 8895: 17.1486% +Rate for instruction 8896: 17.1488% +Rate for instruction 8897: 17.1473% +Rate for instruction 8898: 17.1476% +Rate for instruction 8899: 17.1491% +Rate for instruction 8900: 17.1493% +Rate for instruction 8901: 17.1517% +Rate for instruction 8902: 17.1507% +Rate for instruction 8903: 17.1535% +Rate for instruction 8904: 17.1537% +Rate for instruction 8905: 17.1539% +Rate for instruction 8906: 17.155% +Rate for instruction 8907: 17.1561% +Rate for instruction 8908: 17.1568% +Rate for instruction 8909: 17.1557% +Rate for instruction 8910: 17.1543% +Rate for instruction 8911: 17.1532% +Rate for instruction 8912: 17.1526% +Rate for instruction 8913: 17.1511% +Rate for instruction 8914: 17.15% +Rate for instruction 8915: 17.1502% +Rate for instruction 8916: 17.15% +Rate for instruction 8917: 17.1503% +Rate for instruction 8918: 17.1496% +Rate for instruction 8919: 17.1494% +Rate for instruction 8920: 17.1493% +Rate for instruction 8921: 17.1482% +Rate for instruction 8922: 17.1484% +Rate for instruction 8923: 17.1487% +Rate for instruction 8924: 17.1472% +Rate for instruction 8925: 17.1478% +Rate for instruction 8926: 17.1472% +Rate for instruction 8927: 17.1457% +Rate for instruction 8928: 17.1455% +Rate for instruction 8929: 17.144% +Rate for instruction 8930: 17.1473% +Rate for instruction 8931: 17.1462% +Rate for instruction 8932: 17.1447% +Rate for instruction 8933: 17.1475% +Rate for instruction 8934: 17.1465% +Rate for instruction 8935: 17.1489% +Rate for instruction 8936: 17.1474% +Rate for instruction 8937: 17.1468% +Rate for instruction 8938: 17.1457% +Rate for instruction 8939: 17.1481% +Rate for instruction 8940: 17.1479% +Rate for instruction 8941: 17.1468% +Rate for instruction 8942: 17.1488% +Rate for instruction 8943: 17.152% +Rate for instruction 8944: 17.151% +Rate for instruction 8945: 17.1503% +Rate for instruction 8946: 17.1493% +Rate for instruction 8947: 17.1487% +Rate for instruction 8948: 17.1476% +Rate for instruction 8949: 17.1478% +Rate for instruction 8950: 17.1463% +Rate for instruction 8951: 17.1474% +Rate for instruction 8952: 17.1485% +Rate for instruction 8953: 17.147% +Rate for instruction 8954: 17.146% +Rate for instruction 8955: 17.1449% +Rate for instruction 8956: 17.1456% +Rate for instruction 8957: 17.1463% +Rate for instruction 8958: 17.1478% +Rate for instruction 8959: 17.1484% +Rate for instruction 8960: 17.147% +Rate for instruction 8961: 17.1455% +Rate for instruction 8962: 17.144% +Rate for instruction 8963: 17.1438% +Rate for instruction 8964: 17.1423% +Rate for instruction 8965: 17.1421% +Rate for instruction 8966: 17.1419% +Rate for instruction 8967: 17.1417% +Rate for instruction 8968: 17.1407% +Rate for instruction 8969: 17.14% +Rate for instruction 8970: 17.139% +Rate for instruction 8971: 17.1405% +Rate for instruction 8972: 17.1437% +Rate for instruction 8973: 17.1461% +Rate for instruction 8974: 17.1468% +Rate for instruction 8975: 17.1453% +Rate for instruction 8976: 17.1442% +Rate for instruction 8977: 17.1453% +Rate for instruction 8978: 17.1456% +Rate for instruction 8979: 17.1458% +Rate for instruction 8980: 17.146% +Rate for instruction 8981: 17.1488% +Rate for instruction 8982: 17.1482% +Rate for instruction 8983: 17.148% +Rate for instruction 8984: 17.1495% +Rate for instruction 8985: 17.1506% +Rate for instruction 8986: 17.1526% +Rate for instruction 8987: 17.1549% +Rate for instruction 8988: 17.156% +Rate for instruction 8989: 17.1558% +Rate for instruction 8990: 17.1548% +Rate for instruction 8991: 17.1541% +Rate for instruction 8992: 17.1531% +Rate for instruction 8993: 17.1516% +Rate for instruction 8994: 17.1531% +Rate for instruction 8995: 17.1521% +Rate for instruction 8996: 17.154% +Rate for instruction 8997: 17.1534% +Rate for instruction 8998: 17.1549% +Rate for instruction 8999: 17.1556% +Rate for instruction 9000: 17.1549% +Rate for instruction 9001: 17.1556% +Rate for instruction 9002: 17.1567% +Rate for instruction 9003: 17.1556% +Rate for instruction 9004: 17.1546% +Rate for instruction 9005: 17.1561% +Rate for instruction 9006: 17.155% +Rate for instruction 9007: 17.1574% +Rate for instruction 9008: 17.1563% +Rate for instruction 9009: 17.1583% +Rate for instruction 9010: 17.1568% +Rate for instruction 9011: 17.1583% +Rate for instruction 9012: 17.1568% +Rate for instruction 9013: 17.1579% +Rate for instruction 9014: 17.1569% +Rate for instruction 9015: 17.1597% +Rate for instruction 9016: 17.1616% +Rate for instruction 9017: 17.1601% +Rate for instruction 9018: 17.1591% +Rate for instruction 9019: 17.1576% +Rate for instruction 9020: 17.1578% +Rate for instruction 9021: 17.1589% +Rate for instruction 9022: 17.1591% +Rate for instruction 9023: 17.1602% +Rate for instruction 9024: 17.1613% +Rate for instruction 9025: 17.162% +Rate for instruction 9026: 17.1635% +Rate for instruction 9027: 17.1641% +Rate for instruction 9028: 17.1631% +Rate for instruction 9029: 17.1642% +Rate for instruction 9030: 17.1631% +Rate for instruction 9031: 17.165% +Rate for instruction 9032: 17.1678% +Rate for instruction 9033: 17.1663% +Rate for instruction 9034: 17.1653% +Rate for instruction 9035: 17.1638% +Rate for instruction 9036: 17.1653% +Rate for instruction 9037: 17.1673% +Rate for instruction 9038: 17.1658% +Rate for instruction 9039: 17.1669% +Rate for instruction 9040: 17.1696% +Rate for instruction 9041: 17.169% +Rate for instruction 9042: 17.1688% +Rate for instruction 9043: 17.1686% +Rate for instruction 9044: 17.1684% +Rate for instruction 9045: 17.1678% +Rate for instruction 9046: 17.1706% +Rate for instruction 9047: 17.1721% +Rate for instruction 9048: 17.171% +Rate for instruction 9049: 17.1696% +Rate for instruction 9050: 17.1694% +Rate for instruction 9051: 17.1679% +Rate for instruction 9052: 17.1669% +Rate for instruction 9053: 17.1654% +Rate for instruction 9054: 17.1639% +Rate for instruction 9055: 17.1624% +Rate for instruction 9056: 17.1622% +Rate for instruction 9057: 17.1612% +Rate for instruction 9058: 17.1602% +Rate for instruction 9059: 17.1621% +Rate for instruction 9060: 17.164% +Rate for instruction 9061: 17.1668% +Rate for instruction 9062: 17.1674% +Rate for instruction 9063: 17.1685% +Rate for instruction 9064: 17.1692% +Rate for instruction 9065: 17.1685% +Rate for instruction 9066: 17.1688% +Rate for instruction 9067: 17.1681% +Rate for instruction 9068: 17.168% +Rate for instruction 9069: 17.1686% +Rate for instruction 9070: 17.1671% +Rate for instruction 9071: 17.1674% +Rate for instruction 9072: 17.1667% +Rate for instruction 9073: 17.1674% +Rate for instruction 9074: 17.1663% +Rate for instruction 9075: 17.1649% +Rate for instruction 9076: 17.1655% +Rate for instruction 9077: 17.1666% +Rate for instruction 9078: 17.1681% +Rate for instruction 9079: 17.1683% +Rate for instruction 9080: 17.1698% +Rate for instruction 9081: 17.1692% +Rate for instruction 9082: 17.1682% +Rate for instruction 9083: 17.1684% +Rate for instruction 9084: 17.1678% +Rate for instruction 9085: 17.1676% +Rate for instruction 9086: 17.1678% +Rate for instruction 9087: 17.168% +Rate for instruction 9088: 17.1683% +Rate for instruction 9089: 17.1676% +Rate for instruction 9090: 17.1683% +Rate for instruction 9091: 17.1698% +Rate for instruction 9092: 17.1704% +Rate for instruction 9093: 17.1702% +Rate for instruction 9094: 17.1696% +Rate for instruction 9095: 17.1686% +Rate for instruction 9096: 17.1701% +Rate for instruction 9097: 17.1707% +Rate for instruction 9098: 17.1697% +Rate for instruction 9099: 17.1703% +Rate for instruction 9100: 17.1689% +Rate for instruction 9101: 17.1695% +Rate for instruction 9102: 17.1702% +Rate for instruction 9103: 17.1687% +Rate for instruction 9104: 17.1689% +Rate for instruction 9105: 17.1675% +Rate for instruction 9106: 17.1664% +Rate for instruction 9107: 17.165% +Rate for instruction 9108: 17.1635% +Rate for instruction 9109: 17.1625% +Rate for instruction 9110: 17.161% +Rate for instruction 9111: 17.1625% +Rate for instruction 9112: 17.1652% +Rate for instruction 9113: 17.1642% +Rate for instruction 9114: 17.1627% +Rate for instruction 9115: 17.1621% +Rate for instruction 9116: 17.1607% +Rate for instruction 9117: 17.1592% +Rate for instruction 9118: 17.1615% +Rate for instruction 9119: 17.1605% +Rate for instruction 9120: 17.1595% +Rate for instruction 9121: 17.158% +Rate for instruction 9122: 17.1578% +Rate for instruction 9123: 17.1572% +Rate for instruction 9124: 17.1566% +Rate for instruction 9125: 17.1581% +Rate for instruction 9126: 17.1579% +Rate for instruction 9127: 17.1577% +Rate for instruction 9128: 17.1588% +Rate for instruction 9129: 17.1581% +Rate for instruction 9130: 17.1579% +Rate for instruction 9131: 17.1569% +Rate for instruction 9132: 17.1555% +Rate for instruction 9133: 17.1574% +Rate for instruction 9134: 17.1589% +Rate for instruction 9135: 17.1595% +Rate for instruction 9136: 17.1597% +Rate for instruction 9137: 17.1583% +Rate for instruction 9138: 17.1568% +Rate for instruction 9139: 17.1562% +Rate for instruction 9140: 17.1577% +Rate for instruction 9141: 17.1567% +Rate for instruction 9142: 17.1573% +Rate for instruction 9143: 17.1563% +Rate for instruction 9144: 17.1573% +Rate for instruction 9145: 17.1559% +Rate for instruction 9146: 17.1548% +Rate for instruction 9147: 17.1542% +Rate for instruction 9148: 17.154% +Rate for instruction 9149: 17.1543% +Rate for instruction 9150: 17.1553% +Rate for instruction 9151: 17.1564% +Rate for instruction 9152: 17.1562% +Rate for instruction 9153: 17.1569% +Rate for instruction 9154: 17.1583% +Rate for instruction 9155: 17.1577% +Rate for instruction 9156: 17.1571% +Rate for instruction 9157: 17.159% +Rate for instruction 9158: 17.1609% +Rate for instruction 9159: 17.162% +Rate for instruction 9160: 17.1618% +Rate for instruction 9161: 17.1633% +Rate for instruction 9162: 17.1627% +Rate for instruction 9163: 17.1625% +Rate for instruction 9164: 17.164% +Rate for instruction 9165: 17.1659% +Rate for instruction 9166: 17.1686% +Rate for instruction 9167: 17.1676% +Rate for instruction 9168: 17.1686% +Rate for instruction 9169: 17.1689% +Rate for instruction 9170: 17.1674% +Rate for instruction 9171: 17.1689% +Rate for instruction 9172: 17.1712% +Rate for instruction 9173: 17.1698% +Rate for instruction 9174: 17.1687% +Rate for instruction 9175: 17.1706% +Rate for instruction 9176: 17.1713% +Rate for instruction 9177: 17.1711% +Rate for instruction 9178: 17.1734% +Rate for instruction 9179: 17.1736% +Rate for instruction 9180: 17.1722% +Rate for instruction 9181: 17.1724% +Rate for instruction 9182: 17.173% +Rate for instruction 9183: 17.1733% +Rate for instruction 9184: 17.1735% +Rate for instruction 9185: 17.175% +Rate for instruction 9186: 17.1773% +Rate for instruction 9187: 17.1775% +Rate for instruction 9188: 17.1773% +Rate for instruction 9189: 17.1763% +Rate for instruction 9190: 17.1752% +Rate for instruction 9191: 17.1742% +Rate for instruction 9192: 17.1736% +Rate for instruction 9193: 17.1742% +Rate for instruction 9194: 17.174% +Rate for instruction 9195: 17.173% +Rate for instruction 9196: 17.1732% +Rate for instruction 9197: 17.1718% +Rate for instruction 9198: 17.1712% +Rate for instruction 9199: 17.1702% +Rate for instruction 9200: 17.1716% +Rate for instruction 9201: 17.1723% +Rate for instruction 9202: 17.1725% +Rate for instruction 9203: 17.1736% +Rate for instruction 9204: 17.1746% +Rate for instruction 9205: 17.1744% +Rate for instruction 9206: 17.1763% +Rate for instruction 9207: 17.1774% +Rate for instruction 9208: 17.178% +Rate for instruction 9209: 17.1778% +Rate for instruction 9210: 17.178% +Rate for instruction 9211: 17.1804% +Rate for instruction 9212: 17.1818% +Rate for instruction 9213: 17.1812% +Rate for instruction 9214: 17.1798% +Rate for instruction 9215: 17.1808% +Rate for instruction 9216: 17.181% +Rate for instruction 9217: 17.1809% +Rate for instruction 9218: 17.1815% +Rate for instruction 9219: 17.1825% +Rate for instruction 9220: 17.1832% +Rate for instruction 9221: 17.1817% +Rate for instruction 9222: 17.1828% +Rate for instruction 9223: 17.1843% +Rate for instruction 9224: 17.1841% +Rate for instruction 9225: 17.1855% +Rate for instruction 9226: 17.1849% +Rate for instruction 9227: 17.1843% +Rate for instruction 9228: 17.1833% +Rate for instruction 9229: 17.1843% +Rate for instruction 9230: 17.185% +Rate for instruction 9231: 17.1848% +Rate for instruction 9232: 17.1838% +Rate for instruction 9233: 17.1827% +Rate for instruction 9234: 17.1842% +Rate for instruction 9235: 17.1832% +Rate for instruction 9236: 17.1822% +Rate for instruction 9237: 17.1832% +Rate for instruction 9238: 17.1855% +Rate for instruction 9239: 17.1861% +Rate for instruction 9240: 17.1847% +Rate for instruction 9241: 17.1845% +Rate for instruction 9242: 17.1835% +Rate for instruction 9243: 17.1841% +Rate for instruction 9244: 17.1856% +Rate for instruction 9245: 17.1841% +Rate for instruction 9246: 17.1856% +Rate for instruction 9247: 17.1842% +Rate for instruction 9248: 17.1852% +Rate for instruction 9249: 17.1871% +Rate for instruction 9250: 17.1886% +Rate for instruction 9251: 17.1905% +Rate for instruction 9252: 17.1923% +Rate for instruction 9253: 17.1917% +Rate for instruction 9254: 17.1936% +Rate for instruction 9255: 17.1947% +Rate for instruction 9256: 17.1932% +Rate for instruction 9257: 17.193% +Rate for instruction 9258: 17.1937% +Rate for instruction 9259: 17.1922% +Rate for instruction 9260: 17.1949% +Rate for instruction 9261: 17.196% +Rate for instruction 9262: 17.1954% +Rate for instruction 9263: 17.1981% +Rate for instruction 9264: 17.2004% +Rate for instruction 9265: 17.1994% +Rate for instruction 9266: 17.1992% +Rate for instruction 9267: 17.199% +Rate for instruction 9268: 17.1988% +Rate for instruction 9269: 17.1994% +Rate for instruction 9270: 17.2009% +Rate for instruction 9271: 17.2003% +Rate for instruction 9272: 17.1988% +Rate for instruction 9273: 17.1978% +Rate for instruction 9274: 17.1964% +Rate for instruction 9275: 17.1953% +Rate for instruction 9276: 17.1964% +Rate for instruction 9277: 17.1954% +Rate for instruction 9278: 17.1939% +Rate for instruction 9279: 17.1929% +Rate for instruction 9280: 17.1914% +Rate for instruction 9281: 17.1904% +Rate for instruction 9282: 17.1919% +Rate for instruction 9283: 17.1929% +Rate for instruction 9284: 17.1915% +Rate for instruction 9285: 17.1921% +Rate for instruction 9286: 17.1936% +Rate for instruction 9287: 17.1934% +Rate for instruction 9288: 17.1924% +Rate for instruction 9289: 17.1909% +Rate for instruction 9290: 17.192% +Rate for instruction 9291: 17.1922% +Rate for instruction 9292: 17.1928% +Rate for instruction 9293: 17.1922% +Rate for instruction 9294: 17.1912% +Rate for instruction 9295: 17.1935% +Rate for instruction 9296: 17.1954% +Rate for instruction 9297: 17.1939% +Rate for instruction 9298: 17.1937% +Rate for instruction 9299: 17.1948% +Rate for instruction 9300: 17.1942% +Rate for instruction 9301: 17.194% +Rate for instruction 9302: 17.1954% +Rate for instruction 9303: 17.1973% +Rate for instruction 9304: 17.1967% +Rate for instruction 9305: 17.1965% +Rate for instruction 9306: 17.1971% +Rate for instruction 9307: 17.1994% +Rate for instruction 9308: 17.1996% +Rate for instruction 9309: 17.1995% +Rate for instruction 9310: 17.1988% +Rate for instruction 9311: 17.1982% +Rate for instruction 9312: 17.1985% +Rate for instruction 9313: 17.1991% +Rate for instruction 9314: 17.201% +Rate for instruction 9315: 17.2032% +Rate for instruction 9316: 17.2055% +Rate for instruction 9317: 17.2045% +Rate for instruction 9318: 17.2035% +Rate for instruction 9319: 17.2037% +Rate for instruction 9320: 17.2023% +Rate for instruction 9321: 17.2021% +Rate for instruction 9322: 17.2019% +Rate for instruction 9323: 17.2017% +Rate for instruction 9324: 17.2002% +Rate for instruction 9325: 17.2021% +Rate for instruction 9326: 17.2015% +Rate for instruction 9327: 17.2034% +Rate for instruction 9328: 17.2048% +Rate for instruction 9329: 17.2034% +Rate for instruction 9330: 17.2049% +Rate for instruction 9331: 17.2038% +Rate for instruction 9332: 17.2045% +Rate for instruction 9333: 17.2047% +Rate for instruction 9334: 17.2061% +Rate for instruction 9335: 17.2047% +Rate for instruction 9336: 17.2037% +Rate for instruction 9337: 17.2023% +Rate for instruction 9338: 17.2037% +Rate for instruction 9339: 17.2027% +Rate for instruction 9340: 17.2045% +Rate for instruction 9341: 17.2081% +Rate for instruction 9342: 17.2083% +Rate for instruction 9343: 17.2093% +Rate for instruction 9344: 17.2108% +Rate for instruction 9345: 17.211% +Rate for instruction 9346: 17.2124% +Rate for instruction 9347: 17.2118% +Rate for instruction 9348: 17.212% +Rate for instruction 9349: 17.2131% +Rate for instruction 9350: 17.2133% +Rate for instruction 9351: 17.2123% +Rate for instruction 9352: 17.2129% +Rate for instruction 9353: 17.2131% +Rate for instruction 9354: 17.2129% +Rate for instruction 9355: 17.2148% +Rate for instruction 9356: 17.2154% +Rate for instruction 9357: 17.216% +Rate for instruction 9358: 17.2154% +Rate for instruction 9359: 17.2161% +Rate for instruction 9360: 17.2183% +Rate for instruction 9361: 17.219% +Rate for instruction 9362: 17.2179% +Rate for instruction 9363: 17.2165% +Rate for instruction 9364: 17.2167% +Rate for instruction 9365: 17.2157% +Rate for instruction 9366: 17.2151% +Rate for instruction 9367: 17.217% +Rate for instruction 9368: 17.218% +Rate for instruction 9369: 17.2178% +Rate for instruction 9370: 17.2197% +Rate for instruction 9371: 17.2223% +Rate for instruction 9372: 17.2246% +Rate for instruction 9373: 17.2256% +Rate for instruction 9374: 17.2254% +Rate for instruction 9375: 17.2265% +Rate for instruction 9376: 17.2255% +Rate for instruction 9377: 17.2248% +Rate for instruction 9378: 17.2255% +Rate for instruction 9379: 17.2261% +Rate for instruction 9380: 17.2259% +Rate for instruction 9381: 17.2286% +Rate for instruction 9382: 17.2304% +Rate for instruction 9383: 17.2331% +Rate for instruction 9384: 17.2333% +Rate for instruction 9385: 17.2319% +Rate for instruction 9386: 17.2329% +Rate for instruction 9387: 17.2315% +Rate for instruction 9388: 17.2305% +Rate for instruction 9389: 17.229% +Rate for instruction 9390: 17.2301% +Rate for instruction 9391: 17.2303% +Rate for instruction 9392: 17.2313% +Rate for instruction 9393: 17.2311% +Rate for instruction 9394: 17.233% +Rate for instruction 9395: 17.2344% +Rate for instruction 9396: 17.2375% +Rate for instruction 9397: 17.2377% +Rate for instruction 9398: 17.2383% +Rate for instruction 9399: 17.2394% +Rate for instruction 9400: 17.2392% +Rate for instruction 9401: 17.2386% +Rate for instruction 9402: 17.2404% +Rate for instruction 9403: 17.241% +Rate for instruction 9404: 17.2408% +Rate for instruction 9405: 17.2402% +Rate for instruction 9406: 17.24% +Rate for instruction 9407: 17.2402% +Rate for instruction 9408: 17.24% +Rate for instruction 9409: 17.2407% +Rate for instruction 9410: 17.2417% +Rate for instruction 9411: 17.2407% +Rate for instruction 9412: 17.2393% +Rate for instruction 9413: 17.2391% +Rate for instruction 9414: 17.2389% +Rate for instruction 9415: 17.2383% +Rate for instruction 9416: 17.2397% +Rate for instruction 9417: 17.2403% +Rate for instruction 9418: 17.2442% +Rate for instruction 9419: 17.2456% +Rate for instruction 9420: 17.2467% +Rate for instruction 9421: 17.2452% +Rate for instruction 9422: 17.2463% +Rate for instruction 9423: 17.2481% +Rate for instruction 9424: 17.2487% +Rate for instruction 9425: 17.2502% +Rate for instruction 9426: 17.2504% +Rate for instruction 9427: 17.2494% +Rate for instruction 9428: 17.2479% +Rate for instruction 9429: 17.2498% +Rate for instruction 9430: 17.2512% +Rate for instruction 9431: 17.251% +Rate for instruction 9432: 17.2496% +Rate for instruction 9433: 17.249% +Rate for instruction 9434: 17.2496% +Rate for instruction 9435: 17.2506% +Rate for instruction 9436: 17.2508% +Rate for instruction 9437: 17.2515% +Rate for instruction 9438: 17.2513% +Rate for instruction 9439: 17.2527% +Rate for instruction 9440: 17.2553% +Rate for instruction 9441: 17.2556% +Rate for instruction 9442: 17.2558% +Rate for instruction 9443: 17.2576% +Rate for instruction 9444: 17.2582% +Rate for instruction 9445: 17.2588% +Rate for instruction 9446: 17.259% +Rate for instruction 9447: 17.2584% +Rate for instruction 9448: 17.2595% +Rate for instruction 9449: 17.2597% +Rate for instruction 9450: 17.2603% +Rate for instruction 9451: 17.2589% +Rate for instruction 9452: 17.2607% +Rate for instruction 9453: 17.2597% +Rate for instruction 9454: 17.2591% +Rate for instruction 9455: 17.2597% +Rate for instruction 9456: 17.2595% +Rate for instruction 9457: 17.2605% +Rate for instruction 9458: 17.2591% +Rate for instruction 9459: 17.2613% +Rate for instruction 9460: 17.2624% +Rate for instruction 9461: 17.263% +Rate for instruction 9462: 17.2628% +Rate for instruction 9463: 17.2614% +Rate for instruction 9464: 17.2616% +Rate for instruction 9465: 17.2602% +Rate for instruction 9466: 17.2624% +Rate for instruction 9467: 17.261% +Rate for instruction 9468: 17.2608% +Rate for instruction 9469: 17.2598% +Rate for instruction 9470: 17.2596% +Rate for instruction 9471: 17.2598% +Rate for instruction 9472: 17.2608% +Rate for instruction 9473: 17.2618% +Rate for instruction 9474: 17.262% +Rate for instruction 9475: 17.2622% +Rate for instruction 9476: 17.2628% +Rate for instruction 9477: 17.2635% +Rate for instruction 9478: 17.2661% +Rate for instruction 9479: 17.2675% +Rate for instruction 9480: 17.2681% +Rate for instruction 9481: 17.2692% +Rate for instruction 9482: 17.269% +Rate for instruction 9483: 17.27% +Rate for instruction 9484: 17.2714% +Rate for instruction 9485: 17.2724% +Rate for instruction 9486: 17.2742% +Rate for instruction 9487: 17.2749% +Rate for instruction 9488: 17.2734% +Rate for instruction 9489: 17.2741% +Rate for instruction 9490: 17.2734% +Rate for instruction 9491: 17.2745% +Rate for instruction 9492: 17.2755% +Rate for instruction 9493: 17.2769% +Rate for instruction 9494: 17.2779% +Rate for instruction 9495: 17.2777% +Rate for instruction 9496: 17.2775% +Rate for instruction 9497: 17.2761% +Rate for instruction 9498: 17.2779% +Rate for instruction 9499: 17.2802% +Rate for instruction 9500: 17.2824% +Rate for instruction 9501: 17.2842% +Rate for instruction 9502: 17.2828% +Rate for instruction 9503: 17.285% +Rate for instruction 9504: 17.2856% +Rate for instruction 9505: 17.2871% +Rate for instruction 9506: 17.2865% +Rate for instruction 9507: 17.2867% +Rate for instruction 9508: 17.2873% +Rate for instruction 9509: 17.2879% +Rate for instruction 9510: 17.2893% +Rate for instruction 9511: 17.2903% +Rate for instruction 9512: 17.2937% +Rate for instruction 9513: 17.2956% +Rate for instruction 9514: 17.2986% +Rate for instruction 9515: 17.298% +Rate for instruction 9516: 17.3002% +Rate for instruction 9517: 17.3028% +Rate for instruction 9518: 17.3018% +Rate for instruction 9519: 17.3012% +Rate for instruction 9520: 17.3026% +Rate for instruction 9521: 17.3016% +Rate for instruction 9522: 17.3014% +Rate for instruction 9523: 17.3008% +Rate for instruction 9524: 17.2994% +Rate for instruction 9525: 17.3004% +Rate for instruction 9526: 17.3026% +Rate for instruction 9527: 17.3037% +Rate for instruction 9528: 17.3043% +Rate for instruction 9529: 17.3033% +Rate for instruction 9530: 17.3055% +Rate for instruction 9531: 17.3069% +Rate for instruction 9532: 17.3099% +Rate for instruction 9533: 17.3105% +Rate for instruction 9534: 17.3127% +Rate for instruction 9535: 17.3117% +Rate for instruction 9536: 17.3107% +Rate for instruction 9537: 17.3113% +Rate for instruction 9538: 17.3119% +Rate for instruction 9539: 17.3125% +Rate for instruction 9540: 17.3115% +Rate for instruction 9541: 17.3113% +Rate for instruction 9542: 17.3119% +Rate for instruction 9543: 17.3141% +Rate for instruction 9544: 17.3131% +Rate for instruction 9545: 17.3117% +Rate for instruction 9546: 17.3111% +Rate for instruction 9547: 17.3121% +Rate for instruction 9548: 17.3147% +Rate for instruction 9549: 17.3153% +Rate for instruction 9550: 17.3164% +Rate for instruction 9551: 17.3174% +Rate for instruction 9552: 17.3184% +Rate for instruction 9553: 17.3198% +Rate for instruction 9554: 17.3208% +Rate for instruction 9555: 17.3222% +Rate for instruction 9556: 17.3216% +Rate for instruction 9557: 17.3218% +Rate for instruction 9558: 17.3212% +Rate for instruction 9559: 17.3222% +Rate for instruction 9560: 17.3212% +Rate for instruction 9561: 17.321% +Rate for instruction 9562: 17.3204% +Rate for instruction 9563: 17.3222% +Rate for instruction 9564: 17.3248% +Rate for instruction 9565: 17.3242% +Rate for instruction 9566: 17.3232% +Rate for instruction 9567: 17.3238% +Rate for instruction 9568: 17.3252% +Rate for instruction 9569: 17.3238% +Rate for instruction 9570: 17.3228% +Rate for instruction 9571: 17.3234% +Rate for instruction 9572: 17.3252% +Rate for instruction 9573: 17.3238% +Rate for instruction 9574: 17.3244% +Rate for instruction 9575: 17.3234% +Rate for instruction 9576: 17.3256% +Rate for instruction 9577: 17.3242% +Rate for instruction 9578: 17.3236% +Rate for instruction 9579: 17.3225% +Rate for instruction 9580: 17.3244% +Rate for instruction 9581: 17.3246% +Rate for instruction 9582: 17.326% +Rate for instruction 9583: 17.3258% +Rate for instruction 9584: 17.3264% +Rate for instruction 9585: 17.3274% +Rate for instruction 9586: 17.3288% +Rate for instruction 9587: 17.329% +Rate for instruction 9588: 17.3292% +Rate for instruction 9589: 17.3281% +Rate for instruction 9590: 17.3283% +Rate for instruction 9591: 17.3273% +Rate for instruction 9592: 17.3279% +Rate for instruction 9593: 17.3273% +Rate for instruction 9594: 17.3271% +Rate for instruction 9595: 17.3265% +Rate for instruction 9596: 17.3275% +Rate for instruction 9597: 17.3285% +Rate for instruction 9598: 17.3291% +Rate for instruction 9599: 17.3313% +Rate for instruction 9600: 17.3323% +Rate for instruction 9601: 17.3337% +Rate for instruction 9602: 17.3343% +Rate for instruction 9603: 17.3345% +Rate for instruction 9604: 17.3355% +Rate for instruction 9605: 17.3365% +Rate for instruction 9606: 17.3359% +Rate for instruction 9607: 17.3377% +Rate for instruction 9608: 17.3387% +Rate for instruction 9609: 17.3405% +Rate for instruction 9610: 17.3395% +Rate for instruction 9611: 17.3401% +Rate for instruction 9612: 17.3395% +Rate for instruction 9613: 17.3385% +Rate for instruction 9614: 17.3383% +Rate for instruction 9615: 17.3381% +Rate for instruction 9616: 17.3379% +Rate for instruction 9617: 17.3373% +Rate for instruction 9618: 17.3375% +Rate for instruction 9619: 17.3381% +Rate for instruction 9620: 17.3399% +Rate for instruction 9621: 17.3389% +Rate for instruction 9622: 17.3403% +Rate for instruction 9623: 17.3429% +Rate for instruction 9624: 17.3415% +Rate for instruction 9625: 17.3433% +Rate for instruction 9626: 17.3438% +Rate for instruction 9627: 17.3436% +Rate for instruction 9628: 17.3422% +Rate for instruction 9629: 17.3432% +Rate for instruction 9630: 17.343% +Rate for instruction 9631: 17.3416% +Rate for instruction 9632: 17.3426% +Rate for instruction 9633: 17.3448% +Rate for instruction 9634: 17.3434% +Rate for instruction 9635: 17.3448% +Rate for instruction 9636: 17.3438% +Rate for instruction 9637: 17.3452% +Rate for instruction 9638: 17.3466% +Rate for instruction 9639: 17.3472% +Rate for instruction 9640: 17.349% +Rate for instruction 9641: 17.3508% +Rate for instruction 9642: 17.3526% +Rate for instruction 9643: 17.3528% +Rate for instruction 9644: 17.3534% +Rate for instruction 9645: 17.3531% +Rate for instruction 9646: 17.3521% +Rate for instruction 9647: 17.3535% +Rate for instruction 9648: 17.3545% +Rate for instruction 9649: 17.3547% +Rate for instruction 9650: 17.3553% +Rate for instruction 9651: 17.3563% +Rate for instruction 9652: 17.3553% +Rate for instruction 9653: 17.3559% +Rate for instruction 9654: 17.3545% +Rate for instruction 9655: 17.3543% +Rate for instruction 9656: 17.3541% +Rate for instruction 9657: 17.3543% +Rate for instruction 9658: 17.3529% +Rate for instruction 9659: 17.3519% +Rate for instruction 9660: 17.3505% +Rate for instruction 9661: 17.3503% +Rate for instruction 9662: 17.3513% +Rate for instruction 9663: 17.3527% +Rate for instruction 9664: 17.3552% +Rate for instruction 9665: 17.3542% +Rate for instruction 9666: 17.3544% +Rate for instruction 9667: 17.353% +Rate for instruction 9668: 17.352% +Rate for instruction 9669: 17.3522% +Rate for instruction 9670: 17.3512% +Rate for instruction 9671: 17.3526% +Rate for instruction 9672: 17.3524% +Rate for instruction 9673: 17.355% +Rate for instruction 9674: 17.3576% +Rate for instruction 9675: 17.3582% +Rate for instruction 9676: 17.3568% +Rate for instruction 9677: 17.357% +Rate for instruction 9678: 17.3572% +Rate for instruction 9679: 17.3562% +Rate for instruction 9680: 17.3568% +Rate for instruction 9681: 17.3577% +Rate for instruction 9682: 17.3587% +Rate for instruction 9683: 17.3601% +Rate for instruction 9684: 17.3595% +Rate for instruction 9685: 17.3589% +Rate for instruction 9686: 17.3583% +Rate for instruction 9687: 17.3589% +Rate for instruction 9688: 17.3611% +Rate for instruction 9689: 17.3625% +Rate for instruction 9690: 17.3611% +Rate for instruction 9691: 17.3625% +Rate for instruction 9692: 17.365% +Rate for instruction 9693: 17.3668% +Rate for instruction 9694: 17.3674% +Rate for instruction 9695: 17.3704% +Rate for instruction 9696: 17.3714% +Rate for instruction 9697: 17.3727% +Rate for instruction 9698: 17.3753% +Rate for instruction 9699: 17.3767% +Rate for instruction 9700: 17.3773% +Rate for instruction 9701: 17.3759% +Rate for instruction 9702: 17.3777% +Rate for instruction 9703: 17.3774% +Rate for instruction 9704: 17.3776% +Rate for instruction 9705: 17.377% +Rate for instruction 9706: 17.3756% +Rate for instruction 9707: 17.377% +Rate for instruction 9708: 17.3796% +Rate for instruction 9709: 17.3798% +Rate for instruction 9710: 17.3796% +Rate for instruction 9711: 17.3794% +Rate for instruction 9712: 17.3811% +Rate for instruction 9713: 17.3833% +Rate for instruction 9714: 17.3847% +Rate for instruction 9715: 17.3841% +Rate for instruction 9716: 17.3839% +Rate for instruction 9717: 17.3849% +Rate for instruction 9718: 17.3847% +Rate for instruction 9719: 17.3845% +Rate for instruction 9720: 17.385% +Rate for instruction 9721: 17.3837% +Rate for instruction 9722: 17.3834% +Rate for instruction 9723: 17.3832% +Rate for instruction 9724: 17.3846% +Rate for instruction 9725: 17.386% +Rate for instruction 9726: 17.3874% +Rate for instruction 9727: 17.3864% +Rate for instruction 9728: 17.3862% +Rate for instruction 9729: 17.3867% +Rate for instruction 9730: 17.3869% +Rate for instruction 9731: 17.3859% +Rate for instruction 9732: 17.3869% +Rate for instruction 9733: 17.3863% +Rate for instruction 9734: 17.3869% +Rate for instruction 9735: 17.3867% +Rate for instruction 9736: 17.3881% +Rate for instruction 9737: 17.3887% +Rate for instruction 9738: 17.3892% +Rate for instruction 9739: 17.3922% +Rate for instruction 9740: 17.3948% +Rate for instruction 9741: 17.3945% +Rate for instruction 9742: 17.3963% +Rate for instruction 9743: 17.3981% +Rate for instruction 9744: 17.3991% +Rate for instruction 9745: 17.3981% +Rate for instruction 9746: 17.3986% +Rate for instruction 9747: 17.3992% +Rate for instruction 9748: 17.4002% +Rate for instruction 9749: 17.3996% +Rate for instruction 9750: 17.3998% +Rate for instruction 9751: 17.3992% +Rate for instruction 9752: 17.4021% +Rate for instruction 9753: 17.4008% +Rate for instruction 9754: 17.4033% +Rate for instruction 9755: 17.4023% +Rate for instruction 9756: 17.4009% +Rate for instruction 9757: 17.3999% +Rate for instruction 9758: 17.3997% +Rate for instruction 9759: 17.3987% +Rate for instruction 9760: 17.3997% +Rate for instruction 9761: 17.4011% +Rate for instruction 9762: 17.4016% +Rate for instruction 9763: 17.401% +Rate for instruction 9764: 17.4016% +Rate for instruction 9765: 17.4006% +Rate for instruction 9766: 17.4016% +Rate for instruction 9767: 17.403% +Rate for instruction 9768: 17.4024% +Rate for instruction 9769: 17.4041% +Rate for instruction 9770: 17.4051% +Rate for instruction 9771: 17.4061% +Rate for instruction 9772: 17.4063% +Rate for instruction 9773: 17.4073% +Rate for instruction 9774: 17.4078% +Rate for instruction 9775: 17.4076% +Rate for instruction 9776: 17.4098% +Rate for instruction 9777: 17.4084% +Rate for instruction 9778: 17.4086% +Rate for instruction 9779: 17.4095% +Rate for instruction 9780: 17.4113% +Rate for instruction 9781: 17.4107% +Rate for instruction 9782: 17.4125% +Rate for instruction 9783: 17.4142% +Rate for instruction 9784: 17.4128% +Rate for instruction 9785: 17.413% +Rate for instruction 9786: 17.4116% +Rate for instruction 9787: 17.4126% +Rate for instruction 9788: 17.4132% +Rate for instruction 9789: 17.4146% +Rate for instruction 9790: 17.4163% +Rate for instruction 9791: 17.4173% +Rate for instruction 9792: 17.4183% +Rate for instruction 9793: 17.4188% +Rate for instruction 9794: 17.419% +Rate for instruction 9795: 17.418% +Rate for instruction 9796: 17.4178% +Rate for instruction 9797: 17.4204% +Rate for instruction 9798: 17.4194% +Rate for instruction 9799: 17.418% +Rate for instruction 9800: 17.4178% +Rate for instruction 9801: 17.4187% +Rate for instruction 9802: 17.4213% +Rate for instruction 9803: 17.4226% +Rate for instruction 9804: 17.424% +Rate for instruction 9805: 17.425% +Rate for instruction 9806: 17.4275% +Rate for instruction 9807: 17.4296% +Rate for instruction 9808: 17.429% +Rate for instruction 9809: 17.43% +Rate for instruction 9810: 17.4306% +Rate for instruction 9811: 17.432% +Rate for instruction 9812: 17.4317% +Rate for instruction 9813: 17.4327% +Rate for instruction 9814: 17.4333% +Rate for instruction 9815: 17.4331% +Rate for instruction 9816: 17.4317% +Rate for instruction 9817: 17.4331% +Rate for instruction 9818: 17.4325% +Rate for instruction 9819: 17.4346% +Rate for instruction 9820: 17.4332% +Rate for instruction 9821: 17.4357% +Rate for instruction 9822: 17.4355% +Rate for instruction 9823: 17.4345% +Rate for instruction 9824: 17.4371% +Rate for instruction 9825: 17.438% +Rate for instruction 9826: 17.4386% +Rate for instruction 9827: 17.4384% +Rate for instruction 9828: 17.4401% +Rate for instruction 9829: 17.4392% +Rate for instruction 9830: 17.4413% +Rate for instruction 9831: 17.4434% +Rate for instruction 9832: 17.4424% +Rate for instruction 9833: 17.4446% +Rate for instruction 9834: 17.4432% +Rate for instruction 9835: 17.4446% +Rate for instruction 9836: 17.4467% +Rate for instruction 9837: 17.4461% +Rate for instruction 9838: 17.4447% +Rate for instruction 9839: 17.4468% +Rate for instruction 9840: 17.4455% +Rate for instruction 9841: 17.4476% +Rate for instruction 9842: 17.4497% +Rate for instruction 9843: 17.4519% +Rate for instruction 9844: 17.4544% +Rate for instruction 9845: 17.4554% +Rate for instruction 9846: 17.454% +Rate for instruction 9847: 17.4534% +Rate for instruction 9848: 17.4535% +Rate for instruction 9849: 17.4541% +Rate for instruction 9850: 17.4527% +Rate for instruction 9851: 17.4517% +Rate for instruction 9852: 17.4504% +Rate for instruction 9853: 17.4521% +Rate for instruction 9854: 17.4511% +Rate for instruction 9855: 17.454% +Rate for instruction 9856: 17.4546% +Rate for instruction 9857: 17.4536% +Rate for instruction 9858: 17.4542% +Rate for instruction 9859: 17.4536% +Rate for instruction 9860: 17.4545% +Rate for instruction 9861: 17.4559% +Rate for instruction 9862: 17.4549% +Rate for instruction 9863: 17.4559% +Rate for instruction 9864: 17.4549% +Rate for instruction 9865: 17.4558% +Rate for instruction 9866: 17.4552% +Rate for instruction 9867: 17.455% +Rate for instruction 9868: 17.4548% +Rate for instruction 9869: 17.4546% +Rate for instruction 9870: 17.4532% +Rate for instruction 9871: 17.4534% +Rate for instruction 9872: 17.454% +Rate for instruction 9873: 17.4538% +Rate for instruction 9874: 17.4536% +Rate for instruction 9875: 17.4537% +Rate for instruction 9876: 17.4543% +Rate for instruction 9877: 17.4529% +Rate for instruction 9878: 17.4535% +Rate for instruction 9879: 17.4533% +Rate for instruction 9880: 17.455% +Rate for instruction 9881: 17.4571% +Rate for instruction 9882: 17.4565% +Rate for instruction 9883: 17.456% +Rate for instruction 9884: 17.4557% +Rate for instruction 9885: 17.4579% +Rate for instruction 9886: 17.4588% +Rate for instruction 9887: 17.4582% +Rate for instruction 9888: 17.4596% +Rate for instruction 9889: 17.4586% +Rate for instruction 9890: 17.4595% +Rate for instruction 9891: 17.4582% +Rate for instruction 9892: 17.4599% +Rate for instruction 9893: 17.4589% +Rate for instruction 9894: 17.4606% +Rate for instruction 9895: 17.4608% +Rate for instruction 9896: 17.4622% +Rate for instruction 9897: 17.4612% +Rate for instruction 9898: 17.4617% +Rate for instruction 9899: 17.4627% +Rate for instruction 9900: 17.4629% +Rate for instruction 9901: 17.4631% +Rate for instruction 9902: 17.4629% +Rate for instruction 9903: 17.4626% +Rate for instruction 9904: 17.462% +Rate for instruction 9905: 17.4618% +Rate for instruction 9906: 17.462% +Rate for instruction 9907: 17.4614% +Rate for instruction 9908: 17.4624% +Rate for instruction 9909: 17.4622% +Rate for instruction 9910: 17.4627% +Rate for instruction 9911: 17.4621% +Rate for instruction 9912: 17.4608% +Rate for instruction 9913: 17.4617% +Rate for instruction 9914: 17.4607% +Rate for instruction 9915: 17.4632% +Rate for instruction 9916: 17.4642% +Rate for instruction 9917: 17.4636% +Rate for instruction 9918: 17.4638% +Rate for instruction 9919: 17.4647% +Rate for instruction 9920: 17.4657% +Rate for instruction 9921: 17.4651% +Rate for instruction 9922: 17.4668% +Rate for instruction 9923: 17.467% +Rate for instruction 9924: 17.4668% +Rate for instruction 9925: 17.4685% +Rate for instruction 9926: 17.4698% +Rate for instruction 9927: 17.472% +Rate for instruction 9928: 17.4717% +Rate for instruction 9929: 17.4719% +Rate for instruction 9930: 17.4713% +Rate for instruction 9931: 17.4727% +Rate for instruction 9932: 17.4744% +Rate for instruction 9933: 17.4765% +Rate for instruction 9934: 17.4782% +Rate for instruction 9935: 17.4796% +Rate for instruction 9936: 17.4805% +Rate for instruction 9937: 17.4799% +Rate for instruction 9938: 17.4801% +Rate for instruction 9939: 17.4795% +Rate for instruction 9940: 17.4804% +Rate for instruction 9941: 17.4818% +Rate for instruction 9942: 17.4827% +Rate for instruction 9943: 17.4817% +Rate for instruction 9944: 17.4827% +Rate for instruction 9945: 17.4825% +Rate for instruction 9946: 17.485% +Rate for instruction 9947: 17.4855% +Rate for instruction 9948: 17.4876% +Rate for instruction 9949: 17.4886% +Rate for instruction 9950: 17.4903% +Rate for instruction 9951: 17.4924% +Rate for instruction 9952: 17.4914% +Rate for instruction 9953: 17.4932% +Rate for instruction 9954: 17.4953% +Rate for instruction 9955: 17.4939% +Rate for instruction 9956: 17.4952% +Rate for instruction 9957: 17.4939% +Rate for instruction 9958: 17.4952% +Rate for instruction 9959: 17.4958% +Rate for instruction 9960: 17.4982% +Rate for instruction 9961: 17.5% +Rate for instruction 9962: 17.5013% +Rate for instruction 9963: 17.5022% +Rate for instruction 9964: 17.504% +Rate for instruction 9965: 17.5034% +Rate for instruction 9966: 17.5028% +Rate for instruction 9967: 17.5014% +Rate for instruction 9968: 17.5016% +Rate for instruction 9969: 17.5029% +Rate for instruction 9970: 17.5023% +Rate for instruction 9971: 17.5036% +Rate for instruction 9972: 17.5038% +Rate for instruction 9973: 17.5055% +Rate for instruction 9974: 17.5057% +Rate for instruction 9975: 17.5066% +Rate for instruction 9976: 17.5056% +Rate for instruction 9977: 17.505% +Rate for instruction 9978: 17.5048% +Rate for instruction 9979: 17.5039% +Rate for instruction 9980: 17.5036% +Rate for instruction 9981: 17.5023% +Rate for instruction 9982: 17.5013% +Rate for instruction 9983: 17.503% +Rate for instruction 9984: 17.5024% +Rate for instruction 9985: 17.5026% +Rate for instruction 9986: 17.5039% +Rate for instruction 9987: 17.5025% +Rate for instruction 9988: 17.5054% +Rate for instruction 9989: 17.5044% +Rate for instruction 9990: 17.5069% +Rate for instruction 9991: 17.5098% +Rate for instruction 9992: 17.5123% +Rate for instruction 9993: 17.5136% +Rate for instruction 9994: 17.5149% +Rate for instruction 9995: 17.5147% +Rate for instruction 9996: 17.5133% +Rate for instruction 9997: 17.5158% +Rate for instruction 9998: 17.5156% +Rate for instruction 9999: 17.5142% +Rate for instruction 10000: 17.5167% +Rate for instruction 10001: 17.5165% +Rate for instruction 10002: 17.5159% +Rate for instruction 10003: 17.5149% +Rate for instruction 10004: 17.5139% +Rate for instruction 10005: 17.513% +Rate for instruction 10006: 17.5127% +Rate for instruction 10007: 17.5152% +Rate for instruction 10008: 17.5169% +Rate for instruction 10009: 17.5183% +Rate for instruction 10010: 17.518% +Rate for instruction 10011: 17.5205% +Rate for instruction 10012: 17.5222% +Rate for instruction 10013: 17.5212% +Rate for instruction 10014: 17.5226% +Rate for instruction 10015: 17.5235% +Rate for instruction 10016: 17.5237% +Rate for instruction 10017: 17.5231% +Rate for instruction 10018: 17.524% +Rate for instruction 10019: 17.5226% +Rate for instruction 10020: 17.5232% +Rate for instruction 10021: 17.5234% +Rate for instruction 10022: 17.522% +Rate for instruction 10023: 17.5233% +Rate for instruction 10024: 17.5223% +Rate for instruction 10025: 17.5221% +Rate for instruction 10026: 17.5212% +Rate for instruction 10027: 17.5213% +Rate for instruction 10028: 17.5215% +Rate for instruction 10029: 17.5205% +Rate for instruction 10030: 17.5241% +Rate for instruction 10031: 17.5251% +Rate for instruction 10032: 17.5237% +Rate for instruction 10033: 17.5243% +Rate for instruction 10034: 17.5244% +Rate for instruction 10035: 17.5231% +Rate for instruction 10036: 17.5236% +Rate for instruction 10037: 17.5257% +Rate for instruction 10038: 17.5243% +Rate for instruction 10039: 17.5238% +Rate for instruction 10040: 17.5232% +Rate for instruction 10041: 17.5226% +Rate for instruction 10042: 17.522% +Rate for instruction 10043: 17.5233% +Rate for instruction 10044: 17.525% +Rate for instruction 10045: 17.5236% +Rate for instruction 10046: 17.5223% +Rate for instruction 10047: 17.5236% +Rate for instruction 10048: 17.5222% +Rate for instruction 10049: 17.5243% +Rate for instruction 10050: 17.5229% +Rate for instruction 10051: 17.5243% +Rate for instruction 10052: 17.526% +Rate for instruction 10053: 17.5273% +Rate for instruction 10054: 17.5278% +Rate for instruction 10055: 17.5295% +Rate for instruction 10056: 17.5297% +Rate for instruction 10057: 17.5299% +Rate for instruction 10058: 17.5308% +Rate for instruction 10059: 17.5294% +Rate for instruction 10060: 17.5281% +Rate for instruction 10061: 17.5267% +Rate for instruction 10062: 17.5257% +Rate for instruction 10063: 17.5255% +Rate for instruction 10064: 17.5268% +Rate for instruction 10065: 17.5274% +Rate for instruction 10066: 17.5299% +Rate for instruction 10067: 17.5304% +Rate for instruction 10068: 17.5313% +Rate for instruction 10069: 17.5304% +Rate for instruction 10070: 17.5321% +Rate for instruction 10071: 17.5326% +Rate for instruction 10072: 17.5313% +Rate for instruction 10073: 17.5307% +Rate for instruction 10074: 17.5304% +Rate for instruction 10075: 17.5314% +Rate for instruction 10076: 17.5323% +Rate for instruction 10077: 17.5332% +Rate for instruction 10078: 17.5319% +Rate for instruction 10079: 17.5309% +Rate for instruction 10080: 17.5303% +Rate for instruction 10081: 17.5309% +Rate for instruction 10082: 17.5318% +Rate for instruction 10083: 17.5327% +Rate for instruction 10084: 17.534% +Rate for instruction 10085: 17.5334% +Rate for instruction 10086: 17.5344% +Rate for instruction 10087: 17.5368% +Rate for instruction 10088: 17.5359% +Rate for instruction 10089: 17.5383% +Rate for instruction 10090: 17.5381% +Rate for instruction 10091: 17.539% +Rate for instruction 10092: 17.5407% +Rate for instruction 10093: 17.5416% +Rate for instruction 10094: 17.5426% +Rate for instruction 10095: 17.545% +Rate for instruction 10096: 17.5471% +Rate for instruction 10097: 17.5465% +Rate for instruction 10098: 17.5463% +Rate for instruction 10099: 17.548% +Rate for instruction 10100: 17.547% +Rate for instruction 10101: 17.5472% +Rate for instruction 10102: 17.547% +Rate for instruction 10103: 17.549% +Rate for instruction 10104: 17.5511% +Rate for instruction 10105: 17.5532% +Rate for instruction 10106: 17.5518% +Rate for instruction 10107: 17.5539% +Rate for instruction 10108: 17.5563% +Rate for instruction 10109: 17.5557% +Rate for instruction 10110: 17.5544% +Rate for instruction 10111: 17.5572% +Rate for instruction 10112: 17.5589% +Rate for instruction 10113: 17.5575% +Rate for instruction 10114: 17.5592% +Rate for instruction 10115: 17.5605% +Rate for instruction 10116: 17.5618% +Rate for instruction 10117: 17.5609% +Rate for instruction 10118: 17.5599% +Rate for instruction 10119: 17.5589% +Rate for instruction 10120: 17.5587% +Rate for instruction 10121: 17.5573% +Rate for instruction 10122: 17.5579% +Rate for instruction 10123: 17.5588% +Rate for instruction 10124: 17.5586% +Rate for instruction 10125: 17.5603% +Rate for instruction 10126: 17.562% +Rate for instruction 10127: 17.561% +Rate for instruction 10128: 17.5627% +Rate for instruction 10129: 17.5617% +Rate for instruction 10130: 17.5611% +Rate for instruction 10131: 17.562% +Rate for instruction 10132: 17.5614% +Rate for instruction 10133: 17.5639% +Rate for instruction 10134: 17.5663% +Rate for instruction 10135: 17.5653% +Rate for instruction 10136: 17.5655% +Rate for instruction 10137: 17.5661% +Rate for instruction 10138: 17.5655% +Rate for instruction 10139: 17.5641% +Rate for instruction 10140: 17.5627% +Rate for instruction 10141: 17.5633% +Rate for instruction 10142: 17.5635% +Rate for instruction 10143: 17.5625% +Rate for instruction 10144: 17.5619% +Rate for instruction 10145: 17.5621% +Rate for instruction 10146: 17.5607% +Rate for instruction 10147: 17.5612% +Rate for instruction 10148: 17.5622% +Rate for instruction 10149: 17.5612% +Rate for instruction 10150: 17.5598% +Rate for instruction 10151: 17.5589% +Rate for instruction 10152: 17.5579% +Rate for instruction 10153: 17.5569% +Rate for instruction 10154: 17.5571% +Rate for instruction 10155: 17.5569% +Rate for instruction 10156: 17.5582% +Rate for instruction 10157: 17.558% +Rate for instruction 10158: 17.5585% +Rate for instruction 10159: 17.5575% +Rate for instruction 10160: 17.5569% +Rate for instruction 10161: 17.5564% +Rate for instruction 10162: 17.5558% +Rate for instruction 10163: 17.5563% +Rate for instruction 10164: 17.5553% +Rate for instruction 10165: 17.5559% +Rate for instruction 10166: 17.5576% +Rate for instruction 10167: 17.5585% +Rate for instruction 10168: 17.5575% +Rate for instruction 10169: 17.5569% +Rate for instruction 10170: 17.5582% +Rate for instruction 10171: 17.5595% +Rate for instruction 10172: 17.5616% +Rate for instruction 10173: 17.5629% +Rate for instruction 10174: 17.5653% +Rate for instruction 10175: 17.5643% +Rate for instruction 10176: 17.5641% +Rate for instruction 10177: 17.565% +Rate for instruction 10178: 17.5656% +Rate for instruction 10179: 17.565% +Rate for instruction 10180: 17.5644% +Rate for instruction 10181: 17.5653% +Rate for instruction 10182: 17.564% +Rate for instruction 10183: 17.5638% +Rate for instruction 10184: 17.5624% +Rate for instruction 10185: 17.5611% +Rate for instruction 10186: 17.5605% +Rate for instruction 10187: 17.5591% +Rate for instruction 10188: 17.5582% +Rate for instruction 10189: 17.5587% +Rate for instruction 10190: 17.5573% +Rate for instruction 10191: 17.5564% +Rate for instruction 10192: 17.555% +Rate for instruction 10193: 17.5544% +Rate for instruction 10194: 17.5531% +Rate for instruction 10195: 17.5521% +Rate for instruction 10196: 17.5508% +Rate for instruction 10197: 17.5506% +Rate for instruction 10198: 17.5492% +Rate for instruction 10199: 17.5479% +Rate for instruction 10200: 17.5473% +Rate for instruction 10201: 17.5467% +Rate for instruction 10202: 17.5454% +Rate for instruction 10203: 17.5448% +Rate for instruction 10204: 17.5453% +Rate for instruction 10205: 17.5447% +Rate for instruction 10206: 17.5445% +Rate for instruction 10207: 17.5432% +Rate for instruction 10208: 17.5445% +Rate for instruction 10209: 17.5443% +Rate for instruction 10210: 17.5444% +Rate for instruction 10211: 17.5431% +Rate for instruction 10212: 17.5421% +Rate for instruction 10213: 17.5412% +Rate for instruction 10214: 17.5421% +Rate for instruction 10215: 17.5441% +Rate for instruction 10216: 17.5458% +Rate for instruction 10217: 17.5448% +Rate for instruction 10218: 17.5454% +Rate for instruction 10219: 17.5467% +Rate for instruction 10220: 17.5476% +Rate for instruction 10221: 17.5496% +Rate for instruction 10222: 17.5505% +Rate for instruction 10223: 17.5515% +Rate for instruction 10224: 17.5528% +Rate for instruction 10225: 17.5552% +Rate for instruction 10226: 17.5538% +Rate for instruction 10227: 17.5529% +Rate for instruction 10228: 17.5519% +Rate for instruction 10229: 17.5528% +Rate for instruction 10230: 17.5541% +Rate for instruction 10231: 17.555% +Rate for instruction 10232: 17.5559% +Rate for instruction 10233: 17.5565% +Rate for instruction 10234: 17.5574% +Rate for instruction 10235: 17.5598% +Rate for instruction 10236: 17.56% +Rate for instruction 10237: 17.5586% +Rate for instruction 10238: 17.5573% +Rate for instruction 10239: 17.5582% +Rate for instruction 10240: 17.5591% +Rate for instruction 10241: 17.5582% +Rate for instruction 10242: 17.5595% +Rate for instruction 10243: 17.5596% +Rate for instruction 10244: 17.5602% +Rate for instruction 10245: 17.5603% +Rate for instruction 10246: 17.5605% +Rate for instruction 10247: 17.5606% +Rate for instruction 10248: 17.5608% +Rate for instruction 10249: 17.5621% +Rate for instruction 10250: 17.5626% +Rate for instruction 10251: 17.5613% +Rate for instruction 10252: 17.5603% +Rate for instruction 10253: 17.5624% +Rate for instruction 10254: 17.5618% +Rate for instruction 10255: 17.5631% +Rate for instruction 10256: 17.5632% +Rate for instruction 10257: 17.5623% +Rate for instruction 10258: 17.5628% +Rate for instruction 10259: 17.5626% +Rate for instruction 10260: 17.5635% +Rate for instruction 10261: 17.5629% +Rate for instruction 10262: 17.5631% +Rate for instruction 10263: 17.5636% +Rate for instruction 10264: 17.5645% +Rate for instruction 10265: 17.5677% +Rate for instruction 10266: 17.5705% +Rate for instruction 10267: 17.5691% +Rate for instruction 10268: 17.5682% +Rate for instruction 10269: 17.568% +Rate for instruction 10270: 17.5674% +Rate for instruction 10271: 17.566% +Rate for instruction 10272: 17.5647% +Rate for instruction 10273: 17.5667% +Rate for instruction 10274: 17.5677% +Rate for instruction 10275: 17.5663% +Rate for instruction 10276: 17.5654% +Rate for instruction 10277: 17.5666% +Rate for instruction 10278: 17.5683% +Rate for instruction 10279: 17.57% +Rate for instruction 10280: 17.5727% +Rate for instruction 10281: 17.5718% +Rate for instruction 10282: 17.5712% +Rate for instruction 10283: 17.5706% +Rate for instruction 10284: 17.5696% +Rate for instruction 10285: 17.5694% +Rate for instruction 10286: 17.5689% +Rate for instruction 10287: 17.569% +Rate for instruction 10288: 17.5695% +Rate for instruction 10289: 17.5693% +Rate for instruction 10290: 17.5684% +Rate for instruction 10291: 17.5689% +Rate for instruction 10292: 17.5691% +Rate for instruction 10293: 17.5681% +Rate for instruction 10294: 17.5672% +Rate for instruction 10295: 17.5662% +Rate for instruction 10296: 17.566% +Rate for instruction 10297: 17.5654% +Rate for instruction 10298: 17.5656% +Rate for instruction 10299: 17.565% +Rate for instruction 10300: 17.5655% +Rate for instruction 10301: 17.566% +Rate for instruction 10302: 17.567% +Rate for instruction 10303: 17.5667% +Rate for instruction 10304: 17.5676% +Rate for instruction 10305: 17.5674% +Rate for instruction 10306: 17.5661% +Rate for instruction 10307: 17.5648% +Rate for instruction 10308: 17.5687% +Rate for instruction 10309: 17.5703% +Rate for instruction 10310: 17.5697% +Rate for instruction 10311: 17.5684% +Rate for instruction 10312: 17.5674% +Rate for instruction 10313: 17.5661% +Rate for instruction 10314: 17.5663% +Rate for instruction 10315: 17.5657% +Rate for instruction 10316: 17.5673% +Rate for instruction 10317: 17.5694% +Rate for instruction 10318: 17.5684% +Rate for instruction 10319: 17.5671% +Rate for instruction 10320: 17.5669% +Rate for instruction 10321: 17.57% +Rate for instruction 10322: 17.5717% +Rate for instruction 10323: 17.5707% +Rate for instruction 10324: 17.5694% +Rate for instruction 10325: 17.5688% +Rate for instruction 10326: 17.5675% +Rate for instruction 10327: 17.5661% +Rate for instruction 10328: 17.5663% +Rate for instruction 10329: 17.565% +Rate for instruction 10330: 17.5644% +Rate for instruction 10331: 17.5653% +Rate for instruction 10332: 17.564% +Rate for instruction 10333: 17.5626% +Rate for instruction 10334: 17.5643% +Rate for instruction 10335: 17.5656% +Rate for instruction 10336: 17.5642% +Rate for instruction 10337: 17.5633% +Rate for instruction 10338: 17.562% +Rate for instruction 10339: 17.5617% +Rate for instruction 10340: 17.5604% +Rate for instruction 10341: 17.5595% +Rate for instruction 10342: 17.5581% +Rate for instruction 10343: 17.5576% +Rate for instruction 10344: 17.557% +Rate for instruction 10345: 17.5568% +Rate for instruction 10346: 17.5558% +Rate for instruction 10347: 17.5549% +Rate for instruction 10348: 17.5539% +Rate for instruction 10349: 17.5526% +Rate for instruction 10350: 17.5524% +Rate for instruction 10351: 17.5522% +Rate for instruction 10352: 17.5508% +Rate for instruction 10353: 17.5529% +Rate for instruction 10354: 17.5541% +Rate for instruction 10355: 17.5536% +Rate for instruction 10356: 17.5533% +Rate for instruction 10357: 17.5524% +Rate for instruction 10358: 17.5511% +Rate for instruction 10359: 17.5505% +Rate for instruction 10360: 17.5529% +Rate for instruction 10361: 17.5556% +Rate for instruction 10362: 17.558% +Rate for instruction 10363: 17.5582% +Rate for instruction 10364: 17.558% +Rate for instruction 10365: 17.557% +Rate for instruction 10366: 17.5561% +Rate for instruction 10367: 17.5548% +Rate for instruction 10368: 17.5549% +Rate for instruction 10369: 17.554% +Rate for instruction 10370: 17.553% +Rate for instruction 10371: 17.5535% +Rate for instruction 10372: 17.5556% +Rate for instruction 10373: 17.5542% +Rate for instruction 10374: 17.5551% +Rate for instruction 10375: 17.556% +Rate for instruction 10376: 17.5595% +Rate for instruction 10377: 17.559% +Rate for instruction 10378: 17.5576% +Rate for instruction 10379: 17.5604% +Rate for instruction 10380: 17.5613% +Rate for instruction 10381: 17.56% +Rate for instruction 10382: 17.559% +Rate for instruction 10383: 17.5592% +Rate for instruction 10384: 17.5601% +Rate for instruction 10385: 17.5606% +Rate for instruction 10386: 17.5604% +Rate for instruction 10387: 17.5598% +Rate for instruction 10388: 17.5589% +Rate for instruction 10389: 17.559% +Rate for instruction 10390: 17.5585% +Rate for instruction 10391: 17.5583% +Rate for instruction 10392: 17.5577% +Rate for instruction 10393: 17.5571% +Rate for instruction 10394: 17.5569% +Rate for instruction 10395: 17.5563% +Rate for instruction 10396: 17.5561% +Rate for instruction 10397: 17.5559% +Rate for instruction 10398: 17.5546% +Rate for instruction 10399: 17.5536% +Rate for instruction 10400: 17.5523% +Rate for instruction 10401: 17.5517% +Rate for instruction 10402: 17.5523% +Rate for instruction 10403: 17.5521% +Rate for instruction 10404: 17.5518% +Rate for instruction 10405: 17.5527% +Rate for instruction 10406: 17.5529% +Rate for instruction 10407: 17.5534% +Rate for instruction 10408: 17.554% +Rate for instruction 10409: 17.5526% +Rate for instruction 10410: 17.5517% +Rate for instruction 10411: 17.5508% +Rate for instruction 10412: 17.5509% +Rate for instruction 10413: 17.5514% +Rate for instruction 10414: 17.5505% +Rate for instruction 10415: 17.5507% +Rate for instruction 10416: 17.5493% +Rate for instruction 10417: 17.548% +Rate for instruction 10418: 17.5475% +Rate for instruction 10419: 17.5465% +Rate for instruction 10420: 17.5463% +Rate for instruction 10421: 17.5457% +Rate for instruction 10422: 17.5455% +Rate for instruction 10423: 17.5446% +Rate for instruction 10424: 17.5473% +Rate for instruction 10425: 17.5497% +Rate for instruction 10426: 17.5487% +Rate for instruction 10427: 17.5482% +Rate for instruction 10428: 17.5469% +Rate for instruction 10429: 17.5459% +Rate for instruction 10430: 17.545% +Rate for instruction 10431: 17.5444% +Rate for instruction 10432: 17.5434% +Rate for instruction 10433: 17.5429% +Rate for instruction 10434: 17.5419% +Rate for instruction 10435: 17.5417% +Rate for instruction 10436: 17.5404% +Rate for instruction 10437: 17.5406% +Rate for instruction 10438: 17.5407% +Rate for instruction 10439: 17.5402% +Rate for instruction 10440: 17.5396% +Rate for instruction 10441: 17.5397% +Rate for instruction 10442: 17.5392% +Rate for instruction 10443: 17.5397% +Rate for instruction 10444: 17.5388% +Rate for instruction 10445: 17.5378% +Rate for instruction 10446: 17.5372% +Rate for instruction 10447: 17.5367% +Rate for instruction 10448: 17.5357% +Rate for instruction 10449: 17.5366% +Rate for instruction 10450: 17.5375% +Rate for instruction 10451: 17.5362% +Rate for instruction 10452: 17.5353% +Rate for instruction 10453: 17.5358% +Rate for instruction 10454: 17.5349% +Rate for instruction 10455: 17.5335% +Rate for instruction 10456: 17.5341% +Rate for instruction 10457: 17.535% +Rate for instruction 10458: 17.5348% +Rate for instruction 10459: 17.5368% +Rate for instruction 10460: 17.538% +Rate for instruction 10461: 17.5367% +Rate for instruction 10462: 17.5365% +Rate for instruction 10463: 17.5393% +Rate for instruction 10464: 17.5379% +Rate for instruction 10465: 17.5381% +Rate for instruction 10466: 17.5397% +Rate for instruction 10467: 17.5417% +Rate for instruction 10468: 17.5441% +Rate for instruction 10469: 17.5443% +Rate for instruction 10470: 17.5441% +Rate for instruction 10471: 17.5428% +Rate for instruction 10472: 17.5436% +Rate for instruction 10473: 17.5423% +Rate for instruction 10474: 17.5425% +Rate for instruction 10475: 17.5441% +Rate for instruction 10476: 17.5447% +Rate for instruction 10477: 17.5456% +Rate for instruction 10478: 17.5464% +Rate for instruction 10479: 17.547% +Rate for instruction 10480: 17.5475% +Rate for instruction 10481: 17.5484% +Rate for instruction 10482: 17.5508% +Rate for instruction 10483: 17.5506% +Rate for instruction 10484: 17.5511% +Rate for instruction 10485: 17.552% +Rate for instruction 10486: 17.5536% +Rate for instruction 10487: 17.553% +Rate for instruction 10488: 17.5525% +Rate for instruction 10489: 17.5537% +Rate for instruction 10490: 17.5542% +Rate for instruction 10491: 17.5559% +Rate for instruction 10492: 17.5568% +Rate for instruction 10493: 17.5577% +Rate for instruction 10494: 17.5596% +Rate for instruction 10495: 17.5605% +Rate for instruction 10496: 17.5614% +Rate for instruction 10497: 17.5638% +Rate for instruction 10498: 17.565% +Rate for instruction 10499: 17.5648% +Rate for instruction 10500: 17.5665% +Rate for instruction 10501: 17.5663% +Rate for instruction 10502: 17.5679% +Rate for instruction 10503: 17.5673% +Rate for instruction 10504: 17.5682% +Rate for instruction 10505: 17.5687% +Rate for instruction 10506: 17.5692% +Rate for instruction 10507: 17.5679% +Rate for instruction 10508: 17.5677% +Rate for instruction 10509: 17.5686% +Rate for instruction 10510: 17.5691% +Rate for instruction 10511: 17.5708% +Rate for instruction 10512: 17.5717% +Rate for instruction 10513: 17.5729% +Rate for instruction 10514: 17.5742% +Rate for instruction 10515: 17.5754% +Rate for instruction 10516: 17.5763% +Rate for instruction 10517: 17.5768% +Rate for instruction 10518: 17.5774% +Rate for instruction 10519: 17.5782% +Rate for instruction 10520: 17.5799% +Rate for instruction 10521: 17.5793% +Rate for instruction 10522: 17.578% +Rate for instruction 10523: 17.58% +Rate for instruction 10524: 17.5805% +Rate for instruction 10525: 17.5799% +Rate for instruction 10526: 17.579% +Rate for instruction 10527: 17.5802% +Rate for instruction 10528: 17.5789% +Rate for instruction 10529: 17.5791% +Rate for instruction 10530: 17.5785% +Rate for instruction 10531: 17.5783% +Rate for instruction 10532: 17.5799% +Rate for instruction 10533: 17.5804% +Rate for instruction 10534: 17.581% +Rate for instruction 10535: 17.5807% +Rate for instruction 10536: 17.5813% +Rate for instruction 10537: 17.5822% +Rate for instruction 10538: 17.5812% +Rate for instruction 10539: 17.5806% +Rate for instruction 10540: 17.5804% +Rate for instruction 10541: 17.5799% +Rate for instruction 10542: 17.5793% +Rate for instruction 10543: 17.578% +Rate for instruction 10544: 17.5767% +Rate for instruction 10545: 17.5761% +Rate for instruction 10546: 17.5752% +Rate for instruction 10547: 17.5746% +Rate for instruction 10548: 17.5766% +Rate for instruction 10549: 17.5753% +Rate for instruction 10550: 17.5743% +Rate for instruction 10551: 17.5749% +Rate for instruction 10552: 17.5743% +Rate for instruction 10553: 17.5741% +Rate for instruction 10554: 17.5746% +Rate for instruction 10555: 17.5748% +Rate for instruction 10556: 17.5738% +Rate for instruction 10557: 17.5725% +Rate for instruction 10558: 17.572% +Rate for instruction 10559: 17.5718% +Rate for instruction 10560: 17.5715% +Rate for instruction 10561: 17.5702% +Rate for instruction 10562: 17.5693% +Rate for instruction 10563: 17.568% +Rate for instruction 10564: 17.5682% +Rate for instruction 10565: 17.5672% +Rate for instruction 10566: 17.5674% +Rate for instruction 10567: 17.5672% +Rate for instruction 10568: 17.5659% +Rate for instruction 10569: 17.5653% +Rate for instruction 10570: 17.5644% +Rate for instruction 10571: 17.5664% +Rate for instruction 10572: 17.5683% +Rate for instruction 10573: 17.5681% +Rate for instruction 10574: 17.5672% +Rate for instruction 10575: 17.5666% +Rate for instruction 10576: 17.5664% +Rate for instruction 10577: 17.5662% +Rate for instruction 10578: 17.5653% +Rate for instruction 10579: 17.5669% +Rate for instruction 10580: 17.5689% +Rate for instruction 10581: 17.5701% +Rate for instruction 10582: 17.5695% +Rate for instruction 10583: 17.5715% +Rate for instruction 10584: 17.5713% +Rate for instruction 10585: 17.5718% +Rate for instruction 10586: 17.5742% +Rate for instruction 10587: 17.5761% +Rate for instruction 10588: 17.5774% +Rate for instruction 10589: 17.5783% +Rate for instruction 10590: 17.5777% +Rate for instruction 10591: 17.5771% +Rate for instruction 10592: 17.5773% +Rate for instruction 10593: 17.5767% +Rate for instruction 10594: 17.5758% +Rate for instruction 10595: 17.5756% +Rate for instruction 10596: 17.5761% +Rate for instruction 10597: 17.5752% +Rate for instruction 10598: 17.5757% +Rate for instruction 10599: 17.5747% +Rate for instruction 10600: 17.5749% +Rate for instruction 10601: 17.5747% +Rate for instruction 10602: 17.5767% +Rate for instruction 10603: 17.5779% +Rate for instruction 10604: 17.5766% +Rate for instruction 10605: 17.576% +Rate for instruction 10606: 17.5773% +Rate for instruction 10607: 17.5785% +Rate for instruction 10608: 17.5794% +Rate for instruction 10609: 17.5807% +Rate for instruction 10610: 17.583% +Rate for instruction 10611: 17.5842% +Rate for instruction 10612: 17.5829% +Rate for instruction 10613: 17.5831% +Rate for instruction 10614: 17.584% +Rate for instruction 10615: 17.5867% +Rate for instruction 10616: 17.5854% +Rate for instruction 10617: 17.5859% +Rate for instruction 10618: 17.5846% +Rate for instruction 10619: 17.5837% +Rate for instruction 10620: 17.5827% +Rate for instruction 10621: 17.5814% +Rate for instruction 10622: 17.5805% +Rate for instruction 10623: 17.5825% +Rate for instruction 10624: 17.5819% +Rate for instruction 10625: 17.5821% +Rate for instruction 10626: 17.5826% +Rate for instruction 10627: 17.5835% +Rate for instruction 10628: 17.5829% +Rate for instruction 10629: 17.5838% +Rate for instruction 10630: 17.5846% +Rate for instruction 10631: 17.5866% +Rate for instruction 10632: 17.5886% +Rate for instruction 10633: 17.5898% +Rate for instruction 10634: 17.5885% +Rate for instruction 10635: 17.5876% +Rate for instruction 10636: 17.5863% +Rate for instruction 10637: 17.5875% +Rate for instruction 10638: 17.588% +Rate for instruction 10639: 17.5868% +Rate for instruction 10640: 17.5858% +Rate for instruction 10641: 17.5845% +Rate for instruction 10642: 17.5872% +Rate for instruction 10643: 17.5885% +Rate for instruction 10644: 17.5897% +Rate for instruction 10645: 17.592% +Rate for instruction 10646: 17.5936% +Rate for instruction 10647: 17.5927% +Rate for instruction 10648: 17.5957% +Rate for instruction 10649: 17.5948% +Rate for instruction 10650: 17.5968% +Rate for instruction 10651: 17.5958% +Rate for instruction 10652: 17.5981% +Rate for instruction 10653: 17.599% +Rate for instruction 10654: 17.6006% +Rate for instruction 10655: 17.5993% +Rate for instruction 10656: 17.5988% +Rate for instruction 10657: 17.5978% +Rate for instruction 10658: 17.5976% +Rate for instruction 10659: 17.5963% +Rate for instruction 10660: 17.5954% +Rate for instruction 10661: 17.5948% +Rate for instruction 10662: 17.5964% +Rate for instruction 10663: 17.5951% +Rate for instruction 10664: 17.5967% +Rate for instruction 10665: 17.5987% +Rate for instruction 10666: 17.5974% +Rate for instruction 10667: 17.5979% +Rate for instruction 10668: 17.5988% +Rate for instruction 10669: 17.5993% +Rate for instruction 10670: 17.5987% +Rate for instruction 10671: 17.5975% +Rate for instruction 10672: 17.5976% +Rate for instruction 10673: 17.597% +Rate for instruction 10674: 17.5957% +Rate for instruction 10675: 17.5948% +Rate for instruction 10676: 17.5961% +Rate for instruction 10677: 17.598% +Rate for instruction 10678: 17.5996% +Rate for instruction 10679: 17.6008% +Rate for instruction 10680: 17.6028% +Rate for instruction 10681: 17.6015% +Rate for instruction 10682: 17.6009% +Rate for instruction 10683: 17.5996% +Rate for instruction 10684: 17.5994% +Rate for instruction 10685: 17.5992% +Rate for instruction 10686: 17.6005% +Rate for instruction 10687: 17.6024% +Rate for instruction 10688: 17.6029% +Rate for instruction 10689: 17.6038% +Rate for instruction 10690: 17.6047% +Rate for instruction 10691: 17.6037% +Rate for instruction 10692: 17.6039% +Rate for instruction 10693: 17.6058% +Rate for instruction 10694: 17.6071% +Rate for instruction 10695: 17.6083% +Rate for instruction 10696: 17.6092% +Rate for instruction 10697: 17.61% +Rate for instruction 10698: 17.6098% +Rate for instruction 10699: 17.6111% +Rate for instruction 10700: 17.613% +Rate for instruction 10701: 17.6125% +Rate for instruction 10702: 17.613% +Rate for instruction 10703: 17.6142% +Rate for instruction 10704: 17.6147% +Rate for instruction 10705: 17.6141% +Rate for instruction 10706: 17.6139% +Rate for instruction 10707: 17.6155% +Rate for instruction 10708: 17.6142% +Rate for instruction 10709: 17.6137% +Rate for instruction 10710: 17.6131% +Rate for instruction 10711: 17.6147% +Rate for instruction 10712: 17.6159% +Rate for instruction 10713: 17.615% +Rate for instruction 10714: 17.618% +Rate for instruction 10715: 17.6189% +Rate for instruction 10716: 17.6187% +Rate for instruction 10717: 17.621% +Rate for instruction 10718: 17.6197% +Rate for instruction 10719: 17.6223% +Rate for instruction 10720: 17.6243% +Rate for instruction 10721: 17.623% +Rate for instruction 10722: 17.6224% +Rate for instruction 10723: 17.6244% +Rate for instruction 10724: 17.6235% +Rate for instruction 10725: 17.6222% +Rate for instruction 10726: 17.6234% +Rate for instruction 10727: 17.6232% +Rate for instruction 10728: 17.6219% +Rate for instruction 10729: 17.6228% +Rate for instruction 10730: 17.6226% +Rate for instruction 10731: 17.6227% +Rate for instruction 10732: 17.6221% +Rate for instruction 10733: 17.6227% +Rate for instruction 10734: 17.6221% +Rate for instruction 10735: 17.6244% +Rate for instruction 10736: 17.6256% +Rate for instruction 10737: 17.6265% +Rate for instruction 10738: 17.6259% +Rate for instruction 10739: 17.6257% +Rate for instruction 10740: 17.6273% +Rate for instruction 10741: 17.6289% +Rate for instruction 10742: 17.6304% +Rate for instruction 10743: 17.6306% +Rate for instruction 10744: 17.6322% +Rate for instruction 10745: 17.6338% +Rate for instruction 10746: 17.6325% +Rate for instruction 10747: 17.6326% +Rate for instruction 10748: 17.6321% +Rate for instruction 10749: 17.6322% +Rate for instruction 10750: 17.632% +Rate for instruction 10751: 17.6311% +Rate for instruction 10752: 17.6309% +Rate for instruction 10753: 17.6296% +Rate for instruction 10754: 17.6304% +Rate for instruction 10755: 17.632% +Rate for instruction 10756: 17.6311% +Rate for instruction 10757: 17.633% +Rate for instruction 10758: 17.635% +Rate for instruction 10759: 17.6351% +Rate for instruction 10760: 17.6363% +Rate for instruction 10761: 17.6379% +Rate for instruction 10762: 17.6366% +Rate for instruction 10763: 17.6382% +Rate for instruction 10764: 17.6384% +Rate for instruction 10765: 17.6371% +Rate for instruction 10766: 17.6376% +Rate for instruction 10767: 17.6367% +Rate for instruction 10768: 17.6354% +Rate for instruction 10769: 17.6345% +Rate for instruction 10770: 17.635% +Rate for instruction 10771: 17.6348% +Rate for instruction 10772: 17.6335% +Rate for instruction 10773: 17.6329% +Rate for instruction 10774: 17.6345% +Rate for instruction 10775: 17.6336% +Rate for instruction 10776: 17.6326% +Rate for instruction 10777: 17.6346% +Rate for instruction 10778: 17.6344% +Rate for instruction 10779: 17.6356% +Rate for instruction 10780: 17.6364% +Rate for instruction 10781: 17.6373% +Rate for instruction 10782: 17.6371% +Rate for instruction 10783: 17.6358% +Rate for instruction 10784: 17.6349% +Rate for instruction 10785: 17.6368% +Rate for instruction 10786: 17.637% +Rate for instruction 10787: 17.6378% +Rate for instruction 10788: 17.6394% +Rate for instruction 10789: 17.6392% +Rate for instruction 10790: 17.639% +Rate for instruction 10791: 17.6388% +Rate for instruction 10792: 17.6396% +Rate for instruction 10793: 17.6416% +Rate for instruction 10794: 17.6406% +Rate for instruction 10795: 17.6401% +Rate for instruction 10796: 17.6388% +Rate for instruction 10797: 17.6375% +Rate for instruction 10798: 17.6366% +Rate for instruction 10799: 17.6385% +Rate for instruction 10800: 17.6383% +Rate for instruction 10801: 17.6388% +Rate for instruction 10802: 17.6379% +Rate for instruction 10803: 17.6405% +Rate for instruction 10804: 17.6403% +Rate for instruction 10805: 17.6419% +Rate for instruction 10806: 17.6435% +Rate for instruction 10807: 17.6447% +Rate for instruction 10808: 17.6463% +Rate for instruction 10809: 17.6482% +Rate for instruction 10810: 17.649% +Rate for instruction 10811: 17.6481% +Rate for instruction 10812: 17.6468% +Rate for instruction 10813: 17.6484% +Rate for instruction 10814: 17.65% +Rate for instruction 10815: 17.6516% +Rate for instruction 10816: 17.6517% +Rate for instruction 10817: 17.6529% +Rate for instruction 10818: 17.6523% +Rate for instruction 10819: 17.6543% +Rate for instruction 10820: 17.6537% +Rate for instruction 10821: 17.6553% +Rate for instruction 10822: 17.654% +Rate for instruction 10823: 17.6563% +Rate for instruction 10824: 17.6578% +Rate for instruction 10825: 17.6569% +Rate for instruction 10826: 17.6588% +Rate for instruction 10827: 17.6579% +Rate for instruction 10828: 17.6602% +Rate for instruction 10829: 17.6596% +Rate for instruction 10830: 17.6587% +Rate for instruction 10831: 17.6585% +Rate for instruction 10832: 17.6601% +Rate for instruction 10833: 17.6591% +Rate for instruction 10834: 17.6579% +Rate for instruction 10835: 17.6591% +Rate for instruction 10836: 17.6592% +Rate for instruction 10837: 17.6583% +Rate for instruction 10838: 17.657% +Rate for instruction 10839: 17.6579% +Rate for instruction 10840: 17.6587% +Rate for instruction 10841: 17.6592% +Rate for instruction 10842: 17.6601% +Rate for instruction 10843: 17.6588% +Rate for instruction 10844: 17.6579% +Rate for instruction 10845: 17.6566% +Rate for instruction 10846: 17.6561% +Rate for instruction 10847: 17.6548% +Rate for instruction 10848: 17.6539% +Rate for instruction 10849: 17.6551% +Rate for instruction 10850: 17.6556% +Rate for instruction 10851: 17.6554% +Rate for instruction 10852: 17.6569% +Rate for instruction 10853: 17.656% +Rate for instruction 10854: 17.6551% +Rate for instruction 10855: 17.6538% +Rate for instruction 10856: 17.6543% +Rate for instruction 10857: 17.6531% +Rate for instruction 10858: 17.6532% +Rate for instruction 10859: 17.6523% +Rate for instruction 10860: 17.651% +Rate for instruction 10861: 17.6512% +Rate for instruction 10862: 17.6506% +Rate for instruction 10863: 17.6493% +Rate for instruction 10864: 17.6488% +Rate for instruction 10865: 17.6482% +Rate for instruction 10866: 17.648% +Rate for instruction 10867: 17.6474% +Rate for instruction 10868: 17.6483% +Rate for instruction 10869: 17.6474% +Rate for instruction 10870: 17.6465% +Rate for instruction 10871: 17.6459% +Rate for instruction 10872: 17.645% +Rate for instruction 10873: 17.6437% +Rate for instruction 10874: 17.6428% +Rate for instruction 10875: 17.6415% +Rate for instruction 10876: 17.642% +Rate for instruction 10877: 17.6418% +Rate for instruction 10878: 17.6413% +Rate for instruction 10879: 17.64% +Rate for instruction 10880: 17.6398% +Rate for instruction 10881: 17.6389% +Rate for instruction 10882: 17.6401% +Rate for instruction 10883: 17.6388% +Rate for instruction 10884: 17.6379% +Rate for instruction 10885: 17.6395% +Rate for instruction 10886: 17.641% +Rate for instruction 10887: 17.6405% +Rate for instruction 10888: 17.6413% +Rate for instruction 10889: 17.6404% +Rate for instruction 10890: 17.6402% +Rate for instruction 10891: 17.6393% +Rate for instruction 10892: 17.6412% +Rate for instruction 10893: 17.6399% +Rate for instruction 10894: 17.6397% +Rate for instruction 10895: 17.6402% +Rate for instruction 10896: 17.6393% +Rate for instruction 10897: 17.6391% +Rate for instruction 10898: 17.6406% +Rate for instruction 10899: 17.6418% +Rate for instruction 10900: 17.6409% +Rate for instruction 10901: 17.6421% +Rate for instruction 10902: 17.6412% +Rate for instruction 10903: 17.6431% +Rate for instruction 10904: 17.6422% +Rate for instruction 10905: 17.6417% +Rate for instruction 10906: 17.6404% +Rate for instruction 10907: 17.6391% +Rate for instruction 10908: 17.6389% +Rate for instruction 10909: 17.6394% +Rate for instruction 10910: 17.6406% +Rate for instruction 10911: 17.6418% +Rate for instruction 10912: 17.6416% +Rate for instruction 10913: 17.6407% +Rate for instruction 10914: 17.6402% +Rate for instruction 10915: 17.6392% +Rate for instruction 10916: 17.639% +Rate for instruction 10917: 17.6392% +Rate for instruction 10918: 17.6407% +Rate for instruction 10919: 17.6409% +Rate for instruction 10920: 17.641% +Rate for instruction 10921: 17.6405% +Rate for instruction 10922: 17.6424% +Rate for instruction 10923: 17.6411% +Rate for instruction 10924: 17.6406% +Rate for instruction 10925: 17.64% +Rate for instruction 10926: 17.6401% +Rate for instruction 10927: 17.6399% +Rate for instruction 10928: 17.6394% +Rate for instruction 10929: 17.6385% +Rate for instruction 10930: 17.6383% +Rate for instruction 10931: 17.6398% +Rate for instruction 10932: 17.64% +Rate for instruction 10933: 17.6394% +Rate for instruction 10934: 17.6388% +Rate for instruction 10935: 17.6383% +Rate for instruction 10936: 17.6377% +Rate for instruction 10937: 17.6396% +Rate for instruction 10938: 17.6415% +Rate for instruction 10939: 17.6406% +Rate for instruction 10940: 17.6404% +Rate for instruction 10941: 17.6399% +Rate for instruction 10942: 17.64% +Rate for instruction 10943: 17.6391% +Rate for instruction 10944: 17.6382% +Rate for instruction 10945: 17.6383% +Rate for instruction 10946: 17.6374% +Rate for instruction 10947: 17.6362% +Rate for instruction 10948: 17.6381% +Rate for instruction 10949: 17.6389% +Rate for instruction 10950: 17.6405% +Rate for instruction 10951: 17.6399% +Rate for instruction 10952: 17.6404% +Rate for instruction 10953: 17.6409% +Rate for instruction 10954: 17.6428% +Rate for instruction 10955: 17.6447% +Rate for instruction 10956: 17.6463% +Rate for instruction 10957: 17.645% +Rate for instruction 10958: 17.6458% +Rate for instruction 10959: 17.6488% +Rate for instruction 10960: 17.6493% +Rate for instruction 10961: 17.648% +Rate for instruction 10962: 17.6475% +Rate for instruction 10963: 17.6462% +Rate for instruction 10964: 17.645% +Rate for instruction 10965: 17.6447% +Rate for instruction 10966: 17.6456% +Rate for instruction 10967: 17.645% +Rate for instruction 10968: 17.6438% +Rate for instruction 10969: 17.6429% +Rate for instruction 10970: 17.643% +Rate for instruction 10971: 17.6418% +Rate for instruction 10972: 17.6409% +Rate for instruction 10973: 17.6417% +Rate for instruction 10974: 17.6422% +Rate for instruction 10975: 17.6409% +Rate for instruction 10976: 17.6428% +Rate for instruction 10977: 17.6437% +Rate for instruction 10978: 17.6424% +Rate for instruction 10979: 17.6419% +Rate for instruction 10980: 17.6413% +Rate for instruction 10981: 17.6429% +Rate for instruction 10982: 17.6423% +Rate for instruction 10983: 17.6438% +Rate for instruction 10984: 17.6464% +Rate for instruction 10985: 17.648% +Rate for instruction 10986: 17.6495% +Rate for instruction 10987: 17.6497% +Rate for instruction 10988: 17.6516% +Rate for instruction 10989: 17.6503% +Rate for instruction 10990: 17.6522% +Rate for instruction 10991: 17.652% +Rate for instruction 10992: 17.6514% +Rate for instruction 10993: 17.6512% +Rate for instruction 10994: 17.65% +Rate for instruction 10995: 17.6494% +Rate for instruction 10996: 17.6482% +Rate for instruction 10997: 17.6473% +Rate for instruction 10998: 17.6488% +Rate for instruction 10999: 17.649% +Rate for instruction 11000: 17.6505% +Rate for instruction 11001: 17.6499% +Rate for instruction 11002: 17.6511% +Rate for instruction 11003: 17.6499% +Rate for instruction 11004: 17.65% +Rate for instruction 11005: 17.6495% +Rate for instruction 11006: 17.6507% +Rate for instruction 11007: 17.6515% +Rate for instruction 11008: 17.652% +Rate for instruction 11009: 17.6535% +Rate for instruction 11010: 17.6523% +Rate for instruction 11011: 17.6517% +Rate for instruction 11012: 17.6505% +Rate for instruction 11013: 17.6496% +Rate for instruction 11014: 17.6483% +Rate for instruction 11015: 17.6481% +Rate for instruction 11016: 17.6469% +Rate for instruction 11017: 17.647% +Rate for instruction 11018: 17.6464% +Rate for instruction 11019: 17.6455% +Rate for instruction 11020: 17.6446% +Rate for instruction 11021: 17.6437% +Rate for instruction 11022: 17.6435% +Rate for instruction 11023: 17.643% +Rate for instruction 11024: 17.6417% +Rate for instruction 11025: 17.6419% +Rate for instruction 11026: 17.6431% +Rate for instruction 11027: 17.6432% +Rate for instruction 11028: 17.6426% +Rate for instruction 11029: 17.6428% +Rate for instruction 11030: 17.6429% +Rate for instruction 11031: 17.6427% +Rate for instruction 11032: 17.6436% +Rate for instruction 11033: 17.6434% +Rate for instruction 11034: 17.6432% +Rate for instruction 11035: 17.6437% +Rate for instruction 11036: 17.6424% +Rate for instruction 11037: 17.6429% +Rate for instruction 11038: 17.642% +Rate for instruction 11039: 17.6421% +Rate for instruction 11040: 17.6426% +Rate for instruction 11041: 17.6428% +Rate for instruction 11042: 17.6422% +Rate for instruction 11043: 17.642% +Rate for instruction 11044: 17.6408% +Rate for instruction 11045: 17.6402% +Rate for instruction 11046: 17.6411% +Rate for instruction 11047: 17.6398% +Rate for instruction 11048: 17.6424% +Rate for instruction 11049: 17.6415% +Rate for instruction 11050: 17.6441% +Rate for instruction 11051: 17.6446% +Rate for instruction 11052: 17.6437% +Rate for instruction 11053: 17.6438% +Rate for instruction 11054: 17.6429% +Rate for instruction 11055: 17.6434% +Rate for instruction 11056: 17.6435% +Rate for instruction 11057: 17.6454% +Rate for instruction 11058: 17.6445% +Rate for instruction 11059: 17.6461% +Rate for instruction 11060: 17.6479% +Rate for instruction 11061: 17.6488% +Rate for instruction 11062: 17.6482% +Rate for instruction 11063: 17.6484% +Rate for instruction 11064: 17.6485% +Rate for instruction 11065: 17.6483% +Rate for instruction 11066: 17.6502% +Rate for instruction 11067: 17.6507% +Rate for instruction 11068: 17.6515% +Rate for instruction 11069: 17.6506% +Rate for instruction 11070: 17.6518% +Rate for instruction 11071: 17.6537% +Rate for instruction 11072: 17.6528% +Rate for instruction 11073: 17.6533% +Rate for instruction 11074: 17.6541% +Rate for instruction 11075: 17.6529% +Rate for instruction 11076: 17.6523% +Rate for instruction 11077: 17.6538% +Rate for instruction 11078: 17.6533% +Rate for instruction 11079: 17.6545% +Rate for instruction 11080: 17.6546% +Rate for instruction 11081: 17.6544% +Rate for instruction 11082: 17.6546% +Rate for instruction 11083: 17.6557% +Rate for instruction 11084: 17.6569% +Rate for instruction 11085: 17.6574% +Rate for instruction 11086: 17.6575% +Rate for instruction 11087: 17.6573% +Rate for instruction 11088: 17.6592% +Rate for instruction 11089: 17.6611% +Rate for instruction 11090: 17.6626% +Rate for instruction 11091: 17.6635% +Rate for instruction 11092: 17.6646% +Rate for instruction 11093: 17.6655% +Rate for instruction 11094: 17.6642% +Rate for instruction 11095: 17.6661% +Rate for instruction 11096: 17.6662% +Rate for instruction 11097: 17.6667% +Rate for instruction 11098: 17.6686% +Rate for instruction 11099: 17.6687% +Rate for instruction 11100: 17.6699% +Rate for instruction 11101: 17.6704% +Rate for instruction 11102: 17.6706% +Rate for instruction 11103: 17.67% +Rate for instruction 11104: 17.6712% +Rate for instruction 11105: 17.6699% +Rate for instruction 11106: 17.6711% +Rate for instruction 11107: 17.6702% +Rate for instruction 11108: 17.6721% +Rate for instruction 11109: 17.6715% +Rate for instruction 11110: 17.6734% +Rate for instruction 11111: 17.6725% +Rate for instruction 11112: 17.672% +Rate for instruction 11113: 17.6718% +Rate for instruction 11114: 17.6715% +Rate for instruction 11115: 17.6731% +Rate for instruction 11116: 17.6729% +Rate for instruction 11117: 17.6737% +Rate for instruction 11118: 17.6731% +Rate for instruction 11119: 17.674% +Rate for instruction 11120: 17.6765% +Rate for instruction 11121: 17.6774% +Rate for instruction 11122: 17.6779% +Rate for instruction 11123: 17.6787% +Rate for instruction 11124: 17.6802% +Rate for instruction 11125: 17.681% +Rate for instruction 11126: 17.6801% +Rate for instruction 11127: 17.681% +Rate for instruction 11128: 17.6832% +Rate for instruction 11129: 17.6847% +Rate for instruction 11130: 17.6859% +Rate for instruction 11131: 17.6867% +Rate for instruction 11132: 17.6872% +Rate for instruction 11133: 17.6863% +Rate for instruction 11134: 17.6871% +Rate for instruction 11135: 17.6876% +Rate for instruction 11136: 17.6881% +Rate for instruction 11137: 17.6886% +Rate for instruction 11138: 17.6898% +Rate for instruction 11139: 17.6906% +Rate for instruction 11140: 17.69% +Rate for instruction 11141: 17.6888% +Rate for instruction 11142: 17.69% +Rate for instruction 11143: 17.6908% +Rate for instruction 11144: 17.692% +Rate for instruction 11145: 17.6928% +Rate for instruction 11146: 17.6933% +Rate for instruction 11147: 17.6941% +Rate for instruction 11148: 17.6956% +Rate for instruction 11149: 17.6964% +Rate for instruction 11150: 17.6955% +Rate for instruction 11151: 17.6953% +Rate for instruction 11152: 17.6944% +Rate for instruction 11153: 17.6949% +Rate for instruction 11154: 17.6961% +Rate for instruction 11155: 17.6955% +Rate for instruction 11156: 17.6953% +Rate for instruction 11157: 17.6962% +Rate for instruction 11158: 17.6956% +Rate for instruction 11159: 17.6958% +Rate for instruction 11160: 17.6969% +Rate for instruction 11161: 17.6974% +Rate for instruction 11162: 17.7006% +Rate for instruction 11163: 17.7028% +Rate for instruction 11164: 17.7026% +Rate for instruction 11165: 17.7014% +Rate for instruction 11166: 17.7008% +Rate for instruction 11167: 17.7024% +Rate for instruction 11168: 17.7035% +Rate for instruction 11169: 17.7037% +Rate for instruction 11170: 17.7038% +Rate for instruction 11171: 17.7043% +Rate for instruction 11172: 17.703% +Rate for instruction 11173: 17.7022% +Rate for instruction 11174: 17.7016% +Rate for instruction 11175: 17.7028% +Rate for instruction 11176: 17.7033% +Rate for instruction 11177: 17.7024% +Rate for instruction 11178: 17.7032% +Rate for instruction 11179: 17.7023% +Rate for instruction 11180: 17.7024% +Rate for instruction 11181: 17.7012% +Rate for instruction 11182: 17.7013% +Rate for instruction 11183: 17.7008% +Rate for instruction 11184: 17.7006% +Rate for instruction 11185: 17.701% +Rate for instruction 11186: 17.7022% +Rate for instruction 11187: 17.702% +Rate for instruction 11188: 17.7032% +Rate for instruction 11189: 17.7061% +Rate for instruction 11190: 17.7058% +Rate for instruction 11191: 17.7046% +Rate for instruction 11192: 17.7054% +Rate for instruction 11193: 17.7042% +Rate for instruction 11194: 17.7054% +Rate for instruction 11195: 17.7041% +Rate for instruction 11196: 17.7036% +Rate for instruction 11197: 17.7044% +Rate for instruction 11198: 17.7052% +Rate for instruction 11199: 17.706% +Rate for instruction 11200: 17.7048% +Rate for instruction 11201: 17.7063% +Rate for instruction 11202: 17.7051% +Rate for instruction 11203: 17.7038% +Rate for instruction 11204: 17.704% +Rate for instruction 11205: 17.7034% +Rate for instruction 11206: 17.7049% +Rate for instruction 11207: 17.7061% +Rate for instruction 11208: 17.7059% +Rate for instruction 11209: 17.7064% +Rate for instruction 11210: 17.7072% +Rate for instruction 11211: 17.7084% +Rate for instruction 11212: 17.7106% +Rate for instruction 11213: 17.7124% +Rate for instruction 11214: 17.7136% +Rate for instruction 11215: 17.7161% +Rate for instruction 11216: 17.7169% +Rate for instruction 11217: 17.7177% +Rate for instruction 11218: 17.7169% +Rate for instruction 11219: 17.716% +Rate for instruction 11220: 17.7158% +Rate for instruction 11221: 17.7152% +Rate for instruction 11222: 17.7143% +Rate for instruction 11223: 17.7131% +Rate for instruction 11224: 17.7129% +Rate for instruction 11225: 17.7123% +Rate for instruction 11226: 17.7114% +Rate for instruction 11227: 17.7122% +Rate for instruction 11228: 17.7137% +Rate for instruction 11229: 17.7125% +Rate for instruction 11230: 17.714% +Rate for instruction 11231: 17.7148% +Rate for instruction 11232: 17.7143% +Rate for instruction 11233: 17.7137% +Rate for instruction 11234: 17.7139% +Rate for instruction 11235: 17.7144% +Rate for instruction 11236: 17.7135% +Rate for instruction 11237: 17.7156% +Rate for instruction 11238: 17.7148% +Rate for instruction 11239: 17.7159% +Rate for instruction 11240: 17.7178% +Rate for instruction 11241: 17.7193% +Rate for instruction 11242: 17.7197% +Rate for instruction 11243: 17.7216% +Rate for instruction 11244: 17.7234% +Rate for instruction 11245: 17.7249% +Rate for instruction 11246: 17.7264% +Rate for instruction 11247: 17.7259% +Rate for instruction 11248: 17.7267% +Rate for instruction 11249: 17.7255% +Rate for instruction 11250: 17.7246% +Rate for instruction 11251: 17.7237% +Rate for instruction 11252: 17.7225% +Rate for instruction 11253: 17.7222% +Rate for instruction 11254: 17.721% +Rate for instruction 11255: 17.7201% +Rate for instruction 11256: 17.7216% +Rate for instruction 11257: 17.7224% +Rate for instruction 11258: 17.725% +Rate for instruction 11259: 17.7241% +Rate for instruction 11260: 17.7232% +Rate for instruction 11261: 17.7223% +Rate for instruction 11262: 17.7231% +Rate for instruction 11263: 17.7236% +Rate for instruction 11264: 17.7227% +Rate for instruction 11265: 17.7228% +Rate for instruction 11266: 17.7216% +Rate for instruction 11267: 17.7214% +Rate for instruction 11268: 17.7205% +Rate for instruction 11269: 17.7213% +Rate for instruction 11270: 17.7232% +Rate for instruction 11271: 17.7219% +Rate for instruction 11272: 17.721% +Rate for instruction 11273: 17.7198% +Rate for instruction 11274: 17.7206% +Rate for instruction 11275: 17.7194% +Rate for instruction 11276: 17.7185% +Rate for instruction 11277: 17.718% +Rate for instruction 11278: 17.7167% +Rate for instruction 11279: 17.7155% +Rate for instruction 11280: 17.7156% +Rate for instruction 11281: 17.7144% +Rate for instruction 11282: 17.7156% +Rate for instruction 11283: 17.716% +Rate for instruction 11284: 17.7148% +Rate for instruction 11285: 17.7146% +Rate for instruction 11286: 17.7137% +Rate for instruction 11287: 17.7142% +Rate for instruction 11288: 17.7147% +Rate for instruction 11289: 17.7155% +Rate for instruction 11290: 17.7156% +Rate for instruction 11291: 17.7151% +Rate for instruction 11292: 17.7162% +Rate for instruction 11293: 17.7164% +Rate for instruction 11294: 17.7151% +Rate for instruction 11295: 17.7153% +Rate for instruction 11296: 17.714% +Rate for instruction 11297: 17.7152% +Rate for instruction 11298: 17.715% +Rate for instruction 11299: 17.7158% +Rate for instruction 11300: 17.7166% +Rate for instruction 11301: 17.7164% +Rate for instruction 11302: 17.7152% +Rate for instruction 11303: 17.7146% +Rate for instruction 11304: 17.7141% +Rate for instruction 11305: 17.7142% +Rate for instruction 11306: 17.714% +Rate for instruction 11307: 17.7128% +Rate for instruction 11308: 17.7126% +Rate for instruction 11309: 17.7114% +Rate for instruction 11310: 17.7118% +Rate for instruction 11311: 17.7133% +Rate for instruction 11312: 17.7121% +Rate for instruction 11313: 17.7115% +Rate for instruction 11314: 17.712% +Rate for instruction 11315: 17.7115% +Rate for instruction 11316: 17.7103% +Rate for instruction 11317: 17.7094% +Rate for instruction 11318: 17.7102% +Rate for instruction 11319: 17.7103% +Rate for instruction 11320: 17.7108% +Rate for instruction 11321: 17.7116% +Rate for instruction 11322: 17.7104% +Rate for instruction 11323: 17.7098% +Rate for instruction 11324: 17.7086% +Rate for instruction 11325: 17.7077% +Rate for instruction 11326: 17.7075% +Rate for instruction 11327: 17.7066% +Rate for instruction 11328: 17.7068% +Rate for instruction 11329: 17.7079% +Rate for instruction 11330: 17.7094% +Rate for instruction 11331: 17.7106% +Rate for instruction 11332: 17.71% +Rate for instruction 11333: 17.7091% +Rate for instruction 11334: 17.7089% +Rate for instruction 11335: 17.7077% +Rate for instruction 11336: 17.7068% +Rate for instruction 11337: 17.7056% +Rate for instruction 11338: 17.7057% +Rate for instruction 11339: 17.7055% +Rate for instruction 11340: 17.706% +Rate for instruction 11341: 17.7051% +Rate for instruction 11342: 17.7053% +Rate for instruction 11343: 17.7044% +Rate for instruction 11344: 17.7035% +Rate for instruction 11345: 17.7046% +Rate for instruction 11346: 17.7038% +Rate for instruction 11347: 17.7025% +Rate for instruction 11348: 17.7027% +Rate for instruction 11349: 17.7015% +Rate for instruction 11350: 17.7026% +Rate for instruction 11351: 17.7038% +Rate for instruction 11352: 17.7049% +Rate for instruction 11353: 17.7057% +Rate for instruction 11354: 17.7072% +Rate for instruction 11355: 17.707% +Rate for instruction 11356: 17.7061% +Rate for instruction 11357: 17.708% +Rate for instruction 11358: 17.7084% +Rate for instruction 11359: 17.7079% +Rate for instruction 11360: 17.7073% +Rate for instruction 11361: 17.7061% +Rate for instruction 11362: 17.7059% +Rate for instruction 11363: 17.7047% +Rate for instruction 11364: 17.7042% +Rate for instruction 11365: 17.7039% +Rate for instruction 11366: 17.7034% +Rate for instruction 11367: 17.7032% +Rate for instruction 11368: 17.7023% +Rate for instruction 11369: 17.7014% +Rate for instruction 11370: 17.7009% +Rate for instruction 11371: 17.7007% +Rate for instruction 11372: 17.6995% +Rate for instruction 11373: 17.6986% +Rate for instruction 11374: 17.6984% +Rate for instruction 11375: 17.6979% +Rate for instruction 11376: 17.697% +Rate for instruction 11377: 17.6971% +Rate for instruction 11378: 17.6966% +Rate for instruction 11379: 17.697% +Rate for instruction 11380: 17.6972% +Rate for instruction 11381: 17.6976% +Rate for instruction 11382: 17.6988% +Rate for instruction 11383: 17.6983% +Rate for instruction 11384: 17.697% +Rate for instruction 11385: 17.6972% +Rate for instruction 11386: 17.696% +Rate for instruction 11387: 17.6961% +Rate for instruction 11388: 17.6962% +Rate for instruction 11389: 17.6967% +Rate for instruction 11390: 17.6989% +Rate for instruction 11391: 17.6987% +Rate for instruction 11392: 17.6974% +Rate for instruction 11393: 17.7003% +Rate for instruction 11394: 17.7004% +Rate for instruction 11395: 17.7016% +Rate for instruction 11396: 17.7027% +Rate for instruction 11397: 17.7038% +Rate for instruction 11398: 17.7036% +Rate for instruction 11399: 17.7031% +Rate for instruction 11400: 17.7019% +Rate for instruction 11401: 17.701% +Rate for instruction 11402: 17.6998% +Rate for instruction 11403: 17.6996% +Rate for instruction 11404: 17.6984% +Rate for instruction 11405: 17.6975% +Rate for instruction 11406: 17.6976% +Rate for instruction 11407: 17.6971% +Rate for instruction 11408: 17.6959% +Rate for instruction 11409: 17.695% +Rate for instruction 11410: 17.6965% +Rate for instruction 11411: 17.6956% +Rate for instruction 11412: 17.6968% +Rate for instruction 11413: 17.6969% +Rate for instruction 11414: 17.6974% +Rate for instruction 11415: 17.6965% +Rate for instruction 11416: 17.6963% +Rate for instruction 11417: 17.6974% +Rate for instruction 11418: 17.6976% +Rate for instruction 11419: 17.698% +Rate for instruction 11420: 17.6978% +Rate for instruction 11421: 17.698% +Rate for instruction 11422: 17.6968% +Rate for instruction 11423: 17.6962% +Rate for instruction 11424: 17.6957% +Rate for instruction 11425: 17.6948% +Rate for instruction 11426: 17.6943% +Rate for instruction 11427: 17.6951% +Rate for instruction 11428: 17.6945% +Rate for instruction 11429: 17.6943% +Rate for instruction 11430: 17.6951% +Rate for instruction 11431: 17.6959% +Rate for instruction 11432: 17.6961% +Rate for instruction 11433: 17.6965% +Rate for instruction 11434: 17.697% +Rate for instruction 11435: 17.6972% +Rate for instruction 11436: 17.6959% +Rate for instruction 11437: 17.6954% +Rate for instruction 11438: 17.6952% +Rate for instruction 11439: 17.6947% +Rate for instruction 11440: 17.6948% +Rate for instruction 11441: 17.6946% +Rate for instruction 11442: 17.6941% +Rate for instruction 11443: 17.6932% +Rate for instruction 11444: 17.693% +Rate for instruction 11445: 17.6924% +Rate for instruction 11446: 17.6916% +Rate for instruction 11447: 17.6914% +Rate for instruction 11448: 17.6908% +Rate for instruction 11449: 17.69% +Rate for instruction 11450: 17.6894% +Rate for instruction 11451: 17.6889% +Rate for instruction 11452: 17.6897% +Rate for instruction 11453: 17.6905% +Rate for instruction 11454: 17.6903% +Rate for instruction 11455: 17.6901% +Rate for instruction 11456: 17.6896% +Rate for instruction 11457: 17.6894% +Rate for instruction 11458: 17.6905% +Rate for instruction 11459: 17.6896% +Rate for instruction 11460: 17.6884% +Rate for instruction 11461: 17.6872% +Rate for instruction 11462: 17.686% +Rate for instruction 11463: 17.6865% +Rate for instruction 11464: 17.6856% +Rate for instruction 11465: 17.6851% +Rate for instruction 11466: 17.6849% +Rate for instruction 11467: 17.685% +Rate for instruction 11468: 17.6848% +Rate for instruction 11469: 17.6849% +Rate for instruction 11470: 17.6847% +Rate for instruction 11471: 17.6849% +Rate for instruction 11472: 17.6843% +Rate for instruction 11473: 17.6841% +Rate for instruction 11474: 17.6836% +Rate for instruction 11475: 17.6837% +Rate for instruction 11476: 17.6825% +Rate for instruction 11477: 17.682% +Rate for instruction 11478: 17.6825% +Rate for instruction 11479: 17.6819% +Rate for instruction 11480: 17.6817% +Rate for instruction 11481: 17.6835% +Rate for instruction 11482: 17.6837% +Rate for instruction 11483: 17.6868% +Rate for instruction 11484: 17.6873% +Rate for instruction 11485: 17.6878% +Rate for instruction 11486: 17.6872% +Rate for instruction 11487: 17.6887% +Rate for instruction 11488: 17.6902% +Rate for instruction 11489: 17.691% +Rate for instruction 11490: 17.6898% +Rate for instruction 11491: 17.6909% +Rate for instruction 11492: 17.6897% +Rate for instruction 11493: 17.6888% +Rate for instruction 11494: 17.69% +Rate for instruction 11495: 17.6888% +Rate for instruction 11496: 17.6896% +Rate for instruction 11497: 17.6884% +Rate for instruction 11498: 17.6875% +Rate for instruction 11499: 17.6893% +Rate for instruction 11500: 17.6918% +Rate for instruction 11501: 17.6936% +Rate for instruction 11502: 17.693% +Rate for instruction 11503: 17.6942% +Rate for instruction 11504: 17.6933% +Rate for instruction 11505: 17.6944% +Rate for instruction 11506: 17.6946% +Rate for instruction 11507: 17.6954% +Rate for instruction 11508: 17.6982% +Rate for instruction 11509: 17.6973% +Rate for instruction 11510: 17.7001% +Rate for instruction 11511: 17.7026% +Rate for instruction 11512: 17.7021% +Rate for instruction 11513: 17.7022% +Rate for instruction 11514: 17.7027% +Rate for instruction 11515: 17.7015% +Rate for instruction 11516: 17.7003% +Rate for instruction 11517: 17.7004% +Rate for instruction 11518: 17.6999% +Rate for instruction 11519: 17.699% +Rate for instruction 11520: 17.6985% +Rate for instruction 11521: 17.6979% +Rate for instruction 11522: 17.6967% +Rate for instruction 11523: 17.6968% +Rate for instruction 11524: 17.6963% +Rate for instruction 11525: 17.6974% +Rate for instruction 11526: 17.6989% +Rate for instruction 11527: 17.6977% +Rate for instruction 11528: 17.6972% +Rate for instruction 11529: 17.697% +Rate for instruction 11530: 17.6978% +Rate for instruction 11531: 17.7006% +Rate for instruction 11532: 17.7% +Rate for instruction 11533: 17.7018% +Rate for instruction 11534: 17.702% +Rate for instruction 11535: 17.7011% +Rate for instruction 11536: 17.7012% +Rate for instruction 11537: 17.702% +Rate for instruction 11538: 17.7025% +Rate for instruction 11539: 17.7033% +Rate for instruction 11540: 17.7044% +Rate for instruction 11541: 17.7032% +Rate for instruction 11542: 17.7027% +Rate for instruction 11543: 17.7035% +Rate for instruction 11544: 17.7043% +Rate for instruction 11545: 17.7031% +Rate for instruction 11546: 17.7032% +Rate for instruction 11547: 17.702% +Rate for instruction 11548: 17.7012% +Rate for instruction 11549: 17.7% +Rate for instruction 11550: 17.6994% +Rate for instruction 11551: 17.6982% +Rate for instruction 11552: 17.6974% +Rate for instruction 11553: 17.6972% +Rate for instruction 11554: 17.696% +Rate for instruction 11555: 17.6951% +Rate for instruction 11556: 17.6939% +Rate for instruction 11557: 17.6944% +Rate for instruction 11558: 17.6938% +Rate for instruction 11559: 17.695% +Rate for instruction 11560: 17.6951% +Rate for instruction 11561: 17.6962% +Rate for instruction 11562: 17.6954% +Rate for instruction 11563: 17.6962% +Rate for instruction 11564: 17.6973% +Rate for instruction 11565: 17.6974% +Rate for instruction 11566: 17.6976% +Rate for instruction 11567: 17.6977% +Rate for instruction 11568: 17.6975% +Rate for instruction 11569: 17.6973% +Rate for instruction 11570: 17.6964% +Rate for instruction 11571: 17.6959% +Rate for instruction 11572: 17.6954% +Rate for instruction 11573: 17.6952% +Rate for instruction 11574: 17.6943% +Rate for instruction 11575: 17.6931% +Rate for instruction 11576: 17.6926% +Rate for instruction 11577: 17.6914% +Rate for instruction 11578: 17.6908% +Rate for instruction 11579: 17.69% +Rate for instruction 11580: 17.6908% +Rate for instruction 11581: 17.6906% +Rate for instruction 11582: 17.6904% +Rate for instruction 11583: 17.6908% +Rate for instruction 11584: 17.693% +Rate for instruction 11585: 17.6944% +Rate for instruction 11586: 17.6962% +Rate for instruction 11587: 17.6977% +Rate for instruction 11588: 17.6965% +Rate for instruction 11589: 17.6956% +Rate for instruction 11590: 17.6944% +Rate for instruction 11591: 17.6946% +Rate for instruction 11592: 17.6937% +Rate for instruction 11593: 17.6938% +Rate for instruction 11594: 17.6926% +Rate for instruction 11595: 17.6918% +Rate for instruction 11596: 17.6912% +Rate for instruction 11597: 17.692% +Rate for instruction 11598: 17.6915% +Rate for instruction 11599: 17.6913% +Rate for instruction 11600: 17.6908% +Rate for instruction 11601: 17.6926% +Rate for instruction 11602: 17.6934% +Rate for instruction 11603: 17.6935% +Rate for instruction 11604: 17.6943% +Rate for instruction 11605: 17.6931% +Rate for instruction 11606: 17.6936% +Rate for instruction 11607: 17.694% +Rate for instruction 11608: 17.6952% +Rate for instruction 11609: 17.6953% +Rate for instruction 11610: 17.6958% +Rate for instruction 11611: 17.6965% +Rate for instruction 11612: 17.6957% +Rate for instruction 11613: 17.6952% +Rate for instruction 11614: 17.694% +Rate for instruction 11615: 17.6944% +Rate for instruction 11616: 17.6936% +Rate for instruction 11617: 17.693% +Rate for instruction 11618: 17.6922% +Rate for instruction 11619: 17.6913% +Rate for instruction 11620: 17.6918% +Rate for instruction 11621: 17.6912% +Rate for instruction 11622: 17.6901% +Rate for instruction 11623: 17.6902% +Rate for instruction 11624: 17.6893% +Rate for instruction 11625: 17.6881% +Rate for instruction 11626: 17.6873% +Rate for instruction 11627: 17.6864% +Rate for instruction 11628: 17.6882% +Rate for instruction 11629: 17.687% +Rate for instruction 11630: 17.6868% +Rate for instruction 11631: 17.6876% +Rate for instruction 11632: 17.6864% +Rate for instruction 11633: 17.6879% +Rate for instruction 11634: 17.6893% +Rate for instruction 11635: 17.6911% +Rate for instruction 11636: 17.6909% +Rate for instruction 11637: 17.693% +Rate for instruction 11638: 17.6945% +Rate for instruction 11639: 17.6946% +Rate for instruction 11640: 17.6944% +Rate for instruction 11641: 17.6936% +Rate for instruction 11642: 17.6934% +Rate for instruction 11643: 17.6932% +Rate for instruction 11644: 17.6933% +Rate for instruction 11645: 17.6931% +Rate for instruction 11646: 17.6926% +Rate for instruction 11647: 17.6914% +Rate for instruction 11648: 17.6902% +Rate for instruction 11649: 17.6897% +Rate for instruction 11650: 17.6885% +Rate for instruction 11651: 17.6876% +Rate for instruction 11652: 17.6881% +Rate for instruction 11653: 17.6876% +Rate for instruction 11654: 17.6893% +Rate for instruction 11655: 17.6882% +Rate for instruction 11656: 17.6903% +Rate for instruction 11657: 17.6897% +Rate for instruction 11658: 17.6885% +Rate for instruction 11659: 17.6903% +Rate for instruction 11660: 17.6921% +Rate for instruction 11661: 17.6942% +Rate for instruction 11662: 17.6937% +Rate for instruction 11663: 17.6942% +Rate for instruction 11664: 17.6959% +Rate for instruction 11665: 17.6984% +Rate for instruction 11666: 17.7002% +Rate for instruction 11667: 17.7009% +Rate for instruction 11668: 17.7004% +Rate for instruction 11669: 17.7025% +Rate for instruction 11670: 17.7033% +Rate for instruction 11671: 17.7031% +Rate for instruction 11672: 17.7049% +Rate for instruction 11673: 17.7057% +Rate for instruction 11674: 17.7058% +Rate for instruction 11675: 17.705% +Rate for instruction 11676: 17.7044% +Rate for instruction 11677: 17.7046% +Rate for instruction 11678: 17.7034% +Rate for instruction 11679: 17.7025% +Rate for instruction 11680: 17.7013% +Rate for instruction 11681: 17.7008% +Rate for instruction 11682: 17.6996% +Rate for instruction 11683: 17.6997% +Rate for instruction 11684: 17.6992% +Rate for instruction 11685: 17.699% +Rate for instruction 11686: 17.6985% +Rate for instruction 11687: 17.6973% +Rate for instruction 11688: 17.6965% +Rate for instruction 11689: 17.6963% +Rate for instruction 11690: 17.6951% +Rate for instruction 11691: 17.6955% +Rate for instruction 11692: 17.6973% +Rate for instruction 11693: 17.6991% +Rate for instruction 11694: 17.7002% +Rate for instruction 11695: 17.699% +Rate for instruction 11696: 17.6988% +Rate for instruction 11697: 17.6996% +Rate for instruction 11698: 17.7004% +Rate for instruction 11699: 17.6992% +Rate for instruction 11700: 17.7003% +Rate for instruction 11701: 17.7001% +Rate for instruction 11702: 17.6993% +Rate for instruction 11703: 17.7004% +Rate for instruction 11704: 17.6995% +Rate for instruction 11705: 17.7007% +Rate for instruction 11706: 17.7021% +Rate for instruction 11707: 17.7032% +Rate for instruction 11708: 17.7043% +Rate for instruction 11709: 17.7041% +Rate for instruction 11710: 17.7039% +Rate for instruction 11711: 17.7034% +Rate for instruction 11712: 17.7022% +Rate for instruction 11713: 17.702% +Rate for instruction 11714: 17.7012% +Rate for instruction 11715: 17.7006% +Rate for instruction 11716: 17.7004% +Rate for instruction 11717: 17.6996% +Rate for instruction 11718: 17.6987% +Rate for instruction 11719: 17.6982% +Rate for instruction 11720: 17.6993% +Rate for instruction 11721: 17.6981% +Rate for instruction 11722: 17.6996% +Rate for instruction 11723: 17.6994% +Rate for instruction 11724: 17.6992% +Rate for instruction 11725: 17.7003% +Rate for instruction 11726: 17.7024% +Rate for instruction 11727: 17.7048% +Rate for instruction 11728: 17.7043% +Rate for instruction 11729: 17.7038% +Rate for instruction 11730: 17.7052% +Rate for instruction 11731: 17.707% +Rate for instruction 11732: 17.7061% +Rate for instruction 11733: 17.7073% +Rate for instruction 11734: 17.7061% +Rate for instruction 11735: 17.7052% +Rate for instruction 11736: 17.704% +Rate for instruction 11737: 17.7048% +Rate for instruction 11738: 17.7063% +Rate for instruction 11739: 17.7051% +Rate for instruction 11740: 17.7046% +Rate for instruction 11741: 17.7037% +Rate for instruction 11742: 17.7051% +Rate for instruction 11743: 17.7063% +Rate for instruction 11744: 17.7051% +Rate for instruction 11745: 17.7059% +Rate for instruction 11746: 17.7047% +Rate for instruction 11747: 17.7058% +Rate for instruction 11748: 17.7049% +Rate for instruction 11749: 17.7047% +Rate for instruction 11750: 17.7042% +Rate for instruction 11751: 17.7044% +Rate for instruction 11752: 17.7032% +Rate for instruction 11753: 17.7026% +Rate for instruction 11754: 17.7018% +Rate for instruction 11755: 17.7013% +Rate for instruction 11756: 17.7004% +Rate for instruction 11757: 17.7009% +Rate for instruction 11758: 17.702% +Rate for instruction 11759: 17.7011% +Rate for instruction 11760: 17.7032% +Rate for instruction 11761: 17.7021% +Rate for instruction 11762: 17.7015% +Rate for instruction 11763: 17.702% +Rate for instruction 11764: 17.7008% +Rate for instruction 11765: 17.7022% +Rate for instruction 11766: 17.7037% +Rate for instruction 11767: 17.7054% +Rate for instruction 11768: 17.7052% +Rate for instruction 11769: 17.7073% +Rate for instruction 11770: 17.7062% +Rate for instruction 11771: 17.7086% +Rate for instruction 11772: 17.7097% +Rate for instruction 11773: 17.7105% +Rate for instruction 11774: 17.7096% +Rate for instruction 11775: 17.7107% +Rate for instruction 11776: 17.7122% +Rate for instruction 11777: 17.7139% +Rate for instruction 11778: 17.7131% +Rate for instruction 11779: 17.7119% +Rate for instruction 11780: 17.7133% +Rate for instruction 11781: 17.7135% +Rate for instruction 11782: 17.7136% +Rate for instruction 11783: 17.7147% +Rate for instruction 11784: 17.7138% +Rate for instruction 11785: 17.7159% +Rate for instruction 11786: 17.7157% +Rate for instruction 11787: 17.7152% +Rate for instruction 11788: 17.714% +Rate for instruction 11789: 17.7135% +Rate for instruction 11790: 17.7127% +Rate for instruction 11791: 17.7128% +Rate for instruction 11792: 17.7126% +Rate for instruction 11793: 17.7114% +Rate for instruction 11794: 17.7106% +Rate for instruction 11795: 17.71% +Rate for instruction 11796: 17.7092% +Rate for instruction 11797: 17.7083% +Rate for instruction 11798: 17.7072% +Rate for instruction 11799: 17.707% +Rate for instruction 11800: 17.7081% +Rate for instruction 11801: 17.7102% +Rate for instruction 11802: 17.709% +Rate for instruction 11803: 17.7085% +Rate for instruction 11804: 17.7086% +Rate for instruction 11805: 17.7087% +Rate for instruction 11806: 17.7079% +Rate for instruction 11807: 17.7074% +Rate for instruction 11808: 17.7091% +Rate for instruction 11809: 17.7079% +Rate for instruction 11810: 17.7087% +Rate for instruction 11811: 17.7075% +Rate for instruction 11812: 17.707% +Rate for instruction 11813: 17.7088% +Rate for instruction 11814: 17.7102% +Rate for instruction 11815: 17.7094% +Rate for instruction 11816: 17.7082% +Rate for instruction 11817: 17.709% +Rate for instruction 11818: 17.7081% +Rate for instruction 11819: 17.7083% +Rate for instruction 11820: 17.7081% +Rate for instruction 11821: 17.7082% +Rate for instruction 11822: 17.7073% +Rate for instruction 11823: 17.7062% +Rate for instruction 11824: 17.7056% +Rate for instruction 11825: 17.7058% +Rate for instruction 11826: 17.7056% +Rate for instruction 11827: 17.7057% +Rate for instruction 11828: 17.7058% +Rate for instruction 11829: 17.7056% +Rate for instruction 11830: 17.7045% +Rate for instruction 11831: 17.7033% +Rate for instruction 11832: 17.7034% +Rate for instruction 11833: 17.7026% +Rate for instruction 11834: 17.7034% +Rate for instruction 11835: 17.7038% +Rate for instruction 11836: 17.7039% +Rate for instruction 11837: 17.7031% +Rate for instruction 11838: 17.7039% +Rate for instruction 11839: 17.7034% +Rate for instruction 11840: 17.7045% +Rate for instruction 11841: 17.7056% +Rate for instruction 11842: 17.706% +Rate for instruction 11843: 17.7061% +Rate for instruction 11844: 17.7059% +Rate for instruction 11845: 17.7054% +Rate for instruction 11846: 17.7056% +Rate for instruction 11847: 17.7044% +Rate for instruction 11848: 17.7039% +Rate for instruction 11849: 17.7027% +Rate for instruction 11850: 17.7025% +Rate for instruction 11851: 17.7013% +Rate for instruction 11852: 17.7005% +Rate for instruction 11853: 17.7022% +Rate for instruction 11854: 17.7043% +Rate for instruction 11855: 17.7051% +Rate for instruction 11856: 17.7062% +Rate for instruction 11857: 17.707% +Rate for instruction 11858: 17.7068% +Rate for instruction 11859: 17.7072% +Rate for instruction 11860: 17.7067% +Rate for instruction 11861: 17.7068% +Rate for instruction 11862: 17.7066% +Rate for instruction 11863: 17.7064% +Rate for instruction 11864: 17.7066% +Rate for instruction 11865: 17.7064% +Rate for instruction 11866: 17.7062% +Rate for instruction 11867: 17.707% +Rate for instruction 11868: 17.7061% +Rate for instruction 11869: 17.7056% +Rate for instruction 11870: 17.7054% +Rate for instruction 11871: 17.7042% +Rate for instruction 11872: 17.7031% +Rate for instruction 11873: 17.7042% +Rate for instruction 11874: 17.7036% +Rate for instruction 11875: 17.7034% +Rate for instruction 11876: 17.7052% +Rate for instruction 11877: 17.7044% +Rate for instruction 11878: 17.7058% +Rate for instruction 11879: 17.7053% +Rate for instruction 11880: 17.7041% +Rate for instruction 11881: 17.7029% +Rate for instruction 11882: 17.7024% +Rate for instruction 11883: 17.7042% +Rate for instruction 11884: 17.7033% +Rate for instruction 11885: 17.7041% +Rate for instruction 11886: 17.7052% +Rate for instruction 11887: 17.705% +Rate for instruction 11888: 17.7038% +Rate for instruction 11889: 17.7056% +Rate for instruction 11890: 17.7063% +Rate for instruction 11891: 17.7068% +Rate for instruction 11892: 17.7082% +Rate for instruction 11893: 17.7071% +Rate for instruction 11894: 17.7065% +Rate for instruction 11895: 17.7057% +Rate for instruction 11896: 17.7045% +Rate for instruction 11897: 17.704% +Rate for instruction 11898: 17.7028% +Rate for instruction 11899: 17.7036% +Rate for instruction 11900: 17.7044% +Rate for instruction 11901: 17.7045% +Rate for instruction 11902: 17.7047% +Rate for instruction 11903: 17.7048% +Rate for instruction 11904: 17.7043% +Rate for instruction 11905: 17.7044% +Rate for instruction 11906: 17.7055% +Rate for instruction 11907: 17.7046% +Rate for instruction 11908: 17.7061% +Rate for instruction 11909: 17.7081% +Rate for instruction 11910: 17.7083% +Rate for instruction 11911: 17.7081% +Rate for instruction 11912: 17.7079% +Rate for instruction 11913: 17.708% +Rate for instruction 11914: 17.7072% +Rate for instruction 11915: 17.707% +Rate for instruction 11916: 17.7074% +Rate for instruction 11917: 17.7075% +Rate for instruction 11918: 17.707% +Rate for instruction 11919: 17.7062% +Rate for instruction 11920: 17.7057% +Rate for instruction 11921: 17.7048% +Rate for instruction 11922: 17.7037% +Rate for instruction 11923: 17.7038% +Rate for instruction 11924: 17.7049% +Rate for instruction 11925: 17.705% +Rate for instruction 11926: 17.7048% +Rate for instruction 11927: 17.7037% +Rate for instruction 11928: 17.7035% +Rate for instruction 11929: 17.7036% +Rate for instruction 11930: 17.7028% +Rate for instruction 11931: 17.7026% +Rate for instruction 11932: 17.703% +Rate for instruction 11933: 17.7028% +Rate for instruction 11934: 17.7026% +Rate for instruction 11935: 17.7027% +Rate for instruction 11936: 17.7026% +Rate for instruction 11937: 17.7014% +Rate for instruction 11938: 17.7028% +Rate for instruction 11939: 17.7026% +Rate for instruction 11940: 17.7024% +Rate for instruction 11941: 17.7022% +Rate for instruction 11942: 17.7011% +Rate for instruction 11943: 17.7009% +Rate for instruction 11944: 17.7004% +Rate for instruction 11945: 17.7002% +Rate for instruction 11946: 17.6996% +Rate for instruction 11947: 17.6991% +Rate for instruction 11948: 17.6986% +Rate for instruction 11949: 17.6975% +Rate for instruction 11950: 17.6969% +Rate for instruction 11951: 17.6974% +Rate for instruction 11952: 17.6982% +Rate for instruction 11953: 17.6993% +Rate for instruction 11954: 17.7% +Rate for instruction 11955: 17.6995% +Rate for instruction 11956: 17.6984% +Rate for instruction 11957: 17.6978% +Rate for instruction 11958: 17.6976% +Rate for instruction 11959: 17.6968% +Rate for instruction 11960: 17.6966% +Rate for instruction 11961: 17.6967% +Rate for instruction 11962: 17.6969% +Rate for instruction 11963: 17.6967% +Rate for instruction 11964: 17.6965% +Rate for instruction 11965: 17.6953% +Rate for instruction 11966: 17.6958% +Rate for instruction 11967: 17.6949% +Rate for instruction 11968: 17.6954% +Rate for instruction 11969: 17.6942% +Rate for instruction 11970: 17.6931% +Rate for instruction 11971: 17.6932% +Rate for instruction 11972: 17.6927% +Rate for instruction 11973: 17.6919% +Rate for instruction 11974: 17.6907% +Rate for instruction 11975: 17.6895% +Rate for instruction 11976: 17.69% +Rate for instruction 11977: 17.6898% +Rate for instruction 11978: 17.6886% +Rate for instruction 11979: 17.6888% +Rate for instruction 11980: 17.6886% +Rate for instruction 11981: 17.6881% +Rate for instruction 11982: 17.6892% +Rate for instruction 11983: 17.6899% +Rate for instruction 11984: 17.6907% +Rate for instruction 11985: 17.6902% +Rate for instruction 11986: 17.69% +Rate for instruction 11987: 17.6892% +Rate for instruction 11988: 17.6893% +Rate for instruction 11989: 17.6888% +Rate for instruction 11990: 17.6902% +Rate for instruction 11991: 17.6913% +Rate for instruction 11992: 17.6901% +Rate for instruction 11993: 17.6893% +Rate for instruction 11994: 17.6894% +Rate for instruction 11995: 17.6905% +Rate for instruction 11996: 17.6897% +Rate for instruction 11997: 17.6898% +Rate for instruction 11998: 17.6896% +Rate for instruction 11999: 17.6897% +Rate for instruction 12000: 17.6902% +Rate for instruction 12001: 17.69% +Rate for instruction 12002: 17.6898% +Rate for instruction 12003: 17.6896% +Rate for instruction 12004: 17.6904% +Rate for instruction 12005: 17.6902% +Rate for instruction 12006: 17.6913% +Rate for instruction 12007: 17.6921% +Rate for instruction 12008: 17.6912% +Rate for instruction 12009: 17.6913% +Rate for instruction 12010: 17.6908% +Rate for instruction 12011: 17.6903% +Rate for instruction 12012: 17.6895% +Rate for instruction 12013: 17.6887% +Rate for instruction 12014: 17.6875% +Rate for instruction 12015: 17.6873% +Rate for instruction 12016: 17.6871% +Rate for instruction 12017: 17.6879% +Rate for instruction 12018: 17.6877% +Rate for instruction 12019: 17.6878% +Rate for instruction 12020: 17.6873% +Rate for instruction 12021: 17.6881% +Rate for instruction 12022: 17.6879% +Rate for instruction 12023: 17.688% +Rate for instruction 12024: 17.6881% +Rate for instruction 12025: 17.6873% +Rate for instruction 12026: 17.6871% +Rate for instruction 12027: 17.6866% +Rate for instruction 12028: 17.6858% +Rate for instruction 12029: 17.6853% +Rate for instruction 12030: 17.6851% +Rate for instruction 12031: 17.6852% +Rate for instruction 12032: 17.6847% +Rate for instruction 12033: 17.6845% +Rate for instruction 12034: 17.6846% +Rate for instruction 12035: 17.6851% +Rate for instruction 12036: 17.6846% +Rate for instruction 12037: 17.6844% +Rate for instruction 12038: 17.6842% +Rate for instruction 12039: 17.6843% +Rate for instruction 12040: 17.6848% +Rate for instruction 12041: 17.6843% +Rate for instruction 12042: 17.6847% +Rate for instruction 12043: 17.6858% +Rate for instruction 12044: 17.6869% +Rate for instruction 12045: 17.6883% +Rate for instruction 12046: 17.69% +Rate for instruction 12047: 17.6895% +Rate for instruction 12048: 17.689% +Rate for instruction 12049: 17.6898% +Rate for instruction 12050: 17.6912% +Rate for instruction 12051: 17.6916% +Rate for instruction 12052: 17.693% +Rate for instruction 12053: 17.6938% +Rate for instruction 12054: 17.6942% +Rate for instruction 12055: 17.695% +Rate for instruction 12056: 17.6942% +Rate for instruction 12057: 17.6962% +Rate for instruction 12058: 17.6976% +Rate for instruction 12059: 17.698% +Rate for instruction 12060: 17.6995% +Rate for instruction 12061: 17.6986% +Rate for instruction 12062: 17.6975% +Rate for instruction 12063: 17.6976% +Rate for instruction 12064: 17.6965% +Rate for instruction 12065: 17.6966% +Rate for instruction 12066: 17.6958% +Rate for instruction 12067: 17.6946% +Rate for instruction 12068: 17.6941% +Rate for instruction 12069: 17.6933% +Rate for instruction 12070: 17.6928% +Rate for instruction 12071: 17.6929% +Rate for instruction 12072: 17.6924% +Rate for instruction 12073: 17.6935% +Rate for instruction 12074: 17.6923% +Rate for instruction 12075: 17.6921% +Rate for instruction 12076: 17.6913% +Rate for instruction 12077: 17.6911% +Rate for instruction 12078: 17.6906% +Rate for instruction 12079: 17.6901% +Rate for instruction 12080: 17.6893% +Rate for instruction 12081: 17.6897% +Rate for instruction 12082: 17.6898% +Rate for instruction 12083: 17.6903% +Rate for instruction 12084: 17.6901% +Rate for instruction 12085: 17.6899% +Rate for instruction 12086: 17.6894% +Rate for instruction 12087: 17.6886% +Rate for instruction 12088: 17.6893% +Rate for instruction 12089: 17.6885% +Rate for instruction 12090: 17.688% +Rate for instruction 12091: 17.6881% +Rate for instruction 12092: 17.6876% +Rate for instruction 12093: 17.6874% +Rate for instruction 12094: 17.6901% +Rate for instruction 12095: 17.6908% +Rate for instruction 12096: 17.6907% +Rate for instruction 12097: 17.6898% +Rate for instruction 12098: 17.6887% +Rate for instruction 12099: 17.6885% +Rate for instruction 12100: 17.6873% +Rate for instruction 12101: 17.6865% +Rate for instruction 12102: 17.6854% +Rate for instruction 12103: 17.6871% +Rate for instruction 12104: 17.6875% +Rate for instruction 12105: 17.6877% +Rate for instruction 12106: 17.6872% +Rate for instruction 12107: 17.6863% +Rate for instruction 12108: 17.6852% +Rate for instruction 12109: 17.6856% +Rate for instruction 12110: 17.6845% +Rate for instruction 12111: 17.6846% +Rate for instruction 12112: 17.6844% +Rate for instruction 12113: 17.6833% +Rate for instruction 12114: 17.6825% +Rate for instruction 12115: 17.6826% +Rate for instruction 12116: 17.683% +Rate for instruction 12117: 17.6822% +Rate for instruction 12118: 17.683% +Rate for instruction 12119: 17.6822% +Rate for instruction 12120: 17.682% +Rate for instruction 12121: 17.6818% +Rate for instruction 12122: 17.6809% +Rate for instruction 12123: 17.6811% +Rate for instruction 12124: 17.6799% +Rate for instruction 12125: 17.6794% +Rate for instruction 12126: 17.6786% +Rate for instruction 12127: 17.6778% +Rate for instruction 12128: 17.6773% +Rate for instruction 12129: 17.6771% +Rate for instruction 12130: 17.6759% +Rate for instruction 12131: 17.6754% +Rate for instruction 12132: 17.6756% +Rate for instruction 12133: 17.6751% +Rate for instruction 12134: 17.6752% +Rate for instruction 12135: 17.6747% +Rate for instruction 12136: 17.6742% +Rate for instruction 12137: 17.674% +Rate for instruction 12138: 17.6767% +Rate for instruction 12139: 17.6765% +Rate for instruction 12140: 17.6763% +Rate for instruction 12141: 17.6751% +Rate for instruction 12142: 17.6772% +Rate for instruction 12143: 17.6795% +Rate for instruction 12144: 17.68% +Rate for instruction 12145: 17.682% +Rate for instruction 12146: 17.6812% +Rate for instruction 12147: 17.6803% +Rate for instruction 12148: 17.6805% +Rate for instruction 12149: 17.6796% +Rate for instruction 12150: 17.6795% +Rate for instruction 12151: 17.6799% +Rate for instruction 12152: 17.6791% +Rate for instruction 12153: 17.6802% +Rate for instruction 12154: 17.6793% +Rate for instruction 12155: 17.6795% +Rate for instruction 12156: 17.6805% +Rate for instruction 12157: 17.6829% +Rate for instruction 12158: 17.6817% +Rate for instruction 12159: 17.6809% +Rate for instruction 12160: 17.6801% +Rate for instruction 12161: 17.6809% +Rate for instruction 12162: 17.6819% +Rate for instruction 12163: 17.6811% +Rate for instruction 12164: 17.6806% +Rate for instruction 12165: 17.6798% +Rate for instruction 12166: 17.679% +Rate for instruction 12167: 17.6785% +Rate for instruction 12168: 17.678% +Rate for instruction 12169: 17.6781% +Rate for instruction 12170: 17.6773% +Rate for instruction 12171: 17.6764% +Rate for instruction 12172: 17.6756% +Rate for instruction 12173: 17.678% +Rate for instruction 12174: 17.6778% +Rate for instruction 12175: 17.6804% +Rate for instruction 12176: 17.6799% +Rate for instruction 12177: 17.6823% +Rate for instruction 12178: 17.6811% +Rate for instruction 12179: 17.6835% +Rate for instruction 12180: 17.683% +Rate for instruction 12181: 17.6818% +Rate for instruction 12182: 17.6845% +Rate for instruction 12183: 17.6874% +Rate for instruction 12184: 17.6866% +Rate for instruction 12185: 17.6868% +Rate for instruction 12186: 17.6881% +Rate for instruction 12187: 17.6873% +Rate for instruction 12188: 17.6868% +Rate for instruction 12189: 17.6876% +Rate for instruction 12190: 17.6871% +Rate for instruction 12191: 17.6888% +Rate for instruction 12192: 17.6895% +Rate for instruction 12193: 17.6884% +Rate for instruction 12194: 17.6895% +Rate for instruction 12195: 17.6909% +Rate for instruction 12196: 17.6926% +Rate for instruction 12197: 17.6933% +Rate for instruction 12198: 17.6944% +Rate for instruction 12199: 17.6933% +Rate for instruction 12200: 17.695% +Rate for instruction 12201: 17.6963% +Rate for instruction 12202: 17.698% +Rate for instruction 12203: 17.6994% +Rate for instruction 12204: 17.6986% +Rate for instruction 12205: 17.6978% +Rate for instruction 12206: 17.697% +Rate for instruction 12207: 17.6962% +Rate for instruction 12208: 17.6956% +Rate for instruction 12209: 17.6951% +Rate for instruction 12210: 17.6946% +Rate for instruction 12211: 17.6941% +Rate for instruction 12212: 17.6936% +Rate for instruction 12213: 17.6934% +Rate for instruction 12214: 17.6933% +Rate for instruction 12215: 17.6931% +Rate for instruction 12216: 17.6929% +Rate for instruction 12217: 17.6917% +Rate for instruction 12218: 17.6916% +Rate for instruction 12219: 17.6917% +Rate for instruction 12220: 17.6912% +Rate for instruction 12221: 17.6907% +Rate for instruction 12222: 17.6899% +Rate for instruction 12223: 17.6894% +Rate for instruction 12224: 17.6892% +Rate for instruction 12225: 17.6887% +Rate for instruction 12226: 17.69% +Rate for instruction 12227: 17.6908% +Rate for instruction 12228: 17.6934% +Rate for instruction 12229: 17.6939% +Rate for instruction 12230: 17.6956% +Rate for instruction 12231: 17.6976% +Rate for instruction 12232: 17.6999% +Rate for instruction 12233: 17.6988% +Rate for instruction 12234: 17.7002% +Rate for instruction 12235: 17.7028% +Rate for instruction 12236: 17.7032% +Rate for instruction 12237: 17.7046% +Rate for instruction 12238: 17.706% +Rate for instruction 12239: 17.7077% +Rate for instruction 12240: 17.7088% +Rate for instruction 12241: 17.7083% +Rate for instruction 12242: 17.7074% +Rate for instruction 12243: 17.7069% +Rate for instruction 12244: 17.7061% +Rate for instruction 12245: 17.705% +Rate for instruction 12246: 17.7051% +Rate for instruction 12247: 17.7056% +Rate for instruction 12248: 17.7047% +Rate for instruction 12249: 17.7042% +Rate for instruction 12250: 17.7059% +Rate for instruction 12251: 17.7048% +Rate for instruction 12252: 17.7043% +Rate for instruction 12253: 17.7063% +Rate for instruction 12254: 17.7074% +Rate for instruction 12255: 17.7081% +Rate for instruction 12256: 17.7079% +Rate for instruction 12257: 17.709% +Rate for instruction 12258: 17.7098% +Rate for instruction 12259: 17.7086% +Rate for instruction 12260: 17.7109% +Rate for instruction 12261: 17.7133% +Rate for instruction 12262: 17.7128% +Rate for instruction 12263: 17.7132% +Rate for instruction 12264: 17.7155% +Rate for instruction 12265: 17.715% +Rate for instruction 12266: 17.7173% +Rate for instruction 12267: 17.7209% +Rate for instruction 12268: 17.7198% +Rate for instruction 12269: 17.7193% +Rate for instruction 12270: 17.7184% +Rate for instruction 12271: 17.7211% +Rate for instruction 12272: 17.7228% +Rate for instruction 12273: 17.7223% +Rate for instruction 12274: 17.7236% +Rate for instruction 12275: 17.7231% +Rate for instruction 12276: 17.722% +Rate for instruction 12277: 17.7218% +Rate for instruction 12278: 17.7207% +Rate for instruction 12279: 17.7199% +Rate for instruction 12280: 17.7187% +Rate for instruction 12281: 17.7182% +Rate for instruction 12282: 17.7174% +Rate for instruction 12283: 17.7182% +Rate for instruction 12284: 17.718% +Rate for instruction 12285: 17.7181% +Rate for instruction 12286: 17.7179% +Rate for instruction 12287: 17.7183% +Rate for instruction 12288: 17.7185% +Rate for instruction 12289: 17.7189% +Rate for instruction 12290: 17.7218% +Rate for instruction 12291: 17.7232% +Rate for instruction 12292: 17.7221% +Rate for instruction 12293: 17.7241% +Rate for instruction 12294: 17.7236% +Rate for instruction 12295: 17.7234% +Rate for instruction 12296: 17.7229% +Rate for instruction 12297: 17.7218% +Rate for instruction 12298: 17.7206% +Rate for instruction 12299: 17.7208% +Rate for instruction 12300: 17.7221% +Rate for instruction 12301: 17.7238% +Rate for instruction 12302: 17.7236% +Rate for instruction 12303: 17.7263% +Rate for instruction 12304: 17.7273% +Rate for instruction 12305: 17.729% +Rate for instruction 12306: 17.7319% +Rate for instruction 12307: 17.7342% +Rate for instruction 12308: 17.7334% +Rate for instruction 12309: 17.7329% +Rate for instruction 12310: 17.7362% +Rate for instruction 12311: 17.736% +Rate for instruction 12312: 17.7377% +Rate for instruction 12313: 17.7384% +Rate for instruction 12314: 17.7376% +Rate for instruction 12315: 17.7368% +Rate for instruction 12316: 17.7356% +Rate for instruction 12317: 17.7376% +Rate for instruction 12318: 17.7368% +Rate for instruction 12319: 17.736% +Rate for instruction 12320: 17.7349% +Rate for instruction 12321: 17.7347% +Rate for instruction 12322: 17.7351% +Rate for instruction 12323: 17.7346% +Rate for instruction 12324: 17.7341% +Rate for instruction 12325: 17.7333% +Rate for instruction 12326: 17.7334% +Rate for instruction 12327: 17.7336% +Rate for instruction 12328: 17.7334% +Rate for instruction 12329: 17.7347% +Rate for instruction 12330: 17.7373% +Rate for instruction 12331: 17.7372% +Rate for instruction 12332: 17.7376% +Rate for instruction 12333: 17.7383% +Rate for instruction 12334: 17.7381% +Rate for instruction 12335: 17.7401% +Rate for instruction 12336: 17.7399% +Rate for instruction 12337: 17.7429% +Rate for instruction 12338: 17.7417% +Rate for instruction 12339: 17.7428% +Rate for instruction 12340: 17.7439% +Rate for instruction 12341: 17.7462% +Rate for instruction 12342: 17.7466% +Rate for instruction 12343: 17.7476% +Rate for instruction 12344: 17.7471% +Rate for instruction 12345: 17.746% +Rate for instruction 12346: 17.7464% +Rate for instruction 12347: 17.7475% +Rate for instruction 12348: 17.7479% +Rate for instruction 12349: 17.7481% +Rate for instruction 12350: 17.7485% +Rate for instruction 12351: 17.7489% +Rate for instruction 12352: 17.7487% +Rate for instruction 12353: 17.7479% +Rate for instruction 12354: 17.7483% +Rate for instruction 12355: 17.7472% +Rate for instruction 12356: 17.7461% +Rate for instruction 12357: 17.7453% +Rate for instruction 12358: 17.7442% +Rate for instruction 12359: 17.7443% +Rate for instruction 12360: 17.745% +Rate for instruction 12361: 17.7448% +Rate for instruction 12362: 17.7456% +Rate for instruction 12363: 17.7454% +Rate for instruction 12364: 17.7452% +Rate for instruction 12365: 17.7441% +Rate for instruction 12366: 17.7439% +Rate for instruction 12367: 17.7431% +Rate for instruction 12368: 17.7426% +Rate for instruction 12369: 17.7445% +Rate for instruction 12370: 17.7472% +Rate for instruction 12371: 17.7463% +Rate for instruction 12372: 17.7471% +Rate for instruction 12373: 17.746% +Rate for instruction 12374: 17.7448% +Rate for instruction 12375: 17.7456% +Rate for instruction 12376: 17.7448% +Rate for instruction 12377: 17.7436% +Rate for instruction 12378: 17.7444% +Rate for instruction 12379: 17.7457% +Rate for instruction 12380: 17.7474% +Rate for instruction 12381: 17.7494% +Rate for instruction 12382: 17.7489% +Rate for instruction 12383: 17.7506% +Rate for instruction 12384: 17.7522% +Rate for instruction 12385: 17.7524% +Rate for instruction 12386: 17.7512% +Rate for instruction 12387: 17.751% +Rate for instruction 12388: 17.7499% +Rate for instruction 12389: 17.7494% +Rate for instruction 12390: 17.7489% +Rate for instruction 12391: 17.7487% +Rate for instruction 12392: 17.7476% +Rate for instruction 12393: 17.7465% +Rate for instruction 12394: 17.746% +Rate for instruction 12395: 17.7452% +Rate for instruction 12396: 17.7444% +Rate for instruction 12397: 17.7439% +Rate for instruction 12398: 17.7434% +Rate for instruction 12399: 17.7432% +Rate for instruction 12400: 17.7427% +Rate for instruction 12401: 17.7425% +Rate for instruction 12402: 17.7423% +Rate for instruction 12403: 17.7424% +Rate for instruction 12404: 17.7425% +Rate for instruction 12405: 17.7454% +Rate for instruction 12406: 17.7477% +Rate for instruction 12407: 17.7482% +Rate for instruction 12408: 17.7486% +Rate for instruction 12409: 17.7478% +Rate for instruction 12410: 17.7501% +Rate for instruction 12411: 17.7493% +Rate for instruction 12412: 17.7485% +Rate for instruction 12413: 17.7483% +Rate for instruction 12414: 17.7505% +Rate for instruction 12415: 17.75% +Rate for instruction 12416: 17.7492% +Rate for instruction 12417: 17.7512% +Rate for instruction 12418: 17.7526% +Rate for instruction 12419: 17.7539% +Rate for instruction 12420: 17.7541% +Rate for instruction 12421: 17.7545% +Rate for instruction 12422: 17.7537% +Rate for instruction 12423: 17.7556% +Rate for instruction 12424: 17.7576% +Rate for instruction 12425: 17.7581% +Rate for instruction 12426: 17.76% +Rate for instruction 12427: 17.7605% +Rate for instruction 12428: 17.7612% +Rate for instruction 12429: 17.7619% +Rate for instruction 12430: 17.7636% +Rate for instruction 12431: 17.7628% +Rate for instruction 12432: 17.7617% +Rate for instruction 12433: 17.7609% +Rate for instruction 12434: 17.7604% +Rate for instruction 12435: 17.7592% +Rate for instruction 12436: 17.7584% +Rate for instruction 12437: 17.7573% +Rate for instruction 12438: 17.7568% +Rate for instruction 12439: 17.756% +Rate for instruction 12440: 17.7558% +Rate for instruction 12441: 17.7556% +Rate for instruction 12442: 17.7554% +Rate for instruction 12443: 17.7549% +Rate for instruction 12444: 17.7544% +Rate for instruction 12445: 17.7539% +Rate for instruction 12446: 17.7537% +Rate for instruction 12447: 17.7529% +Rate for instruction 12448: 17.7546% +Rate for instruction 12449: 17.7563% +Rate for instruction 12450: 17.7554% +Rate for instruction 12451: 17.7553% +Rate for instruction 12452: 17.7551% +Rate for instruction 12453: 17.7543% +Rate for instruction 12454: 17.7531% +Rate for instruction 12455: 17.7523% +Rate for instruction 12456: 17.7515% +Rate for instruction 12457: 17.7507% +Rate for instruction 12458: 17.7502% +Rate for instruction 12459: 17.7494% +Rate for instruction 12460: 17.7489% +Rate for instruction 12461: 17.7481% +Rate for instruction 12462: 17.7476% +Rate for instruction 12463: 17.7496% +Rate for instruction 12464: 17.7503% +Rate for instruction 12465: 17.7498% +Rate for instruction 12466: 17.7493% +Rate for instruction 12467: 17.7485% +Rate for instruction 12468: 17.7486% +Rate for instruction 12469: 17.7475% +Rate for instruction 12470: 17.7492% +Rate for instruction 12471: 17.749% +Rate for instruction 12472: 17.7485% +Rate for instruction 12473: 17.7486% +Rate for instruction 12474: 17.7484% +Rate for instruction 12475: 17.7479% +Rate for instruction 12476: 17.7483% +Rate for instruction 12477: 17.7479% +Rate for instruction 12478: 17.7474% +Rate for instruction 12479: 17.7462% +Rate for instruction 12480: 17.7464% +Rate for instruction 12481: 17.7468% +Rate for instruction 12482: 17.7475% +Rate for instruction 12483: 17.7476% +Rate for instruction 12484: 17.749% +Rate for instruction 12485: 17.75% +Rate for instruction 12486: 17.7514% +Rate for instruction 12487: 17.7515% +Rate for instruction 12488: 17.7535% +Rate for instruction 12489: 17.7548% +Rate for instruction 12490: 17.7562% +Rate for instruction 12491: 17.7557% +Rate for instruction 12492: 17.7549% +Rate for instruction 12493: 17.755% +Rate for instruction 12494: 17.7569% +Rate for instruction 12495: 17.758% +Rate for instruction 12496: 17.7596% +Rate for instruction 12497: 17.7613% +Rate for instruction 12498: 17.7627% +Rate for instruction 12499: 17.7628% +Rate for instruction 12500: 17.7647% +Rate for instruction 12501: 17.7679% +Rate for instruction 12502: 17.7671% +Rate for instruction 12503: 17.7666% +Rate for instruction 12504: 17.7661% +Rate for instruction 12505: 17.7672% +Rate for instruction 12506: 17.7682% +Rate for instruction 12507: 17.7702% +Rate for instruction 12508: 17.7724% +Rate for instruction 12509: 17.7729% +Rate for instruction 12510: 17.7724% +Rate for instruction 12511: 17.7719% +Rate for instruction 12512: 17.7707% +Rate for instruction 12513: 17.7718% +Rate for instruction 12514: 17.7707% +Rate for instruction 12515: 17.7717% +Rate for instruction 12516: 17.7712% +Rate for instruction 12517: 17.7719% +Rate for instruction 12518: 17.7711% +Rate for instruction 12519: 17.7722% +Rate for instruction 12520: 17.7711% +Rate for instruction 12521: 17.7724% +Rate for instruction 12522: 17.7716% +Rate for instruction 12523: 17.7748% +Rate for instruction 12524: 17.7755% +Rate for instruction 12525: 17.775% +Rate for instruction 12526: 17.7748% +Rate for instruction 12527: 17.774% +Rate for instruction 12528: 17.7738% +Rate for instruction 12529: 17.774% +Rate for instruction 12530: 17.7728% +Rate for instruction 12531: 17.7739% +Rate for instruction 12532: 17.7746% +Rate for instruction 12533: 17.7763% +Rate for instruction 12534: 17.7779% +Rate for instruction 12535: 17.7777% +Rate for instruction 12536: 17.7766% +Rate for instruction 12537: 17.7761% +Rate for instruction 12538: 17.7756% +Rate for instruction 12539: 17.7751% +Rate for instruction 12540: 17.7746% +Rate for instruction 12541: 17.775% +Rate for instruction 12542: 17.7745% +Rate for instruction 12543: 17.7744% +Rate for instruction 12544: 17.7742% +Rate for instruction 12545: 17.7731% +Rate for instruction 12546: 17.7735% +Rate for instruction 12547: 17.7733% +Rate for instruction 12548: 17.7728% +Rate for instruction 12549: 17.7738% +Rate for instruction 12550: 17.7733% +Rate for instruction 12551: 17.7722% +Rate for instruction 12552: 17.7711% +Rate for instruction 12553: 17.7703% +Rate for instruction 12554: 17.7695% +Rate for instruction 12555: 17.7712% +Rate for instruction 12556: 17.771% +Rate for instruction 12557: 17.7702% +Rate for instruction 12558: 17.7709% +Rate for instruction 12559: 17.7698% +Rate for instruction 12560: 17.7699% +Rate for instruction 12561: 17.7688% +Rate for instruction 12562: 17.7695% +Rate for instruction 12563: 17.7715% +Rate for instruction 12564: 17.7704% +Rate for instruction 12565: 17.7717% +Rate for instruction 12566: 17.7706% +Rate for instruction 12567: 17.7722% +Rate for instruction 12568: 17.7721% +Rate for instruction 12569: 17.7719% +Rate for instruction 12570: 17.7723% +Rate for instruction 12571: 17.7715% +Rate for instruction 12572: 17.771% +Rate for instruction 12573: 17.7699% +Rate for instruction 12574: 17.7694% +Rate for instruction 12575: 17.7719% +Rate for instruction 12576: 17.7715% +Rate for instruction 12577: 17.7722% +Rate for instruction 12578: 17.7735% +Rate for instruction 12579: 17.773% +Rate for instruction 12580: 17.7734% +Rate for instruction 12581: 17.7726% +Rate for instruction 12582: 17.7728% +Rate for instruction 12583: 17.7717% +Rate for instruction 12584: 17.7712% +Rate for instruction 12585: 17.771% +Rate for instruction 12586: 17.7702% +Rate for instruction 12587: 17.7694% +Rate for instruction 12588: 17.7692% +Rate for instruction 12589: 17.7681% +Rate for instruction 12590: 17.7676% +Rate for instruction 12591: 17.7665% +Rate for instruction 12592: 17.7654% +Rate for instruction 12593: 17.7646% +Rate for instruction 12594: 17.7641% +Rate for instruction 12595: 17.766% +Rate for instruction 12596: 17.7655% +Rate for instruction 12597: 17.7672% +Rate for instruction 12598: 17.7673% +Rate for instruction 12599: 17.7677% +Rate for instruction 12600: 17.7693% +Rate for instruction 12601: 17.7701% +Rate for instruction 12602: 17.7696% +Rate for instruction 12603: 17.7685% +Rate for instruction 12604: 17.7698% +Rate for instruction 12605: 17.7715% +Rate for instruction 12606: 17.7707% +Rate for instruction 12607: 17.772% +Rate for instruction 12608: 17.7721% +Rate for instruction 12609: 17.7722% +Rate for instruction 12610: 17.7711% +Rate for instruction 12611: 17.7709% +Rate for instruction 12612: 17.7738% +Rate for instruction 12613: 17.773% +Rate for instruction 12614: 17.774% +Rate for instruction 12615: 17.7729% +Rate for instruction 12616: 17.7742% +Rate for instruction 12617: 17.7756% +Rate for instruction 12618: 17.7772% +Rate for instruction 12619: 17.7786% +Rate for instruction 12620: 17.7796% +Rate for instruction 12621: 17.7785% +Rate for instruction 12622: 17.7801% +Rate for instruction 12623: 17.7824% +Rate for instruction 12624: 17.7819% +Rate for instruction 12625: 17.7838% +Rate for instruction 12626: 17.7827% +Rate for instruction 12627: 17.7822% +Rate for instruction 12628: 17.7811% +Rate for instruction 12629: 17.7806% +Rate for instruction 12630: 17.7801% +Rate for instruction 12631: 17.779% +Rate for instruction 12632: 17.7782% +Rate for instruction 12633: 17.7771% +Rate for instruction 12634: 17.7769% +Rate for instruction 12635: 17.7789% +Rate for instruction 12636: 17.7805% +Rate for instruction 12637: 17.78% +Rate for instruction 12638: 17.782% +Rate for instruction 12639: 17.7836% +Rate for instruction 12640: 17.7849% +Rate for instruction 12641: 17.7863% +Rate for instruction 12642: 17.7852% +Rate for instruction 12643: 17.7871% +Rate for instruction 12644: 17.7896% +Rate for instruction 12645: 17.7919% +Rate for instruction 12646: 17.7944% +Rate for instruction 12647: 17.7973% +Rate for instruction 12648: 17.7962% +Rate for instruction 12649: 17.7954% +Rate for instruction 12650: 17.7967% +Rate for instruction 12651: 17.798% +Rate for instruction 12652: 17.7982% +Rate for instruction 12653: 17.7974% +Rate for instruction 12654: 17.799% +Rate for instruction 12655: 17.8006% +Rate for instruction 12656: 17.8016% +Rate for instruction 12657: 17.8033% +Rate for instruction 12658: 17.8034% +Rate for instruction 12659: 17.8032% +Rate for instruction 12660: 17.8033% +Rate for instruction 12661: 17.8031% +Rate for instruction 12662: 17.8035% +Rate for instruction 12663: 17.804% +Rate for instruction 12664: 17.8032% +Rate for instruction 12665: 17.8039% +Rate for instruction 12666: 17.8043% +Rate for instruction 12667: 17.8035% +Rate for instruction 12668: 17.8024% +Rate for instruction 12669: 17.8022% +Rate for instruction 12670: 17.8011% +Rate for instruction 12671: 17.8003% +Rate for instruction 12672: 17.7992% +Rate for instruction 12673: 17.7987% +Rate for instruction 12674: 17.7991% +Rate for instruction 12675: 17.7983% +Rate for instruction 12676: 17.7975% +Rate for instruction 12677: 17.7976% +Rate for instruction 12678: 17.7968% +Rate for instruction 12679: 17.796% +Rate for instruction 12680: 17.7956% +Rate for instruction 12681: 17.7948% +Rate for instruction 12682: 17.7949% +Rate for instruction 12683: 17.795% +Rate for instruction 12684: 17.7945% +Rate for instruction 12685: 17.7937% +Rate for instruction 12686: 17.7938% +Rate for instruction 12687: 17.7939% +Rate for instruction 12688: 17.7934% +Rate for instruction 12689: 17.7923% +Rate for instruction 12690: 17.7921% +Rate for instruction 12691: 17.7926% +Rate for instruction 12692: 17.7924% +Rate for instruction 12693: 17.7919% +Rate for instruction 12694: 17.7911% +Rate for instruction 12695: 17.7903% +Rate for instruction 12696: 17.791% +Rate for instruction 12697: 17.7917% +Rate for instruction 12698: 17.7909% +Rate for instruction 12699: 17.7907% +Rate for instruction 12700: 17.7899% +Rate for instruction 12701: 17.7904% +Rate for instruction 12702: 17.7893% +Rate for instruction 12703: 17.7888% +Rate for instruction 12704: 17.788% +Rate for instruction 12705: 17.7872% +Rate for instruction 12706: 17.7873% +Rate for instruction 12707: 17.7862% +Rate for instruction 12708: 17.7857% +Rate for instruction 12709: 17.7855% +Rate for instruction 12710: 17.785% +Rate for instruction 12711: 17.7848% +Rate for instruction 12712: 17.7843% +Rate for instruction 12713: 17.786% +Rate for instruction 12714: 17.7873% +Rate for instruction 12715: 17.7889% +Rate for instruction 12716: 17.7908% +Rate for instruction 12717: 17.7919% +Rate for instruction 12718: 17.7914% +Rate for instruction 12719: 17.7906% +Rate for instruction 12720: 17.791% +Rate for instruction 12721: 17.7911% +Rate for instruction 12722: 17.7915% +Rate for instruction 12723: 17.791% +Rate for instruction 12724: 17.7908% +Rate for instruction 12725: 17.7916% +Rate for instruction 12726: 17.7911% +Rate for instruction 12727: 17.79% +Rate for instruction 12728: 17.7907% +Rate for instruction 12729: 17.7911% +Rate for instruction 12730: 17.7921% +Rate for instruction 12731: 17.7922% +Rate for instruction 12732: 17.793% +Rate for instruction 12733: 17.7943% +Rate for instruction 12734: 17.7941% +Rate for instruction 12735: 17.793% +Rate for instruction 12736: 17.7934% +Rate for instruction 12737: 17.7941% +Rate for instruction 12738: 17.7942% +Rate for instruction 12739: 17.7931% +Rate for instruction 12740: 17.7936% +Rate for instruction 12741: 17.7931% +Rate for instruction 12742: 17.7941% +Rate for instruction 12743: 17.7954% +Rate for instruction 12744: 17.7976% +Rate for instruction 12745: 17.7999% +Rate for instruction 12746: 17.7994% +Rate for instruction 12747: 17.7998% +Rate for instruction 12748: 17.799% +Rate for instruction 12749: 17.7982% +Rate for instruction 12750: 17.7992% +Rate for instruction 12751: 17.8005% +Rate for instruction 12752: 17.8021% +Rate for instruction 12753: 17.8023% +Rate for instruction 12754: 17.8015% +Rate for instruction 12755: 17.8004% +Rate for instruction 12756: 17.8014% +Rate for instruction 12757: 17.8003% +Rate for instruction 12758: 17.8016% +Rate for instruction 12759: 17.8029% +Rate for instruction 12760: 17.8039% +Rate for instruction 12761: 17.8053% +Rate for instruction 12762: 17.8066% +Rate for instruction 12763: 17.8073% +Rate for instruction 12764: 17.8092% +Rate for instruction 12765: 17.8087% +Rate for instruction 12766: 17.8082% +Rate for instruction 12767: 17.8071% +Rate for instruction 12768: 17.8069% +Rate for instruction 12769: 17.8065% +Rate for instruction 12770: 17.8057% +Rate for instruction 12771: 17.8049% +Rate for instruction 12772: 17.8044% +Rate for instruction 12773: 17.8036% +Rate for instruction 12774: 17.8034% +Rate for instruction 12775: 17.8023% +Rate for instruction 12776: 17.8015% +Rate for instruction 12777: 17.8037% +Rate for instruction 12778: 17.8041% +Rate for instruction 12779: 17.8061% +Rate for instruction 12780: 17.8083% +Rate for instruction 12781: 17.8087% +Rate for instruction 12782: 17.8076% +Rate for instruction 12783: 17.8083% +Rate for instruction 12784: 17.8087% +Rate for instruction 12785: 17.81% +Rate for instruction 12786: 17.8105% +Rate for instruction 12787: 17.8109% +Rate for instruction 12788: 17.8098% +Rate for instruction 12789: 17.8099% +Rate for instruction 12790: 17.8088% +Rate for instruction 12791: 17.8086% +Rate for instruction 12792: 17.8078% +Rate for instruction 12793: 17.8067% +Rate for instruction 12794: 17.8062% +Rate for instruction 12795: 17.8051% +Rate for instruction 12796: 17.8044% +Rate for instruction 12797: 17.8033% +Rate for instruction 12798: 17.8034% +Rate for instruction 12799: 17.8023% +Rate for instruction 12800: 17.803% +Rate for instruction 12801: 17.804% +Rate for instruction 12802: 17.8047% +Rate for instruction 12803: 17.8042% +Rate for instruction 12804: 17.8034% +Rate for instruction 12805: 17.803% +Rate for instruction 12806: 17.8019% +Rate for instruction 12807: 17.8017% +Rate for instruction 12808: 17.8006% +Rate for instruction 12809: 17.7998% +Rate for instruction 12810: 17.8008% +Rate for instruction 12811: 17.8015% +Rate for instruction 12812: 17.8004% +Rate for instruction 12813: 17.7996% +Rate for instruction 12814: 17.8004% +Rate for instruction 12815: 17.8011% +Rate for instruction 12816: 17.8009% +Rate for instruction 12817: 17.7998% +Rate for instruction 12818: 17.8002% +Rate for instruction 12819: 17.8006% +Rate for instruction 12820: 17.801% +Rate for instruction 12821: 17.8005% +Rate for instruction 12822: 17.7994% +Rate for instruction 12823: 17.7996% +Rate for instruction 12824: 17.7994% +Rate for instruction 12825: 17.8001% +Rate for instruction 12826: 17.7996% +Rate for instruction 12827: 17.7988% +Rate for instruction 12828: 17.7986% +Rate for instruction 12829: 17.7975% +Rate for instruction 12830: 17.7973% +Rate for instruction 12831: 17.7975% +Rate for instruction 12832: 17.7964% +Rate for instruction 12833: 17.7956% +Rate for instruction 12834: 17.7954% +Rate for instruction 12835: 17.7943% +Rate for instruction 12836: 17.7935% +Rate for instruction 12837: 17.7924% +Rate for instruction 12838: 17.7919% +Rate for instruction 12839: 17.7912% +Rate for instruction 12840: 17.7913% +Rate for instruction 12841: 17.7917% +Rate for instruction 12842: 17.7909% +Rate for instruction 12843: 17.7904% +Rate for instruction 12844: 17.7902% +Rate for instruction 12845: 17.79% +Rate for instruction 12846: 17.7895% +Rate for instruction 12847: 17.7894% +Rate for instruction 12848: 17.7892% +Rate for instruction 12849: 17.7896% +Rate for instruction 12850: 17.7891% +Rate for instruction 12851: 17.7907% +Rate for instruction 12852: 17.7917% +Rate for instruction 12853: 17.7915% +Rate for instruction 12854: 17.7913% +Rate for instruction 12855: 17.7935% +Rate for instruction 12856: 17.7934% +Rate for instruction 12857: 17.7926% +Rate for instruction 12858: 17.7921% +Rate for instruction 12859: 17.7913% +Rate for instruction 12860: 17.7923% +Rate for instruction 12861: 17.7915% +Rate for instruction 12862: 17.791% +Rate for instruction 12863: 17.7906% +Rate for instruction 12864: 17.7895% +Rate for instruction 12865: 17.789% +Rate for instruction 12866: 17.7891% +Rate for instruction 12867: 17.7886% +Rate for instruction 12868: 17.7887% +Rate for instruction 12869: 17.7891% +Rate for instruction 12870: 17.7881% +Rate for instruction 12871: 17.7882% +Rate for instruction 12872: 17.7871% +Rate for instruction 12873: 17.7866% +Rate for instruction 12874: 17.7861% +Rate for instruction 12875: 17.7853% +Rate for instruction 12876: 17.7854% +Rate for instruction 12877: 17.7864% +Rate for instruction 12878: 17.7863% +Rate for instruction 12879: 17.7867% +Rate for instruction 12880: 17.7877% +Rate for instruction 12881: 17.7875% +Rate for instruction 12882: 17.7873% +Rate for instruction 12883: 17.7868% +Rate for instruction 12884: 17.7866% +Rate for instruction 12885: 17.7885% +Rate for instruction 12886: 17.7898% +Rate for instruction 12887: 17.79% +Rate for instruction 12888: 17.7904% +Rate for instruction 12889: 17.7899% +Rate for instruction 12890: 17.7906% +Rate for instruction 12891: 17.791% +Rate for instruction 12892: 17.7911% +Rate for instruction 12893: 17.79% +Rate for instruction 12894: 17.7898% +Rate for instruction 12895: 17.7888% +Rate for instruction 12896: 17.7886% +Rate for instruction 12897: 17.7884% +Rate for instruction 12898: 17.7891% +Rate for instruction 12899: 17.7889% +Rate for instruction 12900: 17.7881% +Rate for instruction 12901: 17.7891% +Rate for instruction 12902: 17.7901% +Rate for instruction 12903: 17.7891% +Rate for instruction 12904: 17.7883% +Rate for instruction 12905: 17.7902% +Rate for instruction 12906: 17.7894% +Rate for instruction 12907: 17.791% +Rate for instruction 12908: 17.7929% +Rate for instruction 12909: 17.7942% +Rate for instruction 12910: 17.7955% +Rate for instruction 12911: 17.7971% +Rate for instruction 12912: 17.796% +Rate for instruction 12913: 17.7967% +Rate for instruction 12914: 17.7956% +Rate for instruction 12915: 17.7952% +Rate for instruction 12916: 17.7974% +Rate for instruction 12917: 17.7996% +Rate for instruction 12918: 17.8006% +Rate for instruction 12919: 17.8016% +Rate for instruction 12920: 17.8029% +Rate for instruction 12921: 17.8021% +Rate for instruction 12922: 17.8034% +Rate for instruction 12923: 17.8026% +Rate for instruction 12924: 17.8018% +Rate for instruction 12925: 17.801% +Rate for instruction 12926: 17.8005% +Rate for instruction 12927: 17.7998% +Rate for instruction 12928: 17.8014% +Rate for instruction 12929: 17.803% +Rate for instruction 12930: 17.8022% +Rate for instruction 12931: 17.8038% +Rate for instruction 12932: 17.8027% +Rate for instruction 12933: 17.8037% +Rate for instruction 12934: 17.8053% +Rate for instruction 12935: 17.8048% +Rate for instruction 12936: 17.8061% +Rate for instruction 12937: 17.8071% +Rate for instruction 12938: 17.8075% +Rate for instruction 12939: 17.8064% +Rate for instruction 12940: 17.8057% +Rate for instruction 12941: 17.8081% +Rate for instruction 12942: 17.8083% +Rate for instruction 12943: 17.8084% +Rate for instruction 12944: 17.8106% +Rate for instruction 12945: 17.8113% +Rate for instruction 12946: 17.8117% +Rate for instruction 12947: 17.8109% +Rate for instruction 12948: 17.8098% +Rate for instruction 12949: 17.8093% +Rate for instruction 12950: 17.8082% +Rate for instruction 12951: 17.8075% +Rate for instruction 12952: 17.8064% +Rate for instruction 12953: 17.8068% +Rate for instruction 12954: 17.806% +Rate for instruction 12955: 17.8052% +Rate for instruction 12956: 17.805% +Rate for instruction 12957: 17.8046% +Rate for instruction 12958: 17.8047% +Rate for instruction 12959: 17.8048% +Rate for instruction 12960: 17.8052% +Rate for instruction 12961: 17.8044% +Rate for instruction 12962: 17.8036% +Rate for instruction 12963: 17.804% +Rate for instruction 12964: 17.8039% +Rate for instruction 12965: 17.8037% +Rate for instruction 12966: 17.8041% +Rate for instruction 12967: 17.8042% +Rate for instruction 12968: 17.8031% +Rate for instruction 12969: 17.8023% +Rate for instruction 12970: 17.8015% +Rate for instruction 12971: 17.8008% +Rate for instruction 12972: 17.8006% +Rate for instruction 12973: 17.7998% +Rate for instruction 12974: 17.799% +Rate for instruction 12975: 17.7985% +Rate for instruction 12976: 17.7975% +Rate for instruction 12977: 17.7967% +Rate for instruction 12978: 17.7962% +Rate for instruction 12979: 17.796% +Rate for instruction 12980: 17.797% +Rate for instruction 12981: 17.7965% +Rate for instruction 12982: 17.7961% +Rate for instruction 12983: 17.7968% +Rate for instruction 12984: 17.7975% +Rate for instruction 12985: 17.7964% +Rate for instruction 12986: 17.7959% +Rate for instruction 12987: 17.7948% +Rate for instruction 12988: 17.7952% +Rate for instruction 12989: 17.7942% +Rate for instruction 12990: 17.7934% +Rate for instruction 12991: 17.7932% +Rate for instruction 12992: 17.796% +Rate for instruction 12993: 17.7982% +Rate for instruction 12994: 17.7977% +Rate for instruction 12995: 17.7969% +Rate for instruction 12996: 17.7958% +Rate for instruction 12997: 17.7962% +Rate for instruction 12998: 17.7987% +Rate for instruction 12999: 17.7982% +Rate for instruction 13000: 17.7983% +Rate for instruction 13001: 17.7973% +Rate for instruction 13002: 17.7994% +Rate for instruction 13003: 17.7987% +Rate for instruction 13004: 17.7991% +Rate for instruction 13005: 17.7995% +Rate for instruction 13006: 17.7996% +Rate for instruction 13007: 17.7994% +Rate for instruction 13008: 17.7992% +Rate for instruction 13009: 17.7984% +Rate for instruction 13010: 17.7983% +Rate for instruction 13011: 17.7981% +Rate for instruction 13012: 17.7979% +Rate for instruction 13013: 17.7971% +Rate for instruction 13014: 17.7981% +Rate for instruction 13015: 17.7985% +Rate for instruction 13016: 17.7974% +Rate for instruction 13017: 17.7973% +Rate for instruction 13018: 17.7968% +Rate for instruction 13019: 17.7957% +Rate for instruction 13020: 17.7952% +Rate for instruction 13021: 17.7947% +Rate for instruction 13022: 17.7943% +Rate for instruction 13023: 17.7941% +Rate for instruction 13024: 17.7936% +Rate for instruction 13025: 17.7937% +Rate for instruction 13026: 17.795% +Rate for instruction 13027: 17.796% +Rate for instruction 13028: 17.7988% +Rate for instruction 13029: 17.7986% +Rate for instruction 13030: 17.799% +Rate for instruction 13031: 17.7997% +Rate for instruction 13032: 17.8013% +Rate for instruction 13033: 17.8002% +Rate for instruction 13034: 17.8012% +Rate for instruction 13035: 17.8001% +Rate for instruction 13036: 17.7996% +Rate for instruction 13037: 17.8012% +Rate for instruction 13038: 17.8001% +Rate for instruction 13039: 17.802% +Rate for instruction 13040: 17.8027% +Rate for instruction 13041: 17.8034% +Rate for instruction 13042: 17.8044% +Rate for instruction 13043: 17.8057% +Rate for instruction 13044: 17.8076% +Rate for instruction 13045: 17.8089% +Rate for instruction 13046: 17.8105% +Rate for instruction 13047: 17.8097% +Rate for instruction 13048: 17.8089% +Rate for instruction 13049: 17.8078% +Rate for instruction 13050: 17.8074% +Rate for instruction 13051: 17.8072% +Rate for instruction 13052: 17.8067% +Rate for instruction 13053: 17.8056% +Rate for instruction 13054: 17.8072% +Rate for instruction 13055: 17.8088% +Rate for instruction 13056: 17.8086% +Rate for instruction 13057: 17.8093% +Rate for instruction 13058: 17.8085% +Rate for instruction 13059: 17.8095% +Rate for instruction 13060: 17.8111% +Rate for instruction 13061: 17.8112% +Rate for instruction 13062: 17.8128% +Rate for instruction 13063: 17.8138% +Rate for instruction 13064: 17.8154% +Rate for instruction 13065: 17.8149% +Rate for instruction 13066: 17.8156% +Rate for instruction 13067: 17.8166% +Rate for instruction 13068: 17.8158% +Rate for instruction 13069: 17.8162% +Rate for instruction 13070: 17.8163% +Rate for instruction 13071: 17.8152% +Rate for instruction 13072: 17.8153% +Rate for instruction 13073: 17.8146% +Rate for instruction 13074: 17.8141% +Rate for instruction 13075: 17.813% +Rate for instruction 13076: 17.812% +Rate for instruction 13077: 17.8132% +Rate for instruction 13078: 17.8122% +Rate for instruction 13079: 17.8114% +Rate for instruction 13080: 17.8118% +Rate for instruction 13081: 17.811% +Rate for instruction 13082: 17.8105% +Rate for instruction 13083: 17.8107% +Rate for instruction 13084: 17.8108% +Rate for instruction 13085: 17.81% +Rate for instruction 13086: 17.8098% +Rate for instruction 13087: 17.8096% +Rate for instruction 13088: 17.8097% +Rate for instruction 13089: 17.8101% +Rate for instruction 13090: 17.8094% +Rate for instruction 13091: 17.8089% +Rate for instruction 13092: 17.8087% +Rate for instruction 13093: 17.8082% +Rate for instruction 13094: 17.808% +Rate for instruction 13095: 17.8078% +Rate for instruction 13096: 17.8085% +Rate for instruction 13097: 17.8084% +Rate for instruction 13098: 17.8079% +Rate for instruction 13099: 17.8071% +Rate for instruction 13100: 17.806% +Rate for instruction 13101: 17.8064% +Rate for instruction 13102: 17.8074% +Rate for instruction 13103: 17.8064% +Rate for instruction 13104: 17.8068% +Rate for instruction 13105: 17.8063% +Rate for instruction 13106: 17.8067% +Rate for instruction 13107: 17.8062% +Rate for instruction 13108: 17.806% +Rate for instruction 13109: 17.805% +Rate for instruction 13110: 17.8048% +Rate for instruction 13111: 17.8037% +Rate for instruction 13112: 17.8047% +Rate for instruction 13113: 17.8036% +Rate for instruction 13114: 17.8029% +Rate for instruction 13115: 17.8041% +Rate for instruction 13116: 17.804% +Rate for instruction 13117: 17.8041% +Rate for instruction 13118: 17.8036% +Rate for instruction 13119: 17.8031% +Rate for instruction 13120: 17.8029% +Rate for instruction 13121: 17.8028% +Rate for instruction 13122: 17.8029% +Rate for instruction 13123: 17.803% +Rate for instruction 13124: 17.8022% +Rate for instruction 13125: 17.8011% +Rate for instruction 13126: 17.8007% +Rate for instruction 13127: 17.7999% +Rate for instruction 13128: 17.8% +Rate for instruction 13129: 17.8007% +Rate for instruction 13130: 17.8008% +Rate for instruction 13131: 17.8012% +Rate for instruction 13132: 17.8016% +Rate for instruction 13133: 17.8023% +Rate for instruction 13134: 17.8012% +Rate for instruction 13135: 17.8031% +Rate for instruction 13136: 17.8047% +Rate for instruction 13137: 17.8057% +Rate for instruction 13138: 17.8064% +Rate for instruction 13139: 17.8082% +Rate for instruction 13140: 17.8072% +Rate for instruction 13141: 17.8087% +Rate for instruction 13142: 17.8103% +Rate for instruction 13143: 17.8098% +Rate for instruction 13144: 17.8105% +Rate for instruction 13145: 17.8097% +Rate for instruction 13146: 17.8096% +Rate for instruction 13147: 17.8085% +Rate for instruction 13148: 17.8086% +Rate for instruction 13149: 17.809% +Rate for instruction 13150: 17.8091% +Rate for instruction 13151: 17.8089% +Rate for instruction 13152: 17.8087% +Rate for instruction 13153: 17.8086% +Rate for instruction 13154: 17.8078% +Rate for instruction 13155: 17.8073% +Rate for instruction 13156: 17.8071% +Rate for instruction 13157: 17.8072% +Rate for instruction 13158: 17.8068% +Rate for instruction 13159: 17.8075% +Rate for instruction 13160: 17.8073% +Rate for instruction 13161: 17.8077% +Rate for instruction 13162: 17.8078% +Rate for instruction 13163: 17.8067% +Rate for instruction 13164: 17.8068% +Rate for instruction 13165: 17.8061% +Rate for instruction 13166: 17.807% +Rate for instruction 13167: 17.8069% +Rate for instruction 13168: 17.8081% +Rate for instruction 13169: 17.8091% +Rate for instruction 13170: 17.8104% +Rate for instruction 13171: 17.8096% +Rate for instruction 13172: 17.81% +Rate for instruction 13173: 17.809% +Rate for instruction 13174: 17.8108% +Rate for instruction 13175: 17.8109% +Rate for instruction 13176: 17.8108% +Rate for instruction 13177: 17.8117% +Rate for instruction 13178: 17.8124% +Rate for instruction 13179: 17.8114% +Rate for instruction 13180: 17.8118% +Rate for instruction 13181: 17.811% +Rate for instruction 13182: 17.8105% +Rate for instruction 13183: 17.8095% +Rate for instruction 13184: 17.8096% +Rate for instruction 13185: 17.8091% +Rate for instruction 13186: 17.8086% +Rate for instruction 13187: 17.809% +Rate for instruction 13188: 17.8085% +Rate for instruction 13189: 17.8089% +Rate for instruction 13190: 17.8088% +Rate for instruction 13191: 17.8089% +Rate for instruction 13192: 17.8081% +Rate for instruction 13193: 17.8073% +Rate for instruction 13194: 17.8086% +Rate for instruction 13195: 17.8078% +Rate for instruction 13196: 17.8085% +Rate for instruction 13197: 17.8086% +Rate for instruction 13198: 17.8085% +Rate for instruction 13199: 17.8077% +Rate for instruction 13200: 17.8084% +Rate for instruction 13201: 17.8094% +Rate for instruction 13202: 17.8086% +Rate for instruction 13203: 17.8081% +Rate for instruction 13204: 17.8094% +Rate for instruction 13205: 17.8101% +Rate for instruction 13206: 17.8105% +Rate for instruction 13207: 17.8112% +Rate for instruction 13208: 17.8104% +Rate for instruction 13209: 17.8105% +Rate for instruction 13210: 17.8121% +Rate for instruction 13211: 17.8119% +Rate for instruction 13212: 17.8129% +Rate for instruction 13213: 17.8127% +Rate for instruction 13214: 17.8119% +Rate for instruction 13215: 17.8117% +Rate for instruction 13216: 17.8107% +Rate for instruction 13217: 17.8099% +Rate for instruction 13218: 17.8089% +Rate for instruction 13219: 17.8084% +Rate for instruction 13220: 17.8073% +Rate for instruction 13221: 17.8074% +Rate for instruction 13222: 17.807% +Rate for instruction 13223: 17.8059% +Rate for instruction 13224: 17.8057% +Rate for instruction 13225: 17.8055% +Rate for instruction 13226: 17.8059% +Rate for instruction 13227: 17.8063% +Rate for instruction 13228: 17.8065% +Rate for instruction 13229: 17.8068% +Rate for instruction 13230: 17.8072% +Rate for instruction 13231: 17.8076% +Rate for instruction 13232: 17.8089% +Rate for instruction 13233: 17.8102% +Rate for instruction 13234: 17.8112% +Rate for instruction 13235: 17.8104% +Rate for instruction 13236: 17.812% +Rate for instruction 13237: 17.8118% +Rate for instruction 13238: 17.8116% +Rate for instruction 13239: 17.8117% +Rate for instruction 13240: 17.8121% +Rate for instruction 13241: 17.8116% +Rate for instruction 13242: 17.812% +Rate for instruction 13243: 17.8121% +Rate for instruction 13244: 17.8111% +Rate for instruction 13245: 17.8106% +Rate for instruction 13246: 17.8104% +Rate for instruction 13247: 17.8099% +Rate for instruction 13248: 17.8103% +Rate for instruction 13249: 17.8099% +Rate for instruction 13250: 17.8106% +Rate for instruction 13251: 17.8104% +Rate for instruction 13252: 17.8099% +Rate for instruction 13253: 17.81% +Rate for instruction 13254: 17.809% +Rate for instruction 13255: 17.8079% +Rate for instruction 13256: 17.8071% +Rate for instruction 13257: 17.807% +Rate for instruction 13258: 17.8068% +Rate for instruction 13259: 17.8075% +Rate for instruction 13260: 17.807% +Rate for instruction 13261: 17.8074% +Rate for instruction 13262: 17.8066% +Rate for instruction 13263: 17.8064% +Rate for instruction 13264: 17.8057% +Rate for instruction 13265: 17.8055% +Rate for instruction 13266: 17.8044% +Rate for instruction 13267: 17.804% +Rate for instruction 13268: 17.8029% +Rate for instruction 13269: 17.8024% +Rate for instruction 13270: 17.8031% +Rate for instruction 13271: 17.8038% +Rate for instruction 13272: 17.8028% +Rate for instruction 13273: 17.8029% +Rate for instruction 13274: 17.8027% +Rate for instruction 13275: 17.8031% +Rate for instruction 13276: 17.8029% +Rate for instruction 13277: 17.8019% +Rate for instruction 13278: 17.8011% +Rate for instruction 13279: 17.8027% +Rate for instruction 13280: 17.8036% +Rate for instruction 13281: 17.8055% +Rate for instruction 13282: 17.8044% +Rate for instruction 13283: 17.8054% +Rate for instruction 13284: 17.8072% +Rate for instruction 13285: 17.8062% +Rate for instruction 13286: 17.8072% +Rate for instruction 13287: 17.8064% +Rate for instruction 13288: 17.8062% +Rate for instruction 13289: 17.8055% +Rate for instruction 13290: 17.8044% +Rate for instruction 13291: 17.8039% +Rate for instruction 13292: 17.8035% +Rate for instruction 13293: 17.8039% +Rate for instruction 13294: 17.8028% +Rate for instruction 13295: 17.8026% +Rate for instruction 13296: 17.8022% +Rate for instruction 13297: 17.8023% +Rate for instruction 13298: 17.8027% +Rate for instruction 13299: 17.8022% +Rate for instruction 13300: 17.8014% +Rate for instruction 13301: 17.8024% +Rate for instruction 13302: 17.8025% +Rate for instruction 13303: 17.802% +Rate for instruction 13304: 17.8024% +Rate for instruction 13305: 17.8028% +Rate for instruction 13306: 17.8018% +Rate for instruction 13307: 17.8022% +Rate for instruction 13308: 17.8014% +Rate for instruction 13309: 17.8012% +Rate for instruction 13310: 17.8002% +Rate for instruction 13311: 17.7994% +Rate for instruction 13312: 17.7993% +Rate for instruction 13313: 17.7991% +Rate for instruction 13314: 17.7992% +Rate for instruction 13315: 17.8002% +Rate for instruction 13316: 17.8006% +Rate for instruction 13317: 17.7995% +Rate for instruction 13318: 17.8002% +Rate for instruction 13319: 17.7997% +Rate for instruction 13320: 17.799% +Rate for instruction 13321: 17.7999% +Rate for instruction 13322: 17.8% +Rate for instruction 13323: 17.8013% +Rate for instruction 13324: 17.8023% +Rate for instruction 13325: 17.8027% +Rate for instruction 13326: 17.8025% +Rate for instruction 13327: 17.8023% +Rate for instruction 13328: 17.8024% +Rate for instruction 13329: 17.8028% +Rate for instruction 13330: 17.8023% +Rate for instruction 13331: 17.8019% +Rate for instruction 13332: 17.802% +Rate for instruction 13333: 17.8015% +Rate for instruction 13334: 17.8008% +Rate for instruction 13335: 17.8003% +Rate for instruction 13336: 17.7998% +Rate for instruction 13337: 17.7999% +Rate for instruction 13338: 17.8003% +Rate for instruction 13339: 17.7999% +Rate for instruction 13340: 17.7991% +Rate for instruction 13341: 17.798% +Rate for instruction 13342: 17.797% +Rate for instruction 13343: 17.7971% +Rate for instruction 13344: 17.7972% +Rate for instruction 13345: 17.7965% +Rate for instruction 13346: 17.796% +Rate for instruction 13347: 17.7958% +Rate for instruction 13348: 17.7971% +Rate for instruction 13349: 17.7975% +Rate for instruction 13350: 17.7973% +Rate for instruction 13351: 17.7977% +Rate for instruction 13352: 17.7972% +Rate for instruction 13353: 17.7982% +Rate for instruction 13354: 17.7977% +Rate for instruction 13355: 17.7984% +Rate for instruction 13356: 17.7976% +Rate for instruction 13357: 17.7983% +Rate for instruction 13358: 17.7976% +Rate for instruction 13359: 17.798% +Rate for instruction 13360: 17.7986% +Rate for instruction 13361: 17.7996% +Rate for instruction 13362: 17.8006% +Rate for instruction 13363: 17.8013% +Rate for instruction 13364: 17.8002% +Rate for instruction 13365: 17.8015% +Rate for instruction 13366: 17.8027% +Rate for instruction 13367: 17.8023% +Rate for instruction 13368: 17.8041% +Rate for instruction 13369: 17.8042% +Rate for instruction 13370: 17.8035% +Rate for instruction 13371: 17.8024% +Rate for instruction 13372: 17.8031% +Rate for instruction 13373: 17.8038% +Rate for instruction 13374: 17.8039% +Rate for instruction 13375: 17.8028% +Rate for instruction 13376: 17.8021% +Rate for instruction 13377: 17.801% +Rate for instruction 13378: 17.8009% +Rate for instruction 13379: 17.7998% +Rate for instruction 13380: 17.7991% +Rate for instruction 13381: 17.8% +Rate for instruction 13382: 17.799% +Rate for instruction 13383: 17.7994% +Rate for instruction 13384: 17.7986% +Rate for instruction 13385: 17.7979% +Rate for instruction 13386: 17.7977% +Rate for instruction 13387: 17.7978% +Rate for instruction 13388: 17.7979% +Rate for instruction 13389: 17.798% +Rate for instruction 13390: 17.7973% +Rate for instruction 13391: 17.7968% +Rate for instruction 13392: 17.796% +Rate for instruction 13393: 17.7953% +Rate for instruction 13394: 17.7948% +Rate for instruction 13395: 17.7943% +Rate for instruction 13396: 17.7945% +Rate for instruction 13397: 17.7934% +Rate for instruction 13398: 17.7938% +Rate for instruction 13399: 17.7936% +Rate for instruction 13400: 17.794% +Rate for instruction 13401: 17.7933% +Rate for instruction 13402: 17.7925% +Rate for instruction 13403: 17.7929% +Rate for instruction 13404: 17.793% +Rate for instruction 13405: 17.7937% +Rate for instruction 13406: 17.7938% +Rate for instruction 13407: 17.7933% +Rate for instruction 13408: 17.7934% +Rate for instruction 13409: 17.7938% +Rate for instruction 13410: 17.7939% +Rate for instruction 13411: 17.7935% +Rate for instruction 13412: 17.7936% +Rate for instruction 13413: 17.7937% +Rate for instruction 13414: 17.7929% +Rate for instruction 13415: 17.7919% +Rate for instruction 13416: 17.7929% +Rate for instruction 13417: 17.7924% +Rate for instruction 13418: 17.7922% +Rate for instruction 13419: 17.7923% +Rate for instruction 13420: 17.793% +Rate for instruction 13421: 17.7923% +Rate for instruction 13422: 17.7927% +Rate for instruction 13423: 17.7936% +Rate for instruction 13424: 17.794% +Rate for instruction 13425: 17.7935% +Rate for instruction 13426: 17.7934% +Rate for instruction 13427: 17.7932% +Rate for instruction 13428: 17.7942% +Rate for instruction 13429: 17.794% +Rate for instruction 13430: 17.7949% +Rate for instruction 13431: 17.7945% +Rate for instruction 13432: 17.7943% +Rate for instruction 13433: 17.7935% +Rate for instruction 13434: 17.7934% +Rate for instruction 13435: 17.7935% +Rate for instruction 13436: 17.7936% +Rate for instruction 13437: 17.7928% +Rate for instruction 13438: 17.7932% +Rate for instruction 13439: 17.7933% +Rate for instruction 13440: 17.7946% +Rate for instruction 13441: 17.7941% +Rate for instruction 13442: 17.7948% +Rate for instruction 13443: 17.7938% +Rate for instruction 13444: 17.7936% +Rate for instruction 13445: 17.7931% +Rate for instruction 13446: 17.7932% +Rate for instruction 13447: 17.793% +Rate for instruction 13448: 17.7934% +Rate for instruction 13449: 17.7933% +Rate for instruction 13450: 17.7948% +Rate for instruction 13451: 17.7949% +Rate for instruction 13452: 17.7939% +Rate for instruction 13453: 17.7937% +Rate for instruction 13454: 17.7944% +Rate for instruction 13455: 17.7945% +Rate for instruction 13456: 17.7951% +Rate for instruction 13457: 17.7961% +Rate for instruction 13458: 17.7974% +Rate for instruction 13459: 17.7986% +Rate for instruction 13460: 17.7981% +Rate for instruction 13461: 17.7985% +Rate for instruction 13462: 17.7984% +Rate for instruction 13463: 17.799% +Rate for instruction 13464: 17.7991% +Rate for instruction 13465: 17.7987% +Rate for instruction 13466: 17.7985% +Rate for instruction 13467: 17.7975% +Rate for instruction 13468: 17.7967% +Rate for instruction 13469: 17.7965% +Rate for instruction 13470: 17.7975% +Rate for instruction 13471: 17.7979% +Rate for instruction 13472: 17.7991% +Rate for instruction 13473: 17.7984% +Rate for instruction 13474: 17.8002% +Rate for instruction 13475: 17.7997% +Rate for instruction 13476: 17.8016% +Rate for instruction 13477: 17.8034% +Rate for instruction 13478: 17.804% +Rate for instruction 13479: 17.8047% +Rate for instruction 13480: 17.8045% +Rate for instruction 13481: 17.8049% +Rate for instruction 13482: 17.8053% +Rate for instruction 13483: 17.806% +Rate for instruction 13484: 17.8061% +Rate for instruction 13485: 17.8051% +Rate for instruction 13486: 17.8043% +Rate for instruction 13487: 17.8036% +Rate for instruction 13488: 17.804% +Rate for instruction 13489: 17.8044% +Rate for instruction 13490: 17.8045% +Rate for instruction 13491: 17.8051% +Rate for instruction 13492: 17.8041% +Rate for instruction 13493: 17.8034% +Rate for instruction 13494: 17.8023% +Rate for instruction 13495: 17.8016% +Rate for instruction 13496: 17.8011% +Rate for instruction 13497: 17.8004% +Rate for instruction 13498: 17.7996% +Rate for instruction 13499: 17.8009% +Rate for instruction 13500: 17.8004% +Rate for instruction 13501: 17.8016% +Rate for instruction 13502: 17.8009% +Rate for instruction 13503: 17.8004% +Rate for instruction 13504: 17.8002% +Rate for instruction 13505: 17.7992% +Rate for instruction 13506: 17.8005% +Rate for instruction 13507: 17.8026% +Rate for instruction 13508: 17.8038% +Rate for instruction 13509: 17.8036% +Rate for instruction 13510: 17.8026% +Rate for instruction 13511: 17.8035% +Rate for instruction 13512: 17.8031% +Rate for instruction 13513: 17.8038% +Rate for instruction 13514: 17.805% +Rate for instruction 13515: 17.8057% +Rate for instruction 13516: 17.8052% +Rate for instruction 13517: 17.8045% +Rate for instruction 13518: 17.804% +Rate for instruction 13519: 17.8033% +Rate for instruction 13520: 17.8022% +Rate for instruction 13521: 17.802% +Rate for instruction 13522: 17.8027% +Rate for instruction 13523: 17.802% +Rate for instruction 13524: 17.8021% +Rate for instruction 13525: 17.8019% +Rate for instruction 13526: 17.8026% +Rate for instruction 13527: 17.8021% +Rate for instruction 13528: 17.8025% +Rate for instruction 13529: 17.8032% +Rate for instruction 13530: 17.8024% +Rate for instruction 13531: 17.802% +Rate for instruction 13532: 17.8026% +Rate for instruction 13533: 17.8025% +Rate for instruction 13534: 17.8026% +Rate for instruction 13535: 17.8015% +Rate for instruction 13536: 17.8022% +Rate for instruction 13537: 17.8012% +Rate for instruction 13538: 17.8004% +Rate for instruction 13539: 17.8005% +Rate for instruction 13540: 17.8015% +Rate for instruction 13541: 17.8024% +Rate for instruction 13542: 17.8034% +Rate for instruction 13543: 17.8038% +Rate for instruction 13544: 17.8036% +Rate for instruction 13545: 17.804% +Rate for instruction 13546: 17.8038% +Rate for instruction 13547: 17.8036% +Rate for instruction 13548: 17.8026% +Rate for instruction 13549: 17.8024% +Rate for instruction 13550: 17.8014% +Rate for instruction 13551: 17.8015% +Rate for instruction 13552: 17.8008% +Rate for instruction 13553: 17.8006% +Rate for instruction 13554: 17.8001% +Rate for instruction 13555: 17.7991% +Rate for instruction 13556: 17.7984% +Rate for instruction 13557: 17.7982% +Rate for instruction 13558: 17.7974% +Rate for instruction 13559: 17.7967% +Rate for instruction 13560: 17.7962% +Rate for instruction 13561: 17.7955% +Rate for instruction 13562: 17.7953% +Rate for instruction 13563: 17.796% +Rate for instruction 13564: 17.7958% +Rate for instruction 13565: 17.7951% +Rate for instruction 13566: 17.7949% +Rate for instruction 13567: 17.7938% +Rate for instruction 13568: 17.7931% +Rate for instruction 13569: 17.7926% +Rate for instruction 13570: 17.7919% +Rate for instruction 13571: 17.7934% +Rate for instruction 13572: 17.7949% +Rate for instruction 13573: 17.7939% +Rate for instruction 13574: 17.7952% +Rate for instruction 13575: 17.7953% +Rate for instruction 13576: 17.7951% +Rate for instruction 13577: 17.7955% +Rate for instruction 13578: 17.795% +Rate for instruction 13579: 17.7951% +Rate for instruction 13580: 17.7952% +Rate for instruction 13581: 17.7942% +Rate for instruction 13582: 17.794% +Rate for instruction 13583: 17.7941% +Rate for instruction 13584: 17.7934% +Rate for instruction 13585: 17.7932% +Rate for instruction 13586: 17.7925% +Rate for instruction 13587: 17.7926% +Rate for instruction 13588: 17.7921% +Rate for instruction 13589: 17.7922% +Rate for instruction 13590: 17.7923% +Rate for instruction 13591: 17.7924% +Rate for instruction 13592: 17.7925% +Rate for instruction 13593: 17.7924% +Rate for instruction 13594: 17.7916% +Rate for instruction 13595: 17.7934% +Rate for instruction 13596: 17.7941% +Rate for instruction 13597: 17.7936% +Rate for instruction 13598: 17.7943% +Rate for instruction 13599: 17.7933% +Rate for instruction 13600: 17.7939% +Rate for instruction 13601: 17.7963% +Rate for instruction 13602: 17.7975% +Rate for instruction 13603: 17.7965% +Rate for instruction 13604: 17.7969% +Rate for instruction 13605: 17.7979% +Rate for instruction 13606: 17.7974% +Rate for instruction 13607: 17.7972% +Rate for instruction 13608: 17.7965% +Rate for instruction 13609: 17.796% +Rate for instruction 13610: 17.7958% +Rate for instruction 13611: 17.7948% +Rate for instruction 13612: 17.7944% +Rate for instruction 13613: 17.7933% +Rate for instruction 13614: 17.7923% +Rate for instruction 13615: 17.7924% +Rate for instruction 13616: 17.7925% +Rate for instruction 13617: 17.7921% +Rate for instruction 13618: 17.7927% +Rate for instruction 13619: 17.792% +Rate for instruction 13620: 17.7929% +Rate for instruction 13621: 17.7922% +Rate for instruction 13622: 17.7926% +Rate for instruction 13623: 17.7921% +Rate for instruction 13624: 17.7917% +Rate for instruction 13625: 17.7912% +Rate for instruction 13626: 17.7933% +Rate for instruction 13627: 17.7948% +Rate for instruction 13628: 17.7941% +Rate for instruction 13629: 17.7959% +Rate for instruction 13630: 17.7957% +Rate for instruction 13631: 17.7972% +Rate for instruction 13632: 17.7984% +Rate for instruction 13633: 17.7974% +Rate for instruction 13634: 17.7981% +Rate for instruction 13635: 17.7971% +Rate for instruction 13636: 17.7975% +Rate for instruction 13637: 17.7964% +Rate for instruction 13638: 17.7963% +Rate for instruction 13639: 17.7961% +Rate for instruction 13640: 17.7951% +Rate for instruction 13641: 17.7946% +Rate for instruction 13642: 17.7936% +Rate for instruction 13643: 17.7928% +Rate for instruction 13644: 17.7929% +Rate for instruction 13645: 17.7925% +Rate for instruction 13646: 17.792% +Rate for instruction 13647: 17.7916% +Rate for instruction 13648: 17.7914% +Rate for instruction 13649: 17.7912% +Rate for instruction 13650: 17.7908% +Rate for instruction 13651: 17.7906% +Rate for instruction 13652: 17.7901% +Rate for instruction 13653: 17.7899% +Rate for instruction 13654: 17.7889% +Rate for instruction 13655: 17.7887% +Rate for instruction 13656: 17.7883% +Rate for instruction 13657: 17.7875% +Rate for instruction 13658: 17.7865% +Rate for instruction 13659: 17.7866% +Rate for instruction 13660: 17.7865% +Rate for instruction 13661: 17.786% +Rate for instruction 13662: 17.7855% +Rate for instruction 13663: 17.7848% +Rate for instruction 13664: 17.7843% +Rate for instruction 13665: 17.7842% +Rate for instruction 13666: 17.7837% +Rate for instruction 13667: 17.7835% +Rate for instruction 13668: 17.7834% +Rate for instruction 13669: 17.7829% +Rate for instruction 13670: 17.7824% +Rate for instruction 13671: 17.7823% +Rate for instruction 13672: 17.7818% +Rate for instruction 13673: 17.7814% +Rate for instruction 13674: 17.7815% +Rate for instruction 13675: 17.7813% +Rate for instruction 13676: 17.7808% +Rate for instruction 13677: 17.7807% +Rate for instruction 13678: 17.7805% +Rate for instruction 13679: 17.7803% +Rate for instruction 13680: 17.7799% +Rate for instruction 13681: 17.7791% +Rate for instruction 13682: 17.7787% +Rate for instruction 13683: 17.7788% +Rate for instruction 13684: 17.778% +Rate for instruction 13685: 17.7779% +Rate for instruction 13686: 17.7774% +Rate for instruction 13687: 17.7767% +Rate for instruction 13688: 17.7782% +Rate for instruction 13689: 17.7772% +Rate for instruction 13690: 17.7789% +Rate for instruction 13691: 17.7779% +Rate for instruction 13692: 17.7772% +Rate for instruction 13693: 17.779% +Rate for instruction 13694: 17.7785% +Rate for instruction 13695: 17.7775% +Rate for instruction 13696: 17.7773% +Rate for instruction 13697: 17.7774% +Rate for instruction 13698: 17.7773% +Rate for instruction 13699: 17.7768% +Rate for instruction 13700: 17.7761% +Rate for instruction 13701: 17.7753% +Rate for instruction 13702: 17.7746% +Rate for instruction 13703: 17.7741% +Rate for instruction 13704: 17.7737% +Rate for instruction 13705: 17.7738% +Rate for instruction 13706: 17.7731% +Rate for instruction 13707: 17.7729% +Rate for instruction 13708: 17.7722% +Rate for instruction 13709: 17.7711% +Rate for instruction 13710: 17.7726% +Rate for instruction 13711: 17.7728% +Rate for instruction 13712: 17.7726% +Rate for instruction 13713: 17.773% +Rate for instruction 13714: 17.7739% +Rate for instruction 13715: 17.7732% +Rate for instruction 13716: 17.7741% +Rate for instruction 13717: 17.7756% +Rate for instruction 13718: 17.7749% +Rate for instruction 13719: 17.7744% +Rate for instruction 13720: 17.7734% +Rate for instruction 13721: 17.7741% +Rate for instruction 13722: 17.7748% +Rate for instruction 13723: 17.7737% +Rate for instruction 13724: 17.7739% +Rate for instruction 13725: 17.7734% +Rate for instruction 13726: 17.7743% +Rate for instruction 13727: 17.7736% +Rate for instruction 13728: 17.7734% +Rate for instruction 13729: 17.7727% +Rate for instruction 13730: 17.772% +Rate for instruction 13731: 17.771% +Rate for instruction 13732: 17.7702% +Rate for instruction 13733: 17.77% +Rate for instruction 13734: 17.769% +Rate for instruction 13735: 17.7686% +Rate for instruction 13736: 17.7695% +Rate for instruction 13737: 17.7702% +Rate for instruction 13738: 17.77% +Rate for instruction 13739: 17.7696% +Rate for instruction 13740: 17.7686% +Rate for instruction 13741: 17.7695% +Rate for instruction 13742: 17.7704% +Rate for instruction 13743: 17.7697% +Rate for instruction 13744: 17.7701% +Rate for instruction 13745: 17.7694% +Rate for instruction 13746: 17.7706% +Rate for instruction 13747: 17.7721% +Rate for instruction 13748: 17.7711% +Rate for instruction 13749: 17.7717% +Rate for instruction 13750: 17.7721% +Rate for instruction 13751: 17.7717% +Rate for instruction 13752: 17.7723% +Rate for instruction 13753: 17.773% +Rate for instruction 13754: 17.772% +Rate for instruction 13755: 17.7721% +Rate for instruction 13756: 17.7714% +Rate for instruction 13757: 17.7704% +Rate for instruction 13758: 17.7705% +Rate for instruction 13759: 17.7695% +Rate for instruction 13760: 17.7687% +Rate for instruction 13761: 17.7677% +Rate for instruction 13762: 17.7673% +Rate for instruction 13763: 17.7671% +Rate for instruction 13764: 17.7664% +Rate for instruction 13765: 17.7662% +Rate for instruction 13766: 17.7663% +Rate for instruction 13767: 17.7658% +Rate for instruction 13768: 17.7657% +Rate for instruction 13769: 17.7649% +Rate for instruction 13770: 17.7642% +Rate for instruction 13771: 17.7649% +Rate for instruction 13772: 17.7647% +Rate for instruction 13773: 17.7651% +Rate for instruction 13774: 17.7649% +Rate for instruction 13775: 17.7653% +Rate for instruction 13776: 17.7646% +Rate for instruction 13777: 17.7641% +Rate for instruction 13778: 17.7631% +Rate for instruction 13779: 17.7626% +Rate for instruction 13780: 17.7625% +Rate for instruction 13781: 17.762% +Rate for instruction 13782: 17.7621% +Rate for instruction 13783: 17.762% +Rate for instruction 13784: 17.7621% +Rate for instruction 13785: 17.7616% +Rate for instruction 13786: 17.7609% +Rate for instruction 13787: 17.7607% +Rate for instruction 13788: 17.7605% +Rate for instruction 13789: 17.7604% +Rate for instruction 13790: 17.7607% +Rate for instruction 13791: 17.7603% +Rate for instruction 13792: 17.7607% +Rate for instruction 13793: 17.7611% +Rate for instruction 13794: 17.7606% +Rate for instruction 13795: 17.7604% +Rate for instruction 13796: 17.7603% +Rate for instruction 13797: 17.7595% +Rate for instruction 13798: 17.7599% +Rate for instruction 13799: 17.7595% +Rate for instruction 13800: 17.7599% +Rate for instruction 13801: 17.7591% +Rate for instruction 13802: 17.7606% +Rate for instruction 13803: 17.7596% +Rate for instruction 13804: 17.7589% +Rate for instruction 13805: 17.7598% +Rate for instruction 13806: 17.7602% +Rate for instruction 13807: 17.7612% +Rate for instruction 13808: 17.7613% +Rate for instruction 13809: 17.7603% +Rate for instruction 13810: 17.7595% +Rate for instruction 13811: 17.7588% +Rate for instruction 13812: 17.7581% +Rate for instruction 13813: 17.759% +Rate for instruction 13814: 17.7608% +Rate for instruction 13815: 17.7606% +Rate for instruction 13816: 17.7605% +Rate for instruction 13817: 17.76% +Rate for instruction 13818: 17.7593% +Rate for instruction 13819: 17.7583% +Rate for instruction 13820: 17.7581% +Rate for instruction 13821: 17.7579% +Rate for instruction 13822: 17.7575% +Rate for instruction 13823: 17.7565% +Rate for instruction 13824: 17.7571% +Rate for instruction 13825: 17.7578% +Rate for instruction 13826: 17.7579% +Rate for instruction 13827: 17.7586% +Rate for instruction 13828: 17.7578% +Rate for instruction 13829: 17.7582% +Rate for instruction 13830: 17.7575% +Rate for instruction 13831: 17.7593% +Rate for instruction 13832: 17.7591% +Rate for instruction 13833: 17.7581% +Rate for instruction 13834: 17.7588% +Rate for instruction 13835: 17.76% +Rate for instruction 13836: 17.7617% +Rate for instruction 13837: 17.7613% +Rate for instruction 13838: 17.7608% +Rate for instruction 13839: 17.7621% +Rate for instruction 13840: 17.7633% +Rate for instruction 13841: 17.7637% +Rate for instruction 13842: 17.7649% +Rate for instruction 13843: 17.7644% +Rate for instruction 13844: 17.7643% +Rate for instruction 13845: 17.7633% +Rate for instruction 13846: 17.7634% +Rate for instruction 13847: 17.7624% +Rate for instruction 13848: 17.7616% +Rate for instruction 13849: 17.7612% +Rate for instruction 13850: 17.7613% +Rate for instruction 13851: 17.7611% +Rate for instruction 13852: 17.7604% +Rate for instruction 13853: 17.7602% +Rate for instruction 13854: 17.76% +Rate for instruction 13855: 17.7601% +Rate for instruction 13856: 17.7605% +Rate for instruction 13857: 17.7612% +Rate for instruction 13858: 17.761% +Rate for instruction 13859: 17.7622% +Rate for instruction 13860: 17.7637% +Rate for instruction 13861: 17.7641% +Rate for instruction 13862: 17.7639% +Rate for instruction 13863: 17.7652% +Rate for instruction 13864: 17.7655% +Rate for instruction 13865: 17.7651% +Rate for instruction 13866: 17.7652% +Rate for instruction 13867: 17.765% +Rate for instruction 13868: 17.7651% +Rate for instruction 13869: 17.7641% +Rate for instruction 13870: 17.7634% +Rate for instruction 13871: 17.7624% +Rate for instruction 13872: 17.762% +Rate for instruction 13873: 17.7609% +Rate for instruction 13874: 17.7602% +Rate for instruction 13875: 17.7592% +Rate for instruction 13876: 17.7588% +Rate for instruction 13877: 17.7586% +Rate for instruction 13878: 17.7582% +Rate for instruction 13879: 17.7583% +Rate for instruction 13880: 17.7578% +Rate for instruction 13881: 17.7568% +Rate for instruction 13882: 17.7566% +Rate for instruction 13883: 17.7562% +Rate for instruction 13884: 17.7563% +Rate for instruction 13885: 17.7553% +Rate for instruction 13886: 17.7554% +Rate for instruction 13887: 17.7547% +Rate for instruction 13888: 17.7542% +Rate for instruction 13889: 17.7532% +Rate for instruction 13890: 17.7533% +Rate for instruction 13891: 17.7529% +Rate for instruction 13892: 17.7519% +Rate for instruction 13893: 17.7517% +Rate for instruction 13894: 17.7513% +Rate for instruction 13895: 17.7505% +Rate for instruction 13896: 17.7506% +Rate for instruction 13897: 17.751% +Rate for instruction 13898: 17.7514% +Rate for instruction 13899: 17.7507% +Rate for instruction 13900: 17.7505% +Rate for instruction 13901: 17.7498% +Rate for instruction 13902: 17.7488% +Rate for instruction 13903: 17.7492% +Rate for instruction 13904: 17.749% +Rate for instruction 13905: 17.7483% +Rate for instruction 13906: 17.7484% +Rate for instruction 13907: 17.7482% +Rate for instruction 13908: 17.7475% +Rate for instruction 13909: 17.7476% +Rate for instruction 13910: 17.7474% +Rate for instruction 13911: 17.7473% +Rate for instruction 13912: 17.7474% +Rate for instruction 13913: 17.7475% +Rate for instruction 13914: 17.7476% +Rate for instruction 13915: 17.7482% +Rate for instruction 13916: 17.7478% +Rate for instruction 13917: 17.7468% +Rate for instruction 13918: 17.7464% +Rate for instruction 13919: 17.7465% +Rate for instruction 13920: 17.746% +Rate for instruction 13921: 17.7453% +Rate for instruction 13922: 17.7448% +Rate for instruction 13923: 17.7444% +Rate for instruction 13924: 17.744% +Rate for instruction 13925: 17.7446% +Rate for instruction 13926: 17.745% +Rate for instruction 13927: 17.7457% +Rate for instruction 13928: 17.7452% +Rate for instruction 13929: 17.7456% +Rate for instruction 13930: 17.7454% +Rate for instruction 13931: 17.7453% +Rate for instruction 13932: 17.7451% +Rate for instruction 13933: 17.7446% +Rate for instruction 13934: 17.7439% +Rate for instruction 13935: 17.7432% +Rate for instruction 13936: 17.7433% +Rate for instruction 13937: 17.7426% +Rate for instruction 13938: 17.7427% +Rate for instruction 13939: 17.7417% +Rate for instruction 13940: 17.7413% +Rate for instruction 13941: 17.7422% +Rate for instruction 13942: 17.7412% +Rate for instruction 13943: 17.7427% +Rate for instruction 13944: 17.7417% +Rate for instruction 13945: 17.7432% +Rate for instruction 13946: 17.7449% +Rate for instruction 13947: 17.7459% +Rate for instruction 13948: 17.7449% +Rate for instruction 13949: 17.7461% +Rate for instruction 13950: 17.7476% +Rate for instruction 13951: 17.7474% +Rate for instruction 13952: 17.7464% +Rate for instruction 13953: 17.7482% +Rate for instruction 13954: 17.7483% +Rate for instruction 13955: 17.75% +Rate for instruction 13956: 17.7512% +Rate for instruction 13957: 17.7519% +Rate for instruction 13958: 17.7525% +Rate for instruction 13959: 17.7515% +Rate for instruction 13960: 17.753% +Rate for instruction 13961: 17.7542% +Rate for instruction 13962: 17.7554% +Rate for instruction 13963: 17.7569% +Rate for instruction 13964: 17.7565% +Rate for instruction 13965: 17.7558% +Rate for instruction 13966: 17.7548% +Rate for instruction 13967: 17.754% +Rate for instruction 13968: 17.7555% +Rate for instruction 13969: 17.7554% +Rate for instruction 13970: 17.7566% +Rate for instruction 13971: 17.758% +Rate for instruction 13972: 17.757% +Rate for instruction 13973: 17.7563% +Rate for instruction 13974: 17.7553% +Rate for instruction 13975: 17.7568% +Rate for instruction 13976: 17.758% +Rate for instruction 13977: 17.7592% +Rate for instruction 13978: 17.7585% +Rate for instruction 13979: 17.76% +Rate for instruction 13980: 17.7595% +Rate for instruction 13981: 17.761% +Rate for instruction 13982: 17.7631% +Rate for instruction 13983: 17.7645% +Rate for instruction 13984: 17.766% +Rate for instruction 13985: 17.7675% +Rate for instruction 13986: 17.7665% +Rate for instruction 13987: 17.7688% +Rate for instruction 13988: 17.7703% +Rate for instruction 13989: 17.7704% +Rate for instruction 13990: 17.7708% +Rate for instruction 13991: 17.7725% +Rate for instruction 13992: 17.7726% +Rate for instruction 13993: 17.7733% +Rate for instruction 13994: 17.7734% +Rate for instruction 13995: 17.7735% +Rate for instruction 13996: 17.7728% +Rate for instruction 13997: 17.7726% +Rate for instruction 13998: 17.7724% +Rate for instruction 13999: 17.7717% +Rate for instruction 14000: 17.7713% +Rate for instruction 14001: 17.7711% +Rate for instruction 14002: 17.7726% +Rate for instruction 14003: 17.7735% +Rate for instruction 14004: 17.7725% +Rate for instruction 14005: 17.7721% +Rate for instruction 14006: 17.7711% +Rate for instruction 14007: 17.7703% +Rate for instruction 14008: 17.7693% +Rate for instruction 14009: 17.7695% +Rate for instruction 14010: 17.7685% +Rate for instruction 14011: 17.7691% +Rate for instruction 14012: 17.7687% +Rate for instruction 14013: 17.7677% +Rate for instruction 14014: 17.7697% +Rate for instruction 14015: 17.7693% +Rate for instruction 14016: 17.7702% +Rate for instruction 14017: 17.7719% +Rate for instruction 14018: 17.7709% +Rate for instruction 14019: 17.7708% +Rate for instruction 14020: 17.7703% +Rate for instruction 14021: 17.7696% +Rate for instruction 14022: 17.7692% +Rate for instruction 14023: 17.7698% +Rate for instruction 14024: 17.771% +Rate for instruction 14025: 17.7714% +Rate for instruction 14026: 17.7726% +Rate for instruction 14027: 17.773% +Rate for instruction 14028: 17.7744% +Rate for instruction 14029: 17.7756% +Rate for instruction 14030: 17.7749% +Rate for instruction 14031: 17.7748% +Rate for instruction 14032: 17.7757% +Rate for instruction 14033: 17.7752% +Rate for instruction 14034: 17.7742% +Rate for instruction 14035: 17.776% +Rate for instruction 14036: 17.7772% +Rate for instruction 14037: 17.7778% +Rate for instruction 14038: 17.7782% +Rate for instruction 14039: 17.7778% +Rate for instruction 14040: 17.779% +Rate for instruction 14041: 17.778% +Rate for instruction 14042: 17.7773% +Rate for instruction 14043: 17.7776% +Rate for instruction 14044: 17.7772% +Rate for instruction 14045: 17.777% +Rate for instruction 14046: 17.7766% +Rate for instruction 14047: 17.7761% +Rate for instruction 14048: 17.7751% +Rate for instruction 14049: 17.7744% +Rate for instruction 14050: 17.7743% +Rate for instruction 14051: 17.7741% +Rate for instruction 14052: 17.7739% +Rate for instruction 14053: 17.7732% +Rate for instruction 14054: 17.7728% +Rate for instruction 14055: 17.7729% +Rate for instruction 14056: 17.7721% +Rate for instruction 14057: 17.7723% +Rate for instruction 14058: 17.7721% +Rate for instruction 14059: 17.7716% +Rate for instruction 14060: 17.7715% +Rate for instruction 14061: 17.7729% +Rate for instruction 14062: 17.7725% +Rate for instruction 14063: 17.7726% +Rate for instruction 14064: 17.7735% +Rate for instruction 14065: 17.775% +Rate for instruction 14066: 17.7748% +Rate for instruction 14067: 17.776% +Rate for instruction 14068: 17.7772% +Rate for instruction 14069: 17.7762% +Rate for instruction 14070: 17.7772% +Rate for instruction 14071: 17.7764% +Rate for instruction 14072: 17.7776% +Rate for instruction 14073: 17.7766% +Rate for instruction 14074: 17.7781% +Rate for instruction 14075: 17.7793% +Rate for instruction 14076: 17.7802% +Rate for instruction 14077: 17.7792% +Rate for instruction 14078: 17.7788% +Rate for instruction 14079: 17.78% +Rate for instruction 14080: 17.779% +Rate for instruction 14081: 17.7783% +Rate for instruction 14082: 17.7792% +Rate for instruction 14083: 17.7782% +Rate for instruction 14084: 17.7772% +Rate for instruction 14085: 17.7771% +Rate for instruction 14086: 17.7766% +Rate for instruction 14087: 17.7778% +Rate for instruction 14088: 17.7771% +Rate for instruction 14089: 17.7769% +Rate for instruction 14090: 17.7762% +Rate for instruction 14091: 17.7752% +Rate for instruction 14092: 17.7745% +Rate for instruction 14093: 17.7738% +Rate for instruction 14094: 17.7736% +Rate for instruction 14095: 17.7729% +Rate for instruction 14096: 17.7719% +Rate for instruction 14097: 17.7715% +Rate for instruction 14098: 17.7716% +Rate for instruction 14099: 17.7711% +Rate for instruction 14100: 17.7704% +Rate for instruction 14101: 17.7711% +Rate for instruction 14102: 17.7704% +Rate for instruction 14103: 17.7694% +Rate for instruction 14104: 17.7706% +Rate for instruction 14105: 17.7718% +Rate for instruction 14106: 17.7732% +Rate for instruction 14107: 17.7736% +Rate for instruction 14108: 17.7743% +Rate for instruction 14109: 17.7744% +Rate for instruction 14110: 17.7758% +Rate for instruction 14111: 17.7776% +Rate for instruction 14112: 17.7793% +Rate for instruction 14113: 17.7789% +Rate for instruction 14114: 17.7781% +Rate for instruction 14115: 17.7772% +Rate for instruction 14116: 17.7764% +Rate for instruction 14117: 17.7765% +Rate for instruction 14118: 17.7761% +Rate for instruction 14119: 17.7757% +Rate for instruction 14120: 17.7749% +Rate for instruction 14121: 17.7742% +Rate for instruction 14122: 17.7762% +Rate for instruction 14123: 17.778% +Rate for instruction 14124: 17.7792% +Rate for instruction 14125: 17.7782% +Rate for instruction 14126: 17.7794% +Rate for instruction 14127: 17.7811% +Rate for instruction 14128: 17.782% +Rate for instruction 14129: 17.7838% +Rate for instruction 14130: 17.7855% +Rate for instruction 14131: 17.7867% +Rate for instruction 14132: 17.7882% +Rate for instruction 14133: 17.7893% +Rate for instruction 14134: 17.7894% +Rate for instruction 14135: 17.789% +Rate for instruction 14136: 17.791% +Rate for instruction 14137: 17.7906% +Rate for instruction 14138: 17.7907% +Rate for instruction 14139: 17.7913% +Rate for instruction 14140: 17.7909% +Rate for instruction 14141: 17.7921% +Rate for instruction 14142: 17.7911% +Rate for instruction 14143: 17.7923% +Rate for instruction 14144: 17.7921% +Rate for instruction 14145: 17.7917% +Rate for instruction 14146: 17.7907% +Rate for instruction 14147: 17.7908% +Rate for instruction 14148: 17.7898% +Rate for instruction 14149: 17.7896% +Rate for instruction 14150: 17.7886% +Rate for instruction 14151: 17.7879% +Rate for instruction 14152: 17.7869% +Rate for instruction 14153: 17.7865% +Rate for instruction 14154: 17.7866% +Rate for instruction 14155: 17.7862% +Rate for instruction 14156: 17.7854% +Rate for instruction 14157: 17.7845% +Rate for instruction 14158: 17.7837% +Rate for instruction 14159: 17.783% +Rate for instruction 14160: 17.785% +Rate for instruction 14161: 17.7865% +Rate for instruction 14162: 17.7866% +Rate for instruction 14163: 17.7864% +Rate for instruction 14164: 17.7863% +Rate for instruction 14165: 17.7855% +Rate for instruction 14166: 17.7851% +Rate for instruction 14167: 17.7849% +Rate for instruction 14168: 17.7839% +Rate for instruction 14169: 17.7838% +Rate for instruction 14170: 17.7828% +Rate for instruction 14171: 17.7829% +Rate for instruction 14172: 17.7827% +Rate for instruction 14173: 17.7817% +Rate for instruction 14174: 17.7818% +Rate for instruction 14175: 17.7811% +Rate for instruction 14176: 17.7815% +Rate for instruction 14177: 17.7813% +Rate for instruction 14178: 17.7817% +Rate for instruction 14179: 17.781% +Rate for instruction 14180: 17.7811% +Rate for instruction 14181: 17.7809% +Rate for instruction 14182: 17.78% +Rate for instruction 14183: 17.7801% +Rate for instruction 14184: 17.7799% +Rate for instruction 14185: 17.78% +Rate for instruction 14186: 17.7812% +Rate for instruction 14187: 17.7818% +Rate for instruction 14188: 17.7808% +Rate for instruction 14189: 17.7807% +Rate for instruction 14190: 17.7808% +Rate for instruction 14191: 17.7811% +Rate for instruction 14192: 17.7802% +Rate for instruction 14193: 17.7792% +Rate for instruction 14194: 17.7804% +Rate for instruction 14195: 17.7821% +Rate for instruction 14196: 17.7814% +Rate for instruction 14197: 17.7804% +Rate for instruction 14198: 17.7794% +Rate for instruction 14199: 17.7787% +Rate for instruction 14200: 17.7783% +Rate for instruction 14201: 17.7778% +Rate for instruction 14202: 17.7771% +Rate for instruction 14203: 17.7778% +Rate for instruction 14204: 17.7779% +Rate for instruction 14205: 17.7774% +Rate for instruction 14206: 17.7773% +Rate for instruction 14207: 17.7763% +Rate for instruction 14208: 17.7753% +Rate for instruction 14209: 17.7743% +Rate for instruction 14210: 17.7742% +Rate for instruction 14211: 17.774% +Rate for instruction 14212: 17.7752% +Rate for instruction 14213: 17.7766% +Rate for instruction 14214: 17.7759% +Rate for instruction 14215: 17.7757% +Rate for instruction 14216: 17.7761% +Rate for instruction 14217: 17.7751% +Rate for instruction 14218: 17.7769% +Rate for instruction 14219: 17.7762% +Rate for instruction 14220: 17.7771% +Rate for instruction 14221: 17.7788% +Rate for instruction 14222: 17.7789% +Rate for instruction 14223: 17.7785% +Rate for instruction 14224: 17.7794% +Rate for instruction 14225: 17.7792% +Rate for instruction 14226: 17.7796% +Rate for instruction 14227: 17.7799% +Rate for instruction 14228: 17.779% +Rate for instruction 14229: 17.7783% +Rate for instruction 14230: 17.7792% +Rate for instruction 14231: 17.7795% +Rate for instruction 14232: 17.7807% +Rate for instruction 14233: 17.7811% +Rate for instruction 14234: 17.782% +Rate for instruction 14235: 17.7835% +Rate for instruction 14236: 17.7846% +Rate for instruction 14237: 17.7856% +Rate for instruction 14238: 17.7862% +Rate for instruction 14239: 17.7858% +Rate for instruction 14240: 17.7851% +Rate for instruction 14241: 17.7843% +Rate for instruction 14242: 17.7834% +Rate for instruction 14243: 17.7827% +Rate for instruction 14244: 17.783% +Rate for instruction 14245: 17.7834% +Rate for instruction 14246: 17.7835% +Rate for instruction 14247: 17.7839% +Rate for instruction 14248: 17.7859% +Rate for instruction 14249: 17.787% +Rate for instruction 14250: 17.788% +Rate for instruction 14251: 17.7875% +Rate for instruction 14252: 17.7887% +Rate for instruction 14253: 17.7899% +Rate for instruction 14254: 17.7905% +Rate for instruction 14255: 17.7922% +Rate for instruction 14256: 17.7921% +Rate for instruction 14257: 17.7919% +Rate for instruction 14258: 17.7915% +Rate for instruction 14259: 17.7908% +Rate for instruction 14260: 17.7898% +Rate for instruction 14261: 17.7891% +Rate for instruction 14262: 17.7894% +Rate for instruction 14263: 17.7887% +Rate for instruction 14264: 17.7878% +Rate for instruction 14265: 17.787% +Rate for instruction 14266: 17.7861% +Rate for instruction 14267: 17.7859% +Rate for instruction 14268: 17.7849% +Rate for instruction 14269: 17.7842% +Rate for instruction 14270: 17.784% +Rate for instruction 14271: 17.7836% +Rate for instruction 14272: 17.7829% +Rate for instruction 14273: 17.7825% +Rate for instruction 14274: 17.782% +Rate for instruction 14275: 17.7816% +Rate for instruction 14276: 17.7825% +Rate for instruction 14277: 17.7815% +Rate for instruction 14278: 17.7822% +Rate for instruction 14279: 17.782% +Rate for instruction 14280: 17.7813% +Rate for instruction 14281: 17.7814% +Rate for instruction 14282: 17.7815% +Rate for instruction 14283: 17.7821% +Rate for instruction 14284: 17.7822% +Rate for instruction 14285: 17.7815% +Rate for instruction 14286: 17.7808% +Rate for instruction 14287: 17.7812% +Rate for instruction 14288: 17.7808% +Rate for instruction 14289: 17.7809% +Rate for instruction 14290: 17.7802% +Rate for instruction 14291: 17.7805% +Rate for instruction 14292: 17.7817% +Rate for instruction 14293: 17.7815% +Rate for instruction 14294: 17.7808% +Rate for instruction 14295: 17.7809% +Rate for instruction 14296: 17.78% +Rate for instruction 14297: 17.7801% +Rate for instruction 14298: 17.7804% +Rate for instruction 14299: 17.7811% +Rate for instruction 14300: 17.7806% +Rate for instruction 14301: 17.7797% +Rate for instruction 14302: 17.7787% +Rate for instruction 14303: 17.7788% +Rate for instruction 14304: 17.7789% +Rate for instruction 14305: 17.7779% +Rate for instruction 14306: 17.7772% +Rate for instruction 14307: 17.777% +Rate for instruction 14308: 17.7766% +Rate for instruction 14309: 17.777% +Rate for instruction 14310: 17.7779% +Rate for instruction 14311: 17.7785% +Rate for instruction 14312: 17.7792% +Rate for instruction 14313: 17.7793% +Rate for instruction 14314: 17.7788% +Rate for instruction 14315: 17.7789% +Rate for instruction 14316: 17.7782% +Rate for instruction 14317: 17.7778% +Rate for instruction 14318: 17.7776% +Rate for instruction 14319: 17.778% +Rate for instruction 14320: 17.777% +Rate for instruction 14321: 17.7785% +Rate for instruction 14322: 17.7778% +Rate for instruction 14323: 17.7781% +Rate for instruction 14324: 17.7782% +Rate for instruction 14325: 17.7775% +Rate for instruction 14326: 17.7787% +Rate for instruction 14327: 17.7788% +Rate for instruction 14328: 17.7794% +Rate for instruction 14329: 17.779% +Rate for instruction 14330: 17.7788% +Rate for instruction 14331: 17.7805% +Rate for instruction 14332: 17.782% +Rate for instruction 14333: 17.7824% +Rate for instruction 14334: 17.7833% +Rate for instruction 14335: 17.7839% +Rate for instruction 14336: 17.7853% +Rate for instruction 14337: 17.7849% +Rate for instruction 14338: 17.7866% +Rate for instruction 14339: 17.7864% +Rate for instruction 14340: 17.7866% +Rate for instruction 14341: 17.7858% +Rate for instruction 14342: 17.7859% +Rate for instruction 14343: 17.785% +Rate for instruction 14344: 17.7859% +Rate for instruction 14345: 17.7857% +Rate for instruction 14346: 17.7853% +Rate for instruction 14347: 17.7846% +Rate for instruction 14348: 17.786% +Rate for instruction 14349: 17.7861% +Rate for instruction 14350: 17.7862% +Rate for instruction 14351: 17.7863% +Rate for instruction 14352: 17.7864% +Rate for instruction 14353: 17.7865% +Rate for instruction 14354: 17.7864% +Rate for instruction 14355: 17.7862% +Rate for instruction 14356: 17.7855% +Rate for instruction 14357: 17.7848% +Rate for instruction 14358: 17.7838% +Rate for instruction 14359: 17.7839% +Rate for instruction 14360: 17.7829% +Rate for instruction 14361: 17.7828% +Rate for instruction 14362: 17.7818% +Rate for instruction 14363: 17.7814% +Rate for instruction 14364: 17.7812% +Rate for instruction 14365: 17.7829% +Rate for instruction 14366: 17.7843% +Rate for instruction 14367: 17.7834% +Rate for instruction 14368: 17.7843% +Rate for instruction 14369: 17.7846% +Rate for instruction 14370: 17.7861% +Rate for instruction 14371: 17.7857% +Rate for instruction 14372: 17.7871% +Rate for instruction 14373: 17.7891% +Rate for instruction 14374: 17.7884% +Rate for instruction 14375: 17.7879% +Rate for instruction 14376: 17.787% +Rate for instruction 14377: 17.7863% +Rate for instruction 14378: 17.7858% +Rate for instruction 14379: 17.7851% +Rate for instruction 14380: 17.7852% +Rate for instruction 14381: 17.7853% +Rate for instruction 14382: 17.7852% +Rate for instruction 14383: 17.785% +Rate for instruction 14384: 17.7846% +Rate for instruction 14385: 17.7849% +Rate for instruction 14386: 17.785% +Rate for instruction 14387: 17.7854% +Rate for instruction 14388: 17.7844% +Rate for instruction 14389: 17.7861% +Rate for instruction 14390: 17.7854% +Rate for instruction 14391: 17.7869% +Rate for instruction 14392: 17.7888% +Rate for instruction 14393: 17.7908% +Rate for instruction 14394: 17.7912% +Rate for instruction 14395: 17.7907% +Rate for instruction 14396: 17.7898% +Rate for instruction 14397: 17.7909% +Rate for instruction 14398: 17.7924% +Rate for instruction 14399: 17.7943% +Rate for instruction 14400: 17.7944% +Rate for instruction 14401: 17.7956% +Rate for instruction 14402: 17.7946% +Rate for instruction 14403: 17.7953% +Rate for instruction 14404: 17.7946% +Rate for instruction 14405: 17.7941% +Rate for instruction 14406: 17.7934% +Rate for instruction 14407: 17.7951% +Rate for instruction 14408: 17.7955% +Rate for instruction 14409: 17.7945% +Rate for instruction 14410: 17.7941% +Rate for instruction 14411: 17.7931% +Rate for instruction 14412: 17.7924% +Rate for instruction 14413: 17.7915% +Rate for instruction 14414: 17.7934% +Rate for instruction 14415: 17.7941% +Rate for instruction 14416: 17.795% +Rate for instruction 14417: 17.794% +Rate for instruction 14418: 17.7936% +Rate for instruction 14419: 17.7926% +Rate for instruction 14420: 17.7932% +Rate for instruction 14421: 17.7941% +Rate for instruction 14422: 17.7948% +Rate for instruction 14423: 17.7943% +Rate for instruction 14424: 17.795% +Rate for instruction 14425: 17.7959% +Rate for instruction 14426: 17.796% +Rate for instruction 14427: 17.7955% +Rate for instruction 14428: 17.7954% +Rate for instruction 14429: 17.7957% +Rate for instruction 14430: 17.7958% +Rate for instruction 14431: 17.7954% +Rate for instruction 14432: 17.795% +Rate for instruction 14433: 17.7948% +Rate for instruction 14434: 17.7946% +Rate for instruction 14435: 17.7953% +Rate for instruction 14436: 17.7946% +Rate for instruction 14437: 17.7941% +Rate for instruction 14438: 17.7942% +Rate for instruction 14439: 17.7941% +Rate for instruction 14440: 17.7936% +Rate for instruction 14441: 17.7929% +Rate for instruction 14442: 17.792% +Rate for instruction 14443: 17.7913% +Rate for instruction 14444: 17.7906% +Rate for instruction 14445: 17.7896% +Rate for instruction 14446: 17.7889% +Rate for instruction 14447: 17.7901% +Rate for instruction 14448: 17.7894% +Rate for instruction 14449: 17.7903% +Rate for instruction 14450: 17.7904% +Rate for instruction 14451: 17.7899% +Rate for instruction 14452: 17.7916% +Rate for instruction 14453: 17.7925% +Rate for instruction 14454: 17.7921% +Rate for instruction 14455: 17.793% +Rate for instruction 14456: 17.792% +Rate for instruction 14457: 17.7927% +Rate for instruction 14458: 17.7928% +Rate for instruction 14459: 17.7939% +Rate for instruction 14460: 17.7937% +Rate for instruction 14461: 17.7944% +Rate for instruction 14462: 17.7955% +Rate for instruction 14463: 17.7951% +Rate for instruction 14464: 17.7947% +Rate for instruction 14465: 17.7942% +Rate for instruction 14466: 17.7935% +Rate for instruction 14467: 17.7926% +Rate for instruction 14468: 17.7924% +Rate for instruction 14469: 17.7915% +Rate for instruction 14470: 17.7908% +Rate for instruction 14471: 17.7898% +Rate for instruction 14472: 17.7894% +Rate for instruction 14473: 17.7887% +Rate for instruction 14474: 17.789% +Rate for instruction 14475: 17.7883% +Rate for instruction 14476: 17.79% +Rate for instruction 14477: 17.7907% +Rate for instruction 14478: 17.7908% +Rate for instruction 14479: 17.7919% +Rate for instruction 14480: 17.7933% +Rate for instruction 14481: 17.794% +Rate for instruction 14482: 17.7951% +Rate for instruction 14483: 17.7958% +Rate for instruction 14484: 17.7956% +Rate for instruction 14485: 17.7952% +Rate for instruction 14486: 17.795% +Rate for instruction 14487: 17.7967% +Rate for instruction 14488: 17.7963% +Rate for instruction 14489: 17.7977% +Rate for instruction 14490: 17.797% +Rate for instruction 14491: 17.7979% +Rate for instruction 14492: 17.7982% +Rate for instruction 14493: 17.7973% +Rate for instruction 14494: 17.7974% +Rate for instruction 14495: 17.7985% +Rate for instruction 14496: 17.7978% +Rate for instruction 14497: 17.7977% +Rate for instruction 14498: 17.797% +Rate for instruction 14499: 17.7973% +Rate for instruction 14500: 17.7969% +Rate for instruction 14501: 17.7973% +Rate for instruction 14502: 17.7963% +Rate for instruction 14503: 17.7969% +Rate for instruction 14504: 17.7965% +Rate for instruction 14505: 17.7971% +Rate for instruction 14506: 17.7964% +Rate for instruction 14507: 17.796% +Rate for instruction 14508: 17.7966% +Rate for instruction 14509: 17.7973% +Rate for instruction 14510: 17.7963% +Rate for instruction 14511: 17.7956% +Rate for instruction 14512: 17.797% +Rate for instruction 14513: 17.7985% +Rate for instruction 14514: 17.8004% +Rate for instruction 14515: 17.8016% +Rate for instruction 14516: 17.803% +Rate for instruction 14517: 17.8044% +Rate for instruction 14518: 17.8053% +Rate for instruction 14519: 17.8046% +Rate for instruction 14520: 17.8039% +Rate for instruction 14521: 17.8046% +Rate for instruction 14522: 17.8041% +Rate for instruction 14523: 17.8037% +Rate for instruction 14524: 17.8035% +Rate for instruction 14525: 17.8034% +Rate for instruction 14526: 17.8024% +Rate for instruction 14527: 17.8028% +Rate for instruction 14528: 17.8018% +Rate for instruction 14529: 17.8019% +Rate for instruction 14530: 17.802% +Rate for instruction 14531: 17.801% +Rate for instruction 14532: 17.8006% +Rate for instruction 14533: 17.7996% +Rate for instruction 14534: 17.7989% +Rate for instruction 14535: 17.7993% +Rate for instruction 14536: 17.7997% +Rate for instruction 14537: 17.799% +Rate for instruction 14538: 17.7985% +Rate for instruction 14539: 17.7976% +Rate for instruction 14540: 17.7972% +Rate for instruction 14541: 17.7962% +Rate for instruction 14542: 17.7955% +Rate for instruction 14543: 17.7948% +Rate for instruction 14544: 17.7938% +Rate for instruction 14545: 17.7934% +Rate for instruction 14546: 17.7935% +Rate for instruction 14547: 17.7939% +Rate for instruction 14548: 17.7935% +Rate for instruction 14549: 17.7936% +Rate for instruction 14550: 17.7939% +Rate for instruction 14551: 17.7945% +Rate for instruction 14552: 17.7957% +Rate for instruction 14553: 17.7961% +Rate for instruction 14554: 17.7954% +Rate for instruction 14555: 17.7955% +Rate for instruction 14556: 17.795% +Rate for instruction 14557: 17.7946% +Rate for instruction 14558: 17.7939% +Rate for instruction 14559: 17.7943% +Rate for instruction 14560: 17.7941% +Rate for instruction 14561: 17.7934% +Rate for instruction 14562: 17.7951% +Rate for instruction 14563: 17.7965% +Rate for instruction 14564: 17.7956% +Rate for instruction 14565: 17.7949% +Rate for instruction 14566: 17.7944% +Rate for instruction 14567: 17.7953% +Rate for instruction 14568: 17.7952% +Rate for instruction 14569: 17.7945% +Rate for instruction 14570: 17.7956% +Rate for instruction 14571: 17.7976% +Rate for instruction 14572: 17.7969% +Rate for instruction 14573: 17.797% +Rate for instruction 14574: 17.7965% +Rate for instruction 14575: 17.7964% +Rate for instruction 14576: 17.7965% +Rate for instruction 14577: 17.7971% +Rate for instruction 14578: 17.7964% +Rate for instruction 14579: 17.797% +Rate for instruction 14580: 17.7974% +Rate for instruction 14581: 17.7975% +Rate for instruction 14582: 17.7989% +Rate for instruction 14583: 17.7995% +Rate for instruction 14584: 17.7994% +Rate for instruction 14585: 17.7995% +Rate for instruction 14586: 17.7988% +Rate for instruction 14587: 17.7983% +Rate for instruction 14588: 17.7982% +Rate for instruction 14589: 17.7972% +Rate for instruction 14590: 17.7968% +Rate for instruction 14591: 17.7966% +Rate for instruction 14592: 17.7962% +Rate for instruction 14593: 17.7955% +Rate for instruction 14594: 17.7967% +Rate for instruction 14595: 17.7978% +Rate for instruction 14596: 17.7982% +Rate for instruction 14597: 17.7988% +Rate for instruction 14598: 17.7984% +Rate for instruction 14599: 17.7977% +Rate for instruction 14600: 17.7967% +Rate for instruction 14601: 17.796% +Rate for instruction 14602: 17.7956% +Rate for instruction 14603: 17.7957% +Rate for instruction 14604: 17.7947% +Rate for instruction 14605: 17.7946% +Rate for instruction 14606: 17.7942% +Rate for instruction 14607: 17.7953% +Rate for instruction 14608: 17.7949% +Rate for instruction 14609: 17.7945% +Rate for instruction 14610: 17.7945% +Rate for instruction 14611: 17.7939% +Rate for instruction 14612: 17.7945% +Rate for instruction 14613: 17.7935% +Rate for instruction 14614: 17.7944% +Rate for instruction 14615: 17.7948% +Rate for instruction 14616: 17.7941% +Rate for instruction 14617: 17.7942% +Rate for instruction 14618: 17.794% +Rate for instruction 14619: 17.7946% +Rate for instruction 14620: 17.7958% +Rate for instruction 14621: 17.7951% +Rate for instruction 14622: 17.7957% +Rate for instruction 14623: 17.7956% +Rate for instruction 14624: 17.7949% +Rate for instruction 14625: 17.7958% +Rate for instruction 14626: 17.7969% +Rate for instruction 14627: 17.7965% +Rate for instruction 14628: 17.7955% +Rate for instruction 14629: 17.7951% +Rate for instruction 14630: 17.7944% +Rate for instruction 14631: 17.794% +Rate for instruction 14632: 17.7938% +Rate for instruction 14633: 17.7934% +Rate for instruction 14634: 17.7932% +Rate for instruction 14635: 17.7933% +Rate for instruction 14636: 17.7929% +Rate for instruction 14637: 17.794% +Rate for instruction 14638: 17.7944% +Rate for instruction 14639: 17.7948% +Rate for instruction 14640: 17.7949% +Rate for instruction 14641: 17.7958% +Rate for instruction 14642: 17.7972% +Rate for instruction 14643: 17.7962% +Rate for instruction 14644: 17.7971% +Rate for instruction 14645: 17.7967% +Rate for instruction 14646: 17.7957% +Rate for instruction 14647: 17.7969% +Rate for instruction 14648: 17.7959% +Rate for instruction 14649: 17.7957% +Rate for instruction 14650: 17.7974% +Rate for instruction 14651: 17.7983% +Rate for instruction 14652: 17.7974% +Rate for instruction 14653: 17.7977% +Rate for instruction 14654: 17.7973% +Rate for instruction 14655: 17.7974% +Rate for instruction 14656: 17.7964% +Rate for instruction 14657: 17.796% +Rate for instruction 14658: 17.7958% +Rate for instruction 14659: 17.7954% +Rate for instruction 14660: 17.7947% +Rate for instruction 14661: 17.794% +Rate for instruction 14662: 17.7939% +Rate for instruction 14663: 17.7932% +Rate for instruction 14664: 17.7925% +Rate for instruction 14665: 17.7915% +Rate for instruction 14666: 17.7914% +Rate for instruction 14667: 17.7917% +Rate for instruction 14668: 17.7908% +Rate for instruction 14669: 17.7909% +Rate for instruction 14670: 17.7905% +Rate for instruction 14671: 17.7921% +Rate for instruction 14672: 17.7933% +Rate for instruction 14673: 17.7929% +Rate for instruction 14674: 17.7922% +Rate for instruction 14675: 17.792% +Rate for instruction 14676: 17.7918% +Rate for instruction 14677: 17.793% +Rate for instruction 14678: 17.7939% +Rate for instruction 14679: 17.7932% +Rate for instruction 14680: 17.7951% +Rate for instruction 14681: 17.7949% +Rate for instruction 14682: 17.7961% +Rate for instruction 14683: 17.7978% +Rate for instruction 14684: 17.7979% +Rate for instruction 14685: 17.7969% +Rate for instruction 14686: 17.7973% +Rate for instruction 14687: 17.7976% +Rate for instruction 14688: 17.798% +Rate for instruction 14689: 17.7978% +Rate for instruction 14690: 17.7982% +Rate for instruction 14691: 17.7978% +Rate for instruction 14692: 17.7976% +Rate for instruction 14693: 17.7966% +Rate for instruction 14694: 17.796% +Rate for instruction 14695: 17.795% +Rate for instruction 14696: 17.7946% +Rate for instruction 14697: 17.7936% +Rate for instruction 14698: 17.7929% +Rate for instruction 14699: 17.793% +Rate for instruction 14700: 17.7921% +Rate for instruction 14701: 17.7922% +Rate for instruction 14702: 17.7915% +Rate for instruction 14703: 17.7908% +Rate for instruction 14704: 17.7899% +Rate for instruction 14705: 17.79% +Rate for instruction 14706: 17.7903% +Rate for instruction 14707: 17.7902% +Rate for instruction 14708: 17.7897% +Rate for instruction 14709: 17.7888% +Rate for instruction 14710: 17.7884% +Rate for instruction 14711: 17.789% +Rate for instruction 14712: 17.7907% +Rate for instruction 14713: 17.7907% +Rate for instruction 14714: 17.7901% +Rate for instruction 14715: 17.7902% +Rate for instruction 14716: 17.79% +Rate for instruction 14717: 17.7893% +Rate for instruction 14718: 17.7886% +Rate for instruction 14719: 17.7879% +Rate for instruction 14720: 17.7883% +Rate for instruction 14721: 17.7876% +Rate for instruction 14722: 17.7872% +Rate for instruction 14723: 17.7868% +Rate for instruction 14724: 17.7866% +Rate for instruction 14725: 17.7864% +Rate for instruction 14726: 17.7863% +Rate for instruction 14727: 17.7856% +Rate for instruction 14728: 17.7854% +Rate for instruction 14729: 17.786% +Rate for instruction 14730: 17.7861% +Rate for instruction 14731: 17.7852% +Rate for instruction 14732: 17.7845% +Rate for instruction 14733: 17.7841% +Rate for instruction 14734: 17.7837% +Rate for instruction 14735: 17.783% +Rate for instruction 14736: 17.782% +Rate for instruction 14737: 17.7819% +Rate for instruction 14738: 17.7809% +Rate for instruction 14739: 17.7813% +Rate for instruction 14740: 17.7809% +Rate for instruction 14741: 17.781% +Rate for instruction 14742: 17.7813% +Rate for instruction 14743: 17.783% +Rate for instruction 14744: 17.782% +Rate for instruction 14745: 17.7827% +Rate for instruction 14746: 17.782% +Rate for instruction 14747: 17.7816% +Rate for instruction 14748: 17.7814% +Rate for instruction 14749: 17.7825% +Rate for instruction 14750: 17.7845% +Rate for instruction 14751: 17.7843% +Rate for instruction 14752: 17.7836% +Rate for instruction 14753: 17.7829% +Rate for instruction 14754: 17.7828% +Rate for instruction 14755: 17.7836% +Rate for instruction 14756: 17.7845% +Rate for instruction 14757: 17.7844% +Rate for instruction 14758: 17.7842% +Rate for instruction 14759: 17.7853% +Rate for instruction 14760: 17.7867% +Rate for instruction 14761: 17.7858% +Rate for instruction 14762: 17.7864% +Rate for instruction 14763: 17.7875% +Rate for instruction 14764: 17.7874% +Rate for instruction 14765: 17.787% +Rate for instruction 14766: 17.7863% +Rate for instruction 14767: 17.7853% +Rate for instruction 14768: 17.7844% +Rate for instruction 14769: 17.7834% +Rate for instruction 14770: 17.783% +Rate for instruction 14771: 17.7831% +Rate for instruction 14772: 17.7822% +Rate for instruction 14773: 17.7815% +Rate for instruction 14774: 17.7829% +Rate for instruction 14775: 17.7835% +Rate for instruction 14776: 17.7828% +Rate for instruction 14777: 17.7837% +Rate for instruction 14778: 17.783% +Rate for instruction 14779: 17.7839% +Rate for instruction 14780: 17.784% +Rate for instruction 14781: 17.7841% +Rate for instruction 14782: 17.7839% +Rate for instruction 14783: 17.7835% +Rate for instruction 14784: 17.7852% +Rate for instruction 14785: 17.7842% +Rate for instruction 14786: 17.7849% +Rate for instruction 14787: 17.7847% +Rate for instruction 14788: 17.7837% +Rate for instruction 14789: 17.7836% +Rate for instruction 14790: 17.7826% +Rate for instruction 14791: 17.7822% +Rate for instruction 14792: 17.7821% +Rate for instruction 14793: 17.7811% +Rate for instruction 14794: 17.7804% +Rate for instruction 14795: 17.7803% +Rate for instruction 14796: 17.7799% +Rate for instruction 14797: 17.7792% +Rate for instruction 14798: 17.779% +Rate for instruction 14799: 17.7794% +Rate for instruction 14800: 17.7797% +Rate for instruction 14801: 17.7806% +Rate for instruction 14802: 17.7825% +Rate for instruction 14803: 17.7824% +Rate for instruction 14804: 17.7838% +Rate for instruction 14805: 17.7846% +Rate for instruction 14806: 17.7852% +Rate for instruction 14807: 17.7866% +Rate for instruction 14808: 17.7873% +Rate for instruction 14809: 17.7871% +Rate for instruction 14810: 17.7882% +Rate for instruction 14811: 17.7889% +Rate for instruction 14812: 17.7892% +Rate for instruction 14813: 17.7885% +Rate for instruction 14814: 17.7891% +Rate for instruction 14815: 17.7882% +Rate for instruction 14816: 17.7873% +Rate for instruction 14817: 17.7868% +Rate for instruction 14818: 17.7859% +Rate for instruction 14819: 17.786% +Rate for instruction 14820: 17.7861% +Rate for instruction 14821: 17.7852% +Rate for instruction 14822: 17.7855% +Rate for instruction 14823: 17.7846% +Rate for instruction 14824: 17.7839% +Rate for instruction 14825: 17.7832% +Rate for instruction 14826: 17.7823% +Rate for instruction 14827: 17.7816% +Rate for instruction 14828: 17.7814% +Rate for instruction 14829: 17.782% +Rate for instruction 14830: 17.7832% +Rate for instruction 14831: 17.7833% +Rate for instruction 14832: 17.7842% +Rate for instruction 14833: 17.785% +Rate for instruction 14834: 17.7841% +Rate for instruction 14835: 17.7857% +Rate for instruction 14836: 17.7856% +Rate for instruction 14837: 17.7859% +Rate for instruction 14838: 17.7855% +Rate for instruction 14839: 17.7851% +Rate for instruction 14840: 17.7867% +Rate for instruction 14841: 17.7874% +Rate for instruction 14842: 17.788% +Rate for instruction 14843: 17.7889% +Rate for instruction 14844: 17.79% +Rate for instruction 14845: 17.7893% +Rate for instruction 14846: 17.7889% +Rate for instruction 14847: 17.7903% +Rate for instruction 14848: 17.7901% +Rate for instruction 14849: 17.7897% +Rate for instruction 14850: 17.789% +Rate for instruction 14851: 17.7883% +Rate for instruction 14852: 17.7879% +Rate for instruction 14853: 17.7875% +Rate for instruction 14854: 17.7876% +Rate for instruction 14855: 17.7872% +Rate for instruction 14856: 17.787% +Rate for instruction 14857: 17.7871% +Rate for instruction 14858: 17.7872% +Rate for instruction 14859: 17.7876% +Rate for instruction 14860: 17.7869% +Rate for instruction 14861: 17.7859% +Rate for instruction 14862: 17.7855% +Rate for instruction 14863: 17.7848% +Rate for instruction 14864: 17.7842% +Rate for instruction 14865: 17.784% +Rate for instruction 14866: 17.7838% +Rate for instruction 14867: 17.7857% +Rate for instruction 14868: 17.7864% +Rate for instruction 14869: 17.7854% +Rate for instruction 14870: 17.785% +Rate for instruction 14871: 17.7841% +Rate for instruction 14872: 17.7836% +Rate for instruction 14873: 17.784% +Rate for instruction 14874: 17.7838% +Rate for instruction 14875: 17.7829% +Rate for instruction 14876: 17.7827% +Rate for instruction 14877: 17.7823% +Rate for instruction 14878: 17.7816% +Rate for instruction 14879: 17.7812% +Rate for instruction 14880: 17.7808% +Rate for instruction 14881: 17.7799% +Rate for instruction 14882: 17.7797% +Rate for instruction 14883: 17.7793% +Rate for instruction 14884: 17.7786% +Rate for instruction 14885: 17.7792% +Rate for instruction 14886: 17.7785% +Rate for instruction 14887: 17.7789% +Rate for instruction 14888: 17.778% +Rate for instruction 14889: 17.7775% +Rate for instruction 14890: 17.7787% +Rate for instruction 14891: 17.7783% +Rate for instruction 14892: 17.7781% +Rate for instruction 14893: 17.7795% +Rate for instruction 14894: 17.7809% +Rate for instruction 14895: 17.7825% +Rate for instruction 14896: 17.7821% +Rate for instruction 14897: 17.7827% +Rate for instruction 14898: 17.7823% +Rate for instruction 14899: 17.7819% +Rate for instruction 14900: 17.7809% +Rate for instruction 14901: 17.7805% +Rate for instruction 14902: 17.7796% +Rate for instruction 14903: 17.7792% +Rate for instruction 14904: 17.7788% +Rate for instruction 14905: 17.7781% +Rate for instruction 14906: 17.7779% +Rate for instruction 14907: 17.778% +Rate for instruction 14908: 17.7776% +Rate for instruction 14909: 17.7785% +Rate for instruction 14910: 17.7788% +Rate for instruction 14911: 17.7779% +Rate for instruction 14912: 17.7788% +Rate for instruction 14913: 17.7778% +Rate for instruction 14914: 17.7777% +Rate for instruction 14915: 17.7772% +Rate for instruction 14916: 17.7781% +Rate for instruction 14917: 17.7795% +Rate for instruction 14918: 17.7796% +Rate for instruction 14919: 17.7789% +Rate for instruction 14920: 17.7793% +Rate for instruction 14921: 17.7799% +Rate for instruction 14922: 17.7808% +Rate for instruction 14923: 17.7811% +Rate for instruction 14924: 17.7817% +Rate for instruction 14925: 17.7821% +Rate for instruction 14926: 17.7827% +Rate for instruction 14927: 17.7833% +Rate for instruction 14928: 17.7844% +Rate for instruction 14929: 17.7838% +Rate for instruction 14930: 17.7841% +Rate for instruction 14931: 17.7845% +Rate for instruction 14932: 17.7841% +Rate for instruction 14933: 17.7834% +Rate for instruction 14934: 17.7824% +Rate for instruction 14935: 17.7818% +Rate for instruction 14936: 17.7826% +Rate for instruction 14937: 17.782% +Rate for instruction 14938: 17.781% +Rate for instruction 14939: 17.7804% +Rate for instruction 14940: 17.7797% +Rate for instruction 14941: 17.7787% +Rate for instruction 14942: 17.7799% +Rate for instruction 14943: 17.7789% +Rate for instruction 14944: 17.779% +Rate for instruction 14945: 17.7781% +Rate for instruction 14946: 17.7777% +Rate for instruction 14947: 17.777% +Rate for instruction 14948: 17.7761% +Rate for instruction 14949: 17.7759% +Rate for instruction 14950: 17.7765% +Rate for instruction 14951: 17.7766% +Rate for instruction 14952: 17.777% +Rate for instruction 14953: 17.7771% +Rate for instruction 14954: 17.7774% +Rate for instruction 14955: 17.7765% +Rate for instruction 14956: 17.7763% +Rate for instruction 14957: 17.7759% +Rate for instruction 14958: 17.7763% +Rate for instruction 14959: 17.7769% +Rate for instruction 14960: 17.7762% +Rate for instruction 14961: 17.7761% +Rate for instruction 14962: 17.7772% +Rate for instruction 14963: 17.7786% +Rate for instruction 14964: 17.7789% +Rate for instruction 14965: 17.7785% +Rate for instruction 14966: 17.7783% +Rate for instruction 14967: 17.7782% +Rate for instruction 14968: 17.7785% +Rate for instruction 14969: 17.7776% +Rate for instruction 14970: 17.7782% +Rate for instruction 14971: 17.7775% +Rate for instruction 14972: 17.7769% +Rate for instruction 14973: 17.7767% +Rate for instruction 14974: 17.7776% +Rate for instruction 14975: 17.7784% +Rate for instruction 14976: 17.7783% +Rate for instruction 14977: 17.7776% +Rate for instruction 14978: 17.7767% +Rate for instruction 14979: 17.7758% +Rate for instruction 14980: 17.7758% +Rate for instruction 14981: 17.7762% +Rate for instruction 14982: 17.7771% +Rate for instruction 14983: 17.7774% +Rate for instruction 14984: 17.777% +Rate for instruction 14985: 17.7776% +Rate for instruction 14986: 17.7767% +Rate for instruction 14987: 17.7773% +Rate for instruction 14988: 17.7779% +Rate for instruction 14989: 17.7772% +Rate for instruction 14990: 17.7763% +Rate for instruction 14991: 17.7772% +Rate for instruction 14992: 17.7775% +Rate for instruction 14993: 17.7776% +Rate for instruction 14994: 17.7777% +Rate for instruction 14995: 17.777% +Rate for instruction 14996: 17.7761% +Rate for instruction 14997: 17.776% +Rate for instruction 14998: 17.775% +Rate for instruction 14999: 17.7746% +Rate for instruction 15000: 17.7737% +Rate for instruction 15001: 17.7738% +Rate for instruction 15002: 17.7739% +Rate for instruction 15003: 17.7737% +Rate for instruction 15004: 17.7733% +Rate for instruction 15005: 17.7729% +Rate for instruction 15006: 17.772% +Rate for instruction 15007: 17.7715% +Rate for instruction 15008: 17.7709% +Rate for instruction 15009: 17.7712% +Rate for instruction 15010: 17.7706% +Rate for instruction 15011: 17.7712% +Rate for instruction 15012: 17.7713% +Rate for instruction 15013: 17.7708% +Rate for instruction 15014: 17.7704% +Rate for instruction 15015: 17.7705% +Rate for instruction 15016: 17.7704% +Rate for instruction 15017: 17.771% +Rate for instruction 15018: 17.7713% +Rate for instruction 15019: 17.7709% +Rate for instruction 15020: 17.771% +Rate for instruction 15021: 17.7716% +Rate for instruction 15022: 17.7722% +Rate for instruction 15023: 17.7718% +Rate for instruction 15024: 17.7709% +Rate for instruction 15025: 17.7705% +Rate for instruction 15026: 17.7703% +Rate for instruction 15027: 17.7707% +Rate for instruction 15028: 17.7697% +Rate for instruction 15029: 17.7693% +Rate for instruction 15030: 17.7717% +Rate for instruction 15031: 17.7716% +Rate for instruction 15032: 17.7724% +Rate for instruction 15033: 17.773% +Rate for instruction 15034: 17.7747% +Rate for instruction 15035: 17.7755% +Rate for instruction 15036: 17.7779% +Rate for instruction 15037: 17.777% +Rate for instruction 15038: 17.7786% +Rate for instruction 15039: 17.7798% +Rate for instruction 15040: 17.7806% +Rate for instruction 15041: 17.7817% +Rate for instruction 15042: 17.7811% +Rate for instruction 15043: 17.7802% +Rate for instruction 15044: 17.7795% +Rate for instruction 15045: 17.7786% +Rate for instruction 15046: 17.7781% +Rate for instruction 15047: 17.7775% +Rate for instruction 15048: 17.7768% +Rate for instruction 15049: 17.7759% +Rate for instruction 15050: 17.7762% +Rate for instruction 15051: 17.7766% +Rate for instruction 15052: 17.7764% +Rate for instruction 15053: 17.7758% +Rate for instruction 15054: 17.7758% +Rate for instruction 15055: 17.7749% +Rate for instruction 15056: 17.7758% +Rate for instruction 15057: 17.7749% +Rate for instruction 15058: 17.7752% +Rate for instruction 15059: 17.7756% +Rate for instruction 15060: 17.7757% +Rate for instruction 15061: 17.7752% +Rate for instruction 15062: 17.7759% +Rate for instruction 15063: 17.7754% +Rate for instruction 15064: 17.7745% +Rate for instruction 15065: 17.7741% +Rate for instruction 15066: 17.7732% +Rate for instruction 15067: 17.7743% +Rate for instruction 15068: 17.7746% +Rate for instruction 15069: 17.7758% +Rate for instruction 15070: 17.7756% +Rate for instruction 15071: 17.7762% +Rate for instruction 15072: 17.7761% +Rate for instruction 15073: 17.7759% +Rate for instruction 15074: 17.7755% +Rate for instruction 15075: 17.7753% +Rate for instruction 15076: 17.7747% +Rate for instruction 15077: 17.7737% +Rate for instruction 15078: 17.7733% +Rate for instruction 15079: 17.7734% +Rate for instruction 15080: 17.7725% +Rate for instruction 15081: 17.7721% +Rate for instruction 15082: 17.7714% +Rate for instruction 15083: 17.7713% +Rate for instruction 15084: 17.7708% +Rate for instruction 15085: 17.7704% +Rate for instruction 15086: 17.7695% +Rate for instruction 15087: 17.7693% +Rate for instruction 15088: 17.7697% +Rate for instruction 15089: 17.769% +Rate for instruction 15090: 17.7681% +Rate for instruction 15091: 17.7682% +Rate for instruction 15092: 17.7688% +Rate for instruction 15093: 17.7692% +Rate for instruction 15094: 17.7693% +Rate for instruction 15095: 17.7696% +Rate for instruction 15096: 17.7697% +Rate for instruction 15097: 17.7698% +Rate for instruction 15098: 17.7689% +Rate for instruction 15099: 17.7687% +Rate for instruction 15100: 17.7688% +Rate for instruction 15101: 17.7687% +Rate for instruction 15102: 17.7685% +Rate for instruction 15103: 17.7686% +Rate for instruction 15104: 17.7684% +Rate for instruction 15105: 17.7685% +Rate for instruction 15106: 17.7686% +Rate for instruction 15107: 17.769% +Rate for instruction 15108: 17.7693% +Rate for instruction 15109: 17.7697% +Rate for instruction 15110: 17.7695% +Rate for instruction 15111: 17.7696% +Rate for instruction 15112: 17.7687% +Rate for instruction 15113: 17.7685% +Rate for instruction 15114: 17.7681% +Rate for instruction 15115: 17.7682% +Rate for instruction 15116: 17.7673% +Rate for instruction 15117: 17.7666% +Rate for instruction 15118: 17.7662% +Rate for instruction 15119: 17.7656% +Rate for instruction 15120: 17.7646% +Rate for instruction 15121: 17.7645% +Rate for instruction 15122: 17.7638% +Rate for instruction 15123: 17.7629% +Rate for instruction 15124: 17.7635% +Rate for instruction 15125: 17.7626% +Rate for instruction 15126: 17.7619% +Rate for instruction 15127: 17.761% +Rate for instruction 15128: 17.7606% +Rate for instruction 15129: 17.7609% +Rate for instruction 15130: 17.761% +Rate for instruction 15131: 17.7611% +Rate for instruction 15132: 17.7615% +Rate for instruction 15133: 17.7613% +Rate for instruction 15134: 17.7609% +Rate for instruction 15135: 17.76% +Rate for instruction 15136: 17.7604% +Rate for instruction 15137: 17.7597% +Rate for instruction 15138: 17.7593% +Rate for instruction 15139: 17.7591% +Rate for instruction 15140: 17.7585% +Rate for instruction 15141: 17.7588% +Rate for instruction 15142: 17.7579% +Rate for instruction 15143: 17.7582% +Rate for instruction 15144: 17.7583% +Rate for instruction 15145: 17.7574% +Rate for instruction 15146: 17.7575% +Rate for instruction 15147: 17.7576% +Rate for instruction 15148: 17.7567% +Rate for instruction 15149: 17.7573% +Rate for instruction 15150: 17.7579% +Rate for instruction 15151: 17.7575% +Rate for instruction 15152: 17.7571% +Rate for instruction 15153: 17.7569% +Rate for instruction 15154: 17.7565% +Rate for instruction 15155: 17.7564% +Rate for instruction 15156: 17.7559% +Rate for instruction 15157: 17.7555% +Rate for instruction 15158: 17.7564% +Rate for instruction 15159: 17.7578% +Rate for instruction 15160: 17.7579% +Rate for instruction 15161: 17.76% +Rate for instruction 15162: 17.7598% +Rate for instruction 15163: 17.7599% +Rate for instruction 15164: 17.7593% +Rate for instruction 15165: 17.7594% +Rate for instruction 15166: 17.759% +Rate for instruction 15167: 17.7598% +Rate for instruction 15168: 17.7589% +Rate for instruction 15169: 17.76% +Rate for instruction 15170: 17.7593% +Rate for instruction 15171: 17.7599% +Rate for instruction 15172: 17.7593% +Rate for instruction 15173: 17.7584% +Rate for instruction 15174: 17.7597% +Rate for instruction 15175: 17.7608% +Rate for instruction 15176: 17.7619% +Rate for instruction 15177: 17.761% +Rate for instruction 15178: 17.7616% +Rate for instruction 15179: 17.763% +Rate for instruction 15180: 17.7649% +Rate for instruction 15181: 17.7645% +Rate for instruction 15182: 17.7651% +Rate for instruction 15183: 17.7662% +Rate for instruction 15184: 17.767% +Rate for instruction 15185: 17.7661% +Rate for instruction 15186: 17.7654% +Rate for instruction 15187: 17.7648% +Rate for instruction 15188: 17.7656% +Rate for instruction 15189: 17.7652% +Rate for instruction 15190: 17.7643% +Rate for instruction 15191: 17.7657% +Rate for instruction 15192: 17.7648% +Rate for instruction 15193: 17.7641% +Rate for instruction 15194: 17.7634% +Rate for instruction 15195: 17.763% +Rate for instruction 15196: 17.7631% +Rate for instruction 15197: 17.7645% +Rate for instruction 15198: 17.7638% +Rate for instruction 15199: 17.7632% +Rate for instruction 15200: 17.7622% +Rate for instruction 15201: 17.7634% +Rate for instruction 15202: 17.764% +Rate for instruction 15203: 17.763% +Rate for instruction 15204: 17.7634% +Rate for instruction 15205: 17.7625% +Rate for instruction 15206: 17.7628% +Rate for instruction 15207: 17.7622% +Rate for instruction 15208: 17.7618% +Rate for instruction 15209: 17.7616% +Rate for instruction 15210: 17.7619% +Rate for instruction 15211: 17.762% +Rate for instruction 15212: 17.7611% +Rate for instruction 15213: 17.7615% +Rate for instruction 15214: 17.7618% +Rate for instruction 15215: 17.7627% +Rate for instruction 15216: 17.7638% +Rate for instruction 15217: 17.7634% +Rate for instruction 15218: 17.7635% +Rate for instruction 15219: 17.7641% +Rate for instruction 15220: 17.7634% +Rate for instruction 15221: 17.7625% +Rate for instruction 15222: 17.7618% +Rate for instruction 15223: 17.7614% +Rate for instruction 15224: 17.7605% +Rate for instruction 15225: 17.7599% +Rate for instruction 15226: 17.7589% +Rate for instruction 15227: 17.76% +Rate for instruction 15228: 17.7596% +Rate for instruction 15229: 17.7587% +Rate for instruction 15230: 17.7583% +Rate for instruction 15231: 17.7579% +Rate for instruction 15232: 17.7585% +Rate for instruction 15233: 17.7589% +Rate for instruction 15234: 17.7585% +Rate for instruction 15235: 17.7583% +Rate for instruction 15236: 17.7579% +Rate for instruction 15237: 17.7572% +Rate for instruction 15238: 17.7571% +Rate for instruction 15239: 17.7569% +Rate for instruction 15240: 17.756% +Rate for instruction 15241: 17.7561% +Rate for instruction 15242: 17.7562% +Rate for instruction 15243: 17.7555% +Rate for instruction 15244: 17.7554% +Rate for instruction 15245: 17.7547% +Rate for instruction 15246: 17.7546% +Rate for instruction 15247: 17.7537% +Rate for instruction 15248: 17.7535% +Rate for instruction 15249: 17.7533% +Rate for instruction 15250: 17.7524% +Rate for instruction 15251: 17.7528% +Rate for instruction 15252: 17.7521% +Rate for instruction 15253: 17.7525% +Rate for instruction 15254: 17.7523% +Rate for instruction 15255: 17.7524% +Rate for instruction 15256: 17.7523% +Rate for instruction 15257: 17.7518% +Rate for instruction 15258: 17.7524% +Rate for instruction 15259: 17.7523% +Rate for instruction 15260: 17.7516% +Rate for instruction 15261: 17.7512% +Rate for instruction 15262: 17.7516% +Rate for instruction 15263: 17.7512% +Rate for instruction 15264: 17.7513% +Rate for instruction 15265: 17.7511% +Rate for instruction 15266: 17.7505% +Rate for instruction 15267: 17.7503% +Rate for instruction 15268: 17.7496% +Rate for instruction 15269: 17.7502% +Rate for instruction 15270: 17.7496% +Rate for instruction 15271: 17.7497% +Rate for instruction 15272: 17.7493% +Rate for instruction 15273: 17.7496% +Rate for instruction 15274: 17.7495% +Rate for instruction 15275: 17.7498% +Rate for instruction 15276: 17.7504% +Rate for instruction 15277: 17.751% +Rate for instruction 15278: 17.7509% +Rate for instruction 15279: 17.751% +Rate for instruction 15280: 17.7508% +Rate for instruction 15281: 17.7506% +Rate for instruction 15282: 17.75% +Rate for instruction 15283: 17.7501% +Rate for instruction 15284: 17.7502% +Rate for instruction 15285: 17.7498% +Rate for instruction 15286: 17.7499% +Rate for instruction 15287: 17.7497% +Rate for instruction 15288: 17.7493% +Rate for instruction 15289: 17.7502% +Rate for instruction 15290: 17.7493% +Rate for instruction 15291: 17.7486% +Rate for instruction 15292: 17.75% +Rate for instruction 15293: 17.749% +Rate for instruction 15294: 17.7484% +Rate for instruction 15295: 17.7495% +Rate for instruction 15296: 17.7503% +Rate for instruction 15297: 17.7519% +Rate for instruction 15298: 17.7523% +Rate for instruction 15299: 17.7534% +Rate for instruction 15300: 17.7537% +Rate for instruction 15301: 17.7543% +Rate for instruction 15302: 17.7542% +Rate for instruction 15303: 17.754% +Rate for instruction 15304: 17.7539% +Rate for instruction 15305: 17.7532% +Rate for instruction 15306: 17.7531% +Rate for instruction 15307: 17.7527% +Rate for instruction 15308: 17.7523% +Rate for instruction 15309: 17.7513% +Rate for instruction 15310: 17.7507% +Rate for instruction 15311: 17.75% +Rate for instruction 15312: 17.7494% +Rate for instruction 15313: 17.7492% +Rate for instruction 15314: 17.7491% +Rate for instruction 15315: 17.7487% +Rate for instruction 15316: 17.749% +Rate for instruction 15317: 17.7491% +Rate for instruction 15318: 17.7489% +Rate for instruction 15319: 17.7495% +Rate for instruction 15320: 17.7501% +Rate for instruction 15321: 17.751% +Rate for instruction 15322: 17.7506% +Rate for instruction 15323: 17.7502% +Rate for instruction 15324: 17.7503% +Rate for instruction 15325: 17.7504% +Rate for instruction 15326: 17.7507% +Rate for instruction 15327: 17.7526% +Rate for instruction 15328: 17.7539% +Rate for instruction 15329: 17.7545% +Rate for instruction 15330: 17.7546% +Rate for instruction 15331: 17.754% +Rate for instruction 15332: 17.7546% +Rate for instruction 15333: 17.7539% +Rate for instruction 15334: 17.7548% +Rate for instruction 15335: 17.7541% +Rate for instruction 15336: 17.7545% +Rate for instruction 15337: 17.7545% +Rate for instruction 15338: 17.7544% +Rate for instruction 15339: 17.7537% +Rate for instruction 15340: 17.7543% +Rate for instruction 15341: 17.7554% +Rate for instruction 15342: 17.7555% +Rate for instruction 15343: 17.7551% +Rate for instruction 15344: 17.7542% +Rate for instruction 15345: 17.7536% +Rate for instruction 15346: 17.7527% +Rate for instruction 15347: 17.7528% +Rate for instruction 15348: 17.7518% +Rate for instruction 15349: 17.7512% +Rate for instruction 15350: 17.7518% +Rate for instruction 15351: 17.7509% +Rate for instruction 15352: 17.7505% +Rate for instruction 15353: 17.7503% +Rate for instruction 15354: 17.7497% +Rate for instruction 15355: 17.7493% +Rate for instruction 15356: 17.7486% +Rate for instruction 15357: 17.748% +Rate for instruction 15358: 17.7475% +Rate for instruction 15359: 17.7481% +Rate for instruction 15360: 17.7485% +Rate for instruction 15361: 17.7483% +Rate for instruction 15362: 17.7474% +Rate for instruction 15363: 17.7478% +Rate for instruction 15364: 17.7469% +Rate for instruction 15365: 17.7475% +Rate for instruction 15366: 17.7483% +Rate for instruction 15367: 17.7484% +Rate for instruction 15368: 17.7478% +Rate for instruction 15369: 17.7486% +Rate for instruction 15370: 17.7482% +Rate for instruction 15371: 17.7481% +Rate for instruction 15372: 17.7474% +Rate for instruction 15373: 17.748% +Rate for instruction 15374: 17.7488% +Rate for instruction 15375: 17.7487% +Rate for instruction 15376: 17.7495% +Rate for instruction 15377: 17.7504% +Rate for instruction 15378: 17.7502% +Rate for instruction 15379: 17.7511% +Rate for instruction 15380: 17.7509% +Rate for instruction 15381: 17.7518% +Rate for instruction 15382: 17.7509% +Rate for instruction 15383: 17.7502% +Rate for instruction 15384: 17.7496% +Rate for instruction 15385: 17.7509% +Rate for instruction 15386: 17.7517% +Rate for instruction 15387: 17.7508% +Rate for instruction 15388: 17.7504% +Rate for instruction 15389: 17.7495% +Rate for instruction 15390: 17.7501% +Rate for instruction 15391: 17.7495% +Rate for instruction 15392: 17.7496% +Rate for instruction 15393: 17.7487% +Rate for instruction 15394: 17.749% +Rate for instruction 15395: 17.7484% +Rate for instruction 15396: 17.748% +Rate for instruction 15397: 17.7473% +Rate for instruction 15398: 17.7472% +Rate for instruction 15399: 17.747% +Rate for instruction 15400: 17.7471% +Rate for instruction 15401: 17.7472% +Rate for instruction 15402: 17.748% +Rate for instruction 15403: 17.7481% +Rate for instruction 15404: 17.7472% +Rate for instruction 15405: 17.7466% +Rate for instruction 15406: 17.7467% +Rate for instruction 15407: 17.7473% +Rate for instruction 15408: 17.7471% +Rate for instruction 15409: 17.7467% +Rate for instruction 15410: 17.7461% +Rate for instruction 15411: 17.7457% +Rate for instruction 15412: 17.745% +Rate for instruction 15413: 17.7456% +Rate for instruction 15414: 17.7455% +Rate for instruction 15415: 17.7448% +Rate for instruction 15416: 17.7454% +Rate for instruction 15417: 17.7462% +Rate for instruction 15418: 17.7456% +Rate for instruction 15419: 17.7449% +Rate for instruction 15420: 17.7455% +Rate for instruction 15421: 17.7459% +Rate for instruction 15422: 17.746% +Rate for instruction 15423: 17.7458% +Rate for instruction 15424: 17.7467% +Rate for instruction 15425: 17.7465% +Rate for instruction 15426: 17.7471% +Rate for instruction 15427: 17.7482% +Rate for instruction 15428: 17.7473% +Rate for instruction 15429: 17.7474% +Rate for instruction 15430: 17.7465% +Rate for instruction 15431: 17.7471% +Rate for instruction 15432: 17.7467% +Rate for instruction 15433: 17.7478% +Rate for instruction 15434: 17.7469% +Rate for instruction 15435: 17.7467% +Rate for instruction 15436: 17.7481% +Rate for instruction 15437: 17.7492% +Rate for instruction 15438: 17.7485% +Rate for instruction 15439: 17.7499% +Rate for instruction 15440: 17.7494% +Rate for instruction 15441: 17.7488% +Rate for instruction 15442: 17.7484% +Rate for instruction 15443: 17.7495% +Rate for instruction 15444: 17.7506% +Rate for instruction 15445: 17.7509% +Rate for instruction 15446: 17.7518% +Rate for instruction 15447: 17.7509% +Rate for instruction 15448: 17.7505% +Rate for instruction 15449: 17.7501% +Rate for instruction 15450: 17.7497% +Rate for instruction 15451: 17.75% +Rate for instruction 15452: 17.7506% +Rate for instruction 15453: 17.7502% +Rate for instruction 15454: 17.7498% +Rate for instruction 15455: 17.7494% +Rate for instruction 15456: 17.7492% +Rate for instruction 15457: 17.7488% +Rate for instruction 15458: 17.7489% +Rate for instruction 15459: 17.748% +Rate for instruction 15460: 17.7484% +Rate for instruction 15461: 17.749% +Rate for instruction 15462: 17.7496% +Rate for instruction 15463: 17.7509% +Rate for instruction 15464: 17.7525% +Rate for instruction 15465: 17.7541% +Rate for instruction 15466: 17.7539% +Rate for instruction 15467: 17.754% +Rate for instruction 15468: 17.7531% +Rate for instruction 15469: 17.7547% +Rate for instruction 15470: 17.7538% +Rate for instruction 15471: 17.7549% +Rate for instruction 15472: 17.7543% +Rate for instruction 15473: 17.7551% +Rate for instruction 15474: 17.7562% +Rate for instruction 15475: 17.7575% +Rate for instruction 15476: 17.7594% +Rate for instruction 15477: 17.7587% +Rate for instruction 15478: 17.7581% +Rate for instruction 15479: 17.7577% +Rate for instruction 15480: 17.758% +Rate for instruction 15481: 17.7578% +Rate for instruction 15482: 17.7589% +Rate for instruction 15483: 17.7595% +Rate for instruction 15484: 17.7586% +Rate for instruction 15485: 17.7607% +Rate for instruction 15486: 17.7601% +Rate for instruction 15487: 17.7616% +Rate for instruction 15488: 17.763% +Rate for instruction 15489: 17.7638% +Rate for instruction 15490: 17.7634% +Rate for instruction 15491: 17.763% +Rate for instruction 15492: 17.7629% +Rate for instruction 15493: 17.7627% +Rate for instruction 15494: 17.7633% +Rate for instruction 15495: 17.7629% +Rate for instruction 15496: 17.763% +Rate for instruction 15497: 17.7633% +Rate for instruction 15498: 17.7627% +Rate for instruction 15499: 17.7623% +Rate for instruction 15500: 17.7621% +Rate for instruction 15501: 17.7617% +Rate for instruction 15502: 17.7633% +Rate for instruction 15503: 17.7639% +Rate for instruction 15504: 17.7633% +Rate for instruction 15505: 17.7631% +Rate for instruction 15506: 17.7642% +Rate for instruction 15507: 17.7653% +Rate for instruction 15508: 17.7666% +Rate for instruction 15509: 17.7662% +Rate for instruction 15510: 17.767% +Rate for instruction 15511: 17.7679% +Rate for instruction 15512: 17.7687% +Rate for instruction 15513: 17.7681% +Rate for instruction 15514: 17.7677% +Rate for instruction 15515: 17.7668% +Rate for instruction 15516: 17.7664% +Rate for instruction 15517: 17.766% +Rate for instruction 15518: 17.7656% +Rate for instruction 15519: 17.7649% +Rate for instruction 15520: 17.7643% +Rate for instruction 15521: 17.7644% +Rate for instruction 15522: 17.7635% +Rate for instruction 15523: 17.7626% +Rate for instruction 15524: 17.7617% +Rate for instruction 15525: 17.7625% +Rate for instruction 15526: 17.7616% +Rate for instruction 15527: 17.7632% +Rate for instruction 15528: 17.7633% +Rate for instruction 15529: 17.7626% +Rate for instruction 15530: 17.764% +Rate for instruction 15531: 17.7651% +Rate for instruction 15532: 17.7664% +Rate for instruction 15533: 17.7675% +Rate for instruction 15534: 17.7666% +Rate for instruction 15535: 17.7672% +Rate for instruction 15536: 17.7675% +Rate for instruction 15537: 17.7666% +Rate for instruction 15538: 17.766% +Rate for instruction 15539: 17.7673% +Rate for instruction 15540: 17.7679% +Rate for instruction 15541: 17.768% +Rate for instruction 15542: 17.7676% +Rate for instruction 15543: 17.7682% +Rate for instruction 15544: 17.7678% +Rate for instruction 15545: 17.7676% +Rate for instruction 15546: 17.7667% +Rate for instruction 15547: 17.7663% +Rate for instruction 15548: 17.7664% +Rate for instruction 15549: 17.7668% +Rate for instruction 15550: 17.7671% +Rate for instruction 15551: 17.7662% +Rate for instruction 15552: 17.7653% +Rate for instruction 15553: 17.7647% +Rate for instruction 15554: 17.7638% +Rate for instruction 15555: 17.7631% +Rate for instruction 15556: 17.7622% +Rate for instruction 15557: 17.7628% +Rate for instruction 15558: 17.7634% +Rate for instruction 15559: 17.764% +Rate for instruction 15560: 17.7631% +Rate for instruction 15561: 17.7624% +Rate for instruction 15562: 17.7628% +Rate for instruction 15563: 17.7629% +Rate for instruction 15564: 17.7622% +Rate for instruction 15565: 17.7621% +Rate for instruction 15566: 17.7612% +Rate for instruction 15567: 17.7613% +Rate for instruction 15568: 17.7616% +Rate for instruction 15569: 17.7607% +Rate for instruction 15570: 17.7603% +Rate for instruction 15571: 17.7599% +Rate for instruction 15572: 17.7605% +Rate for instruction 15573: 17.7606% +Rate for instruction 15574: 17.7607% +Rate for instruction 15575: 17.7601% +Rate for instruction 15576: 17.7594% +Rate for instruction 15577: 17.76% +Rate for instruction 15578: 17.7606% +Rate for instruction 15579: 17.7614% +Rate for instruction 15580: 17.762% +Rate for instruction 15581: 17.7616% +Rate for instruction 15582: 17.7612% +Rate for instruction 15583: 17.7621% +Rate for instruction 15584: 17.7612% +Rate for instruction 15585: 17.7603% +Rate for instruction 15586: 17.7601% +Rate for instruction 15587: 17.7595% +Rate for instruction 15588: 17.7598% +Rate for instruction 15589: 17.7597% +Rate for instruction 15590: 17.7605% +Rate for instruction 15591: 17.7611% +Rate for instruction 15592: 17.7619% +Rate for instruction 15593: 17.7623% +Rate for instruction 15594: 17.7623% +Rate for instruction 15595: 17.7617% +Rate for instruction 15596: 17.7625% +Rate for instruction 15597: 17.7631% +Rate for instruction 15598: 17.763% +Rate for instruction 15599: 17.7638% +Rate for instruction 15600: 17.7632% +Rate for instruction 15601: 17.7625% +Rate for instruction 15602: 17.7631% +Rate for instruction 15603: 17.7632% +Rate for instruction 15604: 17.7626% +Rate for instruction 15605: 17.7624% +Rate for instruction 15606: 17.762% +Rate for instruction 15607: 17.7621% +Rate for instruction 15608: 17.7632% +Rate for instruction 15609: 17.7638% +Rate for instruction 15610: 17.7634% +Rate for instruction 15611: 17.763% +Rate for instruction 15612: 17.7631% +Rate for instruction 15613: 17.7641% +Rate for instruction 15614: 17.7637% +Rate for instruction 15615: 17.7641% +Rate for instruction 15616: 17.7632% +Rate for instruction 15617: 17.7638% +Rate for instruction 15618: 17.7634% +Rate for instruction 15619: 17.7635% +Rate for instruction 15620: 17.7636% +Rate for instruction 15621: 17.7641% +Rate for instruction 15622: 17.7638% +Rate for instruction 15623: 17.7634% +Rate for instruction 15624: 17.7639% +Rate for instruction 15625: 17.7643% +Rate for instruction 15626: 17.7639% +Rate for instruction 15627: 17.7637% +Rate for instruction 15628: 17.7633% +Rate for instruction 15629: 17.7639% +Rate for instruction 15630: 17.7645% +Rate for instruction 15631: 17.7639% +Rate for instruction 15632: 17.7644% +Rate for instruction 15633: 17.7636% +Rate for instruction 15634: 17.7646% +Rate for instruction 15635: 17.7657% +Rate for instruction 15636: 17.7658% +Rate for instruction 15637: 17.7666% +Rate for instruction 15638: 17.7657% +Rate for instruction 15639: 17.7668% +Rate for instruction 15640: 17.7669% +Rate for instruction 15641: 17.7663% +Rate for instruction 15642: 17.7664% +Rate for instruction 15643: 17.7655% +Rate for instruction 15644: 17.7661% +Rate for instruction 15645: 17.7671% +Rate for instruction 15646: 17.7662% +Rate for instruction 15647: 17.7668% +Rate for instruction 15648: 17.7664% +Rate for instruction 15649: 17.766% +Rate for instruction 15650: 17.7651% +Rate for instruction 15651: 17.7652% +Rate for instruction 15652: 17.7648% +Rate for instruction 15653: 17.7642% +Rate for instruction 15654: 17.764% +Rate for instruction 15655: 17.7639% +Rate for instruction 15656: 17.764% +Rate for instruction 15657: 17.7633% +Rate for instruction 15658: 17.7625% +Rate for instruction 15659: 17.7626% +Rate for instruction 15660: 17.7617% +Rate for instruction 15661: 17.7613% +Rate for instruction 15662: 17.7604% +Rate for instruction 15663: 17.76% +Rate for instruction 15664: 17.7593% +Rate for instruction 15665: 17.7584% +Rate for instruction 15666: 17.7593% +Rate for instruction 15667: 17.7596% +Rate for instruction 15668: 17.7604% +Rate for instruction 15669: 17.7596% +Rate for instruction 15670: 17.7601% +Rate for instruction 15671: 17.7605% +Rate for instruction 15672: 17.7596% +Rate for instruction 15673: 17.7592% +Rate for instruction 15674: 17.7588% +Rate for instruction 15675: 17.7579% +Rate for instruction 15676: 17.7575% +Rate for instruction 15677: 17.7566% +Rate for instruction 15678: 17.757% +Rate for instruction 15679: 17.7563% +Rate for instruction 15680: 17.7559% +Rate for instruction 15681: 17.756% +Rate for instruction 15682: 17.7556% +Rate for instruction 15683: 17.7557% +Rate for instruction 15684: 17.7553% +Rate for instruction 15685: 17.7547% +Rate for instruction 15686: 17.7545% +Rate for instruction 15687: 17.7541% +Rate for instruction 15688: 17.7537% +Rate for instruction 15689: 17.7538% +Rate for instruction 15690: 17.7532% +Rate for instruction 15691: 17.7533% +Rate for instruction 15692: 17.7526% +Rate for instruction 15693: 17.7532% +Rate for instruction 15694: 17.7536% +Rate for instruction 15695: 17.7527% +Rate for instruction 15696: 17.7525% +Rate for instruction 15697: 17.7519% +Rate for instruction 15698: 17.7515% +Rate for instruction 15699: 17.7521% +Rate for instruction 15700: 17.7519% +Rate for instruction 15701: 17.751% +Rate for instruction 15702: 17.7509% +Rate for instruction 15703: 17.7503% +Rate for instruction 15704: 17.7506% +Rate for instruction 15705: 17.7497% +Rate for instruction 15706: 17.7491% +Rate for instruction 15707: 17.7487% +Rate for instruction 15708: 17.748% +Rate for instruction 15709: 17.7474% +Rate for instruction 15710: 17.7468% +Rate for instruction 15711: 17.7461% +Rate for instruction 15712: 17.7457% +Rate for instruction 15713: 17.7461% +Rate for instruction 15714: 17.7459% +Rate for instruction 15715: 17.7458% +Rate for instruction 15716: 17.7451% +Rate for instruction 15717: 17.7455% +Rate for instruction 15718: 17.7451% +Rate for instruction 15719: 17.7449% +Rate for instruction 15720: 17.7457% +Rate for instruction 15721: 17.7468% +Rate for instruction 15722: 17.7467% +Rate for instruction 15723: 17.7465% +Rate for instruction 15724: 17.7459% +Rate for instruction 15725: 17.7455% +Rate for instruction 15726: 17.7458% +Rate for instruction 15727: 17.7457% +Rate for instruction 15728: 17.7458% +Rate for instruction 15729: 17.7463% +Rate for instruction 15730: 17.7472% +Rate for instruction 15731: 17.7485% +Rate for instruction 15732: 17.7486% +Rate for instruction 15733: 17.7497% +Rate for instruction 15734: 17.7493% +Rate for instruction 15735: 17.7496% +Rate for instruction 15736: 17.7492% +Rate for instruction 15737: 17.7495% +Rate for instruction 15738: 17.7491% +Rate for instruction 15739: 17.7505% +Rate for instruction 15740: 17.7503% +Rate for instruction 15741: 17.7494% +Rate for instruction 15742: 17.7485% +Rate for instruction 15743: 17.7477% +Rate for instruction 15744: 17.747% +Rate for instruction 15745: 17.7466% +Rate for instruction 15746: 17.7457% +Rate for instruction 15747: 17.7458% +Rate for instruction 15748: 17.7457% +Rate for instruction 15749: 17.7463% +Rate for instruction 15750: 17.7473% +Rate for instruction 15751: 17.7482% +Rate for instruction 15752: 17.7478% +Rate for instruction 15753: 17.7479% +Rate for instruction 15754: 17.7492% +Rate for instruction 15755: 17.75% +Rate for instruction 15756: 17.7506% +Rate for instruction 15757: 17.7519% +Rate for instruction 15758: 17.751% +Rate for instruction 15759: 17.7506% +Rate for instruction 15760: 17.7502% +Rate for instruction 15761: 17.7501% +Rate for instruction 15762: 17.7492% +Rate for instruction 15763: 17.7488% +Rate for instruction 15764: 17.7479% +Rate for instruction 15765: 17.7473% +Rate for instruction 15766: 17.7481% +Rate for instruction 15767: 17.7487% +Rate for instruction 15768: 17.7483% +Rate for instruction 15769: 17.7491% +Rate for instruction 15770: 17.7509% +Rate for instruction 15771: 17.7527% +Rate for instruction 15772: 17.7538% +Rate for instruction 15773: 17.7539% +Rate for instruction 15774: 17.7557% +Rate for instruction 15775: 17.7548% +Rate for instruction 15776: 17.7547% +Rate for instruction 15777: 17.7545% +Rate for instruction 15778: 17.7541% +Rate for instruction 15779: 17.7535% +Rate for instruction 15780: 17.7548% +Rate for instruction 15781: 17.7551% +Rate for instruction 15782: 17.7543% +Rate for instruction 15783: 17.7536% +Rate for instruction 15784: 17.7527% +Rate for instruction 15785: 17.7528% +Rate for instruction 15786: 17.7519% +Rate for instruction 15787: 17.7513% +Rate for instruction 15788: 17.7504% +Rate for instruction 15789: 17.7513% +Rate for instruction 15790: 17.7511% +Rate for instruction 15791: 17.7505% +Rate for instruction 15792: 17.7498% +Rate for instruction 15793: 17.7494% +Rate for instruction 15794: 17.7503% +Rate for instruction 15795: 17.7506% +Rate for instruction 15796: 17.7502% +Rate for instruction 15797: 17.7513% +Rate for instruction 15798: 17.7521% +Rate for instruction 15799: 17.7524% +Rate for instruction 15800: 17.7518% +Rate for instruction 15801: 17.7524% +Rate for instruction 15802: 17.7517% +Rate for instruction 15803: 17.7526% +Rate for instruction 15804: 17.7519% +Rate for instruction 15805: 17.7513% +Rate for instruction 15806: 17.7521% +Rate for instruction 15807: 17.752% +Rate for instruction 15808: 17.7511% +Rate for instruction 15809: 17.7509% +Rate for instruction 15810: 17.7515% +Rate for instruction 15811: 17.7506% +Rate for instruction 15812: 17.751% +Rate for instruction 15813: 17.7511% +Rate for instruction 15814: 17.7512% +Rate for instruction 15815: 17.7508% +Rate for instruction 15816: 17.7501% +Rate for instruction 15817: 17.7495% +Rate for instruction 15818: 17.7496% +Rate for instruction 15819: 17.7492% +Rate for instruction 15820: 17.7493% +Rate for instruction 15821: 17.7504% +Rate for instruction 15822: 17.7517% +Rate for instruction 15823: 17.7513% +Rate for instruction 15824: 17.7506% +Rate for instruction 15825: 17.75% +Rate for instruction 15826: 17.7506% +Rate for instruction 15827: 17.7514% +Rate for instruction 15828: 17.7517% +Rate for instruction 15829: 17.7513% +Rate for instruction 15830: 17.7512% +Rate for instruction 15831: 17.7508% +Rate for instruction 15832: 17.7516% +Rate for instruction 15833: 17.7512% +Rate for instruction 15834: 17.7506% +Rate for instruction 15835: 17.7502% +Rate for instruction 15836: 17.7496% +Rate for instruction 15837: 17.7489% +Rate for instruction 15838: 17.7481% +Rate for instruction 15839: 17.7474% +Rate for instruction 15840: 17.747% +Rate for instruction 15841: 17.7464% +Rate for instruction 15842: 17.7455% +Rate for instruction 15843: 17.7468% +Rate for instruction 15844: 17.7481% +Rate for instruction 15845: 17.7475% +Rate for instruction 15846: 17.7471% +Rate for instruction 15847: 17.7472% +Rate for instruction 15848: 17.7466% +Rate for instruction 15849: 17.7457% +Rate for instruction 15850: 17.7463% +Rate for instruction 15851: 17.7464% +Rate for instruction 15852: 17.7469% +Rate for instruction 15853: 17.7461% +Rate for instruction 15854: 17.7454% +Rate for instruction 15855: 17.747% +Rate for instruction 15856: 17.7463% +Rate for instruction 15857: 17.7472% +Rate for instruction 15858: 17.7465% +Rate for instruction 15859: 17.7471% +Rate for instruction 15860: 17.7484% +Rate for instruction 15861: 17.7495% +Rate for instruction 15862: 17.7501% +Rate for instruction 15863: 17.7509% +Rate for instruction 15864: 17.7522% +Rate for instruction 15865: 17.7513% +Rate for instruction 15866: 17.7529% +Rate for instruction 15867: 17.7542% +Rate for instruction 15868: 17.7547% +Rate for instruction 15869: 17.7539% +Rate for instruction 15870: 17.7535% +Rate for instruction 15871: 17.7545% +Rate for instruction 15872: 17.7537% +Rate for instruction 15873: 17.7542% +Rate for instruction 15874: 17.7555% +Rate for instruction 15875: 17.7559% +Rate for instruction 15876: 17.7562% +Rate for instruction 15877: 17.7558% +Rate for instruction 15878: 17.7564% +Rate for instruction 15879: 17.7577% +Rate for instruction 15880: 17.7573% +Rate for instruction 15881: 17.7564% +Rate for instruction 15882: 17.7558% +Rate for instruction 15883: 17.7571% +Rate for instruction 15884: 17.7582% +Rate for instruction 15885: 17.7575% +Rate for instruction 15886: 17.7584% +Rate for instruction 15887: 17.7584% +Rate for instruction 15888: 17.7595% +Rate for instruction 15889: 17.7608% +Rate for instruction 15890: 17.7624% +Rate for instruction 15891: 17.7617% +Rate for instruction 15892: 17.7608% +Rate for instruction 15893: 17.7602% +Rate for instruction 15894: 17.7596% +Rate for instruction 15895: 17.7609% +Rate for instruction 15896: 17.7612% +Rate for instruction 15897: 17.7606% +Rate for instruction 15898: 17.7604% +Rate for instruction 15899: 17.7617% +Rate for instruction 15900: 17.7613% +Rate for instruction 15901: 17.7609% +Rate for instruction 15902: 17.7603% +Rate for instruction 15903: 17.7614% +Rate for instruction 15904: 17.761% +Rate for instruction 15905: 17.7618% +Rate for instruction 15906: 17.7609% +Rate for instruction 15907: 17.7613% +Rate for instruction 15908: 17.7621% +Rate for instruction 15909: 17.7634% +Rate for instruction 15910: 17.7649% +Rate for instruction 15911: 17.7653% +Rate for instruction 15912: 17.7649% +Rate for instruction 15913: 17.765% +Rate for instruction 15914: 17.7648% +Rate for instruction 15915: 17.7639% +Rate for instruction 15916: 17.7633% +Rate for instruction 15917: 17.7624% +Rate for instruction 15918: 17.762% +Rate for instruction 15919: 17.7612% +Rate for instruction 15920: 17.7605% +Rate for instruction 15921: 17.7604% +Rate for instruction 15922: 17.7605% +Rate for instruction 15923: 17.7608% +Rate for instruction 15924: 17.7614% +Rate for instruction 15925: 17.7607% +Rate for instruction 15926: 17.7604% +Rate for instruction 15927: 17.7607% +Rate for instruction 15928: 17.7605% +Rate for instruction 15929: 17.7602% +Rate for instruction 15930: 17.7602% +Rate for instruction 15931: 17.7599% +Rate for instruction 15932: 17.7597% +Rate for instruction 15933: 17.7598% +Rate for instruction 15934: 17.7599% +Rate for instruction 15935: 17.76% +Rate for instruction 15936: 17.7598% +Rate for instruction 15937: 17.7594% +Rate for instruction 15938: 17.7595% +Rate for instruction 15939: 17.7587% +Rate for instruction 15940: 17.7585% +Rate for instruction 15941: 17.7591% +Rate for instruction 15942: 17.7585% +Rate for instruction 15943: 17.7583% +Rate for instruction 15944: 17.7586% +Rate for instruction 15945: 17.7592% +Rate for instruction 15946: 17.7603% +Rate for instruction 15947: 17.7618% +Rate for instruction 15948: 17.7634% +Rate for instruction 15949: 17.763% +Rate for instruction 15950: 17.7631% +Rate for instruction 15951: 17.7641% +Rate for instruction 15952: 17.7632% +Rate for instruction 15953: 17.7645% +Rate for instruction 15954: 17.7637% +Rate for instruction 15955: 17.7645% +Rate for instruction 15956: 17.7651% +Rate for instruction 15957: 17.7661% +Rate for instruction 15958: 17.7676% +Rate for instruction 15959: 17.767% +Rate for instruction 15960: 17.7666% +Rate for instruction 15961: 17.766% +Rate for instruction 15962: 17.7651% +Rate for instruction 15963: 17.7642% +Rate for instruction 15964: 17.7634% +Rate for instruction 15965: 17.7627% +Rate for instruction 15966: 17.7636% +Rate for instruction 15967: 17.7627% +Rate for instruction 15968: 17.764% +Rate for instruction 15969: 17.7658% +Rate for instruction 15970: 17.7661% +Rate for instruction 15971: 17.7664% +Rate for instruction 15972: 17.766% +Rate for instruction 15973: 17.7652% +Rate for instruction 15974: 17.7643% +Rate for instruction 15975: 17.7656% +Rate for instruction 15976: 17.7652% +Rate for instruction 15977: 17.7643% +Rate for instruction 15978: 17.7651% +Rate for instruction 15979: 17.766% +Rate for instruction 15980: 17.7665% +Rate for instruction 15981: 17.7669% +Rate for instruction 15982: 17.7662% +Rate for instruction 15983: 17.768% +Rate for instruction 15984: 17.7691% +Rate for instruction 15985: 17.7684% +Rate for instruction 15986: 17.7692% +Rate for instruction 15987: 17.7686% +Rate for instruction 15988: 17.7682% +Rate for instruction 15989: 17.7676% +Rate for instruction 15990: 17.7679% +Rate for instruction 15991: 17.7671% +Rate for instruction 15992: 17.7669% +Rate for instruction 15993: 17.7675% +Rate for instruction 15994: 17.769% +Rate for instruction 15995: 17.7698% +Rate for instruction 15996: 17.7711% +Rate for instruction 15997: 17.7715% +Rate for instruction 15998: 17.7711% +Rate for instruction 15999: 17.7707% +Rate for instruction 16000: 17.77% +Rate for instruction 16001: 17.7699% +Rate for instruction 16002: 17.7693% +Rate for instruction 16003: 17.7689% +Rate for instruction 16004: 17.7687% +Rate for instruction 16005: 17.7691% +Rate for instruction 16006: 17.7694% +Rate for instruction 16007: 17.7695% +Rate for instruction 16008: 17.7691% +Rate for instruction 16009: 17.7692% +Rate for instruction 16010: 17.7698% +Rate for instruction 16011: 17.7691% +Rate for instruction 16012: 17.7683% +Rate for instruction 16013: 17.7679% +Rate for instruction 16014: 17.7672% +Rate for instruction 16015: 17.7668% +Rate for instruction 16016: 17.7662% +Rate for instruction 16017: 17.7661% +Rate for instruction 16018: 17.7652% +Rate for instruction 16019: 17.7665% +Rate for instruction 16020: 17.7675% +Rate for instruction 16021: 17.7679% +Rate for instruction 16022: 17.767% +Rate for instruction 16023: 17.7666% +Rate for instruction 16024: 17.7658% +Rate for instruction 16025: 17.7661% +Rate for instruction 16026: 17.7662% +Rate for instruction 16027: 17.7653% +Rate for instruction 16028: 17.7671% +Rate for instruction 16029: 17.7664% +Rate for instruction 16030: 17.7673% +Rate for instruction 16031: 17.7688% +Rate for instruction 16032: 17.7684% +Rate for instruction 16033: 17.7692% +Rate for instruction 16034: 17.7705% +Rate for instruction 16035: 17.7713% +Rate for instruction 16036: 17.7728% +Rate for instruction 16037: 17.772% +Rate for instruction 16038: 17.7737% +Rate for instruction 16039: 17.7748% +Rate for instruction 16040: 17.7742% +Rate for instruction 16041: 17.7755% +Rate for instruction 16042: 17.7746% +Rate for instruction 16043: 17.7759% +Rate for instruction 16044: 17.7755% +Rate for instruction 16045: 17.7768% +Rate for instruction 16046: 17.7764% +Rate for instruction 16047: 17.7762% +Rate for instruction 16048: 17.7778% +Rate for instruction 16049: 17.7791% +Rate for instruction 16050: 17.7808% +Rate for instruction 16051: 17.7804% +Rate for instruction 16052: 17.7812% +Rate for instruction 16053: 17.783% +Rate for instruction 16054: 17.7841% +Rate for instruction 16055: 17.7832% +Rate for instruction 16056: 17.7828% +Rate for instruction 16057: 17.7839% +Rate for instruction 16058: 17.7851% +Rate for instruction 16059: 17.7852% +Rate for instruction 16060: 17.786% +Rate for instruction 16061: 17.7856% +Rate for instruction 16062: 17.786% +Rate for instruction 16063: 17.787% +Rate for instruction 16064: 17.7876% +Rate for instruction 16065: 17.7886% +Rate for instruction 16066: 17.7894% +Rate for instruction 16067: 17.7888% +Rate for instruction 16068: 17.7896% +Rate for instruction 16069: 17.79% +Rate for instruction 16070: 17.7893% +Rate for instruction 16071: 17.7894% +Rate for instruction 16072: 17.7888% +Rate for instruction 16073: 17.7886% +Rate for instruction 16074: 17.788% +Rate for instruction 16075: 17.7881% +Rate for instruction 16076: 17.7894% +Rate for instruction 16077: 17.7907% +Rate for instruction 16078: 17.7905% +Rate for instruction 16079: 17.7916% +Rate for instruction 16080: 17.7907% +Rate for instruction 16081: 17.7913% +Rate for instruction 16082: 17.7921% +Rate for instruction 16083: 17.7919% +Rate for instruction 16084: 17.793% +Rate for instruction 16085: 17.7938% +Rate for instruction 16086: 17.7934% +Rate for instruction 16087: 17.7928% +Rate for instruction 16088: 17.7933% +Rate for instruction 16089: 17.7927% +Rate for instruction 16090: 17.793% +Rate for instruction 16091: 17.7936% +Rate for instruction 16092: 17.7939% +Rate for instruction 16093: 17.7945% +Rate for instruction 16094: 17.7951% +Rate for instruction 16095: 17.7954% +Rate for instruction 16096: 17.7948% +Rate for instruction 16097: 17.7953% +Rate for instruction 16098: 17.7964% +Rate for instruction 16099: 17.7957% +Rate for instruction 16100: 17.7954% +Rate for instruction 16101: 17.7945% +Rate for instruction 16102: 17.7953% +Rate for instruction 16103: 17.7949% +Rate for instruction 16104: 17.7945% +Rate for instruction 16105: 17.7951% +Rate for instruction 16106: 17.7945% +Rate for instruction 16107: 17.7943% +Rate for instruction 16108: 17.7949% +Rate for instruction 16109: 17.7952% +Rate for instruction 16110: 17.7963% +Rate for instruction 16111: 17.7975% +Rate for instruction 16112: 17.7969% +Rate for instruction 16113: 17.7965% +Rate for instruction 16114: 17.7957% +Rate for instruction 16115: 17.7965% +Rate for instruction 16116: 17.7973% +Rate for instruction 16117: 17.7983% +Rate for instruction 16118: 17.7991% +Rate for instruction 16119: 17.7982% +Rate for instruction 16120: 17.7981% +Rate for instruction 16121: 17.7975% +Rate for instruction 16122: 17.7971% +Rate for instruction 16123: 17.7976% +Rate for instruction 16124: 17.7977% +Rate for instruction 16125: 17.7969% +Rate for instruction 16126: 17.7962% +Rate for instruction 16127: 17.7963% +Rate for instruction 16128: 17.7955% +Rate for instruction 16129: 17.7951% +Rate for instruction 16130: 17.7942% +Rate for instruction 16131: 17.7936% +Rate for instruction 16132: 17.7927% +Rate for instruction 16133: 17.7926% +Rate for instruction 16134: 17.7917% +Rate for instruction 16135: 17.792% +Rate for instruction 16136: 17.7914% +Rate for instruction 16137: 17.7905% +Rate for instruction 16138: 17.7904% +Rate for instruction 16139: 17.7895% +Rate for instruction 16140: 17.7889% +Rate for instruction 16141: 17.789% +Rate for instruction 16142: 17.7893% +Rate for instruction 16143: 17.7894% +Rate for instruction 16144: 17.789% +Rate for instruction 16145: 17.7886% +Rate for instruction 16146: 17.7887% +Rate for instruction 16147: 17.7881% +Rate for instruction 16148: 17.7872% +Rate for instruction 16149: 17.7873% +Rate for instruction 16150: 17.7872% +Rate for instruction 16151: 17.787% +Rate for instruction 16152: 17.7869% +Rate for instruction 16153: 17.787% +Rate for instruction 16154: 17.7868% +Rate for instruction 16155: 17.7876% +Rate for instruction 16156: 17.7891% +Rate for instruction 16157: 17.789% +Rate for instruction 16158: 17.7891% +Rate for instruction 16159: 17.7885% +Rate for instruction 16160: 17.7883% +Rate for instruction 16161: 17.7875% +Rate for instruction 16162: 17.7868% +Rate for instruction 16163: 17.7881% +Rate for instruction 16164: 17.7887% +Rate for instruction 16165: 17.789% +Rate for instruction 16166: 17.791% +Rate for instruction 16167: 17.793% +Rate for instruction 16168: 17.7928% +Rate for instruction 16169: 17.7929% +Rate for instruction 16170: 17.793% +Rate for instruction 16171: 17.7931% +Rate for instruction 16172: 17.7934% +Rate for instruction 16173: 17.7935% +Rate for instruction 16174: 17.7931% +Rate for instruction 16175: 17.7925% +Rate for instruction 16176: 17.7921% +Rate for instruction 16177: 17.7929% +Rate for instruction 16178: 17.7925% +Rate for instruction 16179: 17.7919% +Rate for instruction 16180: 17.7922% +Rate for instruction 16181: 17.7918% +Rate for instruction 16182: 17.791% +Rate for instruction 16183: 17.7906% +Rate for instruction 16184: 17.7912% +Rate for instruction 16185: 17.7922% +Rate for instruction 16186: 17.7932% +Rate for instruction 16187: 17.7931% +Rate for instruction 16188: 17.7939% +Rate for instruction 16189: 17.794% +Rate for instruction 16190: 17.7934% +Rate for instruction 16191: 17.7949% +Rate for instruction 16192: 17.7959% +Rate for instruction 16193: 17.7955% +Rate for instruction 16194: 17.7954% +Rate for instruction 16195: 17.7945% +Rate for instruction 16196: 17.7941% +Rate for instruction 16197: 17.7933% +Rate for instruction 16198: 17.7931% +Rate for instruction 16199: 17.7923% +Rate for instruction 16200: 17.7921% +Rate for instruction 16201: 17.7913% +Rate for instruction 16202: 17.7911% +Rate for instruction 16203: 17.7912% +Rate for instruction 16204: 17.7918% +Rate for instruction 16205: 17.793% +Rate for instruction 16206: 17.7922% +Rate for instruction 16207: 17.793% +Rate for instruction 16208: 17.7921% +Rate for instruction 16209: 17.7915% +Rate for instruction 16210: 17.7925% +Rate for instruction 16211: 17.7938% +Rate for instruction 16212: 17.7934% +Rate for instruction 16213: 17.7947% +Rate for instruction 16214: 17.7962% +Rate for instruction 16215: 17.797% +Rate for instruction 16216: 17.7978% +Rate for instruction 16217: 17.7991% +Rate for instruction 16218: 17.8001% +Rate for instruction 16219: 17.7993% +Rate for instruction 16220: 17.7991% +Rate for instruction 16221: 17.8001% +Rate for instruction 16222: 17.8009% +Rate for instruction 16223: 17.802% +Rate for instruction 16224: 17.803% +Rate for instruction 16225: 17.804% +Rate for instruction 16226: 17.8051% +Rate for instruction 16227: 17.8047% +Rate for instruction 16228: 17.8053% +Rate for instruction 16229: 17.8049% +Rate for instruction 16230: 17.8054% +Rate for instruction 16231: 17.8048% +Rate for instruction 16232: 17.8047% +Rate for instruction 16233: 17.8052% +Rate for instruction 16234: 17.8058% +Rate for instruction 16235: 17.8066% +Rate for instruction 16236: 17.8074% +Rate for instruction 16237: 17.8079% +Rate for instruction 16238: 17.8076% +Rate for instruction 16239: 17.8079% +Rate for instruction 16240: 17.8087% +Rate for instruction 16241: 17.8083% +Rate for instruction 16242: 17.8091% +Rate for instruction 16243: 17.8087% +Rate for instruction 16244: 17.8086% +Rate for instruction 16245: 17.8079% +Rate for instruction 16246: 17.8078% +Rate for instruction 16247: 17.8079% +Rate for instruction 16248: 17.8091% +Rate for instruction 16249: 17.8085% +Rate for instruction 16250: 17.8077% +Rate for instruction 16251: 17.8075% +Rate for instruction 16252: 17.8083% +Rate for instruction 16253: 17.8091% +Rate for instruction 16254: 17.8097% +Rate for instruction 16255: 17.8102% +Rate for instruction 16256: 17.8106% +Rate for instruction 16257: 17.8116% +Rate for instruction 16258: 17.8117% +Rate for instruction 16259: 17.8111% +Rate for instruction 16260: 17.8102% +Rate for instruction 16261: 17.81% +Rate for instruction 16262: 17.8092% +Rate for instruction 16263: 17.8086% +Rate for instruction 16264: 17.8077% +Rate for instruction 16265: 17.808% +Rate for instruction 16266: 17.8076% +Rate for instruction 16267: 17.8082% +Rate for instruction 16268: 17.8085% +Rate for instruction 16269: 17.8077% +Rate for instruction 16270: 17.8068% +Rate for instruction 16271: 17.8074% +Rate for instruction 16272: 17.8082% +Rate for instruction 16273: 17.8073% +Rate for instruction 16274: 17.8074% +Rate for instruction 16275: 17.8075% +Rate for instruction 16276: 17.8071% +Rate for instruction 16277: 17.8067% +Rate for instruction 16278: 17.8068% +Rate for instruction 16279: 17.8064% +Rate for instruction 16280: 17.8058% +Rate for instruction 16281: 17.8054% +Rate for instruction 16282: 17.8062% +Rate for instruction 16283: 17.8056% +Rate for instruction 16284: 17.8057% +Rate for instruction 16285: 17.8062% +Rate for instruction 16286: 17.8058% +Rate for instruction 16287: 17.805% +Rate for instruction 16288: 17.8044% +Rate for instruction 16289: 17.8054% +Rate for instruction 16290: 17.8064% +Rate for instruction 16291: 17.8063% +Rate for instruction 16292: 17.8054% +Rate for instruction 16293: 17.8065% +Rate for instruction 16294: 17.8058% +Rate for instruction 16295: 17.8069% +Rate for instruction 16296: 17.8063% +Rate for instruction 16297: 17.8063% +Rate for instruction 16298: 17.806% +Rate for instruction 16299: 17.8058% +Rate for instruction 16300: 17.8066% +Rate for instruction 16301: 17.8062% +Rate for instruction 16302: 17.8075% +Rate for instruction 16303: 17.8076% +Rate for instruction 16304: 17.8072% +Rate for instruction 16305: 17.8075% +Rate for instruction 16306: 17.8081% +Rate for instruction 16307: 17.8082% +Rate for instruction 16308: 17.8082% +Rate for instruction 16309: 17.809% +Rate for instruction 16310: 17.8089% +Rate for instruction 16311: 17.8092% +Rate for instruction 16312: 17.8084% +Rate for instruction 16313: 17.8075% +Rate for instruction 16314: 17.8076% +Rate for instruction 16315: 17.8067% +Rate for instruction 16316: 17.8073% +Rate for instruction 16317: 17.8074% +Rate for instruction 16318: 17.807% +Rate for instruction 16319: 17.8076% +Rate for instruction 16320: 17.8081% +Rate for instruction 16321: 17.8087% +Rate for instruction 16322: 17.8085% +Rate for instruction 16323: 17.8081% +Rate for instruction 16324: 17.8082% +Rate for instruction 16325: 17.8074% +Rate for instruction 16326: 17.8075% +Rate for instruction 16327: 17.8073% +Rate for instruction 16328: 17.8081% +Rate for instruction 16329: 17.8084% +Rate for instruction 16330: 17.8083% +Rate for instruction 16331: 17.8091% +Rate for instruction 16332: 17.8084% +Rate for instruction 16333: 17.8078% +Rate for instruction 16334: 17.8084% +Rate for instruction 16335: 17.8094% +Rate for instruction 16336: 17.809% +Rate for instruction 16337: 17.8084% +Rate for instruction 16338: 17.808% +Rate for instruction 16339: 17.8074% +Rate for instruction 16340: 17.8084% +Rate for instruction 16341: 17.8088% +Rate for instruction 16342: 17.8081% +Rate for instruction 16343: 17.8073% +Rate for instruction 16344: 17.8074% +Rate for instruction 16345: 17.8068% +Rate for instruction 16346: 17.809% +Rate for instruction 16347: 17.8093% +Rate for instruction 16348: 17.8087% +Rate for instruction 16349: 17.8078% +Rate for instruction 16350: 17.807% +Rate for instruction 16351: 17.808% +Rate for instruction 16352: 17.8076% +Rate for instruction 16353: 17.807% +Rate for instruction 16354: 17.8066% +Rate for instruction 16355: 17.8057% +Rate for instruction 16356: 17.8061% +Rate for instruction 16357: 17.8069% +Rate for instruction 16358: 17.8062% +Rate for instruction 16359: 17.8059% +Rate for instruction 16360: 17.8052% +Rate for instruction 16361: 17.8067% +Rate for instruction 16362: 17.8061% +Rate for instruction 16363: 17.8074% +Rate for instruction 16364: 17.8086% +Rate for instruction 16365: 17.8104% +Rate for instruction 16366: 17.8095% +Rate for instruction 16367: 17.8105% +Rate for instruction 16368: 17.8116% +Rate for instruction 16369: 17.8121% +Rate for instruction 16370: 17.8134% +Rate for instruction 16371: 17.8132% +Rate for instruction 16372: 17.8126% +Rate for instruction 16373: 17.8122% +Rate for instruction 16374: 17.8116% +Rate for instruction 16375: 17.8108% +Rate for instruction 16376: 17.8118% +Rate for instruction 16377: 17.8128% +Rate for instruction 16378: 17.812% +Rate for instruction 16379: 17.8114% +Rate for instruction 16380: 17.811% +Rate for instruction 16381: 17.8106% +Rate for instruction 16382: 17.8118% +Rate for instruction 16383: 17.8126% +Rate for instruction 16384: 17.8127% +Rate for instruction 16385: 17.813% +Rate for instruction 16386: 17.8124% +Rate for instruction 16387: 17.813% +Rate for instruction 16388: 17.814% +Rate for instruction 16389: 17.8148% +Rate for instruction 16390: 17.814% +Rate for instruction 16391: 17.8147% +Rate for instruction 16392: 17.816% +Rate for instruction 16393: 17.8168% +Rate for instruction 16394: 17.8176% +Rate for instruction 16395: 17.8188% +Rate for instruction 16396: 17.8192% +Rate for instruction 16397: 17.8204% +Rate for instruction 16398: 17.8205% +Rate for instruction 16399: 17.8201% +Rate for instruction 16400: 17.8193% +Rate for instruction 16401: 17.8187% +Rate for instruction 16402: 17.8178% +Rate for instruction 16403: 17.8177% +Rate for instruction 16404: 17.8168% +Rate for instruction 16405: 17.8174% +Rate for instruction 16406: 17.8186% +Rate for instruction 16407: 17.818% +Rate for instruction 16408: 17.8174% +Rate for instruction 16409: 17.8165% +Rate for instruction 16410: 17.8161% +Rate for instruction 16411: 17.8155% +Rate for instruction 16412: 17.8156% +Rate for instruction 16413: 17.8155% +Rate for instruction 16414: 17.8149% +Rate for instruction 16415: 17.8149% +Rate for instruction 16416: 17.8146% +Rate for instruction 16417: 17.8144% +Rate for instruction 16418: 17.8136% +Rate for instruction 16419: 17.8143% +Rate for instruction 16420: 17.8142% +Rate for instruction 16421: 17.8133% +Rate for instruction 16422: 17.8127% +Rate for instruction 16423: 17.8131% +Rate for instruction 16424: 17.8138% +Rate for instruction 16425: 17.8135% +Rate for instruction 16426: 17.8135% +Rate for instruction 16427: 17.8129% +Rate for instruction 16428: 17.8135% +Rate for instruction 16429: 17.8136% +Rate for instruction 16430: 17.8141% +Rate for instruction 16431: 17.8135% +Rate for instruction 16432: 17.8134% +Rate for instruction 16433: 17.8134% +Rate for instruction 16434: 17.814% +Rate for instruction 16435: 17.8134% +Rate for instruction 16436: 17.8125% +Rate for instruction 16437: 17.8124% +Rate for instruction 16438: 17.8132% +Rate for instruction 16439: 17.813% +Rate for instruction 16440: 17.8138% +Rate for instruction 16441: 17.8134% +Rate for instruction 16442: 17.8154% +Rate for instruction 16443: 17.8169% +Rate for instruction 16444: 17.8165% +Rate for instruction 16445: 17.8171% +Rate for instruction 16446: 17.8174% +Rate for instruction 16447: 17.817% +Rate for instruction 16448: 17.8173% +Rate for instruction 16449: 17.8169% +Rate for instruction 16450: 17.8165% +Rate for instruction 16451: 17.8169% +Rate for instruction 16452: 17.8174% +Rate for instruction 16453: 17.8182% +Rate for instruction 16454: 17.8183% +Rate for instruction 16455: 17.8184% +Rate for instruction 16456: 17.8194% +Rate for instruction 16457: 17.8185% +Rate for instruction 16458: 17.8179% +Rate for instruction 16459: 17.8185% +Rate for instruction 16460: 17.8193% +Rate for instruction 16461: 17.8187% +Rate for instruction 16462: 17.8183% +Rate for instruction 16463: 17.8177% +Rate for instruction 16464: 17.817% +Rate for instruction 16465: 17.8167% +Rate for instruction 16466: 17.8163% +Rate for instruction 16467: 17.8164% +Rate for instruction 16468: 17.8176% +Rate for instruction 16469: 17.8184% +Rate for instruction 16470: 17.8178% +Rate for instruction 16471: 17.819% +Rate for instruction 16472: 17.8196% +Rate for instruction 16473: 17.8204% +Rate for instruction 16474: 17.8209% +Rate for instruction 16475: 17.8215% +Rate for instruction 16476: 17.8211% +Rate for instruction 16477: 17.821% +Rate for instruction 16478: 17.8203% +Rate for instruction 16479: 17.8209% +Rate for instruction 16480: 17.8212% +Rate for instruction 16481: 17.8222% +Rate for instruction 16482: 17.8237% +Rate for instruction 16483: 17.825% +Rate for instruction 16484: 17.826% +Rate for instruction 16485: 17.8265% +Rate for instruction 16486: 17.8269% +Rate for instruction 16487: 17.8267% +Rate for instruction 16488: 17.827% +Rate for instruction 16489: 17.8283% +Rate for instruction 16490: 17.8293% +Rate for instruction 16491: 17.8303% +Rate for instruction 16492: 17.8316% +Rate for instruction 16493: 17.8317% +Rate for instruction 16494: 17.8331% +Rate for instruction 16495: 17.8349% +Rate for instruction 16496: 17.8347% +Rate for instruction 16497: 17.8364% +Rate for instruction 16498: 17.8372% +Rate for instruction 16499: 17.8373% +Rate for instruction 16500: 17.8376% +Rate for instruction 16501: 17.8382% +Rate for instruction 16502: 17.8392% +Rate for instruction 16503: 17.8402% +Rate for instruction 16504: 17.8412% +Rate for instruction 16505: 17.8422% +Rate for instruction 16506: 17.8421% +Rate for instruction 16507: 17.8431% +Rate for instruction 16508: 17.8436% +Rate for instruction 16509: 17.8435% +Rate for instruction 16510: 17.8429% +Rate for instruction 16511: 17.8425% +Rate for instruction 16512: 17.8424% +Rate for instruction 16513: 17.842% +Rate for instruction 16514: 17.8414% +Rate for instruction 16515: 17.841% +Rate for instruction 16516: 17.8427% +Rate for instruction 16517: 17.8418% +Rate for instruction 16518: 17.8424% +Rate for instruction 16519: 17.8425% +Rate for instruction 16520: 17.843% +Rate for instruction 16521: 17.844% +Rate for instruction 16522: 17.8441% +Rate for instruction 16523: 17.8433% +Rate for instruction 16524: 17.8438% +Rate for instruction 16525: 17.843% +Rate for instruction 16526: 17.8431% +Rate for instruction 16527: 17.8422% +Rate for instruction 16528: 17.8425% +Rate for instruction 16529: 17.8447% +Rate for instruction 16530: 17.8467% +Rate for instruction 16531: 17.8465% +Rate for instruction 16532: 17.8459% +Rate for instruction 16533: 17.8469% +Rate for instruction 16534: 17.8477% +Rate for instruction 16535: 17.8473% +Rate for instruction 16536: 17.8486% +Rate for instruction 16537: 17.8477% +Rate for instruction 16538: 17.848% +Rate for instruction 16539: 17.8481% +Rate for instruction 16540: 17.8475% +Rate for instruction 16541: 17.8466% +Rate for instruction 16542: 17.846% +Rate for instruction 16543: 17.8457% +Rate for instruction 16544: 17.8448% +Rate for instruction 16545: 17.8442% +Rate for instruction 16546: 17.845% +Rate for instruction 16547: 17.8455% +Rate for instruction 16548: 17.8461% +Rate for instruction 16549: 17.8469% +Rate for instruction 16550: 17.8472% +Rate for instruction 16551: 17.8468% +Rate for instruction 16552: 17.8464% +Rate for instruction 16553: 17.8458% +Rate for instruction 16554: 17.8449% +Rate for instruction 16555: 17.8457% +Rate for instruction 16556: 17.8465% +Rate for instruction 16557: 17.8475% +Rate for instruction 16558: 17.8474% +Rate for instruction 16559: 17.8468% +Rate for instruction 16560: 17.8464% +Rate for instruction 16561: 17.8469% +Rate for instruction 16562: 17.8477% +Rate for instruction 16563: 17.8478% +Rate for instruction 16564: 17.8472% +Rate for instruction 16565: 17.847% +Rate for instruction 16566: 17.8466% +Rate for instruction 16567: 17.846% +Rate for instruction 16568: 17.847% +Rate for instruction 16569: 17.8481% +Rate for instruction 16570: 17.8479% +Rate for instruction 16571: 17.848% +Rate for instruction 16572: 17.8474% +Rate for instruction 16573: 17.847% +Rate for instruction 16574: 17.8462% +Rate for instruction 16575: 17.8458% +Rate for instruction 16576: 17.8449% +Rate for instruction 16577: 17.8441% +Rate for instruction 16578: 17.8442% +Rate for instruction 16579: 17.8433% +Rate for instruction 16580: 17.8425% +Rate for instruction 16581: 17.8421% +Rate for instruction 16582: 17.8417% +Rate for instruction 16583: 17.8423% +Rate for instruction 16584: 17.8428% +Rate for instruction 16585: 17.8434% +Rate for instruction 16586: 17.8441% +Rate for instruction 16587: 17.8447% +Rate for instruction 16588: 17.8455% +Rate for instruction 16589: 17.8462% +Rate for instruction 16590: 17.847% +Rate for instruction 16591: 17.8483% +Rate for instruction 16592: 17.8477% +Rate for instruction 16593: 17.8484% +Rate for instruction 16594: 17.8492% +Rate for instruction 16595: 17.8488% +Rate for instruction 16596: 17.8482% +Rate for instruction 16597: 17.8474% +Rate for instruction 16598: 17.8468% +Rate for instruction 16599: 17.8466% +Rate for instruction 16600: 17.8474% +Rate for instruction 16601: 17.8482% +Rate for instruction 16602: 17.8487% +Rate for instruction 16603: 17.8502% +Rate for instruction 16604: 17.8503% +Rate for instruction 16605: 17.8497% +Rate for instruction 16606: 17.8504% +Rate for instruction 16607: 17.8508% +Rate for instruction 16608: 17.8508% +Rate for instruction 16609: 17.8507% +Rate for instruction 16610: 17.851% +Rate for instruction 16611: 17.8504% +Rate for instruction 16612: 17.8498% +Rate for instruction 16613: 17.8494% +Rate for instruction 16614: 17.849% +Rate for instruction 16615: 17.8482% +Rate for instruction 16616: 17.8476% +Rate for instruction 16617: 17.8472% +Rate for instruction 16618: 17.847% +Rate for instruction 16619: 17.8467% +Rate for instruction 16620: 17.8461% +Rate for instruction 16621: 17.8459% +Rate for instruction 16622: 17.8462% +Rate for instruction 16623: 17.8454% +Rate for instruction 16624: 17.8448% +Rate for instruction 16625: 17.8442% +Rate for instruction 16626: 17.8449% +Rate for instruction 16627: 17.8441% +Rate for instruction 16628: 17.8439% +Rate for instruction 16629: 17.8436% +Rate for instruction 16630: 17.8432% +Rate for instruction 16631: 17.8423% +Rate for instruction 16632: 17.8417% +Rate for instruction 16633: 17.8423% +Rate for instruction 16634: 17.8431% +Rate for instruction 16635: 17.8424% +Rate for instruction 16636: 17.8435% +Rate for instruction 16637: 17.8442% +Rate for instruction 16638: 17.8448% +Rate for instruction 16639: 17.8458% +Rate for instruction 16640: 17.847% +Rate for instruction 16641: 17.848% +Rate for instruction 16642: 17.8472% +Rate for instruction 16643: 17.8477% +Rate for instruction 16644: 17.849% +Rate for instruction 16645: 17.85% +Rate for instruction 16646: 17.851% +Rate for instruction 16647: 17.8501% +Rate for instruction 16648: 17.8493% +Rate for instruction 16649: 17.8489% +Rate for instruction 16650: 17.8495% +Rate for instruction 16651: 17.8502% +Rate for instruction 16652: 17.8503% +Rate for instruction 16653: 17.8504% +Rate for instruction 16654: 17.8507% +Rate for instruction 16655: 17.8513% +Rate for instruction 16656: 17.8509% +Rate for instruction 16657: 17.8503% +Rate for instruction 16658: 17.8499% +Rate for instruction 16659: 17.8498% +Rate for instruction 16660: 17.8494% +Rate for instruction 16661: 17.8488% +Rate for instruction 16662: 17.8482% +Rate for instruction 16663: 17.8478% +Rate for instruction 16664: 17.8469% +Rate for instruction 16665: 17.8466% +Rate for instruction 16666: 17.8462% +Rate for instruction 16667: 17.8474% +Rate for instruction 16668: 17.8484% +Rate for instruction 16669: 17.849% +Rate for instruction 16670: 17.8491% +Rate for instruction 16671: 17.8484% +Rate for instruction 16672: 17.8476% +Rate for instruction 16673: 17.8481% +Rate for instruction 16674: 17.8494% +Rate for instruction 16675: 17.8488% +Rate for instruction 16676: 17.8484% +Rate for instruction 16677: 17.8492% +Rate for instruction 16678: 17.8495% +Rate for instruction 16679: 17.8493% +Rate for instruction 16680: 17.8501% +Rate for instruction 16681: 17.8509% +Rate for instruction 16682: 17.851% +Rate for instruction 16683: 17.8515% +Rate for instruction 16684: 17.8509% +Rate for instruction 16685: 17.8508% +Rate for instruction 16686: 17.8499% +Rate for instruction 16687: 17.85% +Rate for instruction 16688: 17.8503% +Rate for instruction 16689: 17.8504% +Rate for instruction 16690: 17.8507% +Rate for instruction 16691: 17.8501% +Rate for instruction 16692: 17.8493% +Rate for instruction 16693: 17.8489% +Rate for instruction 16694: 17.8494% +Rate for instruction 16695: 17.8488% +Rate for instruction 16696: 17.8484% +Rate for instruction 16697: 17.8478% +Rate for instruction 16698: 17.8472% +Rate for instruction 16699: 17.8464% +Rate for instruction 16700: 17.8458% +Rate for instruction 16701: 17.8454% +Rate for instruction 16702: 17.845% +Rate for instruction 16703: 17.8442% +Rate for instruction 16704: 17.8438% +Rate for instruction 16705: 17.8434% +Rate for instruction 16706: 17.8426% +Rate for instruction 16707: 17.842% +Rate for instruction 16708: 17.8421% +Rate for instruction 16709: 17.8421% +Rate for instruction 16710: 17.8422% +Rate for instruction 16711: 17.843% +Rate for instruction 16712: 17.844% +Rate for instruction 16713: 17.8436% +Rate for instruction 16714: 17.8433% +Rate for instruction 16715: 17.8426% +Rate for instruction 16716: 17.8418% +Rate for instruction 16717: 17.8412% +Rate for instruction 16718: 17.8406% +Rate for instruction 16719: 17.8407% +Rate for instruction 16720: 17.8401% +Rate for instruction 16721: 17.8395% +Rate for instruction 16722: 17.8391% +Rate for instruction 16723: 17.8394% +Rate for instruction 16724: 17.839% +Rate for instruction 16725: 17.8382% +Rate for instruction 16726: 17.8376% +Rate for instruction 16727: 17.8379% +Rate for instruction 16728: 17.8371% +Rate for instruction 16729: 17.8362% +Rate for instruction 16730: 17.8358% +Rate for instruction 16731: 17.835% +Rate for instruction 16732: 17.8342% +Rate for instruction 16733: 17.834% +Rate for instruction 16734: 17.8332% +Rate for instruction 16735: 17.8337% +Rate for instruction 16736: 17.8331% +Rate for instruction 16737: 17.8344% +Rate for instruction 16738: 17.8335% +Rate for instruction 16739: 17.8334% +Rate for instruction 16740: 17.8332% +Rate for instruction 16741: 17.8324% +Rate for instruction 16742: 17.8329% +Rate for instruction 16743: 17.8326% +Rate for instruction 16744: 17.832% +Rate for instruction 16745: 17.8323% +Rate for instruction 16746: 17.8324% +Rate for instruction 16747: 17.832% +Rate for instruction 16748: 17.8311% +Rate for instruction 16749: 17.8317% +Rate for instruction 16750: 17.8313% +Rate for instruction 16751: 17.8305% +Rate for instruction 16752: 17.8312% +Rate for instruction 16753: 17.8327% +Rate for instruction 16754: 17.8319% +Rate for instruction 16755: 17.8329% +Rate for instruction 16756: 17.8323% +Rate for instruction 16757: 17.8333% +Rate for instruction 16758: 17.834% +Rate for instruction 16759: 17.8339% +Rate for instruction 16760: 17.8349% +Rate for instruction 16761: 17.8345% +Rate for instruction 16762: 17.8341% +Rate for instruction 16763: 17.8333% +Rate for instruction 16764: 17.8334% +Rate for instruction 16765: 17.833% +Rate for instruction 16766: 17.8324% +Rate for instruction 16767: 17.8323% +Rate for instruction 16768: 17.8321% +Rate for instruction 16769: 17.8322% +Rate for instruction 16770: 17.8334% +Rate for instruction 16771: 17.8342% +Rate for instruction 16772: 17.8334% +Rate for instruction 16773: 17.8344% +Rate for instruction 16774: 17.834% +Rate for instruction 16775: 17.8355% +Rate for instruction 16776: 17.8349% +Rate for instruction 16777: 17.834% +Rate for instruction 16778: 17.8359% +Rate for instruction 16779: 17.8365% +Rate for instruction 16780: 17.8368% +Rate for instruction 16781: 17.838% +Rate for instruction 16782: 17.8397% +Rate for instruction 16783: 17.8393% +Rate for instruction 16784: 17.839% +Rate for instruction 16785: 17.8381% +Rate for instruction 16786: 17.8391% +Rate for instruction 16787: 17.8385% +Rate for instruction 16788: 17.8377% +Rate for instruction 16789: 17.8375% +Rate for instruction 16790: 17.8381% +Rate for instruction 16791: 17.8382% +Rate for instruction 16792: 17.8382% +Rate for instruction 16793: 17.8379% +Rate for instruction 16794: 17.837% +Rate for instruction 16795: 17.8364% +Rate for instruction 16796: 17.8356% +Rate for instruction 16797: 17.8357% +Rate for instruction 16798: 17.8349% +Rate for instruction 16799: 17.8342% +Rate for instruction 16800: 17.8357% +Rate for instruction 16801: 17.836% +Rate for instruction 16802: 17.8354% +Rate for instruction 16803: 17.836% +Rate for instruction 16804: 17.8358% +Rate for instruction 16805: 17.8352% +Rate for instruction 16806: 17.8355% +Rate for instruction 16807: 17.8358% +Rate for instruction 16808: 17.8355% +Rate for instruction 16809: 17.836% +Rate for instruction 16810: 17.8368% +Rate for instruction 16811: 17.8359% +Rate for instruction 16812: 17.8362% +Rate for instruction 16813: 17.8363% +Rate for instruction 16814: 17.8376% +Rate for instruction 16815: 17.8372% +Rate for instruction 16816: 17.8379% +Rate for instruction 16817: 17.8385% +Rate for instruction 16818: 17.8383% +Rate for instruction 16819: 17.8382% +Rate for instruction 16820: 17.839% +Rate for instruction 16821: 17.8384% +Rate for instruction 16822: 17.8387% +Rate for instruction 16823: 17.8381% +Rate for instruction 16824: 17.8375% +Rate for instruction 16825: 17.8387% +Rate for instruction 16826: 17.8383% +Rate for instruction 16827: 17.8398% +Rate for instruction 16828: 17.841% +Rate for instruction 16829: 17.8413% +Rate for instruction 16830: 17.8409% +Rate for instruction 16831: 17.8403% +Rate for instruction 16832: 17.8402% +Rate for instruction 16833: 17.8394% +Rate for instruction 16834: 17.8394% +Rate for instruction 16835: 17.8395% +Rate for instruction 16836: 17.8394% +Rate for instruction 16837: 17.8388% +Rate for instruction 16838: 17.8393% +Rate for instruction 16839: 17.8401% +Rate for instruction 16840: 17.8406% +Rate for instruction 16841: 17.8414% +Rate for instruction 16842: 17.8415% +Rate for instruction 16843: 17.8422% +Rate for instruction 16844: 17.843% +Rate for instruction 16845: 17.8429% +Rate for instruction 16846: 17.8432% +Rate for instruction 16847: 17.8426% +Rate for instruction 16848: 17.8436% +Rate for instruction 16849: 17.8439% +Rate for instruction 16850: 17.8444% +Rate for instruction 16851: 17.8443% +Rate for instruction 16852: 17.8434% +Rate for instruction 16853: 17.8444% +Rate for instruction 16854: 17.8447% +Rate for instruction 16855: 17.8439% +Rate for instruction 16856: 17.8433% +Rate for instruction 16857: 17.8432% +Rate for instruction 16858: 17.8442% +Rate for instruction 16859: 17.8449% +Rate for instruction 16860: 17.845% +Rate for instruction 16861: 17.8446% +Rate for instruction 16862: 17.8447% +Rate for instruction 16863: 17.8446% +Rate for instruction 16864: 17.8446% +Rate for instruction 16865: 17.8447% +Rate for instruction 16866: 17.8444% +Rate for instruction 16867: 17.8438% +Rate for instruction 16868: 17.8436% +Rate for instruction 16869: 17.843% +Rate for instruction 16870: 17.8438% +Rate for instruction 16871: 17.8434% +Rate for instruction 16872: 17.8428% +Rate for instruction 16873: 17.842% +Rate for instruction 16874: 17.8416% +Rate for instruction 16875: 17.8424% +Rate for instruction 16876: 17.8434% +Rate for instruction 16877: 17.8428% +Rate for instruction 16878: 17.8424% +Rate for instruction 16879: 17.8431% +Rate for instruction 16880: 17.8435% +Rate for instruction 16881: 17.8435% +Rate for instruction 16882: 17.8443% +Rate for instruction 16883: 17.8448% +Rate for instruction 16884: 17.8452% +Rate for instruction 16885: 17.8446% +Rate for instruction 16886: 17.8442% +Rate for instruction 16887: 17.8443% +Rate for instruction 16888: 17.8457% +Rate for instruction 16889: 17.8469% +Rate for instruction 16890: 17.8479% +Rate for instruction 16891: 17.8473% +Rate for instruction 16892: 17.8488% +Rate for instruction 16893: 17.8484% +Rate for instruction 16894: 17.8482% +Rate for instruction 16895: 17.8476% +Rate for instruction 16896: 17.8473% +Rate for instruction 16897: 17.8474% +Rate for instruction 16898: 17.8474% +Rate for instruction 16899: 17.8487% +Rate for instruction 16900: 17.8496% +Rate for instruction 16901: 17.8495% +Rate for instruction 16902: 17.8503% +Rate for instruction 16903: 17.8513% +Rate for instruction 16904: 17.8507% +Rate for instruction 16905: 17.8514% +Rate for instruction 16906: 17.8526% +Rate for instruction 16907: 17.853% +Rate for instruction 16908: 17.8521% +Rate for instruction 16909: 17.8517% +Rate for instruction 16910: 17.8511% +Rate for instruction 16911: 17.8503% +Rate for instruction 16912: 17.8513% +Rate for instruction 16913: 17.8521% +Rate for instruction 16914: 17.8517% +Rate for instruction 16915: 17.8509% +Rate for instruction 16916: 17.8516% +Rate for instruction 16917: 17.8517% +Rate for instruction 16918: 17.8511% +Rate for instruction 16919: 17.8514% +Rate for instruction 16920: 17.8513% +Rate for instruction 16921: 17.8525% +Rate for instruction 16922: 17.8519% +Rate for instruction 16923: 17.8531% +Rate for instruction 16924: 17.8541% +Rate for instruction 16925: 17.8542% +Rate for instruction 16926: 17.8538% +Rate for instruction 16927: 17.8541% +Rate for instruction 16928: 17.8542% +Rate for instruction 16929: 17.8556% +Rate for instruction 16930: 17.8564% +Rate for instruction 16931: 17.8563% +Rate for instruction 16932: 17.8577% +Rate for instruction 16933: 17.8585% +Rate for instruction 16934: 17.859% +Rate for instruction 16935: 17.8582% +Rate for instruction 16936: 17.8583% +Rate for instruction 16937: 17.8577% +Rate for instruction 16938: 17.8573% +Rate for instruction 16939: 17.8569% +Rate for instruction 16940: 17.8581% +Rate for instruction 16941: 17.8593% +Rate for instruction 16942: 17.8608% +Rate for instruction 16943: 17.8604% +Rate for instruction 16944: 17.8598% +Rate for instruction 16945: 17.8592% +Rate for instruction 16946: 17.8593% +Rate for instruction 16947: 17.8587% +Rate for instruction 16948: 17.8597% +Rate for instruction 16949: 17.8598% +Rate for instruction 16950: 17.8601% +Rate for instruction 16951: 17.8595% +Rate for instruction 16952: 17.8602% +Rate for instruction 16953: 17.8608% +Rate for instruction 16954: 17.8609% +Rate for instruction 16955: 17.8605% +Rate for instruction 16956: 17.8615% +Rate for instruction 16957: 17.8627% +Rate for instruction 16958: 17.8632% +Rate for instruction 16959: 17.8638% +Rate for instruction 16960: 17.8647% +Rate for instruction 16961: 17.8655% +Rate for instruction 16962: 17.8651% +Rate for instruction 16963: 17.8659% +Rate for instruction 16964: 17.8673% +Rate for instruction 16965: 17.8672% +Rate for instruction 16966: 17.8664% +Rate for instruction 16967: 17.8671% +Rate for instruction 16968: 17.8665% +Rate for instruction 16969: 17.8659% +Rate for instruction 16970: 17.866% +Rate for instruction 16971: 17.8659% +Rate for instruction 16972: 17.8653% +Rate for instruction 16973: 17.8644% +Rate for instruction 16974: 17.8645% +Rate for instruction 16975: 17.8644% +Rate for instruction 16976: 17.8651% +Rate for instruction 16977: 17.8645% +Rate for instruction 16978: 17.8639% +Rate for instruction 16979: 17.8635% +Rate for instruction 16980: 17.8639% +Rate for instruction 16981: 17.863% +Rate for instruction 16982: 17.8638% +Rate for instruction 16983: 17.8648% +Rate for instruction 16984: 17.8646% +Rate for instruction 16985: 17.8643% +Rate for instruction 16986: 17.8648% +Rate for instruction 16987: 17.8667% +Rate for instruction 16988: 17.8679% +Rate for instruction 16989: 17.8675% +Rate for instruction 16990: 17.8687% +Rate for instruction 16991: 17.869% +Rate for instruction 16992: 17.8682% +Rate for instruction 16993: 17.8694% +Rate for instruction 16994: 17.8693% +Rate for instruction 16995: 17.87% +Rate for instruction 16996: 17.8701% +Rate for instruction 16997: 17.8693% +Rate for instruction 16998: 17.8692% +Rate for instruction 16999: 17.8683% +Rate for instruction 17000: 17.8684% +Rate for instruction 17001: 17.8678% +Rate for instruction 17002: 17.8692% +Rate for instruction 17003: 17.8686% +Rate for instruction 17004: 17.8678% +Rate for instruction 17005: 17.8693% +Rate for instruction 17006: 17.8696% +Rate for instruction 17007: 17.8703% +Rate for instruction 17008: 17.8695% +Rate for instruction 17009: 17.8687% +Rate for instruction 17010: 17.8681% +Rate for instruction 17011: 17.8673% +Rate for instruction 17012: 17.8667% +Rate for instruction 17013: 17.8658% +Rate for instruction 17014: 17.8668% +Rate for instruction 17015: 17.8669% +Rate for instruction 17016: 17.8665% +Rate for instruction 17017: 17.8659% +Rate for instruction 17018: 17.8671% +Rate for instruction 17019: 17.8663% +Rate for instruction 17020: 17.8657% +Rate for instruction 17021: 17.8649% +Rate for instruction 17022: 17.8641% +Rate for instruction 17023: 17.8637% +Rate for instruction 17024: 17.8647% +Rate for instruction 17025: 17.8641% +Rate for instruction 17026: 17.8633% +Rate for instruction 17027: 17.8627% +Rate for instruction 17028: 17.8639% +Rate for instruction 17029: 17.864% +Rate for instruction 17030: 17.8645% +Rate for instruction 17031: 17.865% +Rate for instruction 17032: 17.8651% +Rate for instruction 17033: 17.8661% +Rate for instruction 17034: 17.8668% +Rate for instruction 17035: 17.8665% +Rate for instruction 17036: 17.867% +Rate for instruction 17037: 17.8662% +Rate for instruction 17038: 17.8669% +Rate for instruction 17039: 17.867% +Rate for instruction 17040: 17.8669% +Rate for instruction 17041: 17.866% +Rate for instruction 17042: 17.867% +Rate for instruction 17043: 17.8678% +Rate for instruction 17044: 17.8676% +Rate for instruction 17045: 17.8688% +Rate for instruction 17046: 17.8698% +Rate for instruction 17047: 17.8706% +Rate for instruction 17048: 17.8716% +Rate for instruction 17049: 17.871% +Rate for instruction 17050: 17.8715% +Rate for instruction 17051: 17.8716% +Rate for instruction 17052: 17.8717% +Rate for instruction 17053: 17.8715% +Rate for instruction 17054: 17.8709% +Rate for instruction 17055: 17.8705% +Rate for instruction 17056: 17.8699% +Rate for instruction 17057: 17.8698% +Rate for instruction 17058: 17.8712% +Rate for instruction 17059: 17.8722% +Rate for instruction 17060: 17.8714% +Rate for instruction 17061: 17.8712% +Rate for instruction 17062: 17.8711% +Rate for instruction 17063: 17.8723% +Rate for instruction 17064: 17.8726% +Rate for instruction 17065: 17.872% +Rate for instruction 17066: 17.8719% +Rate for instruction 17067: 17.871% +Rate for instruction 17068: 17.8705% +Rate for instruction 17069: 17.871% +Rate for instruction 17070: 17.872% +Rate for instruction 17071: 17.8732% +Rate for instruction 17072: 17.8728% +Rate for instruction 17073: 17.8736% +Rate for instruction 17074: 17.8734% +Rate for instruction 17075: 17.8735% +Rate for instruction 17076: 17.8733% +Rate for instruction 17077: 17.873% +Rate for instruction 17078: 17.8733% +Rate for instruction 17079: 17.8729% +Rate for instruction 17080: 17.8725% +Rate for instruction 17081: 17.8728% +Rate for instruction 17082: 17.8734% +Rate for instruction 17083: 17.8734% +Rate for instruction 17084: 17.8731% +Rate for instruction 17085: 17.8732% +Rate for instruction 17086: 17.8728% +Rate for instruction 17087: 17.8733% +Rate for instruction 17088: 17.8743% +Rate for instruction 17089: 17.8735% +Rate for instruction 17090: 17.8729% +Rate for instruction 17091: 17.8721% +Rate for instruction 17092: 17.8735% +Rate for instruction 17093: 17.8747% +Rate for instruction 17094: 17.8754% +Rate for instruction 17095: 17.876% +Rate for instruction 17096: 17.8765% +Rate for instruction 17097: 17.877% +Rate for instruction 17098: 17.8767% +Rate for instruction 17099: 17.877% +Rate for instruction 17100: 17.8775% +Rate for instruction 17101: 17.8783% +Rate for instruction 17102: 17.8792% +Rate for instruction 17103: 17.8793% +Rate for instruction 17104: 17.8787% +Rate for instruction 17105: 17.8783% +Rate for instruction 17106: 17.8775% +Rate for instruction 17107: 17.8781% +Rate for instruction 17108: 17.8784% +Rate for instruction 17109: 17.8791% +Rate for instruction 17110: 17.8808% +Rate for instruction 17111: 17.8806% +Rate for instruction 17112: 17.8805% +Rate for instruction 17113: 17.8805% +Rate for instruction 17114: 17.8804% +Rate for instruction 17115: 17.8796% +Rate for instruction 17116: 17.8797% +Rate for instruction 17117: 17.8802% +Rate for instruction 17118: 17.8798% +Rate for instruction 17119: 17.8792% +Rate for instruction 17120: 17.88% +Rate for instruction 17121: 17.8792% +Rate for instruction 17122: 17.8788% +Rate for instruction 17123: 17.8786% +Rate for instruction 17124: 17.8783% +Rate for instruction 17125: 17.879% +Rate for instruction 17126: 17.8791% +Rate for instruction 17127: 17.8792% +Rate for instruction 17128: 17.8806% +Rate for instruction 17129: 17.8798% +Rate for instruction 17130: 17.8794% +Rate for instruction 17131: 17.8788% +Rate for instruction 17132: 17.878% +Rate for instruction 17133: 17.8774% +Rate for instruction 17134: 17.8779% +Rate for instruction 17135: 17.8776% +Rate for instruction 17136: 17.877% +Rate for instruction 17137: 17.8766% +Rate for instruction 17138: 17.8765% +Rate for instruction 17139: 17.8759% +Rate for instruction 17140: 17.8755% +Rate for instruction 17141: 17.8758% +Rate for instruction 17142: 17.8768% +Rate for instruction 17143: 17.8762% +Rate for instruction 17144: 17.8769% +Rate for instruction 17145: 17.8763% +Rate for instruction 17146: 17.8775% +Rate for instruction 17147: 17.8785% +Rate for instruction 17148: 17.8779% +Rate for instruction 17149: 17.8789% +Rate for instruction 17150: 17.881% +Rate for instruction 17151: 17.8802% +Rate for instruction 17152: 17.8816% +Rate for instruction 17153: 17.8824% +Rate for instruction 17154: 17.8833% +Rate for instruction 17155: 17.8825% +Rate for instruction 17156: 17.8817% +Rate for instruction 17157: 17.8818% +Rate for instruction 17158: 17.8827% +Rate for instruction 17159: 17.8835% +Rate for instruction 17160: 17.8847% +Rate for instruction 17161: 17.8843% +Rate for instruction 17162: 17.884% +Rate for instruction 17163: 17.8831% +Rate for instruction 17164: 17.883% +Rate for instruction 17165: 17.8826% +Rate for instruction 17166: 17.8818% +Rate for instruction 17167: 17.8814% +Rate for instruction 17168: 17.8808% +Rate for instruction 17169: 17.88% +Rate for instruction 17170: 17.8797% +Rate for instruction 17171: 17.8788% +Rate for instruction 17172: 17.8787% +Rate for instruction 17173: 17.879% +Rate for instruction 17174: 17.8791% +Rate for instruction 17175: 17.8798% +Rate for instruction 17176: 17.8806% +Rate for instruction 17177: 17.8811% +Rate for instruction 17178: 17.8805% +Rate for instruction 17179: 17.8801% +Rate for instruction 17180: 17.8807% +Rate for instruction 17181: 17.8803% +Rate for instruction 17182: 17.8801% +Rate for instruction 17183: 17.88% +Rate for instruction 17184: 17.8794% +Rate for instruction 17185: 17.879% +Rate for instruction 17186: 17.8787% +Rate for instruction 17187: 17.8785% +Rate for instruction 17188: 17.8777% +Rate for instruction 17189: 17.8778% +Rate for instruction 17190: 17.8776% +Rate for instruction 17191: 17.8768% +Rate for instruction 17192: 17.8778% +Rate for instruction 17193: 17.8788% +Rate for instruction 17194: 17.8782% +Rate for instruction 17195: 17.8774% +Rate for instruction 17196: 17.8783% +Rate for instruction 17197: 17.88% +Rate for instruction 17198: 17.8794% +Rate for instruction 17199: 17.8788% +Rate for instruction 17200: 17.8793% +Rate for instruction 17201: 17.8785% +Rate for instruction 17202: 17.8784% +Rate for instruction 17203: 17.8789% +Rate for instruction 17204: 17.8783% +Rate for instruction 17205: 17.8784% +Rate for instruction 17206: 17.878% +Rate for instruction 17207: 17.8781% +Rate for instruction 17208: 17.8784% +Rate for instruction 17209: 17.8789% +Rate for instruction 17210: 17.8783% +Rate for instruction 17211: 17.8775% +Rate for instruction 17212: 17.8774% +Rate for instruction 17213: 17.8788% +Rate for instruction 17214: 17.878% +Rate for instruction 17215: 17.8794% +Rate for instruction 17216: 17.8788% +Rate for instruction 17217: 17.8802% +Rate for instruction 17218: 17.8796% +Rate for instruction 17219: 17.8806% +Rate for instruction 17220: 17.8798% +Rate for instruction 17221: 17.8792% +Rate for instruction 17222: 17.8784% +Rate for instruction 17223: 17.8776% +Rate for instruction 17224: 17.8772% +Rate for instruction 17225: 17.8777% +Rate for instruction 17226: 17.878% +Rate for instruction 17227: 17.8776% +Rate for instruction 17228: 17.8782% +Rate for instruction 17229: 17.8774% +Rate for instruction 17230: 17.8772% +Rate for instruction 17231: 17.8777% +Rate for instruction 17232: 17.8769% +Rate for instruction 17233: 17.8777% +Rate for instruction 17234: 17.8771% +Rate for instruction 17235: 17.8783% +Rate for instruction 17236: 17.8786% +Rate for instruction 17237: 17.88% +Rate for instruction 17238: 17.8805% +Rate for instruction 17239: 17.8806% +Rate for instruction 17240: 17.88% +Rate for instruction 17241: 17.881% +Rate for instruction 17242: 17.8824% +Rate for instruction 17243: 17.8816% +Rate for instruction 17244: 17.881% +Rate for instruction 17245: 17.8813% +Rate for instruction 17246: 17.8811% +Rate for instruction 17247: 17.8806% +Rate for instruction 17248: 17.8797% +Rate for instruction 17249: 17.8789% +Rate for instruction 17250: 17.8792% +Rate for instruction 17251: 17.8786% +Rate for instruction 17252: 17.8781% +Rate for instruction 17253: 17.8779% +Rate for instruction 17254: 17.8775% +Rate for instruction 17255: 17.8774% +Rate for instruction 17256: 17.877% +Rate for instruction 17257: 17.8769% +Rate for instruction 17258: 17.8765% +Rate for instruction 17259: 17.8764% +Rate for instruction 17260: 17.8756% +Rate for instruction 17261: 17.8747% +Rate for instruction 17262: 17.8742% +Rate for instruction 17263: 17.8738% +Rate for instruction 17264: 17.8734% +Rate for instruction 17265: 17.8753% +Rate for instruction 17266: 17.8745% +Rate for instruction 17267: 17.8768% +Rate for instruction 17268: 17.8773% +Rate for instruction 17269: 17.8767% +Rate for instruction 17270: 17.8772% +Rate for instruction 17271: 17.8786% +Rate for instruction 17272: 17.8781% +Rate for instruction 17273: 17.8781% +Rate for instruction 17274: 17.8791% +Rate for instruction 17275: 17.8803% +Rate for instruction 17276: 17.8813% +Rate for instruction 17277: 17.8805% +Rate for instruction 17278: 17.8796% +Rate for instruction 17279: 17.8811% +Rate for instruction 17280: 17.8807% +Rate for instruction 17281: 17.8801% +Rate for instruction 17282: 17.8795% +Rate for instruction 17283: 17.8791% +Rate for instruction 17284: 17.8792% +Rate for instruction 17285: 17.8795% +Rate for instruction 17286: 17.8787% +Rate for instruction 17287: 17.8781% +Rate for instruction 17288: 17.8773% +Rate for instruction 17289: 17.8772% +Rate for instruction 17290: 17.8764% +Rate for instruction 17291: 17.8758% +Rate for instruction 17292: 17.875% +Rate for instruction 17293: 17.8753% +Rate for instruction 17294: 17.8747% +Rate for instruction 17295: 17.875% +Rate for instruction 17296: 17.8744% +Rate for instruction 17297: 17.8738% +Rate for instruction 17298: 17.8739% +Rate for instruction 17299: 17.8739% +Rate for instruction 17300: 17.8736% +Rate for instruction 17301: 17.8734% +Rate for instruction 17302: 17.8737% +Rate for instruction 17303: 17.8731% +Rate for instruction 17304: 17.873% +Rate for instruction 17305: 17.8731% +Rate for instruction 17306: 17.8727% +Rate for instruction 17307: 17.8719% +Rate for instruction 17308: 17.872% +Rate for instruction 17309: 17.8721% +Rate for instruction 17310: 17.8713% +Rate for instruction 17311: 17.8709% +Rate for instruction 17312: 17.8707% +Rate for instruction 17313: 17.8699% +Rate for instruction 17314: 17.8713% +Rate for instruction 17315: 17.8723% +Rate for instruction 17316: 17.8726% +Rate for instruction 17317: 17.8722% +Rate for instruction 17318: 17.8719% +Rate for instruction 17319: 17.8713% +Rate for instruction 17320: 17.8709% +Rate for instruction 17321: 17.8703% +Rate for instruction 17322: 17.8706% +Rate for instruction 17323: 17.8701% +Rate for instruction 17324: 17.8697% +Rate for instruction 17325: 17.8698% +Rate for instruction 17326: 17.8694% +Rate for instruction 17327: 17.8693% +Rate for instruction 17328: 17.8693% +Rate for instruction 17329: 17.869% +Rate for instruction 17330: 17.8686% +Rate for instruction 17331: 17.8691% +Rate for instruction 17332: 17.8692% +Rate for instruction 17333: 17.8688% +Rate for instruction 17334: 17.8687% +Rate for instruction 17335: 17.8679% +Rate for instruction 17336: 17.8677% +Rate for instruction 17337: 17.8672% +Rate for instruction 17338: 17.8668% +Rate for instruction 17339: 17.8666% +Rate for instruction 17340: 17.8663% +Rate for instruction 17341: 17.8664% +Rate for instruction 17342: 17.866% +Rate for instruction 17343: 17.8652% +Rate for instruction 17344: 17.8655% +Rate for instruction 17345: 17.8667% +Rate for instruction 17346: 17.8663% +Rate for instruction 17347: 17.8668% +Rate for instruction 17348: 17.8674% +Rate for instruction 17349: 17.867% +Rate for instruction 17350: 17.8664% +Rate for instruction 17351: 17.866% +Rate for instruction 17352: 17.8668% +Rate for instruction 17353: 17.8675% +Rate for instruction 17354: 17.868% +Rate for instruction 17355: 17.869% +Rate for instruction 17356: 17.8693% +Rate for instruction 17357: 17.8696% +Rate for instruction 17358: 17.8688% +Rate for instruction 17359: 17.868% +Rate for instruction 17360: 17.8676% +Rate for instruction 17361: 17.8673% +Rate for instruction 17362: 17.8665% +Rate for instruction 17363: 17.8659% +Rate for instruction 17364: 17.8653% +Rate for instruction 17365: 17.8654% +Rate for instruction 17366: 17.865% +Rate for instruction 17367: 17.8651% +Rate for instruction 17368: 17.8654% +Rate for instruction 17369: 17.865% +Rate for instruction 17370: 17.8642% +Rate for instruction 17371: 17.8641% +Rate for instruction 17372: 17.8644% +Rate for instruction 17373: 17.8638% +Rate for instruction 17374: 17.8639% +Rate for instruction 17375: 17.8639% +Rate for instruction 17376: 17.8631% +Rate for instruction 17377: 17.8632% +Rate for instruction 17378: 17.8631% +Rate for instruction 17379: 17.8627% +Rate for instruction 17380: 17.8628% +Rate for instruction 17381: 17.8626% +Rate for instruction 17382: 17.8634% +Rate for instruction 17383: 17.8641% +Rate for instruction 17384: 17.8633% +Rate for instruction 17385: 17.8643% +Rate for instruction 17386: 17.8646% +Rate for instruction 17387: 17.864% +Rate for instruction 17388: 17.8636% +Rate for instruction 17389: 17.8628% +Rate for instruction 17390: 17.8638% +Rate for instruction 17391: 17.8643% +Rate for instruction 17392: 17.8651% +Rate for instruction 17393: 17.8654% +Rate for instruction 17394: 17.865% +Rate for instruction 17395: 17.8657% +Rate for instruction 17396: 17.866% +Rate for instruction 17397: 17.8661% +Rate for instruction 17398: 17.8653% +Rate for instruction 17399: 17.8665% +Rate for instruction 17400: 17.8657% +Rate for instruction 17401: 17.8658% +Rate for instruction 17402: 17.8656% +Rate for instruction 17403: 17.8657% +Rate for instruction 17404: 17.866% +Rate for instruction 17405: 17.8667% +Rate for instruction 17406: 17.8677% +Rate for instruction 17407: 17.8682% +Rate for instruction 17408: 17.8687% +Rate for instruction 17409: 17.8701% +Rate for instruction 17410: 17.8698% +Rate for instruction 17411: 17.8696% +Rate for instruction 17412: 17.8702% +Rate for instruction 17413: 17.8711% +Rate for instruction 17414: 17.8703% +Rate for instruction 17415: 17.8702% +Rate for instruction 17416: 17.8707% +Rate for instruction 17417: 17.8719% +Rate for instruction 17418: 17.8711% +Rate for instruction 17419: 17.8714% +Rate for instruction 17420: 17.8721% +Rate for instruction 17421: 17.8733% +Rate for instruction 17422: 17.8734% +Rate for instruction 17423: 17.8741% +Rate for instruction 17424: 17.8742% +Rate for instruction 17425: 17.8738% +Rate for instruction 17426: 17.8746% +Rate for instruction 17427: 17.8749% +Rate for instruction 17428: 17.8754% +Rate for instruction 17429: 17.8748% +Rate for instruction 17430: 17.8753% +Rate for instruction 17431: 17.8761% +Rate for instruction 17432: 17.877% +Rate for instruction 17433: 17.8775% +Rate for instruction 17434: 17.8774% +Rate for instruction 17435: 17.8772% +Rate for instruction 17436: 17.8778% +Rate for instruction 17437: 17.8783% +Rate for instruction 17438: 17.8784% +Rate for instruction 17439: 17.8791% +Rate for instruction 17440: 17.8794% +Rate for instruction 17441: 17.8801% +Rate for instruction 17442: 17.8798% +Rate for instruction 17443: 17.8796% +Rate for instruction 17444: 17.8793% +Rate for instruction 17445: 17.8787% +Rate for instruction 17446: 17.8792% +Rate for instruction 17447: 17.8802% +Rate for instruction 17448: 17.8807% +Rate for instruction 17449: 17.8801% +Rate for instruction 17450: 17.8811% +Rate for instruction 17451: 17.882% +Rate for instruction 17452: 17.8825% +Rate for instruction 17453: 17.8835% +Rate for instruction 17454: 17.8845% +Rate for instruction 17455: 17.8841% +Rate for instruction 17456: 17.8846% +Rate for instruction 17457: 17.8853% +Rate for instruction 17458: 17.8852% +Rate for instruction 17459: 17.8844% +Rate for instruction 17460: 17.884% +Rate for instruction 17461: 17.8832% +Rate for instruction 17462: 17.8826% +Rate for instruction 17463: 17.8818% +Rate for instruction 17464: 17.8817% +Rate for instruction 17465: 17.8813% +Rate for instruction 17466: 17.8808% +Rate for instruction 17467: 17.8799% +Rate for instruction 17468: 17.8816% +Rate for instruction 17469: 17.8832% +Rate for instruction 17470: 17.8824% +Rate for instruction 17471: 17.8825% +Rate for instruction 17472: 17.8823% +Rate for instruction 17473: 17.8817% +Rate for instruction 17474: 17.8816% +Rate for instruction 17475: 17.8812% +Rate for instruction 17476: 17.8811% +Rate for instruction 17477: 17.8807% +Rate for instruction 17478: 17.8808% +Rate for instruction 17479: 17.8809% +Rate for instruction 17480: 17.8805% +Rate for instruction 17481: 17.8799% +Rate for instruction 17482: 17.8793% +Rate for instruction 17483: 17.8794% +Rate for instruction 17484: 17.8786% +Rate for instruction 17485: 17.878% +Rate for instruction 17486: 17.8772% +Rate for instruction 17487: 17.8764% +Rate for instruction 17488: 17.8765% +Rate for instruction 17489: 17.8757% +Rate for instruction 17490: 17.8749% +Rate for instruction 17491: 17.8741% +Rate for instruction 17492: 17.8759% +Rate for instruction 17493: 17.8771% +Rate for instruction 17494: 17.8768% +Rate for instruction 17495: 17.8773% +Rate for instruction 17496: 17.8767% +Rate for instruction 17497: 17.8765% +Rate for instruction 17498: 17.876% +Rate for instruction 17499: 17.8758% +Rate for instruction 17500: 17.8759% +Rate for instruction 17501: 17.8753% +Rate for instruction 17502: 17.8758% +Rate for instruction 17503: 17.8761% +Rate for instruction 17504: 17.8762% +Rate for instruction 17505: 17.8761% +Rate for instruction 17506: 17.8759% +Rate for instruction 17507: 17.8767% +Rate for instruction 17508: 17.877% +Rate for instruction 17509: 17.8766% +Rate for instruction 17510: 17.8758% +Rate for instruction 17511: 17.8757% +Rate for instruction 17512: 17.8749% +Rate for instruction 17513: 17.8747% +Rate for instruction 17514: 17.8743% +Rate for instruction 17515: 17.8738% +Rate for instruction 17516: 17.8743% +Rate for instruction 17517: 17.8741% +Rate for instruction 17518: 17.8733% +Rate for instruction 17519: 17.8728% +Rate for instruction 17520: 17.8726% +Rate for instruction 17521: 17.8718% +Rate for instruction 17522: 17.8717% +Rate for instruction 17523: 17.8709% +Rate for instruction 17524: 17.8705% +Rate for instruction 17525: 17.8702% +Rate for instruction 17526: 17.8694% +Rate for instruction 17527: 17.8694% +Rate for instruction 17528: 17.8689% +Rate for instruction 17529: 17.8687% +Rate for instruction 17530: 17.8681% +Rate for instruction 17531: 17.8673% +Rate for instruction 17532: 17.8683% +Rate for instruction 17533: 17.8675% +Rate for instruction 17534: 17.8682% +Rate for instruction 17535: 17.8683% +Rate for instruction 17536: 17.869% +Rate for instruction 17537: 17.8687% +Rate for instruction 17538: 17.8692% +Rate for instruction 17539: 17.8699% +Rate for instruction 17540: 17.8693% +Rate for instruction 17541: 17.869% +Rate for instruction 17542: 17.8682% +Rate for instruction 17543: 17.8676% +Rate for instruction 17544: 17.8672% +Rate for instruction 17545: 17.8667% +Rate for instruction 17546: 17.8678% +Rate for instruction 17547: 17.867% +Rate for instruction 17548: 17.868% +Rate for instruction 17549: 17.8687% +Rate for instruction 17550: 17.8695% +Rate for instruction 17551: 17.87% +Rate for instruction 17552: 17.8712% +Rate for instruction 17553: 17.8717% +Rate for instruction 17554: 17.872% +Rate for instruction 17555: 17.8712% +Rate for instruction 17556: 17.8706% +Rate for instruction 17557: 17.8713% +Rate for instruction 17558: 17.8705% +Rate for instruction 17559: 17.8708% +Rate for instruction 17560: 17.8711% +Rate for instruction 17561: 17.8721% +Rate for instruction 17562: 17.8728% +Rate for instruction 17563: 17.8735% +Rate for instruction 17564: 17.8754% +Rate for instruction 17565: 17.8759% +Rate for instruction 17566: 17.8768% +Rate for instruction 17567: 17.8769% +Rate for instruction 17568: 17.8779% +Rate for instruction 17569: 17.8782% +Rate for instruction 17570: 17.8782% +Rate for instruction 17571: 17.8785% +Rate for instruction 17572: 17.878% +Rate for instruction 17573: 17.8772% +Rate for instruction 17574: 17.8768% +Rate for instruction 17575: 17.8773% +Rate for instruction 17576: 17.8767% +Rate for instruction 17577: 17.8775% +Rate for instruction 17578: 17.8769% +Rate for instruction 17579: 17.8761% +Rate for instruction 17580: 17.8755% +Rate for instruction 17581: 17.8749% +Rate for instruction 17582: 17.8748% +Rate for instruction 17583: 17.874% +Rate for instruction 17584: 17.8743% +Rate for instruction 17585: 17.8746% +Rate for instruction 17586: 17.8747% +Rate for instruction 17587: 17.8749% +Rate for instruction 17588: 17.8755% +Rate for instruction 17589: 17.8751% +Rate for instruction 17590: 17.8754% +Rate for instruction 17591: 17.8753% +Rate for instruction 17592: 17.8756% +Rate for instruction 17593: 17.8748% +Rate for instruction 17594: 17.8742% +Rate for instruction 17595: 17.8738% +Rate for instruction 17596: 17.8741% +Rate for instruction 17597: 17.8733% +Rate for instruction 17598: 17.8738% +Rate for instruction 17599: 17.8733% +Rate for instruction 17600: 17.8731% +Rate for instruction 17601: 17.8728% +Rate for instruction 17602: 17.8724% +Rate for instruction 17603: 17.872% +Rate for instruction 17604: 17.8732% +Rate for instruction 17605: 17.8744% +Rate for instruction 17606: 17.8736% +Rate for instruction 17607: 17.8743% +Rate for instruction 17608: 17.8757% +Rate for instruction 17609: 17.8753% +Rate for instruction 17610: 17.8763% +Rate for instruction 17611: 17.8757% +Rate for instruction 17612: 17.8751% +Rate for instruction 17613: 17.8748% +Rate for instruction 17614: 17.8748% +Rate for instruction 17615: 17.8751% +Rate for instruction 17616: 17.8752% +Rate for instruction 17617: 17.8749% +Rate for instruction 17618: 17.8741% +Rate for instruction 17619: 17.8739% +Rate for instruction 17620: 17.8733% +Rate for instruction 17621: 17.8728% +Rate for instruction 17622: 17.8731% +Rate for instruction 17623: 17.8725% +Rate for instruction 17624: 17.8717% +Rate for instruction 17625: 17.8711% +Rate for instruction 17626: 17.8707% +Rate for instruction 17627: 17.87% +Rate for instruction 17628: 17.8696% +Rate for instruction 17629: 17.869% +Rate for instruction 17630: 17.8695% +Rate for instruction 17631: 17.8705% +Rate for instruction 17632: 17.871% +Rate for instruction 17633: 17.8719% +Rate for instruction 17634: 17.8711% +Rate for instruction 17635: 17.8708% +Rate for instruction 17636: 17.8702% +Rate for instruction 17637: 17.8709% +Rate for instruction 17638: 17.8725% +Rate for instruction 17639: 17.8735% +Rate for instruction 17640: 17.8727% +Rate for instruction 17641: 17.8739% +Rate for instruction 17642: 17.8746% +Rate for instruction 17643: 17.8738% +Rate for instruction 17644: 17.8732% +Rate for instruction 17645: 17.8744% +Rate for instruction 17646: 17.8751% +Rate for instruction 17647: 17.8759% +Rate for instruction 17648: 17.8755% +Rate for instruction 17649: 17.8758% +Rate for instruction 17650: 17.8759% +Rate for instruction 17651: 17.8757% +Rate for instruction 17652: 17.8758% +Rate for instruction 17653: 17.8768% +Rate for instruction 17654: 17.8768% +Rate for instruction 17655: 17.8767% +Rate for instruction 17656: 17.8768% +Rate for instruction 17657: 17.8762% +Rate for instruction 17658: 17.8758% +Rate for instruction 17659: 17.8757% +Rate for instruction 17660: 17.8755% +Rate for instruction 17661: 17.875% +Rate for instruction 17662: 17.8759% +Rate for instruction 17663: 17.8764% +Rate for instruction 17664: 17.878% +Rate for instruction 17665: 17.8777% +Rate for instruction 17666: 17.8784% +Rate for instruction 17667: 17.8789% +Rate for instruction 17668: 17.8801% +Rate for instruction 17669: 17.8802% +Rate for instruction 17670: 17.8796% +Rate for instruction 17671: 17.8797% +Rate for instruction 17672: 17.8799% +Rate for instruction 17673: 17.8809% +Rate for instruction 17674: 17.8805% +Rate for instruction 17675: 17.8797% +Rate for instruction 17676: 17.8805% +Rate for instruction 17677: 17.8805% +Rate for instruction 17678: 17.8811% +Rate for instruction 17679: 17.8816% +Rate for instruction 17680: 17.881% +Rate for instruction 17681: 17.8802% +Rate for instruction 17682: 17.8796% +Rate for instruction 17683: 17.8793% +Rate for instruction 17684: 17.8785% +Rate for instruction 17685: 17.8779% +Rate for instruction 17686: 17.8778% +Rate for instruction 17687: 17.8785% +Rate for instruction 17688: 17.8786% +Rate for instruction 17689: 17.8778% +Rate for instruction 17690: 17.8776% +Rate for instruction 17691: 17.8771% +Rate for instruction 17692: 17.8769% +Rate for instruction 17693: 17.8766% +Rate for instruction 17694: 17.876% +Rate for instruction 17695: 17.8761% +Rate for instruction 17696: 17.8763% +Rate for instruction 17697: 17.8764% +Rate for instruction 17698: 17.8761% +Rate for instruction 17699: 17.8755% +Rate for instruction 17700: 17.8758% +Rate for instruction 17701: 17.8754% +Rate for instruction 17702: 17.8766% +Rate for instruction 17703: 17.8769% +Rate for instruction 17704: 17.8765% +Rate for instruction 17705: 17.8757% +Rate for instruction 17706: 17.876% +Rate for instruction 17707: 17.8757% +Rate for instruction 17708: 17.8757% +Rate for instruction 17709: 17.8765% +Rate for instruction 17710: 17.8757% +Rate for instruction 17711: 17.8771% +Rate for instruction 17712: 17.8767% +Rate for instruction 17713: 17.8781% +Rate for instruction 17714: 17.879% +Rate for instruction 17715: 17.8789% +Rate for instruction 17716: 17.8785% +Rate for instruction 17717: 17.8782% +Rate for instruction 17718: 17.8776% +Rate for instruction 17719: 17.8777% +Rate for instruction 17720: 17.8775% +Rate for instruction 17721: 17.8774% +Rate for instruction 17722: 17.8772% +Rate for instruction 17723: 17.8771% +Rate for instruction 17724: 17.8765% +Rate for instruction 17725: 17.8762% +Rate for instruction 17726: 17.8758% +Rate for instruction 17727: 17.8759% +Rate for instruction 17728: 17.8753% +Rate for instruction 17729: 17.8745% +Rate for instruction 17730: 17.8755% +Rate for instruction 17731: 17.8762% +Rate for instruction 17732: 17.8756% +Rate for instruction 17733: 17.8757% +Rate for instruction 17734: 17.8769% +Rate for instruction 17735: 17.8763% +Rate for instruction 17736: 17.8774% +Rate for instruction 17737: 17.8782% +Rate for instruction 17738: 17.8785% +Rate for instruction 17739: 17.8783% +Rate for instruction 17740: 17.878% +Rate for instruction 17741: 17.8774% +Rate for instruction 17742: 17.8773% +Rate for instruction 17743: 17.8769% +Rate for instruction 17744: 17.8772% +Rate for instruction 17745: 17.8777% +Rate for instruction 17746: 17.8776% +Rate for instruction 17747: 17.8776% +Rate for instruction 17748: 17.8768% +Rate for instruction 17749: 17.8769% +Rate for instruction 17750: 17.8761% +Rate for instruction 17751: 17.8769% +Rate for instruction 17752: 17.8767% +Rate for instruction 17753: 17.8766% +Rate for instruction 17754: 17.8773% +Rate for instruction 17755: 17.878% +Rate for instruction 17756: 17.8779% +Rate for instruction 17757: 17.8788% +Rate for instruction 17758: 17.88% +Rate for instruction 17759: 17.8814% +Rate for instruction 17760: 17.8823% +Rate for instruction 17761: 17.883% +Rate for instruction 17762: 17.8844% +Rate for instruction 17763: 17.8856% +Rate for instruction 17764: 17.8863% +Rate for instruction 17765: 17.8877% +Rate for instruction 17766: 17.8869% +Rate for instruction 17767: 17.8863% +Rate for instruction 17768: 17.8875% +Rate for instruction 17769: 17.8888% +Rate for instruction 17770: 17.8893% +Rate for instruction 17771: 17.8899% +Rate for instruction 17772: 17.8891% +Rate for instruction 17773: 17.8904% +Rate for instruction 17774: 17.8896% +Rate for instruction 17775: 17.8899% +Rate for instruction 17776: 17.8902% +Rate for instruction 17777: 17.8912% +Rate for instruction 17778: 17.8915% +Rate for instruction 17779: 17.8915% +Rate for instruction 17780: 17.8916% +Rate for instruction 17781: 17.8915% +Rate for instruction 17782: 17.8911% +Rate for instruction 17783: 17.8903% +Rate for instruction 17784: 17.8898% +Rate for instruction 17785: 17.889% +Rate for instruction 17786: 17.889% +Rate for instruction 17787: 17.8882% +Rate for instruction 17788: 17.889% +Rate for instruction 17789: 17.8884% +Rate for instruction 17790: 17.8876% +Rate for instruction 17791: 17.887% +Rate for instruction 17792: 17.8862% +Rate for instruction 17793: 17.8857% +Rate for instruction 17794: 17.8868% +Rate for instruction 17795: 17.8867% +Rate for instruction 17796: 17.8885% +Rate for instruction 17797: 17.8886% +Rate for instruction 17798: 17.8882% +Rate for instruction 17799: 17.8879% +Rate for instruction 17800: 17.8879% +Rate for instruction 17801: 17.8878% +Rate for instruction 17802: 17.8874% +Rate for instruction 17803: 17.8866% +Rate for instruction 17804: 17.8859% +Rate for instruction 17805: 17.887% +Rate for instruction 17806: 17.8869% +Rate for instruction 17807: 17.8863% +Rate for instruction 17808: 17.8855% +Rate for instruction 17809: 17.8847% +Rate for instruction 17810: 17.8839% +Rate for instruction 17811: 17.8855% +Rate for instruction 17812: 17.8858% +Rate for instruction 17813: 17.8857% +Rate for instruction 17814: 17.8868% +Rate for instruction 17815: 17.886% +Rate for instruction 17816: 17.8868% +Rate for instruction 17817: 17.8864% +Rate for instruction 17818: 17.8861% +Rate for instruction 17819: 17.8855% +Rate for instruction 17820: 17.8851% +Rate for instruction 17821: 17.8846% +Rate for instruction 17822: 17.884% +Rate for instruction 17823: 17.8856% +Rate for instruction 17824: 17.8872% +Rate for instruction 17825: 17.8868% +Rate for instruction 17826: 17.8864% +Rate for instruction 17827: 17.8876% +Rate for instruction 17828: 17.8875% +Rate for instruction 17829: 17.8875% +Rate for instruction 17830: 17.8872% +Rate for instruction 17831: 17.8866% +Rate for instruction 17832: 17.886% +Rate for instruction 17833: 17.8857% +Rate for instruction 17834: 17.8853% +Rate for instruction 17835: 17.8858% +Rate for instruction 17836: 17.8857% +Rate for instruction 17837: 17.8862% +Rate for instruction 17838: 17.8854% +Rate for instruction 17839: 17.8872% +Rate for instruction 17840: 17.8884% +Rate for instruction 17841: 17.888% +Rate for instruction 17842: 17.8883% +Rate for instruction 17843: 17.8888% +Rate for instruction 17844: 17.8899% +Rate for instruction 17845: 17.8913% +Rate for instruction 17846: 17.891% +Rate for instruction 17847: 17.8902% +Rate for instruction 17848: 17.8898% +Rate for instruction 17849: 17.8892% +Rate for instruction 17850: 17.8885% +Rate for instruction 17851: 17.8885% +Rate for instruction 17852: 17.8882% +Rate for instruction 17853: 17.8885% +Rate for instruction 17854: 17.8877% +Rate for instruction 17855: 17.8869% +Rate for instruction 17856: 17.8874% +Rate for instruction 17857: 17.8879% +Rate for instruction 17858: 17.8873% +Rate for instruction 17859: 17.887% +Rate for instruction 17860: 17.8886% +Rate for instruction 17861: 17.8882% +Rate for instruction 17862: 17.8894% +Rate for instruction 17863: 17.8903% +Rate for instruction 17864: 17.8895% +Rate for instruction 17865: 17.8896% +Rate for instruction 17866: 17.8907% +Rate for instruction 17867: 17.8906% +Rate for instruction 17868: 17.8909% +Rate for instruction 17869: 17.8912% +Rate for instruction 17870: 17.8913% +Rate for instruction 17871: 17.8918% +Rate for instruction 17872: 17.8923% +Rate for instruction 17873: 17.893% +Rate for instruction 17874: 17.8935% +Rate for instruction 17875: 17.8929% +Rate for instruction 17876: 17.8941% +Rate for instruction 17877: 17.8948% +Rate for instruction 17878: 17.894% +Rate for instruction 17879: 17.8934% +Rate for instruction 17880: 17.8926% +Rate for instruction 17881: 17.8923% +Rate for instruction 17882: 17.8915% +Rate for instruction 17883: 17.8909% +Rate for instruction 17884: 17.8912% +Rate for instruction 17885: 17.8909% +Rate for instruction 17886: 17.8912% +Rate for instruction 17887: 17.891% +Rate for instruction 17888: 17.8911% +Rate for instruction 17889: 17.891% +Rate for instruction 17890: 17.8906% +Rate for instruction 17891: 17.89% +Rate for instruction 17892: 17.8897% +Rate for instruction 17893: 17.8895% +Rate for instruction 17894: 17.8894% +Rate for instruction 17895: 17.8897% +Rate for instruction 17896: 17.8895% +Rate for instruction 17897: 17.889% +Rate for instruction 17898: 17.8899% +Rate for instruction 17899: 17.8906% +Rate for instruction 17900: 17.8916% +Rate for instruction 17901: 17.8925% +Rate for instruction 17902: 17.8924% +Rate for instruction 17903: 17.8916% +Rate for instruction 17904: 17.8914% +Rate for instruction 17905: 17.8911% +Rate for instruction 17906: 17.8903% +Rate for instruction 17907: 17.8906% +Rate for instruction 17908: 17.8909% +Rate for instruction 17909: 17.8905% +Rate for instruction 17910: 17.8902% +Rate for instruction 17911: 17.8898% +Rate for instruction 17912: 17.8895% +Rate for instruction 17913: 17.8906% +Rate for instruction 17914: 17.89% +Rate for instruction 17915: 17.8908% +Rate for instruction 17916: 17.8904% +Rate for instruction 17917: 17.8896% +Rate for instruction 17918: 17.8899% +Rate for instruction 17919: 17.8896% +Rate for instruction 17920: 17.8898% +Rate for instruction 17921: 17.8893% +Rate for instruction 17922: 17.8887% +Rate for instruction 17923: 17.889% +Rate for instruction 17924: 17.8889% +Rate for instruction 17925: 17.8881% +Rate for instruction 17926: 17.8875% +Rate for instruction 17927: 17.8867% +Rate for instruction 17928: 17.887% +Rate for instruction 17929: 17.8873% +Rate for instruction 17930: 17.8867% +Rate for instruction 17931: 17.8859% +Rate for instruction 17932: 17.8869% +Rate for instruction 17933: 17.8872% +Rate for instruction 17934: 17.8868% +Rate for instruction 17935: 17.8865% +Rate for instruction 17936: 17.8861% +Rate for instruction 17937: 17.8862% +Rate for instruction 17938: 17.8867% +Rate for instruction 17939: 17.8861% +Rate for instruction 17940: 17.8866% +Rate for instruction 17941: 17.8865% +Rate for instruction 17942: 17.8859% +Rate for instruction 17943: 17.8851% +Rate for instruction 17944: 17.8846% +Rate for instruction 17945: 17.8842% +Rate for instruction 17946: 17.8843% +Rate for instruction 17947: 17.8839% +Rate for instruction 17948: 17.8838% +Rate for instruction 17949: 17.8839% +Rate for instruction 17950: 17.8839% +Rate for instruction 17951: 17.884% +Rate for instruction 17952: 17.8832% +Rate for instruction 17953: 17.8829% +Rate for instruction 17954: 17.8821% +Rate for instruction 17955: 17.8822% +Rate for instruction 17956: 17.8818% +Rate for instruction 17957: 17.8817% +Rate for instruction 17958: 17.8818% +Rate for instruction 17959: 17.8825% +Rate for instruction 17960: 17.8834% +Rate for instruction 17961: 17.8828% +Rate for instruction 17962: 17.884% +Rate for instruction 17963: 17.8834% +Rate for instruction 17964: 17.8848% +Rate for instruction 17965: 17.8844% +Rate for instruction 17966: 17.8845% +Rate for instruction 17967: 17.8856% +Rate for instruction 17968: 17.8859% +Rate for instruction 17969: 17.8862% +Rate for instruction 17970: 17.8863% +Rate for instruction 17971: 17.8862% +Rate for instruction 17972: 17.8856% +Rate for instruction 17973: 17.8857% +Rate for instruction 17974: 17.8849% +Rate for instruction 17975: 17.885% +Rate for instruction 17976: 17.8844% +Rate for instruction 17977: 17.884% +Rate for instruction 17978: 17.8837% +Rate for instruction 17979: 17.8831% +Rate for instruction 17980: 17.8834% +Rate for instruction 17981: 17.8833% +Rate for instruction 17982: 17.8829% +Rate for instruction 17983: 17.883% +Rate for instruction 17984: 17.8831% +Rate for instruction 17985: 17.8829% +Rate for instruction 17986: 17.8824% +Rate for instruction 17987: 17.8822% +Rate for instruction 17988: 17.8817% +Rate for instruction 17989: 17.8813% +Rate for instruction 17990: 17.8807% +Rate for instruction 17991: 17.8806% +Rate for instruction 17992: 17.8802% +Rate for instruction 17993: 17.8812% +Rate for instruction 17994: 17.8804% +Rate for instruction 17995: 17.8815% +Rate for instruction 17996: 17.8825% +Rate for instruction 17997: 17.8836% +Rate for instruction 17998: 17.8845% +Rate for instruction 17999: 17.8857% +Rate for instruction 18000: 17.886% +Rate for instruction 18001: 17.8867% +Rate for instruction 18002: 17.8863% +Rate for instruction 18003: 17.8856% +Rate for instruction 18004: 17.885% +Rate for instruction 18005: 17.8857% +Rate for instruction 18006: 17.8868% +Rate for instruction 18007: 17.8871% +Rate for instruction 18008: 17.8887% +Rate for instruction 18009: 17.8901% +Rate for instruction 18010: 17.891% +Rate for instruction 18011: 17.8917% +Rate for instruction 18012: 17.8924% +Rate for instruction 18013: 17.8923% +Rate for instruction 18014: 17.8921% +Rate for instruction 18015: 17.8918% +Rate for instruction 18016: 17.8916% +Rate for instruction 18017: 17.8911% +Rate for instruction 18018: 17.8903% +Rate for instruction 18019: 17.89% +Rate for instruction 18020: 17.8892% +Rate for instruction 18021: 17.889% +Rate for instruction 18022: 17.8885% +Rate for instruction 18023: 17.8883% +Rate for instruction 18024: 17.8895% +Rate for instruction 18025: 17.8904% +Rate for instruction 18026: 17.8898% +Rate for instruction 18027: 17.8908% +Rate for instruction 18028: 17.8913% +Rate for instruction 18029: 17.8909% +Rate for instruction 18030: 17.8914% +Rate for instruction 18031: 17.8923% +Rate for instruction 18032: 17.8933% +Rate for instruction 18033: 17.894% +Rate for instruction 18034: 17.8951% +Rate for instruction 18035: 17.8948% +Rate for instruction 18036: 17.8953% +Rate for instruction 18037: 17.8945% +Rate for instruction 18038: 17.8943% +Rate for instruction 18039: 17.8942% +Rate for instruction 18040: 17.8941% +Rate for instruction 18041: 17.895% +Rate for instruction 18042: 17.8942% +Rate for instruction 18043: 17.8951% +Rate for instruction 18044: 17.8944% +Rate for instruction 18045: 17.8951% +Rate for instruction 18046: 17.8958% +Rate for instruction 18047: 17.8952% +Rate for instruction 18048: 17.8949% +Rate for instruction 18049: 17.8945% +Rate for instruction 18050: 17.8937% +Rate for instruction 18051: 17.8934% +Rate for instruction 18052: 17.8928% +Rate for instruction 18053: 17.8938% +Rate for instruction 18054: 17.8932% +Rate for instruction 18055: 17.8939% +Rate for instruction 18056: 17.8953% +Rate for instruction 18057: 17.8949% +Rate for instruction 18058: 17.8943% +Rate for instruction 18059: 17.8951% +Rate for instruction 18060: 17.8956% +Rate for instruction 18061: 17.8948% +Rate for instruction 18062: 17.8942% +Rate for instruction 18063: 17.8934% +Rate for instruction 18064: 17.895% +Rate for instruction 18065: 17.8946% +Rate for instruction 18066: 17.8939% +Rate for instruction 18067: 17.8939% +Rate for instruction 18068: 17.8949% +Rate for instruction 18069: 17.8956% +Rate for instruction 18070: 17.8961% +Rate for instruction 18071: 17.8964% +Rate for instruction 18072: 17.8975% +Rate for instruction 18073: 17.8974% +Rate for instruction 18074: 17.8991% +Rate for instruction 18075: 17.8996% +Rate for instruction 18076: 17.8995% +Rate for instruction 18077: 17.8998% +Rate for instruction 18078: 17.899% +Rate for instruction 18079: 17.8982% +Rate for instruction 18080: 17.8979% +Rate for instruction 18081: 17.898% +Rate for instruction 18082: 17.8989% +Rate for instruction 18083: 17.8983% +Rate for instruction 18084: 17.8994% +Rate for instruction 18085: 17.8989% +Rate for instruction 18086: 17.8994% +Rate for instruction 18087: 17.9005% +Rate for instruction 18088: 17.9014% +Rate for instruction 18089: 17.9019% +Rate for instruction 18090: 17.9033% +Rate for instruction 18091: 17.9044% +Rate for instruction 18092: 17.9054% +Rate for instruction 18093: 17.9056% +Rate for instruction 18094: 17.9053% +Rate for instruction 18095: 17.9051% +Rate for instruction 18096: 17.9046% +Rate for instruction 18097: 17.904% +Rate for instruction 18098: 17.9039% +Rate for instruction 18099: 17.9037% +Rate for instruction 18100: 17.9034% +Rate for instruction 18101: 17.903% +Rate for instruction 18102: 17.9023% +Rate for instruction 18103: 17.9017% +Rate for instruction 18104: 17.9011% +Rate for instruction 18105: 17.9004% +Rate for instruction 18106: 17.9002% +Rate for instruction 18107: 17.9003% +Rate for instruction 18108: 17.8999% +Rate for instruction 18109: 17.9% +Rate for instruction 18110: 17.9005% +Rate for instruction 18111: 17.9006% +Rate for instruction 18112: 17.9004% +Rate for instruction 18113: 17.9007% +Rate for instruction 18114: 17.9% +Rate for instruction 18115: 17.9009% +Rate for instruction 18116: 17.9005% +Rate for instruction 18117: 17.9% +Rate for instruction 18118: 17.9007% +Rate for instruction 18119: 17.9007% +Rate for instruction 18120: 17.9006% +Rate for instruction 18121: 17.902% +Rate for instruction 18122: 17.9022% +Rate for instruction 18123: 17.9025% +Rate for instruction 18124: 17.9018% +Rate for instruction 18125: 17.9022% +Rate for instruction 18126: 17.9017% +Rate for instruction 18127: 17.9024% +Rate for instruction 18128: 17.9016% +Rate for instruction 18129: 17.9023% +Rate for instruction 18130: 17.9016% +Rate for instruction 18131: 17.9008% +Rate for instruction 18132: 17.9002% +Rate for instruction 18133: 17.8994% +Rate for instruction 18134: 17.8989% +Rate for instruction 18135: 17.8981% +Rate for instruction 18136: 17.8988% +Rate for instruction 18137: 17.898% +Rate for instruction 18138: 17.8975% +Rate for instruction 18139: 17.8978% +Rate for instruction 18140: 17.8978% +Rate for instruction 18141: 17.8977% +Rate for instruction 18142: 17.8978% +Rate for instruction 18143: 17.8974% +Rate for instruction 18144: 17.8966% +Rate for instruction 18145: 17.8967% +Rate for instruction 18146: 17.8968% +Rate for instruction 18147: 17.8973% +Rate for instruction 18148: 17.8976% +Rate for instruction 18149: 17.8972% +Rate for instruction 18150: 17.8967% +Rate for instruction 18151: 17.8963% +Rate for instruction 18152: 17.8962% +Rate for instruction 18153: 17.8962% +Rate for instruction 18154: 17.8963% +Rate for instruction 18155: 17.8955% +Rate for instruction 18156: 17.8948% +Rate for instruction 18157: 17.8951% +Rate for instruction 18158: 17.8945% +Rate for instruction 18159: 17.8941% +Rate for instruction 18160: 17.8942% +Rate for instruction 18161: 17.8941% +Rate for instruction 18162: 17.8935% +Rate for instruction 18163: 17.8936% +Rate for instruction 18164: 17.8928% +Rate for instruction 18165: 17.8925% +Rate for instruction 18166: 17.8928% +Rate for instruction 18167: 17.892% +Rate for instruction 18168: 17.8914% +Rate for instruction 18169: 17.8911% +Rate for instruction 18170: 17.8907% +Rate for instruction 18171: 17.8899% +Rate for instruction 18172: 17.8904% +Rate for instruction 18173: 17.8897% +Rate for instruction 18174: 17.8891% +Rate for instruction 18175: 17.8883% +Rate for instruction 18176: 17.8884% +Rate for instruction 18177: 17.8885% +Rate for instruction 18178: 17.8879% +Rate for instruction 18179: 17.8882% +Rate for instruction 18180: 17.8889% +Rate for instruction 18181: 17.8896% +Rate for instruction 18182: 17.8899% +Rate for instruction 18183: 17.8896% +Rate for instruction 18184: 17.8903% +Rate for instruction 18185: 17.8906% +Rate for instruction 18186: 17.8908% +Rate for instruction 18187: 17.8913% +Rate for instruction 18188: 17.8912% +Rate for instruction 18189: 17.8909% +Rate for instruction 18190: 17.8907% +Rate for instruction 18191: 17.8904% +Rate for instruction 18192: 17.8898% +Rate for instruction 18193: 17.8895% +Rate for instruction 18194: 17.8889% +Rate for instruction 18195: 17.8885% +Rate for instruction 18196: 17.8882% +Rate for instruction 18197: 17.8878% +Rate for instruction 18198: 17.8877% +Rate for instruction 18199: 17.8869% +Rate for instruction 18200: 17.8864% +Rate for instruction 18201: 17.8858% +Rate for instruction 18202: 17.8859% +Rate for instruction 18203: 17.8864% +Rate for instruction 18204: 17.8875% +Rate for instruction 18205: 17.887% +Rate for instruction 18206: 17.8868% +Rate for instruction 18207: 17.8861% +Rate for instruction 18208: 17.8861% +Rate for instruction 18209: 17.8854% +Rate for instruction 18210: 17.8848% +Rate for instruction 18211: 17.8849% +Rate for instruction 18212: 17.8841% +Rate for instruction 18213: 17.8852% +Rate for instruction 18214: 17.8845% +Rate for instruction 18215: 17.8845% +Rate for instruction 18216: 17.8852% +Rate for instruction 18217: 17.8855% +Rate for instruction 18218: 17.8862% +Rate for instruction 18219: 17.8876% +Rate for instruction 18220: 17.8868% +Rate for instruction 18221: 17.8884% +Rate for instruction 18222: 17.8891% +Rate for instruction 18223: 17.8891% +Rate for instruction 18224: 17.8896% +Rate for instruction 18225: 17.8895% +Rate for instruction 18226: 17.8898% +Rate for instruction 18227: 17.8892% +Rate for instruction 18228: 17.8891% +Rate for instruction 18229: 17.8885% +Rate for instruction 18230: 17.888% +Rate for instruction 18231: 17.8872% +Rate for instruction 18232: 17.8864% +Rate for instruction 18233: 17.8863% +Rate for instruction 18234: 17.8855% +Rate for instruction 18235: 17.8847% +Rate for instruction 18236: 17.8846% +Rate for instruction 18237: 17.8843% +Rate for instruction 18238: 17.8835% +Rate for instruction 18239: 17.884% +Rate for instruction 18240: 17.8847% +Rate for instruction 18241: 17.8852% +Rate for instruction 18242: 17.8859% +Rate for instruction 18243: 17.886% +Rate for instruction 18244: 17.8869% +Rate for instruction 18245: 17.8878% +Rate for instruction 18246: 17.887% +Rate for instruction 18247: 17.8867% +Rate for instruction 18248: 17.8859% +Rate for instruction 18249: 17.8854% +Rate for instruction 18250: 17.8861% +Rate for instruction 18251: 17.8868% +Rate for instruction 18252: 17.8877% +Rate for instruction 18253: 17.8871% +Rate for instruction 18254: 17.8864% +Rate for instruction 18255: 17.8858% +Rate for instruction 18256: 17.8863% +Rate for instruction 18257: 17.888% +Rate for instruction 18258: 17.8877% +Rate for instruction 18259: 17.8869% +Rate for instruction 18260: 17.8864% +Rate for instruction 18261: 17.8856% +Rate for instruction 18262: 17.8855% +Rate for instruction 18263: 17.8847% +Rate for instruction 18264: 17.8841% +Rate for instruction 18265: 17.8842% +Rate for instruction 18266: 17.8843% +Rate for instruction 18267: 17.8842% +Rate for instruction 18268: 17.8838% +Rate for instruction 18269: 17.8832% +Rate for instruction 18270: 17.8831% +Rate for instruction 18271: 17.883% +Rate for instruction 18272: 17.8824% +Rate for instruction 18273: 17.8825% +Rate for instruction 18274: 17.8821% +Rate for instruction 18275: 17.8818% +Rate for instruction 18276: 17.8817% +Rate for instruction 18277: 17.8815% +Rate for instruction 18278: 17.8816% +Rate for instruction 18279: 17.8812% +Rate for instruction 18280: 17.8817% +Rate for instruction 18281: 17.8812% +Rate for instruction 18282: 17.881% +Rate for instruction 18283: 17.8807% +Rate for instruction 18284: 17.8799% +Rate for instruction 18285: 17.8796% +Rate for instruction 18286: 17.8795% +Rate for instruction 18287: 17.8791% +Rate for instruction 18288: 17.8785% +Rate for instruction 18289: 17.878% +Rate for instruction 18290: 17.8774% +Rate for instruction 18291: 17.8767% +Rate for instruction 18292: 17.8767% +Rate for instruction 18293: 17.8768% +Rate for instruction 18294: 17.8767% +Rate for instruction 18295: 17.877% +Rate for instruction 18296: 17.8768% +Rate for instruction 18297: 17.8765% +Rate for instruction 18298: 17.8763% +Rate for instruction 18299: 17.8756% +Rate for instruction 18300: 17.8759% +Rate for instruction 18301: 17.8753% +Rate for instruction 18302: 17.8752% +Rate for instruction 18303: 17.8746% +Rate for instruction 18304: 17.8751% +Rate for instruction 18305: 17.8764% +Rate for instruction 18306: 17.8774% +Rate for instruction 18307: 17.8772% +Rate for instruction 18308: 17.8765% +Rate for instruction 18309: 17.8763% +Rate for instruction 18310: 17.876% +Rate for instruction 18311: 17.8758% +Rate for instruction 18312: 17.8755% +Rate for instruction 18313: 17.8747% +Rate for instruction 18314: 17.8744% +Rate for instruction 18315: 17.8747% +Rate for instruction 18316: 17.8739% +Rate for instruction 18317: 17.8738% +Rate for instruction 18318: 17.8732% +Rate for instruction 18319: 17.8731% +Rate for instruction 18320: 17.8727% +Rate for instruction 18321: 17.8724% +Rate for instruction 18322: 17.8716% +Rate for instruction 18323: 17.8721% +Rate for instruction 18324: 17.8718% +Rate for instruction 18325: 17.872% +Rate for instruction 18326: 17.8713% +Rate for instruction 18327: 17.8707% +Rate for instruction 18328: 17.87% +Rate for instruction 18329: 17.8696% +Rate for instruction 18330: 17.8699% +Rate for instruction 18331: 17.87% +Rate for instruction 18332: 17.8698% +Rate for instruction 18333: 17.8695% +Rate for instruction 18334: 17.8687% +Rate for instruction 18335: 17.8684% +Rate for instruction 18336: 17.8676% +Rate for instruction 18337: 17.8685% +Rate for instruction 18338: 17.8688% +Rate for instruction 18339: 17.8697% +Rate for instruction 18340: 17.8692% +Rate for instruction 18341: 17.8688% +Rate for instruction 18342: 17.8685% +Rate for instruction 18343: 17.8677% +Rate for instruction 18344: 17.8676% +Rate for instruction 18345: 17.8679% +Rate for instruction 18346: 17.8677% +Rate for instruction 18347: 17.8676% +Rate for instruction 18348: 17.8668% +Rate for instruction 18349: 17.8667% +Rate for instruction 18350: 17.8661% +Rate for instruction 18351: 17.8656% +Rate for instruction 18352: 17.8652% +Rate for instruction 18353: 17.8653% +Rate for instruction 18354: 17.866% +Rate for instruction 18355: 17.8653% +Rate for instruction 18356: 17.8651% +Rate for instruction 18357: 17.8656% +Rate for instruction 18358: 17.8663% +Rate for instruction 18359: 17.8674% +Rate for instruction 18360: 17.8686% +Rate for instruction 18361: 17.8684% +Rate for instruction 18362: 17.8677% +Rate for instruction 18363: 17.8686% +Rate for instruction 18364: 17.8695% +Rate for instruction 18365: 17.8687% +Rate for instruction 18366: 17.8701% +Rate for instruction 18367: 17.8712% +Rate for instruction 18368: 17.8704% +Rate for instruction 18369: 17.8701% +Rate for instruction 18370: 17.8695% +Rate for instruction 18371: 17.8692% +Rate for instruction 18372: 17.8686% +Rate for instruction 18373: 17.8683% +Rate for instruction 18374: 17.8679% +Rate for instruction 18375: 17.8672% +Rate for instruction 18376: 17.8672% +Rate for instruction 18377: 17.8677% +Rate for instruction 18378: 17.868% +Rate for instruction 18379: 17.8677% +Rate for instruction 18380: 17.8673% +Rate for instruction 18381: 17.8666% +Rate for instruction 18382: 17.8679% +Rate for instruction 18383: 17.8675% +Rate for instruction 18384: 17.8687% +Rate for instruction 18385: 17.87% +Rate for instruction 18386: 17.8694% +Rate for instruction 18387: 17.8691% +Rate for instruction 18388: 17.8694% +Rate for instruction 18389: 17.8692% +Rate for instruction 18390: 17.8693% +Rate for instruction 18391: 17.8686% +Rate for instruction 18392: 17.8688% +Rate for instruction 18393: 17.8691% +Rate for instruction 18394: 17.869% +Rate for instruction 18395: 17.8691% +Rate for instruction 18396: 17.8685% +Rate for instruction 18397: 17.8686% +Rate for instruction 18398: 17.8697% +Rate for instruction 18399: 17.8696% +Rate for instruction 18400: 17.869% +Rate for instruction 18401: 17.8683% +Rate for instruction 18402: 17.8679% +Rate for instruction 18403: 17.8671% +Rate for instruction 18404: 17.8666% +Rate for instruction 18405: 17.8658% +Rate for instruction 18406: 17.8657% +Rate for instruction 18407: 17.8658% +Rate for instruction 18408: 17.8658% +Rate for instruction 18409: 17.8651% +Rate for instruction 18410: 17.8645% +Rate for instruction 18411: 17.8644% +Rate for instruction 18412: 17.8643% +Rate for instruction 18413: 17.8635% +Rate for instruction 18414: 17.8632% +Rate for instruction 18415: 17.8636% +Rate for instruction 18416: 17.8637% +Rate for instruction 18417: 17.863% +Rate for instruction 18418: 17.8624% +Rate for instruction 18419: 17.8623% +Rate for instruction 18420: 17.8621% +Rate for instruction 18421: 17.862% +Rate for instruction 18422: 17.8615% +Rate for instruction 18423: 17.8619% +Rate for instruction 18424: 17.8612% +Rate for instruction 18425: 17.8608% +Rate for instruction 18426: 17.8607% +Rate for instruction 18427: 17.8604% +Rate for instruction 18428: 17.8598% +Rate for instruction 18429: 17.8597% +Rate for instruction 18430: 17.8598% +Rate for instruction 18431: 17.86% +Rate for instruction 18432: 17.8609% +Rate for instruction 18433: 17.8612% +Rate for instruction 18434: 17.8611% +Rate for instruction 18435: 17.8607% +Rate for instruction 18436: 17.861% +Rate for instruction 18437: 17.8607% +Rate for instruction 18438: 17.8601% +Rate for instruction 18439: 17.8608% +Rate for instruction 18440: 17.8611% +Rate for instruction 18441: 17.8616% +Rate for instruction 18442: 17.8623% +Rate for instruction 18443: 17.863% +Rate for instruction 18444: 17.8623% +Rate for instruction 18445: 17.8615% +Rate for instruction 18446: 17.8609% +Rate for instruction 18447: 17.8606% +Rate for instruction 18448: 17.86% +Rate for instruction 18449: 17.8597% +Rate for instruction 18450: 17.8589% +Rate for instruction 18451: 17.8586% +Rate for instruction 18452: 17.8583% +Rate for instruction 18453: 17.8575% +Rate for instruction 18454: 17.8567% +Rate for instruction 18455: 17.8562% +Rate for instruction 18456: 17.8567% +Rate for instruction 18457: 17.8576% +Rate for instruction 18458: 17.857% +Rate for instruction 18459: 17.8563% +Rate for instruction 18460: 17.857% +Rate for instruction 18461: 17.8571% +Rate for instruction 18462: 17.8567% +Rate for instruction 18463: 17.857% +Rate for instruction 18464: 17.8569% +Rate for instruction 18465: 17.8569% +Rate for instruction 18466: 17.8568% +Rate for instruction 18467: 17.8565% +Rate for instruction 18468: 17.8559% +Rate for instruction 18469: 17.856% +Rate for instruction 18470: 17.8569% +Rate for instruction 18471: 17.8574% +Rate for instruction 18472: 17.8572% +Rate for instruction 18473: 17.8571% +Rate for instruction 18474: 17.8566% +Rate for instruction 18475: 17.856% +Rate for instruction 18476: 17.8557% +Rate for instruction 18477: 17.8557% +Rate for instruction 18478: 17.856% +Rate for instruction 18479: 17.8567% +Rate for instruction 18480: 17.8572% +Rate for instruction 18481: 17.8575% +Rate for instruction 18482: 17.8576% +Rate for instruction 18483: 17.8583% +Rate for instruction 18484: 17.8575% +Rate for instruction 18485: 17.858% +Rate for instruction 18486: 17.8583% +Rate for instruction 18487: 17.8582% +Rate for instruction 18488: 17.8578% +Rate for instruction 18489: 17.8593% +Rate for instruction 18490: 17.8586% +Rate for instruction 18491: 17.8593% +Rate for instruction 18492: 17.8602% +Rate for instruction 18493: 17.8615% +Rate for instruction 18494: 17.8624% +Rate for instruction 18495: 17.8631% +Rate for instruction 18496: 17.8628% +Rate for instruction 18497: 17.8641% +Rate for instruction 18498: 17.8642% +Rate for instruction 18499: 17.8647% +Rate for instruction 18500: 17.8645% +Rate for instruction 18501: 17.8652% +Rate for instruction 18502: 17.8659% +Rate for instruction 18503: 17.8654% +Rate for instruction 18504: 17.8654% +Rate for instruction 18505: 17.8651% +Rate for instruction 18506: 17.8643% +Rate for instruction 18507: 17.864% +Rate for instruction 18508: 17.8637% +Rate for instruction 18509: 17.8639% +Rate for instruction 18510: 17.8638% +Rate for instruction 18511: 17.8633% +Rate for instruction 18512: 17.8627% +Rate for instruction 18513: 17.8624% +Rate for instruction 18514: 17.8622% +Rate for instruction 18515: 17.8617% +Rate for instruction 18516: 17.8624% +Rate for instruction 18517: 17.8616% +Rate for instruction 18518: 17.8617% +Rate for instruction 18519: 17.8611% +Rate for instruction 18520: 17.8621% +Rate for instruction 18521: 17.8613% +Rate for instruction 18522: 17.8616% +Rate for instruction 18523: 17.8617% +Rate for instruction 18524: 17.8609% +Rate for instruction 18525: 17.8603% +Rate for instruction 18526: 17.8606% +Rate for instruction 18527: 17.8613% +Rate for instruction 18528: 17.8618% +Rate for instruction 18529: 17.8621% +Rate for instruction 18530: 17.8626% +Rate for instruction 18531: 17.8633% +Rate for instruction 18532: 17.8636% +Rate for instruction 18533: 17.8636% +Rate for instruction 18534: 17.8639% +Rate for instruction 18535: 17.8644% +Rate for instruction 18536: 17.8636% +Rate for instruction 18537: 17.8629% +Rate for instruction 18538: 17.863% +Rate for instruction 18539: 17.8622% +Rate for instruction 18540: 17.8617% +Rate for instruction 18541: 17.8609% +Rate for instruction 18542: 17.8606% +Rate for instruction 18543: 17.86% +Rate for instruction 18544: 17.8601% +Rate for instruction 18545: 17.8595% +Rate for instruction 18546: 17.8594% +Rate for instruction 18547: 17.8589% +Rate for instruction 18548: 17.8587% +Rate for instruction 18549: 17.8598% +Rate for instruction 18550: 17.8591% +Rate for instruction 18551: 17.8598% +Rate for instruction 18552: 17.8603% +Rate for instruction 18553: 17.8597% +Rate for instruction 18554: 17.8602% +Rate for instruction 18555: 17.8597% +Rate for instruction 18556: 17.8593% +Rate for instruction 18557: 17.8604% +Rate for instruction 18558: 17.8609% +Rate for instruction 18559: 17.8618% +Rate for instruction 18560: 17.8611% +Rate for instruction 18561: 17.8611% +Rate for instruction 18562: 17.8604% +Rate for instruction 18563: 17.8611% +Rate for instruction 18564: 17.8616% +Rate for instruction 18565: 17.8608% +Rate for instruction 18566: 17.8609% +Rate for instruction 18567: 17.8603% +Rate for instruction 18568: 17.8612% +Rate for instruction 18569: 17.8605% +Rate for instruction 18570: 17.861% +Rate for instruction 18571: 17.8606% +Rate for instruction 18572: 17.8613% +Rate for instruction 18573: 17.8614% +Rate for instruction 18574: 17.8625% +Rate for instruction 18575: 17.8622% +Rate for instruction 18576: 17.8631% +Rate for instruction 18577: 17.8627% +Rate for instruction 18578: 17.8622% +Rate for instruction 18579: 17.8618% +Rate for instruction 18580: 17.8615% +Rate for instruction 18581: 17.862% +Rate for instruction 18582: 17.8627% +Rate for instruction 18583: 17.8623% +Rate for instruction 18584: 17.863% +Rate for instruction 18585: 17.8627% +Rate for instruction 18586: 17.8628% +Rate for instruction 18587: 17.862% +Rate for instruction 18588: 17.8617% +Rate for instruction 18589: 17.8624% +Rate for instruction 18590: 17.8627% +Rate for instruction 18591: 17.8627% +Rate for instruction 18592: 17.862% +Rate for instruction 18593: 17.8625% +Rate for instruction 18594: 17.8619% +Rate for instruction 18595: 17.8618% +Rate for instruction 18596: 17.861% +Rate for instruction 18597: 17.8623% +Rate for instruction 18598: 17.8626% +Rate for instruction 18599: 17.8623% +Rate for instruction 18600: 17.863% +Rate for instruction 18601: 17.8639% +Rate for instruction 18602: 17.8646% +Rate for instruction 18603: 17.8651% +Rate for instruction 18604: 17.8662% +Rate for instruction 18605: 17.866% +Rate for instruction 18606: 17.8653% +Rate for instruction 18607: 17.8651% +Rate for instruction 18608: 17.8648% +Rate for instruction 18609: 17.8645% +Rate for instruction 18610: 17.8637% +Rate for instruction 18611: 17.863% +Rate for instruction 18612: 17.8626% +Rate for instruction 18613: 17.8627% +Rate for instruction 18614: 17.863% +Rate for instruction 18615: 17.8628% +Rate for instruction 18616: 17.8639% +Rate for instruction 18617: 17.864% +Rate for instruction 18618: 17.8637% +Rate for instruction 18619: 17.8635% +Rate for instruction 18620: 17.8644% +Rate for instruction 18621: 17.8639% +Rate for instruction 18622: 17.8652% +Rate for instruction 18623: 17.8655% +Rate for instruction 18624: 17.8666% +Rate for instruction 18625: 17.8667% +Rate for instruction 18626: 17.8663% +Rate for instruction 18627: 17.8662% +Rate for instruction 18628: 17.8681% +Rate for instruction 18629: 17.869% +Rate for instruction 18630: 17.8689% +Rate for instruction 18631: 17.8681% +Rate for instruction 18632: 17.8678% +Rate for instruction 18633: 17.8675% +Rate for instruction 18634: 17.8673% +Rate for instruction 18635: 17.8668% +Rate for instruction 18636: 17.866% +Rate for instruction 18637: 17.8655% +Rate for instruction 18638: 17.8649% +Rate for instruction 18639: 17.8654% +Rate for instruction 18640: 17.8647% +Rate for instruction 18641: 17.8639% +Rate for instruction 18642: 17.8634% +Rate for instruction 18643: 17.863% +Rate for instruction 18644: 17.8633% +Rate for instruction 18645: 17.8634% +Rate for instruction 18646: 17.8633% +Rate for instruction 18647: 17.8627% +Rate for instruction 18648: 17.8626% +Rate for instruction 18649: 17.862% +Rate for instruction 18650: 17.8623% +Rate for instruction 18651: 17.863% +Rate for instruction 18652: 17.8635% +Rate for instruction 18653: 17.8627% +Rate for instruction 18654: 17.8643% +Rate for instruction 18655: 17.8647% +Rate for instruction 18656: 17.864% +Rate for instruction 18657: 17.8651% +Rate for instruction 18658: 17.8658% +Rate for instruction 18659: 17.8675% +Rate for instruction 18660: 17.867% +Rate for instruction 18661: 17.8683% +Rate for instruction 18662: 17.8681% +Rate for instruction 18663: 17.8692% +Rate for instruction 18664: 17.8689% +Rate for instruction 18665: 17.869% +Rate for instruction 18666: 17.8693% +Rate for instruction 18667: 17.8689% +Rate for instruction 18668: 17.8684% +Rate for instruction 18669: 17.8689% +Rate for instruction 18670: 17.8689% +Rate for instruction 18671: 17.8682% +Rate for instruction 18672: 17.8683% +Rate for instruction 18673: 17.8677% +Rate for instruction 18674: 17.867% +Rate for instruction 18675: 17.8666% +Rate for instruction 18676: 17.8659% +Rate for instruction 18677: 17.8661% +Rate for instruction 18678: 17.8656% +Rate for instruction 18679: 17.8655% +Rate for instruction 18680: 17.8664% +Rate for instruction 18681: 17.8668% +Rate for instruction 18682: 17.8667% +Rate for instruction 18683: 17.866% +Rate for instruction 18684: 17.8662% +Rate for instruction 18685: 17.8659% +Rate for instruction 18686: 17.866% +Rate for instruction 18687: 17.8658% +Rate for instruction 18688: 17.8663% +Rate for instruction 18689: 17.8668% +Rate for instruction 18690: 17.8677% +Rate for instruction 18691: 17.8682% +Rate for instruction 18692: 17.8681% +Rate for instruction 18693: 17.8679% +Rate for instruction 18694: 17.8674% +Rate for instruction 18695: 17.8675% +Rate for instruction 18696: 17.8677% +Rate for instruction 18697: 17.867% +Rate for instruction 18698: 17.8671% +Rate for instruction 18699: 17.8673% +Rate for instruction 18700: 17.8668% +Rate for instruction 18701: 17.866% +Rate for instruction 18702: 17.8663% +Rate for instruction 18703: 17.8666% +Rate for instruction 18704: 17.8667% +Rate for instruction 18705: 17.8672% +Rate for instruction 18706: 17.8674% +Rate for instruction 18707: 17.8673% +Rate for instruction 18708: 17.8666% +Rate for instruction 18709: 17.866% +Rate for instruction 18710: 17.8653% +Rate for instruction 18711: 17.8651% +Rate for instruction 18712: 17.8646% +Rate for instruction 18713: 17.864% +Rate for instruction 18714: 17.8639% +Rate for instruction 18715: 17.8642% +Rate for instruction 18716: 17.8645% +Rate for instruction 18717: 17.865% +Rate for instruction 18718: 17.865% +Rate for instruction 18719: 17.8647% +Rate for instruction 18720: 17.8646% +Rate for instruction 18721: 17.8642% +Rate for instruction 18722: 17.8639% +Rate for instruction 18723: 17.8635% +Rate for instruction 18724: 17.8644% +Rate for instruction 18725: 17.8649% +Rate for instruction 18726: 17.8642% +Rate for instruction 18727: 17.8644% +Rate for instruction 18728: 17.8653% +Rate for instruction 18729: 17.866% +Rate for instruction 18730: 17.8667% +Rate for instruction 18731: 17.8666% +Rate for instruction 18732: 17.8667% +Rate for instruction 18733: 17.8665% +Rate for instruction 18734: 17.8668% +Rate for instruction 18735: 17.8675% +Rate for instruction 18736: 17.867% +Rate for instruction 18737: 17.867% +Rate for instruction 18738: 17.8667% +Rate for instruction 18739: 17.8663% +Rate for instruction 18740: 17.8662% +Rate for instruction 18741: 17.8663% +Rate for instruction 18742: 17.8657% +Rate for instruction 18743: 17.8664% +Rate for instruction 18744: 17.8667% +Rate for instruction 18745: 17.866% +Rate for instruction 18746: 17.8652% +Rate for instruction 18747: 17.8647% +Rate for instruction 18748: 17.8647% +Rate for instruction 18749: 17.8642% +Rate for instruction 18750: 17.8635% +Rate for instruction 18751: 17.8629% +Rate for instruction 18752: 17.8626% +Rate for instruction 18753: 17.862% +Rate for instruction 18754: 17.8623% +Rate for instruction 18755: 17.862% +Rate for instruction 18756: 17.862% +Rate for instruction 18757: 17.8621% +Rate for instruction 18758: 17.8626% +Rate for instruction 18759: 17.8625% +Rate for instruction 18760: 17.8623% +Rate for instruction 18761: 17.8624% +Rate for instruction 18762: 17.8623% +Rate for instruction 18763: 17.863% +Rate for instruction 18764: 17.8641% +Rate for instruction 18765: 17.8635% +Rate for instruction 18766: 17.8638% +Rate for instruction 18767: 17.8641% +Rate for instruction 18768: 17.8639% +Rate for instruction 18769: 17.8632% +Rate for instruction 18770: 17.8629% +Rate for instruction 18771: 17.8627% +Rate for instruction 18772: 17.8626% +Rate for instruction 18773: 17.8625% +Rate for instruction 18774: 17.8619% +Rate for instruction 18775: 17.8618% +Rate for instruction 18776: 17.8619% +Rate for instruction 18777: 17.8617% +Rate for instruction 18778: 17.862% +Rate for instruction 18779: 17.8615% +Rate for instruction 18780: 17.8607% +Rate for instruction 18781: 17.8602% +Rate for instruction 18782: 17.8603% +Rate for instruction 18783: 17.8599% +Rate for instruction 18784: 17.8592% +Rate for instruction 18785: 17.8592% +Rate for instruction 18786: 17.8589% +Rate for instruction 18787: 17.86% +Rate for instruction 18788: 17.8595% +Rate for instruction 18789: 17.8604% +Rate for instruction 18790: 17.86% +Rate for instruction 18791: 17.8597% +Rate for instruction 18792: 17.8608% +Rate for instruction 18793: 17.8613% +Rate for instruction 18794: 17.8605% +Rate for instruction 18795: 17.8616% +Rate for instruction 18796: 17.8619% +Rate for instruction 18797: 17.8624% +Rate for instruction 18798: 17.8627% +Rate for instruction 18799: 17.8621% +Rate for instruction 18800: 17.8626% +Rate for instruction 18801: 17.8627% +Rate for instruction 18802: 17.8619% +Rate for instruction 18803: 17.8618% +Rate for instruction 18804: 17.8617% +Rate for instruction 18805: 17.8609% +Rate for instruction 18806: 17.8604% +Rate for instruction 18807: 17.8598% +Rate for instruction 18808: 17.8597% +Rate for instruction 18809: 17.859% +Rate for instruction 18810: 17.8582% +Rate for instruction 18811: 17.8577% +Rate for instruction 18812: 17.8569% +Rate for instruction 18813: 17.8568% +Rate for instruction 18814: 17.8575% +Rate for instruction 18815: 17.858% +Rate for instruction 18816: 17.8576% +Rate for instruction 18817: 17.8587% +Rate for instruction 18818: 17.8584% +Rate for instruction 18819: 17.8595% +Rate for instruction 18820: 17.8587% +Rate for instruction 18821: 17.858% +Rate for instruction 18822: 17.8572% +Rate for instruction 18823: 17.8567% +Rate for instruction 18824: 17.8568% +Rate for instruction 18825: 17.8566% +Rate for instruction 18826: 17.8563% +Rate for instruction 18827: 17.857% +Rate for instruction 18828: 17.8581% +Rate for instruction 18829: 17.8588% +Rate for instruction 18830: 17.8586% +Rate for instruction 18831: 17.8589% +Rate for instruction 18832: 17.8594% +Rate for instruction 18833: 17.8601% +Rate for instruction 18834: 17.8612% +Rate for instruction 18835: 17.8604% +Rate for instruction 18836: 17.8601% +Rate for instruction 18837: 17.8594% +Rate for instruction 18838: 17.8588% +Rate for instruction 18839: 17.8581% +Rate for instruction 18840: 17.8588% +Rate for instruction 18841: 17.8594% +Rate for instruction 18842: 17.8591% +Rate for instruction 18843: 17.8596% +Rate for instruction 18844: 17.8593% +Rate for instruction 18845: 17.8587% +Rate for instruction 18846: 17.8592% +Rate for instruction 18847: 17.8593% +Rate for instruction 18848: 17.8589% +Rate for instruction 18849: 17.8596% +Rate for instruction 18850: 17.8593% +Rate for instruction 18851: 17.8596% +Rate for instruction 18852: 17.8596% +Rate for instruction 18853: 17.8599% +Rate for instruction 18854: 17.8602% +Rate for instruction 18855: 17.8607% +Rate for instruction 18856: 17.8607% +Rate for instruction 18857: 17.86% +Rate for instruction 18858: 17.8597% +Rate for instruction 18859: 17.8595% +Rate for instruction 18860: 17.86% +Rate for instruction 18861: 17.8599% +Rate for instruction 18862: 17.8597% +Rate for instruction 18863: 17.8592% +Rate for instruction 18864: 17.8591% +Rate for instruction 18865: 17.8592% +Rate for instruction 18866: 17.8586% +Rate for instruction 18867: 17.8583% +Rate for instruction 18868: 17.8579% +Rate for instruction 18869: 17.8574% +Rate for instruction 18870: 17.8573% +Rate for instruction 18871: 17.8573% +Rate for instruction 18872: 17.8574% +Rate for instruction 18873: 17.8577% +Rate for instruction 18874: 17.8572% +Rate for instruction 18875: 17.8566% +Rate for instruction 18876: 17.8567% +Rate for instruction 18877: 17.8566% +Rate for instruction 18878: 17.857% +Rate for instruction 18879: 17.8565% +Rate for instruction 18880: 17.8566% +Rate for instruction 18881: 17.8558% +Rate for instruction 18882: 17.8553% +Rate for instruction 18883: 17.8556% +Rate for instruction 18884: 17.8548% +Rate for instruction 18885: 17.8547% +Rate for instruction 18886: 17.8542% +Rate for instruction 18887: 17.8536% +Rate for instruction 18888: 17.8533% +Rate for instruction 18889: 17.8534% +Rate for instruction 18890: 17.853% +Rate for instruction 18891: 17.8531% +Rate for instruction 18892: 17.8532% +Rate for instruction 18893: 17.8532% +Rate for instruction 18894: 17.8525% +Rate for instruction 18895: 17.8524% +Rate for instruction 18896: 17.8537% +Rate for instruction 18897: 17.8552% +Rate for instruction 18898: 17.8554% +Rate for instruction 18899: 17.8561% +Rate for instruction 18900: 17.8554% +Rate for instruction 18901: 17.855% +Rate for instruction 18902: 17.8543% +Rate for instruction 18903: 17.855% +Rate for instruction 18904: 17.8547% +Rate for instruction 18905: 17.8543% +Rate for instruction 18906: 17.8544% +Rate for instruction 18907: 17.8539% +Rate for instruction 18908: 17.8543% +Rate for instruction 18909: 17.8542% +Rate for instruction 18910: 17.8541% +Rate for instruction 18911: 17.8544% +Rate for instruction 18912: 17.8546% +Rate for instruction 18913: 17.8549% +Rate for instruction 18914: 17.8552% +Rate for instruction 18915: 17.8546% +Rate for instruction 18916: 17.8551% +Rate for instruction 18917: 17.8554% +Rate for instruction 18918: 17.8549% +Rate for instruction 18919: 17.8551% +Rate for instruction 18920: 17.8562% +Rate for instruction 18921: 17.8569% +Rate for instruction 18922: 17.8578% +Rate for instruction 18923: 17.8593% +Rate for instruction 18924: 17.8602% +Rate for instruction 18925: 17.8596% +Rate for instruction 18926: 17.8593% +Rate for instruction 18927: 17.8592% +Rate for instruction 18928: 17.8584% +Rate for instruction 18929: 17.8577% +Rate for instruction 18930: 17.8572% +Rate for instruction 18931: 17.8584% +Rate for instruction 18932: 17.8595% +Rate for instruction 18933: 17.859% +Rate for instruction 18934: 17.8597% +Rate for instruction 18935: 17.8591% +Rate for instruction 18936: 17.8596% +Rate for instruction 18937: 17.8599% +Rate for instruction 18938: 17.8592% +Rate for instruction 18939: 17.8592% +Rate for instruction 18940: 17.8601% +Rate for instruction 18941: 17.8596% +Rate for instruction 18942: 17.8603% +Rate for instruction 18943: 17.8611% +Rate for instruction 18944: 17.8606% +Rate for instruction 18945: 17.8603% +Rate for instruction 18946: 17.8595% +Rate for instruction 18947: 17.8594% +Rate for instruction 18948: 17.8601% +Rate for instruction 18949: 17.862% +Rate for instruction 18950: 17.8629% +Rate for instruction 18951: 17.8631% +Rate for instruction 18952: 17.863% +Rate for instruction 18953: 17.8631% +Rate for instruction 18954: 17.8638% +Rate for instruction 18955: 17.8632% +Rate for instruction 18956: 17.8627% +Rate for instruction 18957: 17.863% +Rate for instruction 18958: 17.8622% +Rate for instruction 18959: 17.8625% +Rate for instruction 18960: 17.862% +Rate for instruction 18961: 17.8612% +Rate for instruction 18962: 17.8607% +Rate for instruction 18963: 17.8604% +Rate for instruction 18964: 17.8596% +Rate for instruction 18965: 17.8591% +Rate for instruction 18966: 17.8596% +Rate for instruction 18967: 17.8588% +Rate for instruction 18968: 17.8589% +Rate for instruction 18969: 17.8592% +Rate for instruction 18970: 17.8594% +Rate for instruction 18971: 17.8591% +Rate for instruction 18972: 17.859% +Rate for instruction 18973: 17.8586% +Rate for instruction 18974: 17.8585% +Rate for instruction 18975: 17.859% +Rate for instruction 18976: 17.8601% +Rate for instruction 18977: 17.8597% +Rate for instruction 18978: 17.8598% +Rate for instruction 18979: 17.8605% +Rate for instruction 18980: 17.8606% +Rate for instruction 18981: 17.8604% +Rate for instruction 18982: 17.8605% +Rate for instruction 18983: 17.86% +Rate for instruction 18984: 17.8605% +Rate for instruction 18985: 17.8609% +Rate for instruction 18986: 17.8614% +Rate for instruction 18987: 17.8611% +Rate for instruction 18988: 17.8607% +Rate for instruction 18989: 17.8604% +Rate for instruction 18990: 17.8603% +Rate for instruction 18991: 17.8604% +Rate for instruction 18992: 17.861% +Rate for instruction 18993: 17.8615% +Rate for instruction 18994: 17.8612% +Rate for instruction 18995: 17.8606% +Rate for instruction 18996: 17.8607% +Rate for instruction 18997: 17.8602% +Rate for instruction 18998: 17.86% +Rate for instruction 18999: 17.8593% +Rate for instruction 19000: 17.8592% +Rate for instruction 19001: 17.8591% +Rate for instruction 19002: 17.8589% +Rate for instruction 19003: 17.8588% +Rate for instruction 19004: 17.8585% +Rate for instruction 19005: 17.8589% +Rate for instruction 19006: 17.8592% +Rate for instruction 19007: 17.8589% +Rate for instruction 19008: 17.8592% +Rate for instruction 19009: 17.859% +Rate for instruction 19010: 17.8585% +Rate for instruction 19011: 17.858% +Rate for instruction 19012: 17.8584% +Rate for instruction 19013: 17.8591% +Rate for instruction 19014: 17.8586% +Rate for instruction 19015: 17.8593% +Rate for instruction 19016: 17.8589% +Rate for instruction 19017: 17.8594% +Rate for instruction 19018: 17.8599% +Rate for instruction 19019: 17.8608% +Rate for instruction 19020: 17.86% +Rate for instruction 19021: 17.8599% +Rate for instruction 19022: 17.861% +Rate for instruction 19023: 17.8604% +Rate for instruction 19024: 17.8601% +Rate for instruction 19025: 17.8596% +Rate for instruction 19026: 17.86% +Rate for instruction 19027: 17.8605% +Rate for instruction 19028: 17.86% +Rate for instruction 19029: 17.8597% +Rate for instruction 19030: 17.8589% +Rate for instruction 19031: 17.86% +Rate for instruction 19032: 17.8605% +Rate for instruction 19033: 17.862% +Rate for instruction 19034: 17.8624% +Rate for instruction 19035: 17.8629% +Rate for instruction 19036: 17.8628% +Rate for instruction 19037: 17.8625% +Rate for instruction 19038: 17.8625% +Rate for instruction 19039: 17.8626% +Rate for instruction 19040: 17.8629% +Rate for instruction 19041: 17.8627% +Rate for instruction 19042: 17.8628% +Rate for instruction 19043: 17.8627% +Rate for instruction 19044: 17.8621% +Rate for instruction 19045: 17.862% +Rate for instruction 19046: 17.8619% +Rate for instruction 19047: 17.8626% +Rate for instruction 19048: 17.8624% +Rate for instruction 19049: 17.8629% +Rate for instruction 19050: 17.8624% +Rate for instruction 19051: 17.8631% +Rate for instruction 19052: 17.8635% +Rate for instruction 19053: 17.8652% +Rate for instruction 19054: 17.8647% +Rate for instruction 19055: 17.8654% +Rate for instruction 19056: 17.8656% +Rate for instruction 19057: 17.8651% +Rate for instruction 19058: 17.8646% +Rate for instruction 19059: 17.8646% +Rate for instruction 19060: 17.8645% +Rate for instruction 19061: 17.8642% +Rate for instruction 19062: 17.864% +Rate for instruction 19063: 17.8639% +Rate for instruction 19064: 17.8636% +Rate for instruction 19065: 17.8635% +Rate for instruction 19066: 17.8631% +Rate for instruction 19067: 17.863% +Rate for instruction 19068: 17.8625% +Rate for instruction 19069: 17.8625% +Rate for instruction 19070: 17.8622% +Rate for instruction 19071: 17.8621% +Rate for instruction 19072: 17.8621% +Rate for instruction 19073: 17.8622% +Rate for instruction 19074: 17.8627% +Rate for instruction 19075: 17.8626% +Rate for instruction 19076: 17.8618% +Rate for instruction 19077: 17.8625% +Rate for instruction 19078: 17.8626% +Rate for instruction 19079: 17.862% +Rate for instruction 19080: 17.8615% +Rate for instruction 19081: 17.8616% +Rate for instruction 19082: 17.8608% +Rate for instruction 19083: 17.8605% +Rate for instruction 19084: 17.861% +Rate for instruction 19085: 17.8615% +Rate for instruction 19086: 17.8611% +Rate for instruction 19087: 17.861% +Rate for instruction 19088: 17.8603% +Rate for instruction 19089: 17.8597% +Rate for instruction 19090: 17.8598% +Rate for instruction 19091: 17.8595% +Rate for instruction 19092: 17.8589% +Rate for instruction 19093: 17.8588% +Rate for instruction 19094: 17.8585% +Rate for instruction 19095: 17.8577% +Rate for instruction 19096: 17.8572% +Rate for instruction 19097: 17.8569% +Rate for instruction 19098: 17.8566% +Rate for instruction 19099: 17.8566% +Rate for instruction 19100: 17.8565% +Rate for instruction 19101: 17.8566% +Rate for instruction 19102: 17.8568% +Rate for instruction 19103: 17.8565% +Rate for instruction 19104: 17.8564% +Rate for instruction 19105: 17.8567% +Rate for instruction 19106: 17.8573% +Rate for instruction 19107: 17.8572% +Rate for instruction 19108: 17.8573% +Rate for instruction 19109: 17.8569% +Rate for instruction 19110: 17.8568% +Rate for instruction 19111: 17.8575% +Rate for instruction 19112: 17.8574% +Rate for instruction 19113: 17.8574% +Rate for instruction 19114: 17.8573% +Rate for instruction 19115: 17.8582% +Rate for instruction 19116: 17.8589% +Rate for instruction 19117: 17.8587% +Rate for instruction 19118: 17.8586% +Rate for instruction 19119: 17.8587% +Rate for instruction 19120: 17.8583% +Rate for instruction 19121: 17.8592% +Rate for instruction 19122: 17.8595% +Rate for instruction 19123: 17.859% +Rate for instruction 19124: 17.8588% +Rate for instruction 19125: 17.8581% +Rate for instruction 19126: 17.8586% +Rate for instruction 19127: 17.8578% +Rate for instruction 19128: 17.8577% +Rate for instruction 19129: 17.8582% +Rate for instruction 19130: 17.8589% +Rate for instruction 19131: 17.8597% +Rate for instruction 19132: 17.8606% +Rate for instruction 19133: 17.8615% +Rate for instruction 19134: 17.8622% +Rate for instruction 19135: 17.8618% +Rate for instruction 19136: 17.8615% +Rate for instruction 19137: 17.8612% +Rate for instruction 19138: 17.8606% +Rate for instruction 19139: 17.8607% +Rate for instruction 19140: 17.86% +Rate for instruction 19141: 17.8598% +Rate for instruction 19142: 17.8597% +Rate for instruction 19143: 17.8598% +Rate for instruction 19144: 17.8593% +Rate for instruction 19145: 17.8585% +Rate for instruction 19146: 17.859% +Rate for instruction 19147: 17.8583% +Rate for instruction 19148: 17.8583% +Rate for instruction 19149: 17.858% +Rate for instruction 19150: 17.8577% +Rate for instruction 19151: 17.8569% +Rate for instruction 19152: 17.8566% +Rate for instruction 19153: 17.8565% +Rate for instruction 19154: 17.8562% +Rate for instruction 19155: 17.8554% +Rate for instruction 19156: 17.8561% +Rate for instruction 19157: 17.8556% +Rate for instruction 19158: 17.8548% +Rate for instruction 19159: 17.8557% +Rate for instruction 19160: 17.8564% +Rate for instruction 19161: 17.8563% +Rate for instruction 19162: 17.8559% +Rate for instruction 19163: 17.8558% +Rate for instruction 19164: 17.8561% +Rate for instruction 19165: 17.8553% +Rate for instruction 19166: 17.8546% +Rate for instruction 19167: 17.8543% +Rate for instruction 19168: 17.8535% +Rate for instruction 19169: 17.853% +Rate for instruction 19170: 17.8523% +Rate for instruction 19171: 17.8524% +Rate for instruction 19172: 17.8526% +Rate for instruction 19173: 17.8521% +Rate for instruction 19174: 17.8518% +Rate for instruction 19175: 17.8512% +Rate for instruction 19176: 17.8513% +Rate for instruction 19177: 17.8512% +Rate for instruction 19178: 17.8509% +Rate for instruction 19179: 17.8509% +Rate for instruction 19180: 17.8506% +Rate for instruction 19181: 17.8507% +Rate for instruction 19182: 17.8499% +Rate for instruction 19183: 17.8496% +Rate for instruction 19184: 17.8491% +Rate for instruction 19185: 17.849% +Rate for instruction 19186: 17.8484% +Rate for instruction 19187: 17.8483% +Rate for instruction 19188: 17.8482% +Rate for instruction 19189: 17.8478% +Rate for instruction 19190: 17.8481% +Rate for instruction 19191: 17.8478% +Rate for instruction 19192: 17.8477% +Rate for instruction 19193: 17.8473% +Rate for instruction 19194: 17.847% +Rate for instruction 19195: 17.8471% +Rate for instruction 19196: 17.8467% +Rate for instruction 19197: 17.8472% +Rate for instruction 19198: 17.8465% +Rate for instruction 19199: 17.8462% +Rate for instruction 19200: 17.8462% +Rate for instruction 19201: 17.8459% +Rate for instruction 19202: 17.8462% +Rate for instruction 19203: 17.8456% +Rate for instruction 19204: 17.8455% +Rate for instruction 19205: 17.8464% +Rate for instruction 19206: 17.8471% +Rate for instruction 19207: 17.8467% +Rate for instruction 19208: 17.8464% +Rate for instruction 19209: 17.8465% +Rate for instruction 19210: 17.8461% +Rate for instruction 19211: 17.8458% +Rate for instruction 19212: 17.8457% +Rate for instruction 19213: 17.8464% +Rate for instruction 19214: 17.8472% +Rate for instruction 19215: 17.8471% +Rate for instruction 19216: 17.8468% +Rate for instruction 19217: 17.8467% +Rate for instruction 19218: 17.8465% +Rate for instruction 19219: 17.8462% +Rate for instruction 19220: 17.8463% +Rate for instruction 19221: 17.8467% +Rate for instruction 19222: 17.847% +Rate for instruction 19223: 17.8471% +Rate for instruction 19224: 17.8468% +Rate for instruction 19225: 17.846% +Rate for instruction 19226: 17.8453% +Rate for instruction 19227: 17.8446% +Rate for instruction 19228: 17.8444% +Rate for instruction 19229: 17.8441% +Rate for instruction 19230: 17.8438% +Rate for instruction 19231: 17.8437% +Rate for instruction 19232: 17.8431% +Rate for instruction 19233: 17.8428% +Rate for instruction 19234: 17.8429% +Rate for instruction 19235: 17.8421% +Rate for instruction 19236: 17.842% +Rate for instruction 19237: 17.8415% +Rate for instruction 19238: 17.8414% +Rate for instruction 19239: 17.8406% +Rate for instruction 19240: 17.8399% +Rate for instruction 19241: 17.8392% +Rate for instruction 19242: 17.8389% +Rate for instruction 19243: 17.8385% +Rate for instruction 19244: 17.8378% +Rate for instruction 19245: 17.8373% +Rate for instruction 19246: 17.8371% +Rate for instruction 19247: 17.8382% +Rate for instruction 19248: 17.8379% +Rate for instruction 19249: 17.8396% +Rate for instruction 19250: 17.8392% +Rate for instruction 19251: 17.8405% +Rate for instruction 19252: 17.841% +Rate for instruction 19253: 17.8416% +Rate for instruction 19254: 17.8421% +Rate for instruction 19255: 17.8414% +Rate for instruction 19256: 17.8423% +Rate for instruction 19257: 17.8427% +Rate for instruction 19258: 17.8432% +Rate for instruction 19259: 17.8439% +Rate for instruction 19260: 17.8435% +Rate for instruction 19261: 17.8432% +Rate for instruction 19262: 17.8431% +Rate for instruction 19263: 17.8424% +Rate for instruction 19264: 17.842% +Rate for instruction 19265: 17.8413% +Rate for instruction 19266: 17.8408% +Rate for instruction 19267: 17.8409% +Rate for instruction 19268: 17.8407% +Rate for instruction 19269: 17.8404% +Rate for instruction 19270: 17.8409% +Rate for instruction 19271: 17.8402% +Rate for instruction 19272: 17.8398% +Rate for instruction 19273: 17.8395% +Rate for instruction 19274: 17.839% +Rate for instruction 19275: 17.8386% +Rate for instruction 19276: 17.8393% +Rate for instruction 19277: 17.8398% +Rate for instruction 19278: 17.8409% +Rate for instruction 19279: 17.8401% +Rate for instruction 19280: 17.8398% +Rate for instruction 19281: 17.8405% +Rate for instruction 19282: 17.8407% +Rate for instruction 19283: 17.8404% +Rate for instruction 19284: 17.8397% +Rate for instruction 19285: 17.8392% +Rate for instruction 19286: 17.8384% +Rate for instruction 19287: 17.8383% +Rate for instruction 19288: 17.8376% +Rate for instruction 19289: 17.8371% +Rate for instruction 19290: 17.8373% +Rate for instruction 19291: 17.837% +Rate for instruction 19292: 17.8363% +Rate for instruction 19293: 17.8364% +Rate for instruction 19294: 17.8364% +Rate for instruction 19295: 17.8357% +Rate for instruction 19296: 17.835% +Rate for instruction 19297: 17.8345% +Rate for instruction 19298: 17.8337% +Rate for instruction 19299: 17.8332% +Rate for instruction 19300: 17.8325% +Rate for instruction 19301: 17.8327% +Rate for instruction 19302: 17.8326% +Rate for instruction 19303: 17.8321% +Rate for instruction 19304: 17.832% +Rate for instruction 19305: 17.8312% +Rate for instruction 19306: 17.8317% +Rate for instruction 19307: 17.8312% +Rate for instruction 19308: 17.8319% +Rate for instruction 19309: 17.8315% +Rate for instruction 19310: 17.8312% +Rate for instruction 19311: 17.8307% +Rate for instruction 19312: 17.8304% +Rate for instruction 19313: 17.8308% +Rate for instruction 19314: 17.8313% +Rate for instruction 19315: 17.831% +Rate for instruction 19316: 17.8316% +Rate for instruction 19317: 17.8323% +Rate for instruction 19318: 17.8326% +Rate for instruction 19319: 17.8331% +Rate for instruction 19320: 17.8329% +Rate for instruction 19321: 17.8332% +Rate for instruction 19322: 17.8333% +Rate for instruction 19323: 17.8341% +Rate for instruction 19324: 17.8348% +Rate for instruction 19325: 17.8345% +Rate for instruction 19326: 17.8346% +Rate for instruction 19327: 17.8338% +Rate for instruction 19328: 17.8339% +Rate for instruction 19329: 17.8336% +Rate for instruction 19330: 17.8335% +Rate for instruction 19331: 17.8335% +Rate for instruction 19332: 17.8332% +Rate for instruction 19333: 17.8327% +Rate for instruction 19334: 17.8325% +Rate for instruction 19335: 17.832% +Rate for instruction 19336: 17.8317% +Rate for instruction 19337: 17.8316% +Rate for instruction 19338: 17.8308% +Rate for instruction 19339: 17.8301% +Rate for instruction 19340: 17.8298% +Rate for instruction 19341: 17.8307% +Rate for instruction 19342: 17.8309% +Rate for instruction 19343: 17.8314% +Rate for instruction 19344: 17.8319% +Rate for instruction 19345: 17.8323% +Rate for instruction 19346: 17.833% +Rate for instruction 19347: 17.8335% +Rate for instruction 19348: 17.8328% +Rate for instruction 19349: 17.8328% +Rate for instruction 19350: 17.8329% +Rate for instruction 19351: 17.8322% +Rate for instruction 19352: 17.8321% +Rate for instruction 19353: 17.8329% +Rate for instruction 19354: 17.8326% +Rate for instruction 19355: 17.8319% +Rate for instruction 19356: 17.8314% +Rate for instruction 19357: 17.8322% +Rate for instruction 19358: 17.8333% +Rate for instruction 19359: 17.834% +Rate for instruction 19360: 17.8338% +Rate for instruction 19361: 17.8335% +Rate for instruction 19362: 17.8334% +Rate for instruction 19363: 17.8327% +Rate for instruction 19364: 17.8321% +Rate for instruction 19365: 17.8316% +Rate for instruction 19366: 17.8313% +Rate for instruction 19367: 17.8312% +Rate for instruction 19368: 17.8306% +Rate for instruction 19369: 17.8303% +Rate for instruction 19370: 17.8306% +Rate for instruction 19371: 17.8309% +Rate for instruction 19372: 17.8311% +Rate for instruction 19373: 17.8322% +Rate for instruction 19374: 17.8319% +Rate for instruction 19375: 17.8331% +Rate for instruction 19376: 17.833% +Rate for instruction 19377: 17.8327% +Rate for instruction 19378: 17.8321% +Rate for instruction 19379: 17.8322% +Rate for instruction 19380: 17.8321% +Rate for instruction 19381: 17.832% +Rate for instruction 19382: 17.8312% +Rate for instruction 19383: 17.8313% +Rate for instruction 19384: 17.8318% +Rate for instruction 19385: 17.8323% +Rate for instruction 19386: 17.8315% +Rate for instruction 19387: 17.8324% +Rate for instruction 19388: 17.8319% +Rate for instruction 19389: 17.8327% +Rate for instruction 19390: 17.8336% +Rate for instruction 19391: 17.8339% +Rate for instruction 19392: 17.8351% +Rate for instruction 19393: 17.8364% +Rate for instruction 19394: 17.8375% +Rate for instruction 19395: 17.8383% +Rate for instruction 19396: 17.8376% +Rate for instruction 19397: 17.8387% +Rate for instruction 19398: 17.8397% +Rate for instruction 19399: 17.8392% +Rate for instruction 19400: 17.8387% +Rate for instruction 19401: 17.8388% +Rate for instruction 19402: 17.8382% +Rate for instruction 19403: 17.8387% +Rate for instruction 19404: 17.8382% +Rate for instruction 19405: 17.8379% +Rate for instruction 19406: 17.8379% +Rate for instruction 19407: 17.8372% +Rate for instruction 19408: 17.8367% +Rate for instruction 19409: 17.836% +Rate for instruction 19410: 17.8356% +Rate for instruction 19411: 17.8353% +Rate for instruction 19412: 17.835% +Rate for instruction 19413: 17.8345% +Rate for instruction 19414: 17.8341% +Rate for instruction 19415: 17.8338% +Rate for instruction 19416: 17.8339% +Rate for instruction 19417: 17.8338% +Rate for instruction 19418: 17.8334% +Rate for instruction 19419: 17.8331% +Rate for instruction 19420: 17.8328% +Rate for instruction 19421: 17.8335% +Rate for instruction 19422: 17.8335% +Rate for instruction 19423: 17.8328% +Rate for instruction 19424: 17.8335% +Rate for instruction 19425: 17.8336% +Rate for instruction 19426: 17.8328% +Rate for instruction 19427: 17.8327% +Rate for instruction 19428: 17.8332% +Rate for instruction 19429: 17.834% +Rate for instruction 19430: 17.8337% +Rate for instruction 19431: 17.8336% +Rate for instruction 19432: 17.8339% +Rate for instruction 19433: 17.8349% +Rate for instruction 19434: 17.836% +Rate for instruction 19435: 17.8364% +Rate for instruction 19436: 17.8357% +Rate for instruction 19437: 17.836% +Rate for instruction 19438: 17.8359% +Rate for instruction 19439: 17.8352% +Rate for instruction 19440: 17.835% +Rate for instruction 19441: 17.8345% +Rate for instruction 19442: 17.8338% +Rate for instruction 19443: 17.8335% +Rate for instruction 19444: 17.8327% +Rate for instruction 19445: 17.8326% +Rate for instruction 19446: 17.8319% +Rate for instruction 19447: 17.8318% +Rate for instruction 19448: 17.8314% +Rate for instruction 19449: 17.8321% +Rate for instruction 19450: 17.833% +Rate for instruction 19451: 17.8336% +Rate for instruction 19452: 17.8337% +Rate for instruction 19453: 17.8332% +Rate for instruction 19454: 17.8325% +Rate for instruction 19455: 17.8321% +Rate for instruction 19456: 17.8322% +Rate for instruction 19457: 17.8325% +Rate for instruction 19458: 17.832% +Rate for instruction 19459: 17.8313% +Rate for instruction 19460: 17.8313% +Rate for instruction 19461: 17.831% +Rate for instruction 19462: 17.8305% +Rate for instruction 19463: 17.8309% +Rate for instruction 19464: 17.831% +Rate for instruction 19465: 17.8313% +Rate for instruction 19466: 17.8312% +Rate for instruction 19467: 17.8312% +Rate for instruction 19468: 17.8307% +Rate for instruction 19469: 17.8306% +Rate for instruction 19470: 17.8309% +Rate for instruction 19471: 17.8305% +Rate for instruction 19472: 17.83% +Rate for instruction 19473: 17.8303% +Rate for instruction 19474: 17.8307% +Rate for instruction 19475: 17.8306% +Rate for instruction 19476: 17.8305% +Rate for instruction 19477: 17.83% +Rate for instruction 19478: 17.8295% +Rate for instruction 19479: 17.8291% +Rate for instruction 19480: 17.829% +Rate for instruction 19481: 17.8283% +Rate for instruction 19482: 17.828% +Rate for instruction 19483: 17.828% +Rate for instruction 19484: 17.8275% +Rate for instruction 19485: 17.8272% +Rate for instruction 19486: 17.8279% +Rate for instruction 19487: 17.8277% +Rate for instruction 19488: 17.8284% +Rate for instruction 19489: 17.8289% +Rate for instruction 19490: 17.8283% +Rate for instruction 19491: 17.8288% +Rate for instruction 19492: 17.8293% +Rate for instruction 19493: 17.8297% +Rate for instruction 19494: 17.8306% +Rate for instruction 19495: 17.8307% +Rate for instruction 19496: 17.8308% +Rate for instruction 19497: 17.831% +Rate for instruction 19498: 17.8303% +Rate for instruction 19499: 17.831% +Rate for instruction 19500: 17.8304% +Rate for instruction 19501: 17.8307% +Rate for instruction 19502: 17.8304% +Rate for instruction 19503: 17.8307% +Rate for instruction 19504: 17.8299% +Rate for instruction 19505: 17.83% +Rate for instruction 19506: 17.8303% +Rate for instruction 19507: 17.8308% +Rate for instruction 19508: 17.831% +Rate for instruction 19509: 17.8311% +Rate for instruction 19510: 17.8312% +Rate for instruction 19511: 17.8316% +Rate for instruction 19512: 17.8321% +Rate for instruction 19513: 17.8318% +Rate for instruction 19514: 17.832% +Rate for instruction 19515: 17.8325% +Rate for instruction 19516: 17.832% +Rate for instruction 19517: 17.8315% +Rate for instruction 19518: 17.8313% +Rate for instruction 19519: 17.8306% +Rate for instruction 19520: 17.8303% +Rate for instruction 19521: 17.8304% +Rate for instruction 19522: 17.8303% +Rate for instruction 19523: 17.8299% +Rate for instruction 19524: 17.8306% +Rate for instruction 19525: 17.8307% +Rate for instruction 19526: 17.8299% +Rate for instruction 19527: 17.8304% +Rate for instruction 19528: 17.8311% +Rate for instruction 19529: 17.8308% +Rate for instruction 19530: 17.8316% +Rate for instruction 19531: 17.8311% +Rate for instruction 19532: 17.832% +Rate for instruction 19533: 17.8328% +Rate for instruction 19534: 17.8331% +Rate for instruction 19535: 17.8335% +Rate for instruction 19536: 17.8332% +Rate for instruction 19537: 17.8327% +Rate for instruction 19538: 17.8332% +Rate for instruction 19539: 17.8344% +Rate for instruction 19540: 17.8337% +Rate for instruction 19541: 17.834% +Rate for instruction 19542: 17.8333% +Rate for instruction 19543: 17.8329% +Rate for instruction 19544: 17.8326% +Rate for instruction 19545: 17.8323% +Rate for instruction 19546: 17.8316% +Rate for instruction 19547: 17.8313% +Rate for instruction 19548: 17.8305% +Rate for instruction 19549: 17.83% +Rate for instruction 19550: 17.8295% +Rate for instruction 19551: 17.8292% +Rate for instruction 19552: 17.8289% +Rate for instruction 19553: 17.8281% +Rate for instruction 19554: 17.8278% +Rate for instruction 19555: 17.8285% +Rate for instruction 19556: 17.8278% +Rate for instruction 19557: 17.8278% +Rate for instruction 19558: 17.8271% +Rate for instruction 19559: 17.8274% +Rate for instruction 19560: 17.8269% +Rate for instruction 19561: 17.8279% +Rate for instruction 19562: 17.8284% +Rate for instruction 19563: 17.8279% +Rate for instruction 19564: 17.8289% +Rate for instruction 19565: 17.8282% +Rate for instruction 19566: 17.8281% +Rate for instruction 19567: 17.8284% +Rate for instruction 19568: 17.8288% +Rate for instruction 19569: 17.8281% +Rate for instruction 19570: 17.8276% +Rate for instruction 19571: 17.8269% +Rate for instruction 19572: 17.8268% +Rate for instruction 19573: 17.826% +Rate for instruction 19574: 17.8255% +Rate for instruction 19575: 17.8248% +Rate for instruction 19576: 17.8263% +Rate for instruction 19577: 17.8257% +Rate for instruction 19578: 17.826% +Rate for instruction 19579: 17.8253% +Rate for instruction 19580: 17.8248% +Rate for instruction 19581: 17.8243% +Rate for instruction 19582: 17.8251% +Rate for instruction 19583: 17.8262% +Rate for instruction 19584: 17.8255% +Rate for instruction 19585: 17.8255% +Rate for instruction 19586: 17.8256% +Rate for instruction 19587: 17.8255% +Rate for instruction 19588: 17.8252% +Rate for instruction 19589: 17.8254% +Rate for instruction 19590: 17.8247% +Rate for instruction 19591: 17.8242% +Rate for instruction 19592: 17.8243% +Rate for instruction 19593: 17.8237% +Rate for instruction 19594: 17.8236% +Rate for instruction 19595: 17.8231% +Rate for instruction 19596: 17.823% +Rate for instruction 19597: 17.8227% +Rate for instruction 19598: 17.8231% +Rate for instruction 19599: 17.823% +Rate for instruction 19600: 17.8227% +Rate for instruction 19601: 17.822% +Rate for instruction 19602: 17.8214% +Rate for instruction 19603: 17.8215% +Rate for instruction 19604: 17.8212% +Rate for instruction 19605: 17.8211% +Rate for instruction 19606: 17.8208% +Rate for instruction 19607: 17.8202% +Rate for instruction 19608: 17.8199% +Rate for instruction 19609: 17.8202% +Rate for instruction 19610: 17.8199% +Rate for instruction 19611: 17.8197% +Rate for instruction 19612: 17.8192% +Rate for instruction 19613: 17.8189% +Rate for instruction 19614: 17.8184% +Rate for instruction 19615: 17.8181% +Rate for instruction 19616: 17.8179% +Rate for instruction 19617: 17.8174% +Rate for instruction 19618: 17.8167% +Rate for instruction 19619: 17.8168% +Rate for instruction 19620: 17.8163% +Rate for instruction 19621: 17.8167% +Rate for instruction 19622: 17.816% +Rate for instruction 19623: 17.8161% +Rate for instruction 19624: 17.8162% +Rate for instruction 19625: 17.8168% +Rate for instruction 19626: 17.8167% +Rate for instruction 19627: 17.8164% +Rate for instruction 19628: 17.8163% +Rate for instruction 19629: 17.8161% +Rate for instruction 19630: 17.816% +Rate for instruction 19631: 17.8157% +Rate for instruction 19632: 17.8152% +Rate for instruction 19633: 17.8151% +Rate for instruction 19634: 17.8147% +Rate for instruction 19635: 17.815% +Rate for instruction 19636: 17.8147% +Rate for instruction 19637: 17.8142% +Rate for instruction 19638: 17.8138% +Rate for instruction 19639: 17.8133% +Rate for instruction 19640: 17.8134% +Rate for instruction 19641: 17.8131% +Rate for instruction 19642: 17.8128% +Rate for instruction 19643: 17.8121% +Rate for instruction 19644: 17.8113% +Rate for instruction 19645: 17.811% +Rate for instruction 19646: 17.8111% +Rate for instruction 19647: 17.8118% +Rate for instruction 19648: 17.8128% +Rate for instruction 19649: 17.8125% +Rate for instruction 19650: 17.8135% +Rate for instruction 19651: 17.8134% +Rate for instruction 19652: 17.8141% +Rate for instruction 19653: 17.8134% +Rate for instruction 19654: 17.8136% +Rate for instruction 19655: 17.8139% +Rate for instruction 19656: 17.8151% +Rate for instruction 19657: 17.8158% +Rate for instruction 19658: 17.8167% +Rate for instruction 19659: 17.8169% +Rate for instruction 19660: 17.8182% +Rate for instruction 19661: 17.8175% +Rate for instruction 19662: 17.8189% +Rate for instruction 19663: 17.8186% +Rate for instruction 19664: 17.8185% +Rate for instruction 19665: 17.8179% +Rate for instruction 19666: 17.8178% +Rate for instruction 19667: 17.8177% +Rate for instruction 19668: 17.8174% +Rate for instruction 19669: 17.8173% +Rate for instruction 19670: 17.8169% +Rate for instruction 19671: 17.8162% +Rate for instruction 19672: 17.8157% +Rate for instruction 19673: 17.815% +Rate for instruction 19674: 17.8166% +Rate for instruction 19675: 17.8161% +Rate for instruction 19676: 17.8174% +Rate for instruction 19677: 17.8188% +Rate for instruction 19678: 17.8199% +Rate for instruction 19679: 17.8197% +Rate for instruction 19680: 17.8194% +Rate for instruction 19681: 17.8199% +Rate for instruction 19682: 17.8192% +Rate for instruction 19683: 17.8192% +Rate for instruction 19684: 17.8191% +Rate for instruction 19685: 17.8196% +Rate for instruction 19686: 17.8195% +Rate for instruction 19687: 17.8199% +Rate for instruction 19688: 17.8202% +Rate for instruction 19689: 17.8195% +Rate for instruction 19690: 17.8195% +Rate for instruction 19691: 17.8196% +Rate for instruction 19692: 17.8193% +Rate for instruction 19693: 17.8201% +Rate for instruction 19694: 17.8196% +Rate for instruction 19695: 17.8209% +Rate for instruction 19696: 17.8223% +Rate for instruction 19697: 17.8222% +Rate for instruction 19698: 17.8225% +Rate for instruction 19699: 17.8221% +Rate for instruction 19700: 17.823% +Rate for instruction 19701: 17.8229% +Rate for instruction 19702: 17.8227% +Rate for instruction 19703: 17.822% +Rate for instruction 19704: 17.8215% +Rate for instruction 19705: 17.8208% +Rate for instruction 19706: 17.8205% +Rate for instruction 19707: 17.8198% +Rate for instruction 19708: 17.8193% +Rate for instruction 19709: 17.8203% +Rate for instruction 19710: 17.8202% +Rate for instruction 19711: 17.8199% +Rate for instruction 19712: 17.8194% +Rate for instruction 19713: 17.8194% +Rate for instruction 19714: 17.8191% +Rate for instruction 19715: 17.8194% +Rate for instruction 19716: 17.8191% +Rate for instruction 19717: 17.8189% +Rate for instruction 19718: 17.8186% +Rate for instruction 19719: 17.8181% +Rate for instruction 19720: 17.8178% +Rate for instruction 19721: 17.8171% +Rate for instruction 19722: 17.817% +Rate for instruction 19723: 17.8172% +Rate for instruction 19724: 17.8173% +Rate for instruction 19725: 17.8172% +Rate for instruction 19726: 17.8165% +Rate for instruction 19727: 17.8163% +Rate for instruction 19728: 17.816% +Rate for instruction 19729: 17.8161% +Rate for instruction 19730: 17.8162% +Rate for instruction 19731: 17.8172% +Rate for instruction 19732: 17.8183% +Rate for instruction 19733: 17.8181% +Rate for instruction 19734: 17.8182% +Rate for instruction 19735: 17.8177% +Rate for instruction 19736: 17.8176% +Rate for instruction 19737: 17.8169% +Rate for instruction 19738: 17.8163% +Rate for instruction 19739: 17.8178% +Rate for instruction 19740: 17.8171% +Rate for instruction 19741: 17.8183% +Rate for instruction 19742: 17.8178% +Rate for instruction 19743: 17.8177% +Rate for instruction 19744: 17.8178% +Rate for instruction 19745: 17.817% +Rate for instruction 19746: 17.8167% +Rate for instruction 19747: 17.8168% +Rate for instruction 19748: 17.8169% +Rate for instruction 19749: 17.8167% +Rate for instruction 19750: 17.8168% +Rate for instruction 19751: 17.8165% +Rate for instruction 19752: 17.8164% +Rate for instruction 19753: 17.8165% +Rate for instruction 19754: 17.8165% +Rate for instruction 19755: 17.816% +Rate for instruction 19756: 17.8157% +Rate for instruction 19757: 17.8152% +Rate for instruction 19758: 17.8147% +Rate for instruction 19759: 17.8143% +Rate for instruction 19760: 17.8138% +Rate for instruction 19761: 17.8135% +Rate for instruction 19762: 17.8134% +Rate for instruction 19763: 17.8129% +Rate for instruction 19764: 17.8122% +Rate for instruction 19765: 17.813% +Rate for instruction 19766: 17.8135% +Rate for instruction 19767: 17.8128% +Rate for instruction 19768: 17.8125% +Rate for instruction 19769: 17.8123% +Rate for instruction 19770: 17.8122% +Rate for instruction 19771: 17.8137% +Rate for instruction 19772: 17.8151% +Rate for instruction 19773: 17.8146% +Rate for instruction 19774: 17.8143% +Rate for instruction 19775: 17.8145% +Rate for instruction 19776: 17.8158% +Rate for instruction 19777: 17.8152% +Rate for instruction 19778: 17.8147% +Rate for instruction 19779: 17.8154% +Rate for instruction 19780: 17.8147% +Rate for instruction 19781: 17.814% +Rate for instruction 19782: 17.8144% +Rate for instruction 19783: 17.8149% +Rate for instruction 19784: 17.8142% +Rate for instruction 19785: 17.8152% +Rate for instruction 19786: 17.8163% +Rate for instruction 19787: 17.8175% +Rate for instruction 19788: 17.8172% +Rate for instruction 19789: 17.8175% +Rate for instruction 19790: 17.8179% +Rate for instruction 19791: 17.8184% +Rate for instruction 19792: 17.8198% +Rate for instruction 19793: 17.8197% +Rate for instruction 19794: 17.8194% +Rate for instruction 19795: 17.8191% +Rate for instruction 19796: 17.8203% +Rate for instruction 19797: 17.8215% +Rate for instruction 19798: 17.8208% +Rate for instruction 19799: 17.8201% +Rate for instruction 19800: 17.8198% +Rate for instruction 19801: 17.8191% +Rate for instruction 19802: 17.819% +Rate for instruction 19803: 17.8206% +Rate for instruction 19804: 17.8205% +Rate for instruction 19805: 17.8219% +Rate for instruction 19806: 17.8212% +Rate for instruction 19807: 17.8205% +Rate for instruction 19808: 17.8204% +Rate for instruction 19809: 17.8203% +Rate for instruction 19810: 17.8199% +Rate for instruction 19811: 17.8208% +Rate for instruction 19812: 17.8207% +Rate for instruction 19813: 17.8215% +Rate for instruction 19814: 17.8212% +Rate for instruction 19815: 17.822% +Rate for instruction 19816: 17.8217% +Rate for instruction 19817: 17.821% +Rate for instruction 19818: 17.8203% +Rate for instruction 19819: 17.8202% +Rate for instruction 19820: 17.8214% +Rate for instruction 19821: 17.8217% +Rate for instruction 19822: 17.821% +Rate for instruction 19823: 17.8218% +Rate for instruction 19824: 17.8231% +Rate for instruction 19825: 17.8237% +Rate for instruction 19826: 17.824% +Rate for instruction 19827: 17.8233% +Rate for instruction 19828: 17.823% +Rate for instruction 19829: 17.8223% +Rate for instruction 19830: 17.8217% +Rate for instruction 19831: 17.821% +Rate for instruction 19832: 17.8211% +Rate for instruction 19833: 17.821% +Rate for instruction 19834: 17.8205% +Rate for instruction 19835: 17.8221% +Rate for instruction 19836: 17.8231% +Rate for instruction 19837: 17.8246% +Rate for instruction 19838: 17.8262% +Rate for instruction 19839: 17.8274% +Rate for instruction 19840: 17.8285% +Rate for instruction 19841: 17.8293% +Rate for instruction 19842: 17.8296% +Rate for instruction 19843: 17.831% +Rate for instruction 19844: 17.8307% +Rate for instruction 19845: 17.8321% +Rate for instruction 19846: 17.8335% +Rate for instruction 19847: 17.8336% +Rate for instruction 19848: 17.8331% +Rate for instruction 19849: 17.8343% +Rate for instruction 19850: 17.8356% +Rate for instruction 19851: 17.8354% +Rate for instruction 19852: 17.8349% +Rate for instruction 19853: 17.8342% +Rate for instruction 19854: 17.8343% +Rate for instruction 19855: 17.8342% +Rate for instruction 19856: 17.8339% +Rate for instruction 19857: 17.8347% +Rate for instruction 19858: 17.8357% +Rate for instruction 19859: 17.8362% +Rate for instruction 19860: 17.8357% +Rate for instruction 19861: 17.8352% +Rate for instruction 19862: 17.8345% +Rate for instruction 19863: 17.8344% +Rate for instruction 19864: 17.8336% +Rate for instruction 19865: 17.8341% +Rate for instruction 19866: 17.8344% +Rate for instruction 19867: 17.8341% +Rate for instruction 19868: 17.8343% +Rate for instruction 19869: 17.8348% +Rate for instruction 19870: 17.8346% +Rate for instruction 19871: 17.8353% +Rate for instruction 19872: 17.8363% +Rate for instruction 19873: 17.8378% +Rate for instruction 19874: 17.8388% +Rate for instruction 19875: 17.8395% +Rate for instruction 19876: 17.8401% +Rate for instruction 19877: 17.8398% +Rate for instruction 19878: 17.8402% +Rate for instruction 19879: 17.8403% +Rate for instruction 19880: 17.8398% +Rate for instruction 19881: 17.8397% +Rate for instruction 19882: 17.8413% +Rate for instruction 19883: 17.8416% +Rate for instruction 19884: 17.8409% +Rate for instruction 19885: 17.8405% +Rate for instruction 19886: 17.84% +Rate for instruction 19887: 17.8401% +Rate for instruction 19888: 17.8396% +Rate for instruction 19889: 17.8391% +Rate for instruction 19890: 17.839% +Rate for instruction 19891: 17.8384% +Rate for instruction 19892: 17.8395% +Rate for instruction 19893: 17.8405% +Rate for instruction 19894: 17.841% +Rate for instruction 19895: 17.8414% +Rate for instruction 19896: 17.8417% +Rate for instruction 19897: 17.842% +Rate for instruction 19898: 17.8416% +Rate for instruction 19899: 17.8413% +Rate for instruction 19900: 17.8412% +Rate for instruction 19901: 17.8407% +Rate for instruction 19902: 17.8402% +Rate for instruction 19903: 17.8402% +Rate for instruction 19904: 17.8403% +Rate for instruction 19905: 17.8406% +Rate for instruction 19906: 17.8418% +Rate for instruction 19907: 17.843% +Rate for instruction 19908: 17.8425% +Rate for instruction 19909: 17.842% +Rate for instruction 19910: 17.8431% +Rate for instruction 19911: 17.8427% +Rate for instruction 19912: 17.8438% +Rate for instruction 19913: 17.8431% +Rate for instruction 19914: 17.8428% +Rate for instruction 19915: 17.8424% +Rate for instruction 19916: 17.8429% +Rate for instruction 19917: 17.8422% +Rate for instruction 19918: 17.8417% +Rate for instruction 19919: 17.8418% +Rate for instruction 19920: 17.8424% +Rate for instruction 19921: 17.8423% +Rate for instruction 19922: 17.8418% +Rate for instruction 19923: 17.8415% +Rate for instruction 19924: 17.8421% +Rate for instruction 19925: 17.8429% +Rate for instruction 19926: 17.8438% +Rate for instruction 19927: 17.8437% +Rate for instruction 19928: 17.8435% +Rate for instruction 19929: 17.8438% +Rate for instruction 19930: 17.8439% +Rate for instruction 19931: 17.8434% +Rate for instruction 19932: 17.8442% +Rate for instruction 19933: 17.8435% +Rate for instruction 19934: 17.843% +Rate for instruction 19935: 17.8434% +Rate for instruction 19936: 17.8431% +Rate for instruction 19937: 17.844% +Rate for instruction 19938: 17.8435% +Rate for instruction 19939: 17.8447% +Rate for instruction 19940: 17.8451% +Rate for instruction 19941: 17.8462% +Rate for instruction 19942: 17.8472% +Rate for instruction 19943: 17.8467% +Rate for instruction 19944: 17.847% +Rate for instruction 19945: 17.8472% +Rate for instruction 19946: 17.8473% +Rate for instruction 19947: 17.8479% +Rate for instruction 19948: 17.8476% +Rate for instruction 19949: 17.8479% +Rate for instruction 19950: 17.8485% +Rate for instruction 19951: 17.849% +Rate for instruction 19952: 17.8483% +Rate for instruction 19953: 17.8486% +Rate for instruction 19954: 17.8478% +Rate for instruction 19955: 17.8483% +Rate for instruction 19956: 17.8495% +Rate for instruction 19957: 17.8504% +Rate for instruction 19958: 17.8516% +Rate for instruction 19959: 17.8509% +Rate for instruction 19960: 17.8521% +Rate for instruction 19961: 17.852% +Rate for instruction 19962: 17.8519% +Rate for instruction 19963: 17.8519% +Rate for instruction 19964: 17.8526% +Rate for instruction 19965: 17.8525% +Rate for instruction 19966: 17.8529% +Rate for instruction 19967: 17.8536% +Rate for instruction 19968: 17.8546% +Rate for instruction 19969: 17.8551% +Rate for instruction 19970: 17.8557% +Rate for instruction 19971: 17.855% +Rate for instruction 19972: 17.8562% +Rate for instruction 19973: 17.8557% +Rate for instruction 19974: 17.8552% +Rate for instruction 19975: 17.8559% +Rate for instruction 19976: 17.8565% +Rate for instruction 19977: 17.8562% +Rate for instruction 19978: 17.857% +Rate for instruction 19979: 17.8577% +Rate for instruction 19980: 17.8583% +Rate for instruction 19981: 17.858% +Rate for instruction 19982: 17.8579% +Rate for instruction 19983: 17.8576% +Rate for instruction 19984: 17.857% +Rate for instruction 19985: 17.8577% +Rate for instruction 19986: 17.8583% +Rate for instruction 19987: 17.8588% +Rate for instruction 19988: 17.8592% +Rate for instruction 19989: 17.8585% +Rate for instruction 19990: 17.8596% +Rate for instruction 19991: 17.8596% +Rate for instruction 19992: 17.8613% +Rate for instruction 19993: 17.8611% +Rate for instruction 19994: 17.8604% +Rate for instruction 19995: 17.8611% +Rate for instruction 19996: 17.8623% +Rate for instruction 19997: 17.8639% +Rate for instruction 19998: 17.8651% +Rate for instruction 19999: 17.8648% +Rate for instruction 20000: 17.8655% +Rate for instruction 20001: 17.8648% +Rate for instruction 20002: 17.8656% +Rate for instruction 20003: 17.8651% +Rate for instruction 20004: 17.865% +Rate for instruction 20005: 17.8652% +Rate for instruction 20006: 17.8655% +Rate for instruction 20007: 17.8648% +Rate for instruction 20008: 17.8643% +Rate for instruction 20009: 17.8638% +Rate for instruction 20010: 17.8631% +Rate for instruction 20011: 17.8633% +Rate for instruction 20012: 17.8626% +Rate for instruction 20013: 17.8621% +Rate for instruction 20014: 17.862% +Rate for instruction 20015: 17.8626% +Rate for instruction 20016: 17.8633% +Rate for instruction 20017: 17.8641% +Rate for instruction 20018: 17.8648% +Rate for instruction 20019: 17.865% +Rate for instruction 20020: 17.8643% +Rate for instruction 20021: 17.8642% +Rate for instruction 20022: 17.8635% +Rate for instruction 20023: 17.8643% +Rate for instruction 20024: 17.8636% +Rate for instruction 20025: 17.8633% +Rate for instruction 20026: 17.863% +Rate for instruction 20027: 17.8644% +Rate for instruction 20028: 17.8645% +Rate for instruction 20029: 17.8644% +Rate for instruction 20030: 17.8652% +Rate for instruction 20031: 17.8651% +Rate for instruction 20032: 17.8649% +Rate for instruction 20033: 17.8646% +Rate for instruction 20034: 17.8641% +Rate for instruction 20035: 17.8638% +Rate for instruction 20036: 17.8631% +Rate for instruction 20037: 17.8638% +Rate for instruction 20038: 17.8636% +Rate for instruction 20039: 17.8641% +Rate for instruction 20040: 17.8638% +Rate for instruction 20041: 17.8631% +Rate for instruction 20042: 17.8627% +Rate for instruction 20043: 17.8634% +Rate for instruction 20044: 17.8631% +Rate for instruction 20045: 17.8624% +Rate for instruction 20046: 17.8623% +Rate for instruction 20047: 17.8629% +Rate for instruction 20048: 17.8634% +Rate for instruction 20049: 17.8642% +Rate for instruction 20050: 17.8641% +Rate for instruction 20051: 17.8634% +Rate for instruction 20052: 17.8629% +Rate for instruction 20053: 17.8625% +Rate for instruction 20054: 17.862% +Rate for instruction 20055: 17.8627% +Rate for instruction 20056: 17.8635% +Rate for instruction 20057: 17.8634% +Rate for instruction 20058: 17.8638% +Rate for instruction 20059: 17.8643% +Rate for instruction 20060: 17.8644% +Rate for instruction 20061: 17.864% +Rate for instruction 20062: 17.8641% +Rate for instruction 20063: 17.8638% +Rate for instruction 20064: 17.8642% +Rate for instruction 20065: 17.8637% +Rate for instruction 20066: 17.864% +Rate for instruction 20067: 17.8639% +Rate for instruction 20068: 17.8632% +Rate for instruction 20069: 17.8631% +Rate for instruction 20070: 17.8627% +Rate for instruction 20071: 17.8638% +Rate for instruction 20072: 17.8633% +Rate for instruction 20073: 17.8637% +Rate for instruction 20074: 17.8644% +Rate for instruction 20075: 17.8638% +Rate for instruction 20076: 17.8641% +Rate for instruction 20077: 17.8636% +Rate for instruction 20078: 17.8639% +Rate for instruction 20079: 17.8637% +Rate for instruction 20080: 17.8646% +Rate for instruction 20081: 17.8643% +Rate for instruction 20082: 17.8636% +Rate for instruction 20083: 17.8631% +Rate for instruction 20084: 17.8637% +Rate for instruction 20085: 17.8634% +Rate for instruction 20086: 17.8631% +Rate for instruction 20087: 17.8624% +Rate for instruction 20088: 17.8632% +Rate for instruction 20089: 17.8627% +Rate for instruction 20090: 17.8622% +Rate for instruction 20091: 17.8615% +Rate for instruction 20092: 17.8616% +Rate for instruction 20093: 17.8612% +Rate for instruction 20094: 17.8617% +Rate for instruction 20095: 17.8623% +Rate for instruction 20096: 17.8622% +Rate for instruction 20097: 17.8625% +Rate for instruction 20098: 17.8629% +Rate for instruction 20099: 17.8632% +Rate for instruction 20100: 17.8638% +Rate for instruction 20101: 17.8637% +Rate for instruction 20102: 17.8645% +Rate for instruction 20103: 17.864% +Rate for instruction 20104: 17.8645% +Rate for instruction 20105: 17.8647% +Rate for instruction 20106: 17.8646% +Rate for instruction 20107: 17.8647% +Rate for instruction 20108: 17.8648% +Rate for instruction 20109: 17.8641% +Rate for instruction 20110: 17.8647% +Rate for instruction 20111: 17.8644% +Rate for instruction 20112: 17.865% +Rate for instruction 20113: 17.8643% +Rate for instruction 20114: 17.864% +Rate for instruction 20115: 17.8645% +Rate for instruction 20116: 17.8659% +Rate for instruction 20117: 17.8669% +Rate for instruction 20118: 17.8677% +Rate for instruction 20119: 17.8676% +Rate for instruction 20120: 17.8682% +Rate for instruction 20121: 17.8681% +Rate for instruction 20122: 17.8691% +Rate for instruction 20123: 17.87% +Rate for instruction 20124: 17.8695% +Rate for instruction 20125: 17.8692% +Rate for instruction 20126: 17.869% +Rate for instruction 20127: 17.8699% +Rate for instruction 20128: 17.8705% +Rate for instruction 20129: 17.87% +Rate for instruction 20130: 17.8693% +Rate for instruction 20131: 17.8705% +Rate for instruction 20132: 17.8713% +Rate for instruction 20133: 17.8722% +Rate for instruction 20134: 17.873% +Rate for instruction 20135: 17.8727% +Rate for instruction 20136: 17.8733% +Rate for instruction 20137: 17.8738% +Rate for instruction 20138: 17.8731% +Rate for instruction 20139: 17.8733% +Rate for instruction 20140: 17.8738% +Rate for instruction 20141: 17.8733% +Rate for instruction 20142: 17.8732% +Rate for instruction 20143: 17.8727% +Rate for instruction 20144: 17.8733% +Rate for instruction 20145: 17.8726% +Rate for instruction 20146: 17.8738% +Rate for instruction 20147: 17.8747% +Rate for instruction 20148: 17.8762% +Rate for instruction 20149: 17.8771% +Rate for instruction 20150: 17.8773% +Rate for instruction 20151: 17.878% +Rate for instruction 20152: 17.878% +Rate for instruction 20153: 17.8779% +Rate for instruction 20154: 17.8784% +Rate for instruction 20155: 17.8777% +Rate for instruction 20156: 17.877% +Rate for instruction 20157: 17.8767% +Rate for instruction 20158: 17.876% +Rate for instruction 20159: 17.8755% +Rate for instruction 20160: 17.8748% +Rate for instruction 20161: 17.875% +Rate for instruction 20162: 17.8747% +Rate for instruction 20163: 17.8748% +Rate for instruction 20164: 17.8745% +Rate for instruction 20165: 17.8745% +Rate for instruction 20166: 17.8748% +Rate for instruction 20167: 17.875% +Rate for instruction 20168: 17.8749% +Rate for instruction 20169: 17.8744% +Rate for instruction 20170: 17.8751% +Rate for instruction 20171: 17.8757% +Rate for instruction 20172: 17.8759% +Rate for instruction 20173: 17.8756% +Rate for instruction 20174: 17.8763% +Rate for instruction 20175: 17.8763% +Rate for instruction 20176: 17.8766% +Rate for instruction 20177: 17.8767% +Rate for instruction 20178: 17.8762% +Rate for instruction 20179: 17.8766% +Rate for instruction 20180: 17.8769% +Rate for instruction 20181: 17.8777% +Rate for instruction 20182: 17.8783% +Rate for instruction 20183: 17.8784% +Rate for instruction 20184: 17.8785% +Rate for instruction 20185: 17.878% +Rate for instruction 20186: 17.8773% +Rate for instruction 20187: 17.8777% +Rate for instruction 20188: 17.878% +Rate for instruction 20189: 17.8784% +Rate for instruction 20190: 17.8783% +Rate for instruction 20191: 17.878% +Rate for instruction 20192: 17.8775% +Rate for instruction 20193: 17.8777% +Rate for instruction 20194: 17.878% +Rate for instruction 20195: 17.8779% +Rate for instruction 20196: 17.8776% +Rate for instruction 20197: 17.8774% +Rate for instruction 20198: 17.8773% +Rate for instruction 20199: 17.877% +Rate for instruction 20200: 17.8765% +Rate for instruction 20201: 17.8762% +Rate for instruction 20202: 17.8761% +Rate for instruction 20203: 17.8763% +Rate for instruction 20204: 17.8762% +Rate for instruction 20205: 17.8763% +Rate for instruction 20206: 17.8761% +Rate for instruction 20207: 17.876% +Rate for instruction 20208: 17.8761% +Rate for instruction 20209: 17.8756% +Rate for instruction 20210: 17.8749% +Rate for instruction 20211: 17.8751% +Rate for instruction 20212: 17.8746% +Rate for instruction 20213: 17.8745% +Rate for instruction 20214: 17.874% +Rate for instruction 20215: 17.875% +Rate for instruction 20216: 17.8759% +Rate for instruction 20217: 17.8759% +Rate for instruction 20218: 17.8754% +Rate for instruction 20219: 17.8753% +Rate for instruction 20220: 17.875% +Rate for instruction 20221: 17.8747% +Rate for instruction 20222: 17.8744% +Rate for instruction 20223: 17.8744% +Rate for instruction 20224: 17.8741% +Rate for instruction 20225: 17.8736% +Rate for instruction 20226: 17.8744% +Rate for instruction 20227: 17.8743% +Rate for instruction 20228: 17.874% +Rate for instruction 20229: 17.8735% +Rate for instruction 20230: 17.8749% +Rate for instruction 20231: 17.8744% +Rate for instruction 20232: 17.8737% +Rate for instruction 20233: 17.8738% +Rate for instruction 20234: 17.8736% +Rate for instruction 20235: 17.8743% +Rate for instruction 20236: 17.8742% +Rate for instruction 20237: 17.8744% +Rate for instruction 20238: 17.8741% +Rate for instruction 20239: 17.8742% +Rate for instruction 20240: 17.8746% +Rate for instruction 20241: 17.8745% +Rate for instruction 20242: 17.8747% +Rate for instruction 20243: 17.8746% +Rate for instruction 20244: 17.8743% +Rate for instruction 20245: 17.8736% +Rate for instruction 20246: 17.8735% +Rate for instruction 20247: 17.8732% +Rate for instruction 20248: 17.8727% +Rate for instruction 20249: 17.8722% +Rate for instruction 20250: 17.8719% +Rate for instruction 20251: 17.8715% +Rate for instruction 20252: 17.8716% +Rate for instruction 20253: 17.8713% +Rate for instruction 20254: 17.8718% +Rate for instruction 20255: 17.8718% +Rate for instruction 20256: 17.8728% +Rate for instruction 20257: 17.8737% +Rate for instruction 20258: 17.873% +Rate for instruction 20259: 17.8736% +Rate for instruction 20260: 17.8741% +Rate for instruction 20261: 17.8747% +Rate for instruction 20262: 17.8749% +Rate for instruction 20263: 17.875% +Rate for instruction 20264: 17.8747% +Rate for instruction 20265: 17.875% +Rate for instruction 20266: 17.8745% +Rate for instruction 20267: 17.8749% +Rate for instruction 20268: 17.8746% +Rate for instruction 20269: 17.8739% +Rate for instruction 20270: 17.8736% +Rate for instruction 20271: 17.8731% +Rate for instruction 20272: 17.8724% +Rate for instruction 20273: 17.8721% +Rate for instruction 20274: 17.8714% +Rate for instruction 20275: 17.8716% +Rate for instruction 20276: 17.8713% +Rate for instruction 20277: 17.8712% +Rate for instruction 20278: 17.8711% +Rate for instruction 20279: 17.8706% +Rate for instruction 20280: 17.8703% +Rate for instruction 20281: 17.8696% +Rate for instruction 20282: 17.8693% +Rate for instruction 20283: 17.8691% +Rate for instruction 20284: 17.8696% +Rate for instruction 20285: 17.8693% +Rate for instruction 20286: 17.8688% +Rate for instruction 20287: 17.8687% +Rate for instruction 20288: 17.8685% +Rate for instruction 20289: 17.8692% +Rate for instruction 20290: 17.8694% +Rate for instruction 20291: 17.8695% +Rate for instruction 20292: 17.8697% +Rate for instruction 20293: 17.8691% +Rate for instruction 20294: 17.8689% +Rate for instruction 20295: 17.8682% +Rate for instruction 20296: 17.8685% +Rate for instruction 20297: 17.868% +Rate for instruction 20298: 17.8681% +Rate for instruction 20299: 17.8676% +Rate for instruction 20300: 17.8678% +Rate for instruction 20301: 17.8673% +Rate for instruction 20302: 17.8668% +Rate for instruction 20303: 17.8667% +Rate for instruction 20304: 17.867% +Rate for instruction 20305: 17.8666% +Rate for instruction 20306: 17.8661% +Rate for instruction 20307: 17.866% +Rate for instruction 20308: 17.8665% +Rate for instruction 20309: 17.8665% +Rate for instruction 20310: 17.8664% +Rate for instruction 20311: 17.8665% +Rate for instruction 20312: 17.866% +Rate for instruction 20313: 17.8664% +Rate for instruction 20314: 17.8661% +Rate for instruction 20315: 17.8654% +Rate for instruction 20316: 17.8653% +Rate for instruction 20317: 17.865% +Rate for instruction 20318: 17.8649% +Rate for instruction 20319: 17.8651% +Rate for instruction 20320: 17.8661% +Rate for instruction 20321: 17.8666% +Rate for instruction 20322: 17.8666% +Rate for instruction 20323: 17.866% +Rate for instruction 20324: 17.8658% +Rate for instruction 20325: 17.8655% +Rate for instruction 20326: 17.8654% +Rate for instruction 20327: 17.8653% +Rate for instruction 20328: 17.8646% +Rate for instruction 20329: 17.8652% +Rate for instruction 20330: 17.8659% +Rate for instruction 20331: 17.8654% +Rate for instruction 20332: 17.8649% +Rate for instruction 20333: 17.8651% +Rate for instruction 20334: 17.8648% +Rate for instruction 20335: 17.8652% +Rate for instruction 20336: 17.8661% +Rate for instruction 20337: 17.8658% +Rate for instruction 20338: 17.8654% +Rate for instruction 20339: 17.8665% +Rate for instruction 20340: 17.8671% +Rate for instruction 20341: 17.8666% +Rate for instruction 20342: 17.867% +Rate for instruction 20343: 17.8679% +Rate for instruction 20344: 17.8674% +Rate for instruction 20345: 17.8669% +Rate for instruction 20346: 17.8662% +Rate for instruction 20347: 17.8661% +Rate for instruction 20348: 17.8657% +Rate for instruction 20349: 17.8656% +Rate for instruction 20350: 17.8655% +Rate for instruction 20351: 17.8654% +Rate for instruction 20352: 17.8658% +Rate for instruction 20353: 17.8657% +Rate for instruction 20354: 17.865% +Rate for instruction 20355: 17.8651% +Rate for instruction 20356: 17.8655% +Rate for instruction 20357: 17.865% +Rate for instruction 20358: 17.8645% +Rate for instruction 20359: 17.8638% +Rate for instruction 20360: 17.8648% +Rate for instruction 20361: 17.8643% +Rate for instruction 20362: 17.8652% +Rate for instruction 20363: 17.8652% +Rate for instruction 20364: 17.8659% +Rate for instruction 20365: 17.8652% +Rate for instruction 20366: 17.8654% +Rate for instruction 20367: 17.8659% +Rate for instruction 20368: 17.8658% +Rate for instruction 20369: 17.8651% +Rate for instruction 20370: 17.8646% +Rate for instruction 20371: 17.8639% +Rate for instruction 20372: 17.8636% +Rate for instruction 20373: 17.8629% +Rate for instruction 20374: 17.8624% +Rate for instruction 20375: 17.8617% +Rate for instruction 20376: 17.8618% +Rate for instruction 20377: 17.8613% +Rate for instruction 20378: 17.8611% +Rate for instruction 20379: 17.8608% +Rate for instruction 20380: 17.8601% +Rate for instruction 20381: 17.8596% +Rate for instruction 20382: 17.8599% +Rate for instruction 20383: 17.8592% +Rate for instruction 20384: 17.8593% +Rate for instruction 20385: 17.859% +Rate for instruction 20386: 17.8589% +Rate for instruction 20387: 17.8582% +Rate for instruction 20388: 17.8586% +Rate for instruction 20389: 17.8587% +Rate for instruction 20390: 17.8582% +Rate for instruction 20391: 17.8577% +Rate for instruction 20392: 17.8574% +Rate for instruction 20393: 17.8578% +Rate for instruction 20394: 17.8571% +Rate for instruction 20395: 17.857% +Rate for instruction 20396: 17.8569% +Rate for instruction 20397: 17.8573% +Rate for instruction 20398: 17.857% +Rate for instruction 20399: 17.8571% +Rate for instruction 20400: 17.8575% +Rate for instruction 20401: 17.8582% +Rate for instruction 20402: 17.8575% +Rate for instruction 20403: 17.8574% +Rate for instruction 20404: 17.8576% +Rate for instruction 20405: 17.8573% +Rate for instruction 20406: 17.857% +Rate for instruction 20407: 17.8569% +Rate for instruction 20408: 17.8569% +Rate for instruction 20409: 17.8566% +Rate for instruction 20410: 17.8569% +Rate for instruction 20411: 17.8571% +Rate for instruction 20412: 17.8576% +Rate for instruction 20413: 17.8578% +Rate for instruction 20414: 17.8575% +Rate for instruction 20415: 17.858% +Rate for instruction 20416: 17.8573% +Rate for instruction 20417: 17.8574% +Rate for instruction 20418: 17.857% +Rate for instruction 20419: 17.8571% +Rate for instruction 20420: 17.8566% +Rate for instruction 20421: 17.8573% +Rate for instruction 20422: 17.8569% +Rate for instruction 20423: 17.8566% +Rate for instruction 20424: 17.8559% +Rate for instruction 20425: 17.856% +Rate for instruction 20426: 17.8561% +Rate for instruction 20427: 17.8561% +Rate for instruction 20428: 17.856% +Rate for instruction 20429: 17.8559% +Rate for instruction 20430: 17.8558% +Rate for instruction 20431: 17.8559% +Rate for instruction 20432: 17.8557% +Rate for instruction 20433: 17.856% +Rate for instruction 20434: 17.8557% +Rate for instruction 20435: 17.8554% +Rate for instruction 20436: 17.8551% +Rate for instruction 20437: 17.8544% +Rate for instruction 20438: 17.8537% +Rate for instruction 20439: 17.8541% +Rate for instruction 20440: 17.8548% +Rate for instruction 20441: 17.8558% +Rate for instruction 20442: 17.8558% +Rate for instruction 20443: 17.8559% +Rate for instruction 20444: 17.8558% +Rate for instruction 20445: 17.8566% +Rate for instruction 20446: 17.8574% +Rate for instruction 20447: 17.8573% +Rate for instruction 20448: 17.8579% +Rate for instruction 20449: 17.8573% +Rate for instruction 20450: 17.8568% +Rate for instruction 20451: 17.8563% +Rate for instruction 20452: 17.8556% +Rate for instruction 20453: 17.8551% +Rate for instruction 20454: 17.8546% +Rate for instruction 20455: 17.8543% +Rate for instruction 20456: 17.8538% +Rate for instruction 20457: 17.8531% +Rate for instruction 20458: 17.8535% +Rate for instruction 20459: 17.854% +Rate for instruction 20460: 17.8546% +Rate for instruction 20461: 17.8558% +Rate for instruction 20462: 17.8564% +Rate for instruction 20463: 17.8557% +Rate for instruction 20464: 17.8564% +Rate for instruction 20465: 17.8557% +Rate for instruction 20466: 17.8552% +Rate for instruction 20467: 17.8551% +Rate for instruction 20468: 17.8557% +Rate for instruction 20469: 17.855% +Rate for instruction 20470: 17.8562% +Rate for instruction 20471: 17.8567% +Rate for instruction 20472: 17.8571% +Rate for instruction 20473: 17.8566% +Rate for instruction 20474: 17.857% +Rate for instruction 20475: 17.8567% +Rate for instruction 20476: 17.8576% +Rate for instruction 20477: 17.8584% +Rate for instruction 20478: 17.8588% +Rate for instruction 20479: 17.8595% +Rate for instruction 20480: 17.8593% +Rate for instruction 20481: 17.8586% +Rate for instruction 20482: 17.8583% +Rate for instruction 20483: 17.8577% +Rate for instruction 20484: 17.8572% +Rate for instruction 20485: 17.8565% +Rate for instruction 20486: 17.8564% +Rate for instruction 20487: 17.8568% +Rate for instruction 20488: 17.8563% +Rate for instruction 20489: 17.8571% +Rate for instruction 20490: 17.8568% +Rate for instruction 20491: 17.8573% +Rate for instruction 20492: 17.8573% +Rate for instruction 20493: 17.857% +Rate for instruction 20494: 17.8565% +Rate for instruction 20495: 17.8568% +Rate for instruction 20496: 17.8563% +Rate for instruction 20497: 17.8558% +Rate for instruction 20498: 17.8562% +Rate for instruction 20499: 17.8563% +Rate for instruction 20500: 17.8558% +Rate for instruction 20501: 17.8557% +Rate for instruction 20502: 17.8555% +Rate for instruction 20503: 17.8551% +Rate for instruction 20504: 17.8547% +Rate for instruction 20505: 17.8544% +Rate for instruction 20506: 17.8543% +Rate for instruction 20507: 17.854% +Rate for instruction 20508: 17.8545% +Rate for instruction 20509: 17.854% +Rate for instruction 20510: 17.8536% +Rate for instruction 20511: 17.8533% +Rate for instruction 20512: 17.8543% +Rate for instruction 20513: 17.8553% +Rate for instruction 20514: 17.855% +Rate for instruction 20515: 17.8551% +Rate for instruction 20516: 17.8548% +Rate for instruction 20517: 17.8551% +Rate for instruction 20518: 17.8547% +Rate for instruction 20519: 17.8546% +Rate for instruction 20520: 17.8539% +Rate for instruction 20521: 17.8534% +Rate for instruction 20522: 17.8535% +Rate for instruction 20523: 17.8536% +Rate for instruction 20524: 17.8535% +Rate for instruction 20525: 17.8532% +Rate for instruction 20526: 17.8536% +Rate for instruction 20527: 17.8539% +Rate for instruction 20528: 17.8535% +Rate for instruction 20529: 17.8532% +Rate for instruction 20530: 17.8539% +Rate for instruction 20531: 17.8537% +Rate for instruction 20532: 17.8532% +Rate for instruction 20533: 17.8526% +Rate for instruction 20534: 17.853% +Rate for instruction 20535: 17.8527% +Rate for instruction 20536: 17.8522% +Rate for instruction 20537: 17.8526% +Rate for instruction 20538: 17.8522% +Rate for instruction 20539: 17.852% +Rate for instruction 20540: 17.8515% +Rate for instruction 20541: 17.851% +Rate for instruction 20542: 17.8505% +Rate for instruction 20543: 17.8512% +Rate for instruction 20544: 17.8522% +Rate for instruction 20545: 17.8532% +Rate for instruction 20546: 17.8527% +Rate for instruction 20547: 17.852% +Rate for instruction 20548: 17.8515% +Rate for instruction 20549: 17.8508% +Rate for instruction 20550: 17.8502% +Rate for instruction 20551: 17.8508% +Rate for instruction 20552: 17.851% +Rate for instruction 20553: 17.8507% +Rate for instruction 20554: 17.8508% +Rate for instruction 20555: 17.8505% +Rate for instruction 20556: 17.8515% +Rate for instruction 20557: 17.8516% +Rate for instruction 20558: 17.8524% +Rate for instruction 20559: 17.8532% +Rate for instruction 20560: 17.8533% +Rate for instruction 20561: 17.8531% +Rate for instruction 20562: 17.8534% +Rate for instruction 20563: 17.8538% +Rate for instruction 20564: 17.8548% +Rate for instruction 20565: 17.8545% +Rate for instruction 20566: 17.8548% +Rate for instruction 20567: 17.8545% +Rate for instruction 20568: 17.8538% +Rate for instruction 20569: 17.8537% +Rate for instruction 20570: 17.8541% +Rate for instruction 20571: 17.8546% +Rate for instruction 20572: 17.8546% +Rate for instruction 20573: 17.8552% +Rate for instruction 20574: 17.8559% +Rate for instruction 20575: 17.8559% +Rate for instruction 20576: 17.8558% +Rate for instruction 20577: 17.8561% +Rate for instruction 20578: 17.8569% +Rate for instruction 20579: 17.857% +Rate for instruction 20580: 17.8576% +Rate for instruction 20581: 17.858% +Rate for instruction 20582: 17.8587% +Rate for instruction 20583: 17.8585% +Rate for instruction 20584: 17.8586% +Rate for instruction 20585: 17.8581% +Rate for instruction 20586: 17.858% +Rate for instruction 20587: 17.8577% +Rate for instruction 20588: 17.8577% +Rate for instruction 20589: 17.858% +Rate for instruction 20590: 17.8577% +Rate for instruction 20591: 17.8576% +Rate for instruction 20592: 17.8578% +Rate for instruction 20593: 17.8579% +Rate for instruction 20594: 17.8578% +Rate for instruction 20595: 17.8578% +Rate for instruction 20596: 17.8577% +Rate for instruction 20597: 17.8572% +Rate for instruction 20598: 17.8573% +Rate for instruction 20599: 17.8568% +Rate for instruction 20600: 17.8565% +Rate for instruction 20601: 17.8564% +Rate for instruction 20602: 17.8559% +Rate for instruction 20603: 17.8556% +Rate for instruction 20604: 17.8553% +Rate for instruction 20605: 17.8557% +Rate for instruction 20606: 17.8556% +Rate for instruction 20607: 17.8558% +Rate for instruction 20608: 17.8555% +Rate for instruction 20609: 17.8562% +Rate for instruction 20610: 17.856% +Rate for instruction 20611: 17.8565% +Rate for instruction 20612: 17.856% +Rate for instruction 20613: 17.8559% +Rate for instruction 20614: 17.8561% +Rate for instruction 20615: 17.8564% +Rate for instruction 20616: 17.857% +Rate for instruction 20617: 17.8571% +Rate for instruction 20618: 17.8569% +Rate for instruction 20619: 17.8579% +Rate for instruction 20620: 17.8576% +Rate for instruction 20621: 17.8584% +Rate for instruction 20622: 17.8594% +Rate for instruction 20623: 17.8593% +Rate for instruction 20624: 17.859% +Rate for instruction 20625: 17.8587% +Rate for instruction 20626: 17.858% +Rate for instruction 20627: 17.8577% +Rate for instruction 20628: 17.8576% +Rate for instruction 20629: 17.8573% +Rate for instruction 20630: 17.857% +Rate for instruction 20631: 17.8565% +Rate for instruction 20632: 17.8562% +Rate for instruction 20633: 17.8563% +Rate for instruction 20634: 17.8558% +Rate for instruction 20635: 17.8557% +Rate for instruction 20636: 17.8561% +Rate for instruction 20637: 17.8573% +Rate for instruction 20638: 17.8575% +Rate for instruction 20639: 17.858% +Rate for instruction 20640: 17.8582% +Rate for instruction 20641: 17.859% +Rate for instruction 20642: 17.8598% +Rate for instruction 20643: 17.8603% +Rate for instruction 20644: 17.8609% +Rate for instruction 20645: 17.8617% +Rate for instruction 20646: 17.8612% +Rate for instruction 20647: 17.8607% +Rate for instruction 20648: 17.8601% +Rate for instruction 20649: 17.8596% +Rate for instruction 20650: 17.8598% +Rate for instruction 20651: 17.8597% +Rate for instruction 20652: 17.8592% +Rate for instruction 20653: 17.8595% +Rate for instruction 20654: 17.8593% +Rate for instruction 20655: 17.8592% +Rate for instruction 20656: 17.8591% +Rate for instruction 20657: 17.8584% +Rate for instruction 20658: 17.8581% +Rate for instruction 20659: 17.8578% +Rate for instruction 20660: 17.8573% +Rate for instruction 20661: 17.857% +Rate for instruction 20662: 17.8565% +Rate for instruction 20663: 17.8566% +Rate for instruction 20664: 17.8565% +Rate for instruction 20665: 17.8563% +Rate for instruction 20666: 17.8562% +Rate for instruction 20667: 17.8557% +Rate for instruction 20668: 17.8552% +Rate for instruction 20669: 17.8551% +Rate for instruction 20670: 17.8544% +Rate for instruction 20671: 17.8538% +Rate for instruction 20672: 17.8536% +Rate for instruction 20673: 17.8533% +Rate for instruction 20674: 17.8527% +Rate for instruction 20675: 17.8522% +Rate for instruction 20676: 17.8524% +Rate for instruction 20677: 17.8529% +Rate for instruction 20678: 17.8537% +Rate for instruction 20679: 17.8532% +Rate for instruction 20680: 17.8544% +Rate for instruction 20681: 17.8546% +Rate for instruction 20682: 17.8541% +Rate for instruction 20683: 17.8538% +Rate for instruction 20684: 17.8531% +Rate for instruction 20685: 17.8525% +Rate for instruction 20686: 17.8527% +Rate for instruction 20687: 17.852% +Rate for instruction 20688: 17.8516% +Rate for instruction 20689: 17.852% +Rate for instruction 20690: 17.8522% +Rate for instruction 20691: 17.8525% +Rate for instruction 20692: 17.8524% +Rate for instruction 20693: 17.8521% +Rate for instruction 20694: 17.852% +Rate for instruction 20695: 17.8513% +Rate for instruction 20696: 17.8506% +Rate for instruction 20697: 17.8501% +Rate for instruction 20698: 17.85% +Rate for instruction 20699: 17.8501% +Rate for instruction 20700: 17.8505% +Rate for instruction 20701: 17.85% +Rate for instruction 20702: 17.8503% +Rate for instruction 20703: 17.8503% +Rate for instruction 20704: 17.8498% +Rate for instruction 20705: 17.8501% +Rate for instruction 20706: 17.8502% +Rate for instruction 20707: 17.8498% +Rate for instruction 20708: 17.8494% +Rate for instruction 20709: 17.8491% +Rate for instruction 20710: 17.8489% +Rate for instruction 20711: 17.849% +Rate for instruction 20712: 17.8485% +Rate for instruction 20713: 17.8484% +Rate for instruction 20714: 17.8479% +Rate for instruction 20715: 17.848% +Rate for instruction 20716: 17.8475% +Rate for instruction 20717: 17.8468% +Rate for instruction 20718: 17.8465% +Rate for instruction 20719: 17.8462% +Rate for instruction 20720: 17.8455% +Rate for instruction 20721: 17.8452% +Rate for instruction 20722: 17.8445% +Rate for instruction 20723: 17.8446% +Rate for instruction 20724: 17.8443% +Rate for instruction 20725: 17.8438% +Rate for instruction 20726: 17.8435% +Rate for instruction 20727: 17.8436% +Rate for instruction 20728: 17.8436% +Rate for instruction 20729: 17.8433% +Rate for instruction 20730: 17.8428% +Rate for instruction 20731: 17.8424% +Rate for instruction 20732: 17.8424% +Rate for instruction 20733: 17.8429% +Rate for instruction 20734: 17.8422% +Rate for instruction 20735: 17.8426% +Rate for instruction 20736: 17.8427% +Rate for instruction 20737: 17.8426% +Rate for instruction 20738: 17.8423% +Rate for instruction 20739: 17.842% +Rate for instruction 20740: 17.8422% +Rate for instruction 20741: 17.8415% +Rate for instruction 20742: 17.8411% +Rate for instruction 20743: 17.8406% +Rate for instruction 20744: 17.8412% +Rate for instruction 20745: 17.8414% +Rate for instruction 20746: 17.8409% +Rate for instruction 20747: 17.8406% +Rate for instruction 20748: 17.8403% +Rate for instruction 20749: 17.84% +Rate for instruction 20750: 17.8395% +Rate for instruction 20751: 17.8389% +Rate for instruction 20752: 17.8382% +Rate for instruction 20753: 17.8375% +Rate for instruction 20754: 17.8374% +Rate for instruction 20755: 17.8377% +Rate for instruction 20756: 17.8374% +Rate for instruction 20757: 17.8372% +Rate for instruction 20758: 17.838% +Rate for instruction 20759: 17.839% +Rate for instruction 20760: 17.8391% +Rate for instruction 20761: 17.839% +Rate for instruction 20762: 17.84% +Rate for instruction 20763: 17.8393% +Rate for instruction 20764: 17.8397% +Rate for instruction 20765: 17.8393% +Rate for instruction 20766: 17.8402% +Rate for instruction 20767: 17.8396% +Rate for instruction 20768: 17.8391% +Rate for instruction 20769: 17.8386% +Rate for instruction 20770: 17.84% +Rate for instruction 20771: 17.8393% +Rate for instruction 20772: 17.8403% +Rate for instruction 20773: 17.8403% +Rate for instruction 20774: 17.8404% +Rate for instruction 20775: 17.8412% +Rate for instruction 20776: 17.842% +Rate for instruction 20777: 17.8428% +Rate for instruction 20778: 17.8427% +Rate for instruction 20779: 17.843% +Rate for instruction 20780: 17.8425% +Rate for instruction 20781: 17.8429% +Rate for instruction 20782: 17.8435% +Rate for instruction 20783: 17.8442% +Rate for instruction 20784: 17.8435% +Rate for instruction 20785: 17.843% +Rate for instruction 20786: 17.8442% +Rate for instruction 20787: 17.845% +Rate for instruction 20788: 17.8449% +Rate for instruction 20789: 17.8444% +Rate for instruction 20790: 17.8446% +Rate for instruction 20791: 17.8454% +Rate for instruction 20792: 17.8462% +Rate for instruction 20793: 17.8459% +Rate for instruction 20794: 17.8464% +Rate for instruction 20795: 17.8472% +Rate for instruction 20796: 17.8465% +Rate for instruction 20797: 17.8462% +Rate for instruction 20798: 17.8463% +Rate for instruction 20799: 17.8467% +Rate for instruction 20800: 17.847% +Rate for instruction 20801: 17.8463% +Rate for instruction 20802: 17.8464% +Rate for instruction 20803: 17.847% +Rate for instruction 20804: 17.8472% +Rate for instruction 20805: 17.8467% +Rate for instruction 20806: 17.8466% +Rate for instruction 20807: 17.8463% +Rate for instruction 20808: 17.8464% +Rate for instruction 20809: 17.8461% +Rate for instruction 20810: 17.8454% +Rate for instruction 20811: 17.8451% +Rate for instruction 20812: 17.8448% +Rate for instruction 20813: 17.8452% +Rate for instruction 20814: 17.8453% +Rate for instruction 20815: 17.845% +Rate for instruction 20816: 17.8447% +Rate for instruction 20817: 17.844% +Rate for instruction 20818: 17.8448% +Rate for instruction 20819: 17.8458% +Rate for instruction 20820: 17.8457% +Rate for instruction 20821: 17.8465% +Rate for instruction 20822: 17.8462% +Rate for instruction 20823: 17.8463% +Rate for instruction 20824: 17.8456% +Rate for instruction 20825: 17.8464% +Rate for instruction 20826: 17.847% +Rate for instruction 20827: 17.8475% +Rate for instruction 20828: 17.8481% +Rate for instruction 20829: 17.8481% +Rate for instruction 20830: 17.8495% +Rate for instruction 20831: 17.8503% +Rate for instruction 20832: 17.8507% +Rate for instruction 20833: 17.8501% +Rate for instruction 20834: 17.8494% +Rate for instruction 20835: 17.8493% +Rate for instruction 20836: 17.8486% +Rate for instruction 20837: 17.8481% +Rate for instruction 20838: 17.8475% +Rate for instruction 20839: 17.8475% +Rate for instruction 20840: 17.8485% +Rate for instruction 20841: 17.8478% +Rate for instruction 20842: 17.8492% +Rate for instruction 20843: 17.8493% +Rate for instruction 20844: 17.8491% +Rate for instruction 20845: 17.8498% +Rate for instruction 20846: 17.8493% +Rate for instruction 20847: 17.849% +Rate for instruction 20848: 17.8487% +Rate for instruction 20849: 17.8487% +Rate for instruction 20850: 17.8482% +Rate for instruction 20851: 17.8489% +Rate for instruction 20852: 17.8489% +Rate for instruction 20853: 17.8486% +Rate for instruction 20854: 17.8487% +Rate for instruction 20855: 17.8493% +Rate for instruction 20856: 17.8498% +Rate for instruction 20857: 17.8495% +Rate for instruction 20858: 17.8495% +Rate for instruction 20859: 17.849% +Rate for instruction 20860: 17.8489% +Rate for instruction 20861: 17.8482% +Rate for instruction 20862: 17.8483% +Rate for instruction 20863: 17.8476% +Rate for instruction 20864: 17.8481% +Rate for instruction 20865: 17.8485% +Rate for instruction 20866: 17.8488% +Rate for instruction 20867: 17.8488% +Rate for instruction 20868: 17.8502% +Rate for instruction 20869: 17.8504% +Rate for instruction 20870: 17.8501% +Rate for instruction 20871: 17.8506% +Rate for instruction 20872: 17.8499% +Rate for instruction 20873: 17.8496% +Rate for instruction 20874: 17.8497% +Rate for instruction 20875: 17.8499% +Rate for instruction 20876: 17.8498% +Rate for instruction 20877: 17.8491% +Rate for instruction 20878: 17.8488% +Rate for instruction 20879: 17.8481% +Rate for instruction 20880: 17.8478% +Rate for instruction 20881: 17.8472% +Rate for instruction 20882: 17.8467% +Rate for instruction 20883: 17.8466% +Rate for instruction 20884: 17.8459% +Rate for instruction 20885: 17.8454% +Rate for instruction 20886: 17.8457% +Rate for instruction 20887: 17.8461% +Rate for instruction 20888: 17.846% +Rate for instruction 20889: 17.8457% +Rate for instruction 20890: 17.8457% +Rate for instruction 20891: 17.8462% +Rate for instruction 20892: 17.8468% +Rate for instruction 20893: 17.8478% +Rate for instruction 20894: 17.8477% +Rate for instruction 20895: 17.8474% +Rate for instruction 20896: 17.8471% +Rate for instruction 20897: 17.8466% +Rate for instruction 20898: 17.8468% +Rate for instruction 20899: 17.8463% +Rate for instruction 20900: 17.8459% +Rate for instruction 20901: 17.8452% +Rate for instruction 20902: 17.8454% +Rate for instruction 20903: 17.8449% +Rate for instruction 20904: 17.845% +Rate for instruction 20905: 17.8447% +Rate for instruction 20906: 17.8442% +Rate for instruction 20907: 17.8441% +Rate for instruction 20908: 17.8442% +Rate for instruction 20909: 17.8441% +Rate for instruction 20910: 17.8439% +Rate for instruction 20911: 17.8442% +Rate for instruction 20912: 17.8444% +Rate for instruction 20913: 17.8447% +Rate for instruction 20914: 17.8444% +Rate for instruction 20915: 17.8441% +Rate for instruction 20916: 17.8434% +Rate for instruction 20917: 17.8431% +Rate for instruction 20918: 17.8432% +Rate for instruction 20919: 17.8434% +Rate for instruction 20920: 17.8439% +Rate for instruction 20921: 17.8445% +Rate for instruction 20922: 17.8449% +Rate for instruction 20923: 17.8454% +Rate for instruction 20924: 17.8456% +Rate for instruction 20925: 17.8457% +Rate for instruction 20926: 17.8465% +Rate for instruction 20927: 17.8462% +Rate for instruction 20928: 17.8466% +Rate for instruction 20929: 17.8459% +Rate for instruction 20930: 17.8462% +Rate for instruction 20931: 17.8466% +Rate for instruction 20932: 17.8469% +Rate for instruction 20933: 17.8464% +Rate for instruction 20934: 17.8474% +Rate for instruction 20935: 17.8484% +Rate for instruction 20936: 17.8495% +Rate for instruction 20937: 17.85% +Rate for instruction 20938: 17.8508% +Rate for instruction 20939: 17.8519% +Rate for instruction 20940: 17.8518% +Rate for instruction 20941: 17.8528% +Rate for instruction 20942: 17.8529% +Rate for instruction 20943: 17.8526% +Rate for instruction 20944: 17.8521% +Rate for instruction 20945: 17.8521% +Rate for instruction 20946: 17.8518% +Rate for instruction 20947: 17.8515% +Rate for instruction 20948: 17.851% +Rate for instruction 20949: 17.8507% +Rate for instruction 20950: 17.8503% +Rate for instruction 20951: 17.8503% +Rate for instruction 20952: 17.8506% +Rate for instruction 20953: 17.8508% +Rate for instruction 20954: 17.8509% +Rate for instruction 20955: 17.8513% +Rate for instruction 20956: 17.8512% +Rate for instruction 20957: 17.852% +Rate for instruction 20958: 17.853% +Rate for instruction 20959: 17.8531% +Rate for instruction 20960: 17.8528% +Rate for instruction 20961: 17.853% +Rate for instruction 20962: 17.8534% +Rate for instruction 20963: 17.8537% +Rate for instruction 20964: 17.8532% +Rate for instruction 20965: 17.8525% +Rate for instruction 20966: 17.852% +Rate for instruction 20967: 17.8528% +Rate for instruction 20968: 17.8524% +Rate for instruction 20969: 17.8532% +Rate for instruction 20970: 17.8541% +Rate for instruction 20971: 17.8542% +Rate for instruction 20972: 17.855% +Rate for instruction 20973: 17.8549% +Rate for instruction 20974: 17.8542% +Rate for instruction 20975: 17.8537% +Rate for instruction 20976: 17.8531% +Rate for instruction 20977: 17.8528% +Rate for instruction 20978: 17.8521% +Rate for instruction 20979: 17.8516% +Rate for instruction 20980: 17.8509% +Rate for instruction 20981: 17.8516% +Rate for instruction 20982: 17.8514% +Rate for instruction 20983: 17.8513% +Rate for instruction 20984: 17.8516% +Rate for instruction 20985: 17.852% +Rate for instruction 20986: 17.8515% +Rate for instruction 20987: 17.8512% +Rate for instruction 20988: 17.8507% +Rate for instruction 20989: 17.8512% +Rate for instruction 20990: 17.8516% +Rate for instruction 20991: 17.8517% +Rate for instruction 20992: 17.8517% +Rate for instruction 20993: 17.8513% +Rate for instruction 20994: 17.8511% +Rate for instruction 20995: 17.8505% +Rate for instruction 20996: 17.8507% +Rate for instruction 20997: 17.8508% +Rate for instruction 20998: 17.8507% +Rate for instruction 20999: 17.8505% +Rate for instruction 21000: 17.8506% +Rate for instruction 21001: 17.8505% +Rate for instruction 21002: 17.8506% +Rate for instruction 21003: 17.8501% +Rate for instruction 21004: 17.8498% +Rate for instruction 21005: 17.8495% +Rate for instruction 21006: 17.849% +Rate for instruction 21007: 17.8492% +Rate for instruction 21008: 17.8495% +Rate for instruction 21009: 17.8496% +Rate for instruction 21010: 17.8498% +Rate for instruction 21011: 17.8493% +Rate for instruction 21012: 17.8492% +Rate for instruction 21013: 17.8487% +Rate for instruction 21014: 17.8492% +Rate for instruction 21015: 17.8496% +Rate for instruction 21016: 17.8502% +Rate for instruction 21017: 17.8497% +Rate for instruction 21018: 17.8492% +Rate for instruction 21019: 17.8488% +Rate for instruction 21020: 17.8486% +Rate for instruction 21021: 17.8491% +Rate for instruction 21022: 17.8497% +Rate for instruction 21023: 17.8501% +Rate for instruction 21024: 17.8494% +Rate for instruction 21025: 17.8497% +Rate for instruction 21026: 17.8501% +Rate for instruction 21027: 17.8495% +Rate for instruction 21028: 17.8492% +Rate for instruction 21029: 17.8489% +Rate for instruction 21030: 17.8493% +Rate for instruction 21031: 17.8505% +Rate for instruction 21032: 17.8509% +Rate for instruction 21033: 17.8508% +Rate for instruction 21034: 17.8505% +Rate for instruction 21035: 17.8509% +Rate for instruction 21036: 17.8513% +Rate for instruction 21037: 17.8514% +Rate for instruction 21038: 17.8518% +Rate for instruction 21039: 17.8524% +Rate for instruction 21040: 17.8523% +Rate for instruction 21041: 17.8518% +Rate for instruction 21042: 17.8523% +Rate for instruction 21043: 17.8525% +Rate for instruction 21044: 17.8524% +Rate for instruction 21045: 17.8517% +Rate for instruction 21046: 17.8514% +Rate for instruction 21047: 17.8508% +Rate for instruction 21048: 17.8508% +Rate for instruction 21049: 17.8504% +Rate for instruction 21050: 17.8502% +Rate for instruction 21051: 17.8499% +Rate for instruction 21052: 17.85% +Rate for instruction 21053: 17.8493% +Rate for instruction 21054: 17.8492% +Rate for instruction 21055: 17.85% +Rate for instruction 21056: 17.8494% +Rate for instruction 21057: 17.8489% +Rate for instruction 21058: 17.8489% +Rate for instruction 21059: 17.8485% +Rate for instruction 21060: 17.8493% +Rate for instruction 21061: 17.8491% +Rate for instruction 21062: 17.8496% +Rate for instruction 21063: 17.85% +Rate for instruction 21064: 17.8506% +Rate for instruction 21065: 17.8521% +Rate for instruction 21066: 17.8522% +Rate for instruction 21067: 17.8515% +Rate for instruction 21068: 17.8516% +Rate for instruction 21069: 17.8511% +Rate for instruction 21070: 17.8514% +Rate for instruction 21071: 17.8527% +Rate for instruction 21072: 17.8526% +Rate for instruction 21073: 17.8527% +Rate for instruction 21074: 17.8531% +Rate for instruction 21075: 17.8532% +Rate for instruction 21076: 17.8534% +Rate for instruction 21077: 17.8535% +Rate for instruction 21078: 17.853% +Rate for instruction 21079: 17.8529% +Rate for instruction 21080: 17.8524% +Rate for instruction 21081: 17.853% +Rate for instruction 21082: 17.8534% +Rate for instruction 21083: 17.8529% +Rate for instruction 21084: 17.8525% +Rate for instruction 21085: 17.8518% +Rate for instruction 21086: 17.8515% +Rate for instruction 21087: 17.8514% +Rate for instruction 21088: 17.8516% +Rate for instruction 21089: 17.8512% +Rate for instruction 21090: 17.8516% +Rate for instruction 21091: 17.852% +Rate for instruction 21092: 17.8517% +Rate for instruction 21093: 17.8516% +Rate for instruction 21094: 17.8513% +Rate for instruction 21095: 17.8515% +Rate for instruction 21096: 17.8511% +Rate for instruction 21097: 17.8504% +Rate for instruction 21098: 17.8499% +Rate for instruction 21099: 17.8509% +Rate for instruction 21100: 17.8517% +Rate for instruction 21101: 17.8525% +Rate for instruction 21102: 17.8527% +Rate for instruction 21103: 17.8526% +Rate for instruction 21104: 17.8536% +Rate for instruction 21105: 17.854% +Rate for instruction 21106: 17.8544% +Rate for instruction 21107: 17.8552% +Rate for instruction 21108: 17.8546% +Rate for instruction 21109: 17.8543% +Rate for instruction 21110: 17.854% +Rate for instruction 21111: 17.8533% +Rate for instruction 21112: 17.853% +Rate for instruction 21113: 17.8524% +Rate for instruction 21114: 17.8521% +Rate for instruction 21115: 17.8518% +Rate for instruction 21116: 17.8522% +Rate for instruction 21117: 17.8524% +Rate for instruction 21118: 17.8518% +Rate for instruction 21119: 17.8515% +Rate for instruction 21120: 17.8521% +Rate for instruction 21121: 17.8516% +Rate for instruction 21122: 17.8517% +Rate for instruction 21123: 17.8521% +Rate for instruction 21124: 17.8525% +Rate for instruction 21125: 17.8524% +Rate for instruction 21126: 17.853% +Rate for instruction 21127: 17.8533% +Rate for instruction 21128: 17.8528% +Rate for instruction 21129: 17.8529% +Rate for instruction 21130: 17.8531% +Rate for instruction 21131: 17.8532% +Rate for instruction 21132: 17.853% +Rate for instruction 21133: 17.8527% +Rate for instruction 21134: 17.8525% +Rate for instruction 21135: 17.8531% +Rate for instruction 21136: 17.8531% +Rate for instruction 21137: 17.853% +Rate for instruction 21138: 17.8534% +Rate for instruction 21139: 17.8533% +Rate for instruction 21140: 17.8538% +Rate for instruction 21141: 17.8544% +Rate for instruction 21142: 17.8542% +Rate for instruction 21143: 17.8538% +Rate for instruction 21144: 17.854% +Rate for instruction 21145: 17.8533% +Rate for instruction 21146: 17.8529% +Rate for instruction 21147: 17.8524% +Rate for instruction 21148: 17.8521% +Rate for instruction 21149: 17.8516% +Rate for instruction 21150: 17.8509% +Rate for instruction 21151: 17.8505% +Rate for instruction 21152: 17.8505% +Rate for instruction 21153: 17.8504% +Rate for instruction 21154: 17.8499% +Rate for instruction 21155: 17.8496% +Rate for instruction 21156: 17.8493% +Rate for instruction 21157: 17.8496% +Rate for instruction 21158: 17.8497% +Rate for instruction 21159: 17.8494% +Rate for instruction 21160: 17.8498% +Rate for instruction 21161: 17.8511% +Rate for instruction 21162: 17.8515% +Rate for instruction 21163: 17.8516% +Rate for instruction 21164: 17.8511% +Rate for instruction 21165: 17.8505% +Rate for instruction 21166: 17.8511% +Rate for instruction 21167: 17.851% +Rate for instruction 21168: 17.8516% +Rate for instruction 21169: 17.8518% +Rate for instruction 21170: 17.8517% +Rate for instruction 21171: 17.8523% +Rate for instruction 21172: 17.8529% +Rate for instruction 21173: 17.8534% +Rate for instruction 21174: 17.8538% +Rate for instruction 21175: 17.854% +Rate for instruction 21176: 17.8546% +Rate for instruction 21177: 17.8552% +Rate for instruction 21178: 17.8553% +Rate for instruction 21179: 17.8556% +Rate for instruction 21180: 17.8562% +Rate for instruction 21181: 17.8559% +Rate for instruction 21182: 17.8561% +Rate for instruction 21183: 17.8558% +Rate for instruction 21184: 17.8561% +Rate for instruction 21185: 17.8569% +Rate for instruction 21186: 17.8573% +Rate for instruction 21187: 17.8566% +Rate for instruction 21188: 17.8567% +Rate for instruction 21189: 17.8568% +Rate for instruction 21190: 17.8566% +Rate for instruction 21191: 17.8567% +Rate for instruction 21192: 17.856% +Rate for instruction 21193: 17.8565% +Rate for instruction 21194: 17.8565% +Rate for instruction 21195: 17.8561% +Rate for instruction 21196: 17.8559% +Rate for instruction 21197: 17.8562% +Rate for instruction 21198: 17.8564% +Rate for instruction 21199: 17.8567% +Rate for instruction 21200: 17.8569% +Rate for instruction 21201: 17.8563% +Rate for instruction 21202: 17.8567% +Rate for instruction 21203: 17.8569% +Rate for instruction 21204: 17.8566% +Rate for instruction 21205: 17.8565% +Rate for instruction 21206: 17.856% +Rate for instruction 21207: 17.8563% +Rate for instruction 21208: 17.8571% +Rate for instruction 21209: 17.857% +Rate for instruction 21210: 17.857% +Rate for instruction 21211: 17.8567% +Rate for instruction 21212: 17.8568% +Rate for instruction 21213: 17.8563% +Rate for instruction 21214: 17.8566% +Rate for instruction 21215: 17.8568% +Rate for instruction 21216: 17.8561% +Rate for instruction 21217: 17.8568% +Rate for instruction 21218: 17.8561% +Rate for instruction 21219: 17.8558% +Rate for instruction 21220: 17.8557% +Rate for instruction 21221: 17.8557% +Rate for instruction 21222: 17.8562% +Rate for instruction 21223: 17.8561% +Rate for instruction 21224: 17.8567% +Rate for instruction 21225: 17.8582% +Rate for instruction 21226: 17.8577% +Rate for instruction 21227: 17.8574% +Rate for instruction 21228: 17.8569% +Rate for instruction 21229: 17.8572% +Rate for instruction 21230: 17.8565% +Rate for instruction 21231: 17.8568% +Rate for instruction 21232: 17.8568% +Rate for instruction 21233: 17.8572% +Rate for instruction 21234: 17.8577% +Rate for instruction 21235: 17.8586% +Rate for instruction 21236: 17.8596% +Rate for instruction 21237: 17.8599% +Rate for instruction 21238: 17.8592% +Rate for instruction 21239: 17.8598% +Rate for instruction 21240: 17.8599% +Rate for instruction 21241: 17.8592% +Rate for instruction 21242: 17.8591% +Rate for instruction 21243: 17.8584% +Rate for instruction 21244: 17.858% +Rate for instruction 21245: 17.8577% +Rate for instruction 21246: 17.8574% +Rate for instruction 21247: 17.8567% +Rate for instruction 21248: 17.856% +Rate for instruction 21249: 17.8557% +Rate for instruction 21250: 17.856% +Rate for instruction 21251: 17.8561% +Rate for instruction 21252: 17.8559% +Rate for instruction 21253: 17.856% +Rate for instruction 21254: 17.8555% +Rate for instruction 21255: 17.8556% +Rate for instruction 21256: 17.8558% +Rate for instruction 21257: 17.8552% +Rate for instruction 21258: 17.8552% +Rate for instruction 21259: 17.856% +Rate for instruction 21260: 17.8563% +Rate for instruction 21261: 17.8565% +Rate for instruction 21262: 17.8559% +Rate for instruction 21263: 17.8556% +Rate for instruction 21264: 17.8549% +Rate for instruction 21265: 17.8544% +Rate for instruction 21266: 17.8538% +Rate for instruction 21267: 17.8537% +Rate for instruction 21268: 17.8537% +Rate for instruction 21269: 17.8536% +Rate for instruction 21270: 17.8529% +Rate for instruction 21271: 17.8525% +Rate for instruction 21272: 17.8522% +Rate for instruction 21273: 17.8515% +Rate for instruction 21274: 17.8516% +Rate for instruction 21275: 17.8513% +Rate for instruction 21276: 17.8508% +Rate for instruction 21277: 17.8516% +Rate for instruction 21278: 17.8509% +Rate for instruction 21279: 17.8512% +Rate for instruction 21280: 17.8518% +Rate for instruction 21281: 17.8522% +Rate for instruction 21282: 17.8516% +Rate for instruction 21283: 17.8511% +Rate for instruction 21284: 17.8515% +Rate for instruction 21285: 17.851% +Rate for instruction 21286: 17.8513% +Rate for instruction 21287: 17.8508% +Rate for instruction 21288: 17.851% +Rate for instruction 21289: 17.8504% +Rate for instruction 21290: 17.8504% +Rate for instruction 21291: 17.8498% +Rate for instruction 21292: 17.8502% +Rate for instruction 21293: 17.8497% +Rate for instruction 21294: 17.85% +Rate for instruction 21295: 17.8497% +Rate for instruction 21296: 17.8496% +Rate for instruction 21297: 17.8493% +Rate for instruction 21298: 17.8488% +Rate for instruction 21299: 17.8496% +Rate for instruction 21300: 17.8491% +Rate for instruction 21301: 17.849% +Rate for instruction 21302: 17.8485% +Rate for instruction 21303: 17.8484% +Rate for instruction 21304: 17.8481% +Rate for instruction 21305: 17.8491% +Rate for instruction 21306: 17.8488% +Rate for instruction 21307: 17.8487% +Rate for instruction 21308: 17.8484% +Rate for instruction 21309: 17.8481% +Rate for instruction 21310: 17.8481% +Rate for instruction 21311: 17.8478% +Rate for instruction 21312: 17.8488% +Rate for instruction 21313: 17.8489% +Rate for instruction 21314: 17.8493% +Rate for instruction 21315: 17.8486% +Rate for instruction 21316: 17.848% +Rate for instruction 21317: 17.8482% +Rate for instruction 21318: 17.8487% +Rate for instruction 21319: 17.8482% +Rate for instruction 21320: 17.8488% +Rate for instruction 21321: 17.8485% +Rate for instruction 21322: 17.8485% +Rate for instruction 21323: 17.8481% +Rate for instruction 21324: 17.8485% +Rate for instruction 21325: 17.848% +Rate for instruction 21326: 17.8475% +Rate for instruction 21327: 17.8474% +Rate for instruction 21328: 17.8473% +Rate for instruction 21329: 17.847% +Rate for instruction 21330: 17.8465% +Rate for instruction 21331: 17.8464% +Rate for instruction 21332: 17.8469% +Rate for instruction 21333: 17.8473% +Rate for instruction 21334: 17.8484% +Rate for instruction 21335: 17.8485% +Rate for instruction 21336: 17.85% +Rate for instruction 21337: 17.8495% +Rate for instruction 21338: 17.8489% +Rate for instruction 21339: 17.8491% +Rate for instruction 21340: 17.8486% +Rate for instruction 21341: 17.8491% +Rate for instruction 21342: 17.8493% +Rate for instruction 21343: 17.8488% +Rate for instruction 21344: 17.8493% +Rate for instruction 21345: 17.8486% +Rate for instruction 21346: 17.8492% +Rate for instruction 21347: 17.8502% +Rate for instruction 21348: 17.8499% +Rate for instruction 21349: 17.8494% +Rate for instruction 21350: 17.8489% +Rate for instruction 21351: 17.8502% +Rate for instruction 21352: 17.8498% +Rate for instruction 21353: 17.8491% +Rate for instruction 21354: 17.8504% +Rate for instruction 21355: 17.85% +Rate for instruction 21356: 17.8497% +Rate for instruction 21357: 17.8508% +Rate for instruction 21358: 17.8507% +Rate for instruction 21359: 17.8502% +Rate for instruction 21360: 17.8506% +Rate for instruction 21361: 17.8505% +Rate for instruction 21362: 17.8519% +Rate for instruction 21363: 17.8514% +Rate for instruction 21364: 17.8518% +Rate for instruction 21365: 17.8528% +Rate for instruction 21366: 17.8536% +Rate for instruction 21367: 17.8529% +Rate for instruction 21368: 17.8535% +Rate for instruction 21369: 17.8546% +Rate for instruction 21370: 17.8549% +Rate for instruction 21371: 17.8555% +Rate for instruction 21372: 17.855% +Rate for instruction 21373: 17.856% +Rate for instruction 21374: 17.8553% +Rate for instruction 21375: 17.8563% +Rate for instruction 21376: 17.8558% +Rate for instruction 21377: 17.8552% +Rate for instruction 21378: 17.8547% +Rate for instruction 21379: 17.8555% +Rate for instruction 21380: 17.8554% +Rate for instruction 21381: 17.8554% +Rate for instruction 21382: 17.8548% +Rate for instruction 21383: 17.8541% +Rate for instruction 21384: 17.8538% +Rate for instruction 21385: 17.8532% +Rate for instruction 21386: 17.8527% +Rate for instruction 21387: 17.8527% +Rate for instruction 21388: 17.8532% +Rate for instruction 21389: 17.8531% +Rate for instruction 21390: 17.8528% +Rate for instruction 21391: 17.8526% +Rate for instruction 21392: 17.8524% +Rate for instruction 21393: 17.8517% +Rate for instruction 21394: 17.8516% +Rate for instruction 21395: 17.8516% +Rate for instruction 21396: 17.8514% +Rate for instruction 21397: 17.8509% +Rate for instruction 21398: 17.8508% +Rate for instruction 21399: 17.8501% +Rate for instruction 21400: 17.85% +Rate for instruction 21401: 17.8493% +Rate for instruction 21402: 17.8487% +Rate for instruction 21403: 17.8482% +Rate for instruction 21404: 17.8477% +Rate for instruction 21405: 17.8474% +Rate for instruction 21406: 17.8471% +Rate for instruction 21407: 17.8469% +Rate for instruction 21408: 17.8467% +Rate for instruction 21409: 17.8464% +Rate for instruction 21410: 17.846% +Rate for instruction 21411: 17.8457% +Rate for instruction 21412: 17.8454% +Rate for instruction 21413: 17.8451% +Rate for instruction 21414: 17.8444% +Rate for instruction 21415: 17.8443% +Rate for instruction 21416: 17.844% +Rate for instruction 21417: 17.8437% +Rate for instruction 21418: 17.8434% +Rate for instruction 21419: 17.8431% +Rate for instruction 21420: 17.8436% +Rate for instruction 21421: 17.8436% +Rate for instruction 21422: 17.8437% +Rate for instruction 21423: 17.8436% +Rate for instruction 21424: 17.8435% +Rate for instruction 21425: 17.8435% +Rate for instruction 21426: 17.8434% +Rate for instruction 21427: 17.8431% +Rate for instruction 21428: 17.8434% +Rate for instruction 21429: 17.8438% +Rate for instruction 21430: 17.8442% +Rate for instruction 21431: 17.8436% +Rate for instruction 21432: 17.8434% +Rate for instruction 21433: 17.8437% +Rate for instruction 21434: 17.8436% +Rate for instruction 21435: 17.8433% +Rate for instruction 21436: 17.8441% +Rate for instruction 21437: 17.8443% +Rate for instruction 21438: 17.8436% +Rate for instruction 21439: 17.8432% +Rate for instruction 21440: 17.8429% +Rate for instruction 21441: 17.8424% +Rate for instruction 21442: 17.8418% +Rate for instruction 21443: 17.8416% +Rate for instruction 21444: 17.8417% +Rate for instruction 21445: 17.8418% +Rate for instruction 21446: 17.8413% +Rate for instruction 21447: 17.8412% +Rate for instruction 21448: 17.8405% +Rate for instruction 21449: 17.8402% +Rate for instruction 21450: 17.8401% +Rate for instruction 21451: 17.8398% +Rate for instruction 21452: 17.8408% +Rate for instruction 21453: 17.8403% +Rate for instruction 21454: 17.8409% +Rate for instruction 21455: 17.8403% +Rate for instruction 21456: 17.8398% +Rate for instruction 21457: 17.8408% +Rate for instruction 21458: 17.8405% +Rate for instruction 21459: 17.8412% +Rate for instruction 21460: 17.8422% +Rate for instruction 21461: 17.8433% +Rate for instruction 21462: 17.8441% +Rate for instruction 21463: 17.8438% +Rate for instruction 21464: 17.8435% +Rate for instruction 21465: 17.8443% +Rate for instruction 21466: 17.8449% +Rate for instruction 21467: 17.8443% +Rate for instruction 21468: 17.8445% +Rate for instruction 21469: 17.8448% +Rate for instruction 21470: 17.8459% +Rate for instruction 21471: 17.8452% +Rate for instruction 21472: 17.8451% +Rate for instruction 21473: 17.8461% +Rate for instruction 21474: 17.8454% +Rate for instruction 21475: 17.8468% +Rate for instruction 21476: 17.8472% +Rate for instruction 21477: 17.8478% +Rate for instruction 21478: 17.8482% +Rate for instruction 21479: 17.8492% +Rate for instruction 21480: 17.8501% +Rate for instruction 21481: 17.8504% +Rate for instruction 21482: 17.8501% +Rate for instruction 21483: 17.8494% +Rate for instruction 21484: 17.85% +Rate for instruction 21485: 17.8494% +Rate for instruction 21486: 17.8491% +Rate for instruction 21487: 17.8488% +Rate for instruction 21488: 17.8481% +Rate for instruction 21489: 17.8478% +Rate for instruction 21490: 17.8483% +Rate for instruction 21491: 17.8483% +Rate for instruction 21492: 17.8477% +Rate for instruction 21493: 17.8483% +Rate for instruction 21494: 17.8491% +Rate for instruction 21495: 17.8497% +Rate for instruction 21496: 17.8506% +Rate for instruction 21497: 17.85% +Rate for instruction 21498: 17.8497% +Rate for instruction 21499: 17.8504% +Rate for instruction 21500: 17.8498% +Rate for instruction 21501: 17.8502% +Rate for instruction 21502: 17.8512% +Rate for instruction 21503: 17.8512% +Rate for instruction 21504: 17.852% +Rate for instruction 21505: 17.8514% +Rate for instruction 21506: 17.8518% +Rate for instruction 21507: 17.8511% +Rate for instruction 21508: 17.8517% +Rate for instruction 21509: 17.8518% +Rate for instruction 21510: 17.8515% +Rate for instruction 21511: 17.8523% +Rate for instruction 21512: 17.8532% +Rate for instruction 21513: 17.8526% +Rate for instruction 21514: 17.8521% +Rate for instruction 21515: 17.852% +Rate for instruction 21516: 17.8514% +Rate for instruction 21517: 17.8509% +Rate for instruction 21518: 17.8502% +Rate for instruction 21519: 17.8499% +Rate for instruction 21520: 17.85% +Rate for instruction 21521: 17.8499% +Rate for instruction 21522: 17.8492% +Rate for instruction 21523: 17.8493% +Rate for instruction 21524: 17.8488% +Rate for instruction 21525: 17.8484% +Rate for instruction 21526: 17.8479% +Rate for instruction 21527: 17.8474% +Rate for instruction 21528: 17.8468% +Rate for instruction 21529: 17.847% +Rate for instruction 21530: 17.8464% +Rate for instruction 21531: 17.8461% +Rate for instruction 21532: 17.8463% +Rate for instruction 21533: 17.846% +Rate for instruction 21534: 17.8457% +Rate for instruction 21535: 17.8456% +Rate for instruction 21536: 17.8459% +Rate for instruction 21537: 17.8452% +Rate for instruction 21538: 17.8456% +Rate for instruction 21539: 17.8459% +Rate for instruction 21540: 17.8458% +Rate for instruction 21541: 17.8453% +Rate for instruction 21542: 17.8453% +Rate for instruction 21543: 17.8447% +Rate for instruction 21544: 17.8448% +Rate for instruction 21545: 17.8446% +Rate for instruction 21546: 17.844% +Rate for instruction 21547: 17.8441% +Rate for instruction 21548: 17.8434% +Rate for instruction 21549: 17.8433% +Rate for instruction 21550: 17.8435% +Rate for instruction 21551: 17.8434% +Rate for instruction 21552: 17.8428% +Rate for instruction 21553: 17.8439% +Rate for instruction 21554: 17.8434% +Rate for instruction 21555: 17.8428% +Rate for instruction 21556: 17.8423% +Rate for instruction 21557: 17.842% +Rate for instruction 21558: 17.8428% +Rate for instruction 21559: 17.8425% +Rate for instruction 21560: 17.8428% +Rate for instruction 21561: 17.8425% +Rate for instruction 21562: 17.8422% +Rate for instruction 21563: 17.8419% +Rate for instruction 21564: 17.8419% +Rate for instruction 21565: 17.8418% +Rate for instruction 21566: 17.8417% +Rate for instruction 21567: 17.8411% +Rate for instruction 21568: 17.8418% +Rate for instruction 21569: 17.843% +Rate for instruction 21570: 17.8438% +Rate for instruction 21571: 17.8445% +Rate for instruction 21572: 17.8458% +Rate for instruction 21573: 17.8452% +Rate for instruction 21574: 17.8462% +Rate for instruction 21575: 17.8457% +Rate for instruction 21576: 17.8463% +Rate for instruction 21577: 17.8458% +Rate for instruction 21578: 17.8455% +Rate for instruction 21579: 17.8449% +Rate for instruction 21580: 17.8456% +Rate for instruction 21581: 17.8466% +Rate for instruction 21582: 17.8472% +Rate for instruction 21583: 17.8471% +Rate for instruction 21584: 17.8479% +Rate for instruction 21585: 17.8486% +Rate for instruction 21586: 17.8482% +Rate for instruction 21587: 17.8475% +Rate for instruction 21588: 17.8471% +Rate for instruction 21589: 17.8471% +Rate for instruction 21590: 17.8474% +Rate for instruction 21591: 17.8474% +Rate for instruction 21592: 17.8468% +Rate for instruction 21593: 17.8467% +Rate for instruction 21594: 17.8464% +Rate for instruction 21595: 17.8461% +Rate for instruction 21596: 17.8458% +Rate for instruction 21597: 17.8457% +Rate for instruction 21598: 17.8459% +Rate for instruction 21599: 17.8453% +Rate for instruction 21600: 17.8462% +Rate for instruction 21601: 17.847% +Rate for instruction 21602: 17.8481% +Rate for instruction 21603: 17.8484% +Rate for instruction 21604: 17.8477% +Rate for instruction 21605: 17.8485% +Rate for instruction 21606: 17.8489% +Rate for instruction 21607: 17.8502% +Rate for instruction 21608: 17.8505% +Rate for instruction 21609: 17.8514% +Rate for instruction 21610: 17.851% +Rate for instruction 21611: 17.8515% +Rate for instruction 21612: 17.8521% +Rate for instruction 21613: 17.8531% +Rate for instruction 21614: 17.8541% +Rate for instruction 21615: 17.8536% +Rate for instruction 21616: 17.854% +Rate for instruction 21617: 17.8546% +Rate for instruction 21618: 17.8548% +Rate for instruction 21619: 17.8551% +Rate for instruction 21620: 17.8557% +Rate for instruction 21621: 17.8561% +Rate for instruction 21622: 17.8556% +Rate for instruction 21623: 17.8552% +Rate for instruction 21624: 17.8547% +Rate for instruction 21625: 17.8544% +Rate for instruction 21626: 17.8539% +Rate for instruction 21627: 17.8535% +Rate for instruction 21628: 17.853% +Rate for instruction 21629: 17.8527% +Rate for instruction 21630: 17.8526% +Rate for instruction 21631: 17.853% +Rate for instruction 21632: 17.8536% +Rate for instruction 21633: 17.8544% +Rate for instruction 21634: 17.8548% +Rate for instruction 21635: 17.8543% +Rate for instruction 21636: 17.8551% +Rate for instruction 21637: 17.8552% +Rate for instruction 21638: 17.8556% +Rate for instruction 21639: 17.8565% +Rate for instruction 21640: 17.8575% +Rate for instruction 21641: 17.8579% +Rate for instruction 21642: 17.8587% +Rate for instruction 21643: 17.8582% +Rate for instruction 21644: 17.859% +Rate for instruction 21645: 17.8594% +Rate for instruction 21646: 17.86% +Rate for instruction 21647: 17.8602% +Rate for instruction 21648: 17.861% +Rate for instruction 21649: 17.8616% +Rate for instruction 21650: 17.8613% +Rate for instruction 21651: 17.8614% +Rate for instruction 21652: 17.8609% +Rate for instruction 21653: 17.8603% +Rate for instruction 21654: 17.86% +Rate for instruction 21655: 17.8593% +Rate for instruction 21656: 17.8589% +Rate for instruction 21657: 17.8582% +Rate for instruction 21658: 17.8592% +Rate for instruction 21659: 17.8589% +Rate for instruction 21660: 17.8595% +Rate for instruction 21661: 17.8588% +Rate for instruction 21662: 17.8583% +Rate for instruction 21663: 17.8591% +Rate for instruction 21664: 17.8588% +Rate for instruction 21665: 17.8587% +Rate for instruction 21666: 17.8584% +Rate for instruction 21667: 17.858% +Rate for instruction 21668: 17.8586% +Rate for instruction 21669: 17.859% +Rate for instruction 21670: 17.8583% +Rate for instruction 21671: 17.8593% +Rate for instruction 21672: 17.8602% +Rate for instruction 21673: 17.8606% +Rate for instruction 21674: 17.8612% +Rate for instruction 21675: 17.8609% +Rate for instruction 21676: 17.8615% +Rate for instruction 21677: 17.8611% +Rate for instruction 21678: 17.8617% +Rate for instruction 21679: 17.8616% +Rate for instruction 21680: 17.8614% +Rate for instruction 21681: 17.8615% +Rate for instruction 21682: 17.8616% +Rate for instruction 21683: 17.862% +Rate for instruction 21684: 17.8615% +Rate for instruction 21685: 17.8623% +Rate for instruction 21686: 17.8618% +Rate for instruction 21687: 17.8624% +Rate for instruction 21688: 17.863% +Rate for instruction 21689: 17.8629% +Rate for instruction 21690: 17.8633% +Rate for instruction 21691: 17.863% +Rate for instruction 21692: 17.8636% +Rate for instruction 21693: 17.8631% +Rate for instruction 21694: 17.8637% +Rate for instruction 21695: 17.8647% +Rate for instruction 21696: 17.8642% +Rate for instruction 21697: 17.8639% +Rate for instruction 21698: 17.8636% +Rate for instruction 21699: 17.863% +Rate for instruction 21700: 17.8625% +Rate for instruction 21701: 17.8624% +Rate for instruction 21702: 17.8623% +Rate for instruction 21703: 17.8625% +Rate for instruction 21704: 17.8628% +Rate for instruction 21705: 17.8634% +Rate for instruction 21706: 17.8643% +Rate for instruction 21707: 17.8644% +Rate for instruction 21708: 17.8646% +Rate for instruction 21709: 17.8645% +Rate for instruction 21710: 17.8644% +Rate for instruction 21711: 17.8637% +Rate for instruction 21712: 17.8635% +Rate for instruction 21713: 17.8628% +Rate for instruction 21714: 17.8627% +Rate for instruction 21715: 17.8622% +Rate for instruction 21716: 17.8625% +Rate for instruction 21717: 17.8632% +Rate for instruction 21718: 17.8642% +Rate for instruction 21719: 17.8651% +Rate for instruction 21720: 17.8647% +Rate for instruction 21721: 17.8654% +Rate for instruction 21722: 17.8655% +Rate for instruction 21723: 17.8654% +Rate for instruction 21724: 17.8655% +Rate for instruction 21725: 17.8655% +Rate for instruction 21726: 17.8652% +Rate for instruction 21727: 17.8648% +Rate for instruction 21728: 17.8648% +Rate for instruction 21729: 17.8642% +Rate for instruction 21730: 17.8635% +Rate for instruction 21731: 17.8636% +Rate for instruction 21732: 17.8633% +Rate for instruction 21733: 17.8634% +Rate for instruction 21734: 17.8634% +Rate for instruction 21735: 17.8631% +Rate for instruction 21736: 17.8634% +Rate for instruction 21737: 17.8627% +Rate for instruction 21738: 17.8628% +Rate for instruction 21739: 17.8634% +Rate for instruction 21740: 17.8638% +Rate for instruction 21741: 17.8642% +Rate for instruction 21742: 17.8643% +Rate for instruction 21743: 17.8645% +Rate for instruction 21744: 17.8648% +Rate for instruction 21745: 17.8646% +Rate for instruction 21746: 17.8642% +Rate for instruction 21747: 17.8641% +Rate for instruction 21748: 17.8643% +Rate for instruction 21749: 17.8642% +Rate for instruction 21750: 17.8646% +Rate for instruction 21751: 17.864% +Rate for instruction 21752: 17.8635% +Rate for instruction 21753: 17.8644% +Rate for instruction 21754: 17.8638% +Rate for instruction 21755: 17.8642% +Rate for instruction 21756: 17.8636% +Rate for instruction 21757: 17.864% +Rate for instruction 21758: 17.8646% +Rate for instruction 21759: 17.8648% +Rate for instruction 21760: 17.8652% +Rate for instruction 21761: 17.8651% +Rate for instruction 21762: 17.8647% +Rate for instruction 21763: 17.864% +Rate for instruction 21764: 17.8637% +Rate for instruction 21765: 17.8634% +Rate for instruction 21766: 17.863% +Rate for instruction 21767: 17.8628% +Rate for instruction 21768: 17.8622% +Rate for instruction 21769: 17.8623% +Rate for instruction 21770: 17.8618% +Rate for instruction 21771: 17.8617% +Rate for instruction 21772: 17.8617% +Rate for instruction 21773: 17.8622% +Rate for instruction 21774: 17.8629% +Rate for instruction 21775: 17.8623% +Rate for instruction 21776: 17.8622% +Rate for instruction 21777: 17.8621% +Rate for instruction 21778: 17.8616% +Rate for instruction 21779: 17.8617% +Rate for instruction 21780: 17.8615% +Rate for instruction 21781: 17.8628% +Rate for instruction 21782: 17.8626% +Rate for instruction 21783: 17.8621% +Rate for instruction 21784: 17.8634% +Rate for instruction 21785: 17.8629% +Rate for instruction 21786: 17.8623% +Rate for instruction 21787: 17.8629% +Rate for instruction 21788: 17.8638% +Rate for instruction 21789: 17.8646% +Rate for instruction 21790: 17.8646% +Rate for instruction 21791: 17.8647% +Rate for instruction 21792: 17.8653% +Rate for instruction 21793: 17.8654% +Rate for instruction 21794: 17.8647% +Rate for instruction 21795: 17.8643% +Rate for instruction 21796: 17.8636% +Rate for instruction 21797: 17.8638% +Rate for instruction 21798: 17.8632% +Rate for instruction 21799: 17.8627% +Rate for instruction 21800: 17.8628% +Rate for instruction 21801: 17.8623% +Rate for instruction 21802: 17.8619% +Rate for instruction 21803: 17.8614% +Rate for instruction 21804: 17.8609% +Rate for instruction 21805: 17.8606% +Rate for instruction 21806: 17.8607% +Rate for instruction 21807: 17.8604% +Rate for instruction 21808: 17.8603% +Rate for instruction 21809: 17.8602% +Rate for instruction 21810: 17.8597% +Rate for instruction 21811: 17.8598% +Rate for instruction 21812: 17.8606% +Rate for instruction 21813: 17.8608% +Rate for instruction 21814: 17.8607% +Rate for instruction 21815: 17.8604% +Rate for instruction 21816: 17.8601% +Rate for instruction 21817: 17.8603% +Rate for instruction 21818: 17.8608% +Rate for instruction 21819: 17.861% +Rate for instruction 21820: 17.8611% +Rate for instruction 21821: 17.8616% +Rate for instruction 21822: 17.861% +Rate for instruction 21823: 17.8607% +Rate for instruction 21824: 17.8611% +Rate for instruction 21825: 17.8612% +Rate for instruction 21826: 17.8609% +Rate for instruction 21827: 17.8603% +Rate for instruction 21828: 17.8596% +Rate for instruction 21829: 17.8597% +Rate for instruction 21830: 17.8594% +Rate for instruction 21831: 17.8598% +Rate for instruction 21832: 17.8608% +Rate for instruction 21833: 17.8613% +Rate for instruction 21834: 17.8609% +Rate for instruction 21835: 17.8604% +Rate for instruction 21836: 17.8598% +Rate for instruction 21837: 17.8597% +Rate for instruction 21838: 17.8601% +Rate for instruction 21839: 17.8598% +Rate for instruction 21840: 17.86% +Rate for instruction 21841: 17.8606% +Rate for instruction 21842: 17.8609% +Rate for instruction 21843: 17.8614% +Rate for instruction 21844: 17.861% +Rate for instruction 21845: 17.861% +Rate for instruction 21846: 17.8615% +Rate for instruction 21847: 17.8612% +Rate for instruction 21848: 17.8607% +Rate for instruction 21849: 17.8611% +Rate for instruction 21850: 17.8615% +Rate for instruction 21851: 17.8614% +Rate for instruction 21852: 17.8615% +Rate for instruction 21853: 17.861% +Rate for instruction 21854: 17.862% +Rate for instruction 21855: 17.8627% +Rate for instruction 21856: 17.8631% +Rate for instruction 21857: 17.8625% +Rate for instruction 21858: 17.8619% +Rate for instruction 21859: 17.8616% +Rate for instruction 21860: 17.8623% +Rate for instruction 21861: 17.8619% +Rate for instruction 21862: 17.8619% +Rate for instruction 21863: 17.8615% +Rate for instruction 21864: 17.8608% +Rate for instruction 21865: 17.8618% +Rate for instruction 21866: 17.8624% +Rate for instruction 21867: 17.8622% +Rate for instruction 21868: 17.862% +Rate for instruction 21869: 17.8617% +Rate for instruction 21870: 17.8614% +Rate for instruction 21871: 17.8609% +Rate for instruction 21872: 17.8606% +Rate for instruction 21873: 17.861% +Rate for instruction 21874: 17.8607% +Rate for instruction 21875: 17.8615% +Rate for instruction 21876: 17.8619% +Rate for instruction 21877: 17.8622% +Rate for instruction 21878: 17.8619% +Rate for instruction 21879: 17.8619% +Rate for instruction 21880: 17.8617% +Rate for instruction 21881: 17.8619% +Rate for instruction 21882: 17.8614% +Rate for instruction 21883: 17.8617% +Rate for instruction 21884: 17.861% +Rate for instruction 21885: 17.8607% +Rate for instruction 21886: 17.8601% +Rate for instruction 21887: 17.8598% +Rate for instruction 21888: 17.8599% +Rate for instruction 21889: 17.8601% +Rate for instruction 21890: 17.8598% +Rate for instruction 21891: 17.8604% +Rate for instruction 21892: 17.8603% +Rate for instruction 21893: 17.8605% +Rate for instruction 21894: 17.8601% +Rate for instruction 21895: 17.8594% +Rate for instruction 21896: 17.859% +Rate for instruction 21897: 17.8588% +Rate for instruction 21898: 17.8582% +Rate for instruction 21899: 17.8583% +Rate for instruction 21900: 17.8592% +Rate for instruction 21901: 17.8596% +Rate for instruction 21902: 17.8593% +Rate for instruction 21903: 17.8598% +Rate for instruction 21904: 17.8596% +Rate for instruction 21905: 17.8601% +Rate for instruction 21906: 17.8605% +Rate for instruction 21907: 17.8612% +Rate for instruction 21908: 17.8606% +Rate for instruction 21909: 17.8617% +Rate for instruction 21910: 17.8621% +Rate for instruction 21911: 17.8622% +Rate for instruction 21912: 17.8636% +Rate for instruction 21913: 17.8642% +Rate for instruction 21914: 17.8636% +Rate for instruction 21915: 17.8635% +Rate for instruction 21916: 17.8639% +Rate for instruction 21917: 17.8633% +Rate for instruction 21918: 17.8637% +Rate for instruction 21919: 17.8636% +Rate for instruction 21920: 17.8636% +Rate for instruction 21921: 17.8639% +Rate for instruction 21922: 17.8641% +Rate for instruction 21923: 17.8645% +Rate for instruction 21924: 17.8649% +Rate for instruction 21925: 17.8646% +Rate for instruction 21926: 17.8649% +Rate for instruction 21927: 17.8646% +Rate for instruction 21928: 17.8639% +Rate for instruction 21929: 17.8642% +Rate for instruction 21930: 17.8642% +Rate for instruction 21931: 17.8645% +Rate for instruction 21932: 17.8644% +Rate for instruction 21933: 17.8641% +Rate for instruction 21934: 17.8638% +Rate for instruction 21935: 17.8642% +Rate for instruction 21936: 17.8639% +Rate for instruction 21937: 17.8636% +Rate for instruction 21938: 17.8635% +Rate for instruction 21939: 17.8645% +Rate for instruction 21940: 17.8642% +Rate for instruction 21941: 17.8649% +Rate for instruction 21942: 17.8652% +Rate for instruction 21943: 17.8654% +Rate for instruction 21944: 17.8651% +Rate for instruction 21945: 17.865% +Rate for instruction 21946: 17.8656% +Rate for instruction 21947: 17.8662% +Rate for instruction 21948: 17.8666% +Rate for instruction 21949: 17.8667% +Rate for instruction 21950: 17.866% +Rate for instruction 21951: 17.8656% +Rate for instruction 21952: 17.8649% +Rate for instruction 21953: 17.8646% +Rate for instruction 21954: 17.864% +Rate for instruction 21955: 17.8635% +Rate for instruction 21956: 17.8629% +Rate for instruction 21957: 17.8631% +Rate for instruction 21958: 17.8628% +Rate for instruction 21959: 17.8622% +Rate for instruction 21960: 17.8619% +Rate for instruction 21961: 17.8614% +Rate for instruction 21962: 17.8612% +Rate for instruction 21963: 17.8607% +Rate for instruction 21964: 17.8601% +Rate for instruction 21965: 17.8599% +Rate for instruction 21966: 17.8598% +Rate for instruction 21967: 17.8599% +Rate for instruction 21968: 17.8594% +Rate for instruction 21969: 17.8591% +Rate for instruction 21970: 17.859% +Rate for instruction 21971: 17.8584% +Rate for instruction 21972: 17.8581% +Rate for instruction 21973: 17.8575% +Rate for instruction 21974: 17.8574% +Rate for instruction 21975: 17.8571% +Rate for instruction 21976: 17.8568% +Rate for instruction 21977: 17.8561% +Rate for instruction 21978: 17.8562% +Rate for instruction 21979: 17.8561% +Rate for instruction 21980: 17.856% +Rate for instruction 21981: 17.8564% +Rate for instruction 21982: 17.8568% +Rate for instruction 21983: 17.8565% +Rate for instruction 21984: 17.8566% +Rate for instruction 21985: 17.8572% +Rate for instruction 21986: 17.8578% +Rate for instruction 21987: 17.858% +Rate for instruction 21988: 17.8586% +Rate for instruction 21989: 17.8586% +Rate for instruction 21990: 17.8582% +Rate for instruction 21991: 17.8579% +Rate for instruction 21992: 17.8574% +Rate for instruction 21993: 17.8575% +Rate for instruction 21994: 17.857% +Rate for instruction 21995: 17.8571% +Rate for instruction 21996: 17.8568% +Rate for instruction 21997: 17.8572% +Rate for instruction 21998: 17.8571% +Rate for instruction 21999: 17.858% +Rate for instruction 22000: 17.8585% +Rate for instruction 22001: 17.8594% +Rate for instruction 22002: 17.8588% +Rate for instruction 22003: 17.8588% +Rate for instruction 22004: 17.8584% +Rate for instruction 22005: 17.8582% +Rate for instruction 22006: 17.8583% +Rate for instruction 22007: 17.8589% +Rate for instruction 22008: 17.8595% +Rate for instruction 22009: 17.8592% +Rate for instruction 22010: 17.8591% +Rate for instruction 22011: 17.8595% +Rate for instruction 22012: 17.8594% +Rate for instruction 22013: 17.8593% +Rate for instruction 22014: 17.8602% +Rate for instruction 22015: 17.8608% +Rate for instruction 22016: 17.861% +Rate for instruction 22017: 17.8616% +Rate for instruction 22018: 17.8615% +Rate for instruction 22019: 17.8612% +Rate for instruction 22020: 17.8613% +Rate for instruction 22021: 17.8608% +Rate for instruction 22022: 17.8602% +Rate for instruction 22023: 17.8597% +Rate for instruction 22024: 17.8593% +Rate for instruction 22025: 17.8591% +Rate for instruction 22026: 17.8592% +Rate for instruction 22027: 17.8587% +Rate for instruction 22028: 17.859% +Rate for instruction 22029: 17.8583% +Rate for instruction 22030: 17.8581% +Rate for instruction 22031: 17.8588% +Rate for instruction 22032: 17.8592% +Rate for instruction 22033: 17.8598% +Rate for instruction 22034: 17.8595% +Rate for instruction 22035: 17.8605% +Rate for instruction 22036: 17.86% +Rate for instruction 22037: 17.8608% +Rate for instruction 22038: 17.8613% +Rate for instruction 22039: 17.8618% +Rate for instruction 22040: 17.8613% +Rate for instruction 22041: 17.8607% +Rate for instruction 22042: 17.8614% +Rate for instruction 22043: 17.8608% +Rate for instruction 22044: 17.8605% +Rate for instruction 22045: 17.8611% +Rate for instruction 22046: 17.8608% +Rate for instruction 22047: 17.861% +Rate for instruction 22048: 17.8604% +Rate for instruction 22049: 17.8615% +Rate for instruction 22050: 17.8617% +Rate for instruction 22051: 17.8623% +Rate for instruction 22052: 17.8624% +Rate for instruction 22053: 17.8635% +Rate for instruction 22054: 17.8639% +Rate for instruction 22055: 17.8643% +Rate for instruction 22056: 17.8649% +Rate for instruction 22057: 17.8655% +Rate for instruction 22058: 17.8652% +Rate for instruction 22059: 17.8658% +Rate for instruction 22060: 17.8664% +Rate for instruction 22061: 17.8666% +Rate for instruction 22062: 17.8668% +Rate for instruction 22063: 17.8662% +Rate for instruction 22064: 17.8666% +Rate for instruction 22065: 17.8662% +Rate for instruction 22066: 17.8662% +Rate for instruction 22067: 17.8665% +Rate for instruction 22068: 17.8669% +Rate for instruction 22069: 17.8669% +Rate for instruction 22070: 17.8672% +Rate for instruction 22071: 17.8671% +Rate for instruction 22072: 17.8664% +Rate for instruction 22073: 17.8661% +Rate for instruction 22074: 17.8658% +Rate for instruction 22075: 17.8663% +Rate for instruction 22076: 17.8667% +Rate for instruction 22077: 17.8664% +Rate for instruction 22078: 17.8668% +Rate for instruction 22079: 17.867% +Rate for instruction 22080: 17.8678% +Rate for instruction 22081: 17.8682% +Rate for instruction 22082: 17.8679% +Rate for instruction 22083: 17.8678% +Rate for instruction 22084: 17.8677% +Rate for instruction 22085: 17.867% +Rate for instruction 22086: 17.8673% +Rate for instruction 22087: 17.8672% +Rate for instruction 22088: 17.8665% +Rate for instruction 22089: 17.8669% +Rate for instruction 22090: 17.867% +Rate for instruction 22091: 17.8672% +Rate for instruction 22092: 17.8668% +Rate for instruction 22093: 17.8675% +Rate for instruction 22094: 17.8671% +Rate for instruction 22095: 17.8671% +Rate for instruction 22096: 17.8681% +Rate for instruction 22097: 17.8685% +Rate for instruction 22098: 17.8691% +Rate for instruction 22099: 17.8684% +Rate for instruction 22100: 17.8694% +Rate for instruction 22101: 17.8687% +Rate for instruction 22102: 17.8697% +Rate for instruction 22103: 17.8699% +Rate for instruction 22104: 17.8705% +Rate for instruction 22105: 17.8704% +Rate for instruction 22106: 17.8703% +Rate for instruction 22107: 17.8698% +Rate for instruction 22108: 17.8692% +Rate for instruction 22109: 17.8687% +Rate for instruction 22110: 17.8686% +Rate for instruction 22111: 17.868% +Rate for instruction 22112: 17.8675% +Rate for instruction 22113: 17.8677% +Rate for instruction 22114: 17.8671% +Rate for instruction 22115: 17.867% +Rate for instruction 22116: 17.867% +Rate for instruction 22117: 17.8669% +Rate for instruction 22118: 17.8677% +Rate for instruction 22119: 17.8674% +Rate for instruction 22120: 17.8669% +Rate for instruction 22121: 17.8668% +Rate for instruction 22122: 17.8662% +Rate for instruction 22123: 17.8656% +Rate for instruction 22124: 17.8651% +Rate for instruction 22125: 17.8648% +Rate for instruction 22126: 17.8647% +Rate for instruction 22127: 17.8648% +Rate for instruction 22128: 17.865% +Rate for instruction 22129: 17.8656% +Rate for instruction 22130: 17.8658% +Rate for instruction 22131: 17.8652% +Rate for instruction 22132: 17.8651% +Rate for instruction 22133: 17.8651% +Rate for instruction 22134: 17.8647% +Rate for instruction 22135: 17.8646% +Rate for instruction 22136: 17.8641% +Rate for instruction 22137: 17.864% +Rate for instruction 22138: 17.8639% +Rate for instruction 22139: 17.8641% +Rate for instruction 22140: 17.8637% +Rate for instruction 22141: 17.8637% +Rate for instruction 22142: 17.8638% +Rate for instruction 22143: 17.8638% +Rate for instruction 22144: 17.8634% +Rate for instruction 22145: 17.8633% +Rate for instruction 22146: 17.863% +Rate for instruction 22147: 17.8627% +Rate for instruction 22148: 17.8629% +Rate for instruction 22149: 17.8623% +Rate for instruction 22150: 17.8622% +Rate for instruction 22151: 17.8623% +Rate for instruction 22152: 17.8621% +Rate for instruction 22153: 17.8617% +Rate for instruction 22154: 17.8616% +Rate for instruction 22155: 17.8616% +Rate for instruction 22156: 17.8619% +Rate for instruction 22157: 17.8621% +Rate for instruction 22158: 17.8622% +Rate for instruction 22159: 17.8619% +Rate for instruction 22160: 17.8614% +Rate for instruction 22161: 17.8611% +Rate for instruction 22162: 17.8608% +Rate for instruction 22163: 17.8613% +Rate for instruction 22164: 17.8617% +Rate for instruction 22165: 17.8619% +Rate for instruction 22166: 17.8625% +Rate for instruction 22167: 17.8624% +Rate for instruction 22168: 17.863% +Rate for instruction 22169: 17.863% +Rate for instruction 22170: 17.8627% +Rate for instruction 22171: 17.8623% +Rate for instruction 22172: 17.8632% +Rate for instruction 22173: 17.8626% +Rate for instruction 22174: 17.8625% +Rate for instruction 22175: 17.863% +Rate for instruction 22176: 17.864% +Rate for instruction 22177: 17.8649% +Rate for instruction 22178: 17.8651% +Rate for instruction 22179: 17.8657% +Rate for instruction 22180: 17.8651% +Rate for instruction 22181: 17.8648% +Rate for instruction 22182: 17.8652% +Rate for instruction 22183: 17.8656% +Rate for instruction 22184: 17.8662% +Rate for instruction 22185: 17.8666% +Rate for instruction 22186: 17.8663% +Rate for instruction 22187: 17.8664% +Rate for instruction 22188: 17.8659% +Rate for instruction 22189: 17.8658% +Rate for instruction 22190: 17.8652% +Rate for instruction 22191: 17.8645% +Rate for instruction 22192: 17.8639% +Rate for instruction 22193: 17.8638% +Rate for instruction 22194: 17.8637% +Rate for instruction 22195: 17.8636% +Rate for instruction 22196: 17.8636% +Rate for instruction 22197: 17.863% +Rate for instruction 22198: 17.8636% +Rate for instruction 22199: 17.8633% +Rate for instruction 22200: 17.8644% +Rate for instruction 22201: 17.8638% +Rate for instruction 22202: 17.8633% +Rate for instruction 22203: 17.8641% +Rate for instruction 22204: 17.8636% +Rate for instruction 22205: 17.864% +Rate for instruction 22206: 17.8646% +Rate for instruction 22207: 17.864% +Rate for instruction 22208: 17.8649% +Rate for instruction 22209: 17.8643% +Rate for instruction 22210: 17.8642% +Rate for instruction 22211: 17.8647% +Rate for instruction 22212: 17.8651% +Rate for instruction 22213: 17.8659% +Rate for instruction 22214: 17.8653% +Rate for instruction 22215: 17.865% +Rate for instruction 22216: 17.8645% +Rate for instruction 22217: 17.8639% +Rate for instruction 22218: 17.8646% +Rate for instruction 22219: 17.8652% +Rate for instruction 22220: 17.8655% +Rate for instruction 22221: 17.8655% +Rate for instruction 22222: 17.8656% +Rate for instruction 22223: 17.8656% +Rate for instruction 22224: 17.8657% +Rate for instruction 22225: 17.8659% +Rate for instruction 22226: 17.8664% +Rate for instruction 22227: 17.8668% +Rate for instruction 22228: 17.8666% +Rate for instruction 22229: 17.8667% +Rate for instruction 22230: 17.8663% +Rate for instruction 22231: 17.8658% +Rate for instruction 22232: 17.8657% +Rate for instruction 22233: 17.8651% +Rate for instruction 22234: 17.8651% +Rate for instruction 22235: 17.8652% +Rate for instruction 22236: 17.8649% +Rate for instruction 22237: 17.8653% +Rate for instruction 22238: 17.8648% +Rate for instruction 22239: 17.8654% +Rate for instruction 22240: 17.8653% +Rate for instruction 22241: 17.8655% +Rate for instruction 22242: 17.8656% +Rate for instruction 22243: 17.8662% +Rate for instruction 22244: 17.8664% +Rate for instruction 22245: 17.8672% +Rate for instruction 22246: 17.8676% +Rate for instruction 22247: 17.8669% +Rate for instruction 22248: 17.867% +Rate for instruction 22249: 17.8664% +Rate for instruction 22250: 17.8657% +Rate for instruction 22251: 17.867% +Rate for instruction 22252: 17.8678% +Rate for instruction 22253: 17.8671% +Rate for instruction 22254: 17.8669% +Rate for instruction 22255: 17.8666% +Rate for instruction 22256: 17.8659% +Rate for instruction 22257: 17.8657% +Rate for instruction 22258: 17.865% +Rate for instruction 22259: 17.8646% +Rate for instruction 22260: 17.8648% +Rate for instruction 22261: 17.8652% +Rate for instruction 22262: 17.8654% +Rate for instruction 22263: 17.8659% +Rate for instruction 22264: 17.8661% +Rate for instruction 22265: 17.8661% +Rate for instruction 22266: 17.8666% +Rate for instruction 22267: 17.8666% +Rate for instruction 22268: 17.8667% +Rate for instruction 22269: 17.8671% +Rate for instruction 22270: 17.8673% +Rate for instruction 22271: 17.8672% +Rate for instruction 22272: 17.8666% +Rate for instruction 22273: 17.8672% +Rate for instruction 22274: 17.8674% +Rate for instruction 22275: 17.8673% +Rate for instruction 22276: 17.8673% +Rate for instruction 22277: 17.8679% +Rate for instruction 22278: 17.8687% +Rate for instruction 22279: 17.8694% +Rate for instruction 22280: 17.8695% +Rate for instruction 22281: 17.8699% +Rate for instruction 22282: 17.8708% +Rate for instruction 22283: 17.8714% +Rate for instruction 22284: 17.8713% +Rate for instruction 22285: 17.8717% +Rate for instruction 22286: 17.8721% +Rate for instruction 22287: 17.8725% +Rate for instruction 22288: 17.8729% +Rate for instruction 22289: 17.8733% +Rate for instruction 22290: 17.8737% +Rate for instruction 22291: 17.8734% +Rate for instruction 22292: 17.8733% +Rate for instruction 22293: 17.8727% +Rate for instruction 22294: 17.8721% +Rate for instruction 22295: 17.8714% +Rate for instruction 22296: 17.8708% +Rate for instruction 22297: 17.8707% +Rate for instruction 22298: 17.8704% +Rate for instruction 22299: 17.871% +Rate for instruction 22300: 17.8704% +Rate for instruction 22301: 17.8702% +Rate for instruction 22302: 17.8701% +Rate for instruction 22303: 17.8705% +Rate for instruction 22304: 17.8701% +Rate for instruction 22305: 17.8703% +Rate for instruction 22306: 17.8704% +Rate for instruction 22307: 17.8704% +Rate for instruction 22308: 17.871% +Rate for instruction 22309: 17.8713% +Rate for instruction 22310: 17.8711% +Rate for instruction 22311: 17.871% +Rate for instruction 22312: 17.8704% +Rate for instruction 22313: 17.8701% +Rate for instruction 22314: 17.8697% +Rate for instruction 22315: 17.8694% +Rate for instruction 22316: 17.8693% +Rate for instruction 22317: 17.8688% +Rate for instruction 22318: 17.8687% +Rate for instruction 22319: 17.8684% +Rate for instruction 22320: 17.8678% +Rate for instruction 22321: 17.8679% +Rate for instruction 22322: 17.8679% +Rate for instruction 22323: 17.8681% +Rate for instruction 22324: 17.8687% +Rate for instruction 22325: 17.8681% +Rate for instruction 22326: 17.8688% +Rate for instruction 22327: 17.8693% +Rate for instruction 22328: 17.8698% +Rate for instruction 22329: 17.8694% +Rate for instruction 22330: 17.8698% +Rate for instruction 22331: 17.8691% +Rate for instruction 22332: 17.8701% +Rate for instruction 22333: 17.87% +Rate for instruction 22334: 17.8705% +Rate for instruction 22335: 17.8711% +Rate for instruction 22336: 17.8713% +Rate for instruction 22337: 17.8718% +Rate for instruction 22338: 17.8718% +Rate for instruction 22339: 17.8722% +Rate for instruction 22340: 17.8716% +Rate for instruction 22341: 17.8722% +Rate for instruction 22342: 17.8715% +Rate for instruction 22343: 17.8714% +Rate for instruction 22344: 17.872% +Rate for instruction 22345: 17.8728% +Rate for instruction 22346: 17.8733% +Rate for instruction 22347: 17.8737% +Rate for instruction 22348: 17.8735% +Rate for instruction 22349: 17.8739% +Rate for instruction 22350: 17.8743% +Rate for instruction 22351: 17.8743% +Rate for instruction 22352: 17.8744% +Rate for instruction 22353: 17.8746% +Rate for instruction 22354: 17.8749% +Rate for instruction 22355: 17.8747% +Rate for instruction 22356: 17.8751% +Rate for instruction 22357: 17.875% +Rate for instruction 22358: 17.8748% +Rate for instruction 22359: 17.8743% +Rate for instruction 22360: 17.8745% +Rate for instruction 22361: 17.8749% +Rate for instruction 22362: 17.875% +Rate for instruction 22363: 17.8745% +Rate for instruction 22364: 17.8749% +Rate for instruction 22365: 17.8755% +Rate for instruction 22366: 17.8754% +Rate for instruction 22367: 17.875% +Rate for instruction 22368: 17.875% +Rate for instruction 22369: 17.8752% +Rate for instruction 22370: 17.875% +Rate for instruction 22371: 17.8743% +Rate for instruction 22372: 17.8746% +Rate for instruction 22373: 17.8745% +Rate for instruction 22374: 17.8749% +Rate for instruction 22375: 17.8747% +Rate for instruction 22376: 17.8746% +Rate for instruction 22377: 17.8749% +Rate for instruction 22378: 17.8749% +Rate for instruction 22379: 17.8748% +Rate for instruction 22380: 17.8749% +Rate for instruction 22381: 17.8749% +Rate for instruction 22382: 17.8743% +Rate for instruction 22383: 17.8742% +Rate for instruction 22384: 17.8741% +Rate for instruction 22385: 17.8742% +Rate for instruction 22386: 17.874% +Rate for instruction 22387: 17.8743% +Rate for instruction 22388: 17.8736% +Rate for instruction 22389: 17.8737% +Rate for instruction 22390: 17.8731% +Rate for instruction 22391: 17.8735% +Rate for instruction 22392: 17.8734% +Rate for instruction 22393: 17.8734% +Rate for instruction 22394: 17.8735% +Rate for instruction 22395: 17.8732% +Rate for instruction 22396: 17.8736% +Rate for instruction 22397: 17.8742% +Rate for instruction 22398: 17.8743% +Rate for instruction 22399: 17.874% +Rate for instruction 22400: 17.8735% +Rate for instruction 22401: 17.8732% +Rate for instruction 22402: 17.8728% +Rate for instruction 22403: 17.8723% +Rate for instruction 22404: 17.8722% +Rate for instruction 22405: 17.8718% +Rate for instruction 22406: 17.8715% +Rate for instruction 22407: 17.8717% +Rate for instruction 22408: 17.8713% +Rate for instruction 22409: 17.8717% +Rate for instruction 22410: 17.8712% +Rate for instruction 22411: 17.8716% +Rate for instruction 22412: 17.8717% +Rate for instruction 22413: 17.8717% +Rate for instruction 22414: 17.8716% +Rate for instruction 22415: 17.8712% +Rate for instruction 22416: 17.8714% +Rate for instruction 22417: 17.8708% +Rate for instruction 22418: 17.871% +Rate for instruction 22419: 17.8714% +Rate for instruction 22420: 17.871% +Rate for instruction 22421: 17.8703% +Rate for instruction 22422: 17.87% +Rate for instruction 22423: 17.871% +Rate for instruction 22424: 17.8707% +Rate for instruction 22425: 17.8701% +Rate for instruction 22426: 17.8706% +Rate for instruction 22427: 17.8717% +Rate for instruction 22428: 17.8725% +Rate for instruction 22429: 17.872% +Rate for instruction 22430: 17.8729% +Rate for instruction 22431: 17.8735% +Rate for instruction 22432: 17.8732% +Rate for instruction 22433: 17.8733% +Rate for instruction 22434: 17.874% +Rate for instruction 22435: 17.8744% +Rate for instruction 22436: 17.874% +Rate for instruction 22437: 17.8739% +Rate for instruction 22438: 17.8734% +Rate for instruction 22439: 17.8733% +Rate for instruction 22440: 17.873% +Rate for instruction 22441: 17.8727% +Rate for instruction 22442: 17.8721% +Rate for instruction 22443: 17.8717% +Rate for instruction 22444: 17.8717% +Rate for instruction 22445: 17.8723% +Rate for instruction 22446: 17.872% +Rate for instruction 22447: 17.8719% +Rate for instruction 22448: 17.8721% +Rate for instruction 22449: 17.8725% +Rate for instruction 22450: 17.8719% +Rate for instruction 22451: 17.8718% +Rate for instruction 22452: 17.8713% +Rate for instruction 22453: 17.8709% +Rate for instruction 22454: 17.8713% +Rate for instruction 22455: 17.8719% +Rate for instruction 22456: 17.8735% +Rate for instruction 22457: 17.8744% +Rate for instruction 22458: 17.8738% +Rate for instruction 22459: 17.8742% +Rate for instruction 22460: 17.8741% +Rate for instruction 22461: 17.8738% +Rate for instruction 22462: 17.8732% +Rate for instruction 22463: 17.8727% +Rate for instruction 22464: 17.8721% +Rate for instruction 22465: 17.8733% +Rate for instruction 22466: 17.8727% +Rate for instruction 22467: 17.8729% +Rate for instruction 22468: 17.8725% +Rate for instruction 22469: 17.8722% +Rate for instruction 22470: 17.8721% +Rate for instruction 22471: 17.872% +Rate for instruction 22472: 17.8714% +Rate for instruction 22473: 17.8709% +Rate for instruction 22474: 17.871% +Rate for instruction 22475: 17.8712% +Rate for instruction 22476: 17.8716% +Rate for instruction 22477: 17.871% +Rate for instruction 22478: 17.871% +Rate for instruction 22479: 17.8714% +Rate for instruction 22480: 17.8718% +Rate for instruction 22481: 17.8714% +Rate for instruction 22482: 17.8715% +Rate for instruction 22483: 17.871% +Rate for instruction 22484: 17.8714% +Rate for instruction 22485: 17.8711% +Rate for instruction 22486: 17.8708% +Rate for instruction 22487: 17.8707% +Rate for instruction 22488: 17.8706% +Rate for instruction 22489: 17.871% +Rate for instruction 22490: 17.8707% +Rate for instruction 22491: 17.871% +Rate for instruction 22492: 17.8707% +Rate for instruction 22493: 17.8709% +Rate for instruction 22494: 17.8705% +Rate for instruction 22495: 17.8705% +Rate for instruction 22496: 17.8708% +Rate for instruction 22497: 17.8703% +Rate for instruction 22498: 17.8702% +Rate for instruction 22499: 17.8697% +Rate for instruction 22500: 17.8693% +Rate for instruction 22501: 17.869% +Rate for instruction 22502: 17.8686% +Rate for instruction 22503: 17.869% +Rate for instruction 22504: 17.8683% +Rate for instruction 22505: 17.8682% +Rate for instruction 22506: 17.8678% +Rate for instruction 22507: 17.868% +Rate for instruction 22508: 17.8677% +Rate for instruction 22509: 17.8676% +Rate for instruction 22510: 17.8678% +Rate for instruction 22511: 17.8676% +Rate for instruction 22512: 17.8678% +Rate for instruction 22513: 17.868% +Rate for instruction 22514: 17.8674% +Rate for instruction 22515: 17.8668% +Rate for instruction 22516: 17.8665% +Rate for instruction 22517: 17.8669% +Rate for instruction 22518: 17.867% +Rate for instruction 22519: 17.8669% +Rate for instruction 22520: 17.8664% +Rate for instruction 22521: 17.8665% +Rate for instruction 22522: 17.8665% +Rate for instruction 22523: 17.8659% +Rate for instruction 22524: 17.8654% +Rate for instruction 22525: 17.866% +Rate for instruction 22526: 17.8661% +Rate for instruction 22527: 17.8663% +Rate for instruction 22528: 17.8669% +Rate for instruction 22529: 17.8671% +Rate for instruction 22530: 17.8665% +Rate for instruction 22531: 17.8671% +Rate for instruction 22532: 17.8673% +Rate for instruction 22533: 17.8677% +Rate for instruction 22534: 17.8672% +Rate for instruction 22535: 17.8677% +Rate for instruction 22536: 17.8674% +Rate for instruction 22537: 17.8671% +Rate for instruction 22538: 17.8671% +Rate for instruction 22539: 17.8665% +Rate for instruction 22540: 17.8666% +Rate for instruction 22541: 17.867% +Rate for instruction 22542: 17.8669% +Rate for instruction 22543: 17.8663% +Rate for instruction 22544: 17.8661% +Rate for instruction 22545: 17.8655% +Rate for instruction 22546: 17.8656% +Rate for instruction 22547: 17.8655% +Rate for instruction 22548: 17.8664% +Rate for instruction 22549: 17.8671% +Rate for instruction 22550: 17.868% +Rate for instruction 22551: 17.8678% +Rate for instruction 22552: 17.8685% +Rate for instruction 22553: 17.8691% +Rate for instruction 22554: 17.8702% +Rate for instruction 22555: 17.8695% +Rate for instruction 22556: 17.8708% +Rate for instruction 22557: 17.8719% +Rate for instruction 22558: 17.8713% +Rate for instruction 22559: 17.8708% +Rate for instruction 22560: 17.8704% +Rate for instruction 22561: 17.8713% +Rate for instruction 22562: 17.8708% +Rate for instruction 22563: 17.8704% +Rate for instruction 22564: 17.8709% +Rate for instruction 22565: 17.8703% +Rate for instruction 22566: 17.8699% +Rate for instruction 22567: 17.8698% +Rate for instruction 22568: 17.8696% +Rate for instruction 22569: 17.8702% +Rate for instruction 22570: 17.8704% +Rate for instruction 22571: 17.871% +Rate for instruction 22572: 17.8709% +Rate for instruction 22573: 17.8703% +Rate for instruction 22574: 17.8709% +Rate for instruction 22575: 17.8704% +Rate for instruction 22576: 17.8703% +Rate for instruction 22577: 17.87% +Rate for instruction 22578: 17.8694% +Rate for instruction 22579: 17.8703% +Rate for instruction 22580: 17.8716% +Rate for instruction 22581: 17.8713% +Rate for instruction 22582: 17.8715% +Rate for instruction 22583: 17.8717% +Rate for instruction 22584: 17.8725% +Rate for instruction 22585: 17.8719% +Rate for instruction 22586: 17.8714% +Rate for instruction 22587: 17.8708% +Rate for instruction 22588: 17.8705% +Rate for instruction 22589: 17.8699% +Rate for instruction 22590: 17.8701% +Rate for instruction 22591: 17.8697% +Rate for instruction 22592: 17.8694% +Rate for instruction 22593: 17.8688% +Rate for instruction 22594: 17.8692% +Rate for instruction 22595: 17.8694% +Rate for instruction 22596: 17.8693% +Rate for instruction 22597: 17.8693% +Rate for instruction 22598: 17.8687% +Rate for instruction 22599: 17.8691% +Rate for instruction 22600: 17.869% +Rate for instruction 22601: 17.8696% +Rate for instruction 22602: 17.8696% +Rate for instruction 22603: 17.8694% +Rate for instruction 22604: 17.8687% +Rate for instruction 22605: 17.8686% +Rate for instruction 22606: 17.8687% +Rate for instruction 22607: 17.8689% +Rate for instruction 22608: 17.8688% +Rate for instruction 22609: 17.8682% +Rate for instruction 22610: 17.8683% +Rate for instruction 22611: 17.8676% +Rate for instruction 22612: 17.8679% +Rate for instruction 22613: 17.8676% +Rate for instruction 22614: 17.8675% +Rate for instruction 22615: 17.8674% +Rate for instruction 22616: 17.8676% +Rate for instruction 22617: 17.8685% +Rate for instruction 22618: 17.8679% +Rate for instruction 22619: 17.868% +Rate for instruction 22620: 17.8677% +Rate for instruction 22621: 17.8672% +Rate for instruction 22622: 17.8669% +Rate for instruction 22623: 17.8663% +Rate for instruction 22624: 17.8662% +Rate for instruction 22625: 17.8668% +Rate for instruction 22626: 17.867% +Rate for instruction 22627: 17.8664% +Rate for instruction 22628: 17.8665% +Rate for instruction 22629: 17.8674% +Rate for instruction 22630: 17.8676% +Rate for instruction 22631: 17.8671% +Rate for instruction 22632: 17.8677% +Rate for instruction 22633: 17.8683% +Rate for instruction 22634: 17.8685% +Rate for instruction 22635: 17.8682% +Rate for instruction 22636: 17.8688% +Rate for instruction 22637: 17.869% +Rate for instruction 22638: 17.8684% +Rate for instruction 22639: 17.8681% +Rate for instruction 22640: 17.8685% +Rate for instruction 22641: 17.8684% +Rate for instruction 22642: 17.8688% +Rate for instruction 22643: 17.8689% +Rate for instruction 22644: 17.8684% +Rate for instruction 22645: 17.8683% +Rate for instruction 22646: 17.868% +Rate for instruction 22647: 17.8683% +Rate for instruction 22648: 17.8683% +Rate for instruction 22649: 17.8679% +Rate for instruction 22650: 17.8681% +Rate for instruction 22651: 17.8682% +Rate for instruction 22652: 17.8686% +Rate for instruction 22653: 17.868% +Rate for instruction 22654: 17.8679% +Rate for instruction 22655: 17.8677% +Rate for instruction 22656: 17.8676% +Rate for instruction 22657: 17.867% +Rate for instruction 22658: 17.8671% +Rate for instruction 22659: 17.8668% +Rate for instruction 22660: 17.8665% +Rate for instruction 22661: 17.8662% +Rate for instruction 22662: 17.866% +Rate for instruction 22663: 17.8662% +Rate for instruction 22664: 17.8669% +Rate for instruction 22665: 17.8673% +Rate for instruction 22666: 17.8676% +Rate for instruction 22667: 17.8674% +Rate for instruction 22668: 17.8672% +Rate for instruction 22669: 17.8667% +Rate for instruction 22670: 17.8666% +Rate for instruction 22671: 17.866% +Rate for instruction 22672: 17.8655% +Rate for instruction 22673: 17.8661% +Rate for instruction 22674: 17.8665% +Rate for instruction 22675: 17.8659% +Rate for instruction 22676: 17.866% +Rate for instruction 22677: 17.866% +Rate for instruction 22678: 17.8667% +Rate for instruction 22679: 17.8665% +Rate for instruction 22680: 17.8669% +Rate for instruction 22681: 17.8666% +Rate for instruction 22682: 17.8665% +Rate for instruction 22683: 17.866% +Rate for instruction 22684: 17.8664% +Rate for instruction 22685: 17.867% +Rate for instruction 22686: 17.8671% +Rate for instruction 22687: 17.867% +Rate for instruction 22688: 17.8667% +Rate for instruction 22689: 17.8671% +Rate for instruction 22690: 17.8666% +Rate for instruction 22691: 17.8675% +Rate for instruction 22692: 17.8673% +Rate for instruction 22693: 17.8678% +Rate for instruction 22694: 17.8674% +Rate for instruction 22695: 17.8668% +Rate for instruction 22696: 17.8661% +Rate for instruction 22697: 17.8667% +Rate for instruction 22698: 17.8678% +Rate for instruction 22699: 17.8683% +Rate for instruction 22700: 17.8677% +Rate for instruction 22701: 17.8683% +Rate for instruction 22702: 17.8694% +Rate for instruction 22703: 17.8699% +Rate for instruction 22704: 17.8705% +Rate for instruction 22705: 17.8716% +Rate for instruction 22706: 17.8716% +Rate for instruction 22707: 17.871% +Rate for instruction 22708: 17.8708% +Rate for instruction 22709: 17.8703% +Rate for instruction 22710: 17.8697% +Rate for instruction 22711: 17.8694% +Rate for instruction 22712: 17.869% +Rate for instruction 22713: 17.8689% +Rate for instruction 22714: 17.8691% +Rate for instruction 22715: 17.8685% +Rate for instruction 22716: 17.8682% +Rate for instruction 22717: 17.8682% +Rate for instruction 22718: 17.8678% +Rate for instruction 22719: 17.8675% +Rate for instruction 22720: 17.8671% +Rate for instruction 22721: 17.8665% +Rate for instruction 22722: 17.8663% +Rate for instruction 22723: 17.8671% +Rate for instruction 22724: 17.8673% +Rate for instruction 22725: 17.8679% +Rate for instruction 22726: 17.8673% +Rate for instruction 22727: 17.8678% +Rate for instruction 22728: 17.8687% +Rate for instruction 22729: 17.8688% +Rate for instruction 22730: 17.8682% +Rate for instruction 22731: 17.8679% +Rate for instruction 22732: 17.8673% +Rate for instruction 22733: 17.8668% +Rate for instruction 22734: 17.8662% +Rate for instruction 22735: 17.8661% +Rate for instruction 22736: 17.8655% +Rate for instruction 22737: 17.8657% +Rate for instruction 22738: 17.8653% +Rate for instruction 22739: 17.8647% +Rate for instruction 22740: 17.8644% +Rate for instruction 22741: 17.8643% +Rate for instruction 22742: 17.8642% +Rate for instruction 22743: 17.8639% +Rate for instruction 22744: 17.8633% +Rate for instruction 22745: 17.8638% +Rate for instruction 22746: 17.8634% +Rate for instruction 22747: 17.8641% +Rate for instruction 22748: 17.8647% +Rate for instruction 22749: 17.8642% +Rate for instruction 22750: 17.864% +Rate for instruction 22751: 17.8639% +Rate for instruction 22752: 17.8637% +Rate for instruction 22753: 17.8647% +Rate for instruction 22754: 17.8649% +Rate for instruction 22755: 17.8648% +Rate for instruction 22756: 17.8648% +Rate for instruction 22757: 17.8644% +Rate for instruction 22758: 17.8643% +Rate for instruction 22759: 17.8645% +Rate for instruction 22760: 17.8654% +Rate for instruction 22761: 17.865% +Rate for instruction 22762: 17.8643% +Rate for instruction 22763: 17.8641% +Rate for instruction 22764: 17.8635% +Rate for instruction 22765: 17.8633% +Rate for instruction 22766: 17.8629% +Rate for instruction 22767: 17.863% +Rate for instruction 22768: 17.863% +Rate for instruction 22769: 17.8639% +Rate for instruction 22770: 17.8647% +Rate for instruction 22771: 17.8642% +Rate for instruction 22772: 17.8646% +Rate for instruction 22773: 17.864% +Rate for instruction 22774: 17.8642% +Rate for instruction 22775: 17.8648% +Rate for instruction 22776: 17.8645% +Rate for instruction 22777: 17.8652% +Rate for instruction 22778: 17.865% +Rate for instruction 22779: 17.8655% +Rate for instruction 22780: 17.8653% +Rate for instruction 22781: 17.8653% +Rate for instruction 22782: 17.8652% +Rate for instruction 22783: 17.8659% +Rate for instruction 22784: 17.8653% +Rate for instruction 22785: 17.8654% +Rate for instruction 22786: 17.8656% +Rate for instruction 22787: 17.8655% +Rate for instruction 22788: 17.8661% +Rate for instruction 22789: 17.867% +Rate for instruction 22790: 17.8672% +Rate for instruction 22791: 17.8666% +Rate for instruction 22792: 17.867% +Rate for instruction 22793: 17.8676% +Rate for instruction 22794: 17.8671% +Rate for instruction 22795: 17.8672% +Rate for instruction 22796: 17.8672% +Rate for instruction 22797: 17.8673% +Rate for instruction 22798: 17.8677% +Rate for instruction 22799: 17.8681% +Rate for instruction 22800: 17.8681% +Rate for instruction 22801: 17.8687% +Rate for instruction 22802: 17.8688% +Rate for instruction 22803: 17.8687% +Rate for instruction 22804: 17.8691% +Rate for instruction 22805: 17.8684% +Rate for instruction 22806: 17.8683% +Rate for instruction 22807: 17.8682% +Rate for instruction 22808: 17.8688% +Rate for instruction 22809: 17.8699% +Rate for instruction 22810: 17.8706% +Rate for instruction 22811: 17.87% +Rate for instruction 22812: 17.8697% +Rate for instruction 22813: 17.8701% +Rate for instruction 22814: 17.8703% +Rate for instruction 22815: 17.8704% +Rate for instruction 22816: 17.8699% +Rate for instruction 22817: 17.8697% +Rate for instruction 22818: 17.869% +Rate for instruction 22819: 17.8686% +Rate for instruction 22820: 17.8685% +Rate for instruction 22821: 17.8682% +Rate for instruction 22822: 17.8678% +Rate for instruction 22823: 17.8673% +Rate for instruction 22824: 17.867% +Rate for instruction 22825: 17.8664% +Rate for instruction 22826: 17.8658% +Rate for instruction 22827: 17.866% +Rate for instruction 22828: 17.8658% +Rate for instruction 22829: 17.8653% +Rate for instruction 22830: 17.865% +Rate for instruction 22831: 17.8649% +Rate for instruction 22832: 17.865% +Rate for instruction 22833: 17.8644% +Rate for instruction 22834: 17.8644% +Rate for instruction 22835: 17.8642% +Rate for instruction 22836: 17.8636% +Rate for instruction 22837: 17.8636% +Rate for instruction 22838: 17.8642% +Rate for instruction 22839: 17.8642% +Rate for instruction 22840: 17.8638% +Rate for instruction 22841: 17.8637% +Rate for instruction 22842: 17.8636% +Rate for instruction 22843: 17.8631% +Rate for instruction 22844: 17.8629% +Rate for instruction 22845: 17.8624% +Rate for instruction 22846: 17.8621% +Rate for instruction 22847: 17.8617% +Rate for instruction 22848: 17.8611% +Rate for instruction 22849: 17.8613% +Rate for instruction 22850: 17.8607% +Rate for instruction 22851: 17.8611% +Rate for instruction 22852: 17.8605% +Rate for instruction 22853: 17.8612% +Rate for instruction 22854: 17.8618% +Rate for instruction 22855: 17.8612% +Rate for instruction 22856: 17.8605% +Rate for instruction 22857: 17.8601% +Rate for instruction 22858: 17.8595% +Rate for instruction 22859: 17.8594% +Rate for instruction 22860: 17.8596% +Rate for instruction 22861: 17.86% +Rate for instruction 22862: 17.8594% +Rate for instruction 22863: 17.8589% +Rate for instruction 22864: 17.859% +Rate for instruction 22865: 17.8592% +Rate for instruction 22866: 17.8596% +Rate for instruction 22867: 17.8602% +Rate for instruction 22868: 17.8597% +Rate for instruction 22869: 17.86% +Rate for instruction 22870: 17.8597% +Rate for instruction 22871: 17.8593% +Rate for instruction 22872: 17.8591% +Rate for instruction 22873: 17.8592% +Rate for instruction 22874: 17.8596% +Rate for instruction 22875: 17.8595% +Rate for instruction 22876: 17.8594% +Rate for instruction 22877: 17.8594% +Rate for instruction 22878: 17.859% +Rate for instruction 22879: 17.8586% +Rate for instruction 22880: 17.8588% +Rate for instruction 22881: 17.8592% +Rate for instruction 22882: 17.8587% +Rate for instruction 22883: 17.8595% +Rate for instruction 22884: 17.8592% +Rate for instruction 22885: 17.8594% +Rate for instruction 22886: 17.8595% +Rate for instruction 22887: 17.8595% +Rate for instruction 22888: 17.8589% +Rate for instruction 22889: 17.8588% +Rate for instruction 22890: 17.8584% +Rate for instruction 22891: 17.8589% +Rate for instruction 22892: 17.8587% +Rate for instruction 22893: 17.8589% +Rate for instruction 22894: 17.8591% +Rate for instruction 22895: 17.859% +Rate for instruction 22896: 17.8592% +Rate for instruction 22897: 17.8591% +Rate for instruction 22898: 17.859% +Rate for instruction 22899: 17.8593% +Rate for instruction 22900: 17.859% +Rate for instruction 22901: 17.8589% +Rate for instruction 22902: 17.8591% +Rate for instruction 22903: 17.8588% +Rate for instruction 22904: 17.8589% +Rate for instruction 22905: 17.8586% +Rate for instruction 22906: 17.8588% +Rate for instruction 22907: 17.8584% +Rate for instruction 22908: 17.8583% +Rate for instruction 22909: 17.8588% +Rate for instruction 22910: 17.8584% +Rate for instruction 22911: 17.8586% +Rate for instruction 22912: 17.8582% +Rate for instruction 22913: 17.8576% +Rate for instruction 22914: 17.858% +Rate for instruction 22915: 17.8575% +Rate for instruction 22916: 17.8576% +Rate for instruction 22917: 17.8573% +Rate for instruction 22918: 17.8577% +Rate for instruction 22919: 17.8574% +Rate for instruction 22920: 17.8577% +Rate for instruction 22921: 17.8574% +Rate for instruction 22922: 17.8583% +Rate for instruction 22923: 17.8583% +Rate for instruction 22924: 17.8577% +Rate for instruction 22925: 17.8576% +Rate for instruction 22926: 17.858% +Rate for instruction 22927: 17.8579% +Rate for instruction 22928: 17.8583% +Rate for instruction 22929: 17.858% +Rate for instruction 22930: 17.8579% +Rate for instruction 22931: 17.8576% +Rate for instruction 22932: 17.8572% +Rate for instruction 22933: 17.8571% +Rate for instruction 22934: 17.8573% +Rate for instruction 22935: 17.8574% +Rate for instruction 22936: 17.8571% +Rate for instruction 22937: 17.8568% +Rate for instruction 22938: 17.8566% +Rate for instruction 22939: 17.8561% +Rate for instruction 22940: 17.8555% +Rate for instruction 22941: 17.8562% +Rate for instruction 22942: 17.8568% +Rate for instruction 22943: 17.8565% +Rate for instruction 22944: 17.8562% +Rate for instruction 22945: 17.8556% +Rate for instruction 22946: 17.8557% +Rate for instruction 22947: 17.8551% +Rate for instruction 22948: 17.8546% +Rate for instruction 22949: 17.8545% +Rate for instruction 22950: 17.8539% +Rate for instruction 22951: 17.8535% +Rate for instruction 22952: 17.8529% +Rate for instruction 22953: 17.8526% +Rate for instruction 22954: 17.8522% +Rate for instruction 22955: 17.8519% +Rate for instruction 22956: 17.8518% +Rate for instruction 22957: 17.852% +Rate for instruction 22958: 17.8522% +Rate for instruction 22959: 17.8518% +Rate for instruction 22960: 17.8512% +Rate for instruction 22961: 17.8511% +Rate for instruction 22962: 17.8513% +Rate for instruction 22963: 17.852% +Rate for instruction 22964: 17.8526% +Rate for instruction 22965: 17.8523% +Rate for instruction 22966: 17.8527% +Rate for instruction 22967: 17.8529% +Rate for instruction 22968: 17.8532% +Rate for instruction 22969: 17.8541% +Rate for instruction 22970: 17.8536% +Rate for instruction 22971: 17.8533% +Rate for instruction 22972: 17.8529% +Rate for instruction 22973: 17.8523% +Rate for instruction 22974: 17.8517% +Rate for instruction 22975: 17.8517% +Rate for instruction 22976: 17.852% +Rate for instruction 22977: 17.8519% +Rate for instruction 22978: 17.8514% +Rate for instruction 22979: 17.8526% +Rate for instruction 22980: 17.8542% +Rate for instruction 22981: 17.8539% +Rate for instruction 22982: 17.8547% +Rate for instruction 22983: 17.8546% +Rate for instruction 22984: 17.8546% +Rate for instruction 22985: 17.8548% +Rate for instruction 22986: 17.8549% +Rate for instruction 22987: 17.8548% +Rate for instruction 22988: 17.8544% +Rate for instruction 22989: 17.8544% +Rate for instruction 22990: 17.854% +Rate for instruction 22991: 17.8547% +Rate for instruction 22992: 17.8554% +Rate for instruction 22993: 17.8562% +Rate for instruction 22994: 17.8569% +Rate for instruction 22995: 17.8576% +Rate for instruction 22996: 17.8585% +Rate for instruction 22997: 17.8596% +Rate for instruction 22998: 17.859% +Rate for instruction 22999: 17.8584% +Rate for instruction 23000: 17.8588% +Rate for instruction 23001: 17.8586% +Rate for instruction 23002: 17.8589% +Rate for instruction 23003: 17.8591% +Rate for instruction 23004: 17.859% +Rate for instruction 23005: 17.8584% +Rate for instruction 23006: 17.8581% +Rate for instruction 23007: 17.8578% +Rate for instruction 23008: 17.8581% +Rate for instruction 23009: 17.8578% +Rate for instruction 23010: 17.8585% +Rate for instruction 23011: 17.8581% +Rate for instruction 23012: 17.8586% +Rate for instruction 23013: 17.858% +Rate for instruction 23014: 17.8578% +Rate for instruction 23015: 17.8575% +Rate for instruction 23016: 17.857% +Rate for instruction 23017: 17.8569% +Rate for instruction 23018: 17.8567% +Rate for instruction 23019: 17.8562% +Rate for instruction 23020: 17.8558% +Rate for instruction 23021: 17.8557% +Rate for instruction 23022: 17.8551% +Rate for instruction 23023: 17.8544% +Rate for instruction 23024: 17.8542% +Rate for instruction 23025: 17.8542% +Rate for instruction 23026: 17.854% +Rate for instruction 23027: 17.8542% +Rate for instruction 23028: 17.8536% +Rate for instruction 23029: 17.8536% +Rate for instruction 23030: 17.8539% +Rate for instruction 23031: 17.8544% +Rate for instruction 23032: 17.8541% +Rate for instruction 23033: 17.855% +Rate for instruction 23034: 17.8556% +Rate for instruction 23035: 17.8565% +Rate for instruction 23036: 17.8559% +Rate for instruction 23037: 17.856% +Rate for instruction 23038: 17.8553% +Rate for instruction 23039: 17.8557% +Rate for instruction 23040: 17.8553% +Rate for instruction 23041: 17.8547% +Rate for instruction 23042: 17.8546% +Rate for instruction 23043: 17.854% +Rate for instruction 23044: 17.8535% +Rate for instruction 23045: 17.8529% +Rate for instruction 23046: 17.8526% +Rate for instruction 23047: 17.8527% +Rate for instruction 23048: 17.8528% +Rate for instruction 23049: 17.8522% +Rate for instruction 23050: 17.8516% +Rate for instruction 23051: 17.8509% +Rate for instruction 23052: 17.851% +Rate for instruction 23053: 17.8506% +Rate for instruction 23054: 17.8506% +Rate for instruction 23055: 17.8505% +Rate for instruction 23056: 17.8509% +Rate for instruction 23057: 17.851% +Rate for instruction 23058: 17.8507% +Rate for instruction 23059: 17.8508% +Rate for instruction 23060: 17.8508% +Rate for instruction 23061: 17.8509% +Rate for instruction 23062: 17.8506% +Rate for instruction 23063: 17.85% +Rate for instruction 23064: 17.8504% +Rate for instruction 23065: 17.8506% +Rate for instruction 23066: 17.85% +Rate for instruction 23067: 17.8504% +Rate for instruction 23068: 17.8503% +Rate for instruction 23069: 17.8507% +Rate for instruction 23070: 17.8501% +Rate for instruction 23071: 17.85% +Rate for instruction 23072: 17.8494% +Rate for instruction 23073: 17.8491% +Rate for instruction 23074: 17.8487% +Rate for instruction 23075: 17.8489% +Rate for instruction 23076: 17.8493% +Rate for instruction 23077: 17.8487% +Rate for instruction 23078: 17.8491% +Rate for instruction 23079: 17.8491% +Rate for instruction 23080: 17.8485% +Rate for instruction 23081: 17.8486% +Rate for instruction 23082: 17.8486% +Rate for instruction 23083: 17.8482% +Rate for instruction 23084: 17.8484% +Rate for instruction 23085: 17.8483% +Rate for instruction 23086: 17.8485% +Rate for instruction 23087: 17.8486% +Rate for instruction 23088: 17.8487% +Rate for instruction 23089: 17.8482% +Rate for instruction 23090: 17.8478% +Rate for instruction 23091: 17.8478% +Rate for instruction 23092: 17.8474% +Rate for instruction 23093: 17.8471% +Rate for instruction 23094: 17.8472% +Rate for instruction 23095: 17.8476% +Rate for instruction 23096: 17.847% +Rate for instruction 23097: 17.8472% +Rate for instruction 23098: 17.8468% +Rate for instruction 23099: 17.8465% +Rate for instruction 23100: 17.847% +Rate for instruction 23101: 17.8479% +Rate for instruction 23102: 17.8482% +Rate for instruction 23103: 17.8476% +Rate for instruction 23104: 17.8471% +Rate for instruction 23105: 17.8473% +Rate for instruction 23106: 17.8479% +Rate for instruction 23107: 17.8486% +Rate for instruction 23108: 17.8484% +Rate for instruction 23109: 17.8479% +Rate for instruction 23110: 17.8483% +Rate for instruction 23111: 17.8484% +Rate for instruction 23112: 17.8483% +Rate for instruction 23113: 17.8482% +Rate for instruction 23114: 17.8481% +Rate for instruction 23115: 17.8476% +Rate for instruction 23116: 17.8472% +Rate for instruction 23117: 17.8474% +Rate for instruction 23118: 17.8476% +Rate for instruction 23119: 17.8474% +Rate for instruction 23120: 17.8474% +Rate for instruction 23121: 17.8468% +Rate for instruction 23122: 17.8469% +Rate for instruction 23123: 17.8464% +Rate for instruction 23124: 17.846% +Rate for instruction 23125: 17.8459% +Rate for instruction 23126: 17.8458% +Rate for instruction 23127: 17.8457% +Rate for instruction 23128: 17.8456% +Rate for instruction 23129: 17.8461% +Rate for instruction 23130: 17.8455% +Rate for instruction 23131: 17.8451% +Rate for instruction 23132: 17.8458% +Rate for instruction 23133: 17.8464% +Rate for instruction 23134: 17.8458% +Rate for instruction 23135: 17.8453% +Rate for instruction 23136: 17.8455% +Rate for instruction 23137: 17.8449% +Rate for instruction 23138: 17.845% +Rate for instruction 23139: 17.8451% +Rate for instruction 23140: 17.8456% +Rate for instruction 23141: 17.8458% +Rate for instruction 23142: 17.8457% +Rate for instruction 23143: 17.8451% +Rate for instruction 23144: 17.8455% +Rate for instruction 23145: 17.8457% +Rate for instruction 23146: 17.8455% +Rate for instruction 23147: 17.845% +Rate for instruction 23148: 17.8454% +Rate for instruction 23149: 17.8457% +Rate for instruction 23150: 17.8451% +Rate for instruction 23151: 17.8454% +Rate for instruction 23152: 17.845% +Rate for instruction 23153: 17.8449% +Rate for instruction 23154: 17.8451% +Rate for instruction 23155: 17.8447% +Rate for instruction 23156: 17.8447% +Rate for instruction 23157: 17.845% +Rate for instruction 23158: 17.8449% +Rate for instruction 23159: 17.8451% +Rate for instruction 23160: 17.845% +Rate for instruction 23161: 17.8449% +Rate for instruction 23162: 17.8446% +Rate for instruction 23163: 17.845% +Rate for instruction 23164: 17.8451% +Rate for instruction 23165: 17.845% +Rate for instruction 23166: 17.8443% +Rate for instruction 23167: 17.8442% +Rate for instruction 23168: 17.8436% +Rate for instruction 23169: 17.8434% +Rate for instruction 23170: 17.8433% +Rate for instruction 23171: 17.8432% +Rate for instruction 23172: 17.8425% +Rate for instruction 23173: 17.8431% +Rate for instruction 23174: 17.8433% +Rate for instruction 23175: 17.8434% +Rate for instruction 23176: 17.8438% +Rate for instruction 23177: 17.844% +Rate for instruction 23178: 17.8439% +Rate for instruction 23179: 17.8436% +Rate for instruction 23180: 17.8435% +Rate for instruction 23181: 17.8431% +Rate for instruction 23182: 17.8425% +Rate for instruction 23183: 17.8422% +Rate for instruction 23184: 17.8428% +Rate for instruction 23185: 17.8425% +Rate for instruction 23186: 17.8421% +Rate for instruction 23187: 17.8416% +Rate for instruction 23188: 17.8422% +Rate for instruction 23189: 17.8426% +Rate for instruction 23190: 17.843% +Rate for instruction 23191: 17.8437% +Rate for instruction 23192: 17.8439% +Rate for instruction 23193: 17.8435% +Rate for instruction 23194: 17.8435% +Rate for instruction 23195: 17.8443% +Rate for instruction 23196: 17.8442% +Rate for instruction 23197: 17.8442% +Rate for instruction 23198: 17.8443% +Rate for instruction 23199: 17.8438% +Rate for instruction 23200: 17.8442% +Rate for instruction 23201: 17.844% +Rate for instruction 23202: 17.844% +Rate for instruction 23203: 17.8439% +Rate for instruction 23204: 17.8435% +Rate for instruction 23205: 17.8432% +Rate for instruction 23206: 17.8438% +Rate for instruction 23207: 17.844% +Rate for instruction 23208: 17.844% +Rate for instruction 23209: 17.8443% +Rate for instruction 23210: 17.8437% +Rate for instruction 23211: 17.8434% +Rate for instruction 23212: 17.8434% +Rate for instruction 23213: 17.843% +Rate for instruction 23214: 17.8426% +Rate for instruction 23215: 17.8425% +Rate for instruction 23216: 17.843% +Rate for instruction 23217: 17.8426% +Rate for instruction 23218: 17.843% +Rate for instruction 23219: 17.8424% +Rate for instruction 23220: 17.8424% +Rate for instruction 23221: 17.8423% +Rate for instruction 23222: 17.8426% +Rate for instruction 23223: 17.8423% +Rate for instruction 23224: 17.8418% +Rate for instruction 23225: 17.8417% +Rate for instruction 23226: 17.842% +Rate for instruction 23227: 17.842% +Rate for instruction 23228: 17.8419% +Rate for instruction 23229: 17.8421% +Rate for instruction 23230: 17.8415% +Rate for instruction 23231: 17.8409% +Rate for instruction 23232: 17.8405% +Rate for instruction 23233: 17.8407% +Rate for instruction 23234: 17.8401% +Rate for instruction 23235: 17.8399% +Rate for instruction 23236: 17.8396% +Rate for instruction 23237: 17.84% +Rate for instruction 23238: 17.8402% +Rate for instruction 23239: 17.8404% +Rate for instruction 23240: 17.8403% +Rate for instruction 23241: 17.8405% +Rate for instruction 23242: 17.8408% +Rate for instruction 23243: 17.8403% +Rate for instruction 23244: 17.8407% +Rate for instruction 23245: 17.8411% +Rate for instruction 23246: 17.8417% +Rate for instruction 23247: 17.8414% +Rate for instruction 23248: 17.8408% +Rate for instruction 23249: 17.8404% +Rate for instruction 23250: 17.8401% +Rate for instruction 23251: 17.8397% +Rate for instruction 23252: 17.8392% +Rate for instruction 23253: 17.8388% +Rate for instruction 23254: 17.8383% +Rate for instruction 23255: 17.8389% +Rate for instruction 23256: 17.8388% +Rate for instruction 23257: 17.8382% +Rate for instruction 23258: 17.8378% +Rate for instruction 23259: 17.8377% +Rate for instruction 23260: 17.8374% +Rate for instruction 23261: 17.8368% +Rate for instruction 23262: 17.8365% +Rate for instruction 23263: 17.8361% +Rate for instruction 23264: 17.8361% +Rate for instruction 23265: 17.836% +Rate for instruction 23266: 17.8354% +Rate for instruction 23267: 17.835% +Rate for instruction 23268: 17.8344% +Rate for instruction 23269: 17.8346% +Rate for instruction 23270: 17.8345% +Rate for instruction 23271: 17.8344% +Rate for instruction 23272: 17.835% +Rate for instruction 23273: 17.8349% +Rate for instruction 23274: 17.8343% +Rate for instruction 23275: 17.8351% +Rate for instruction 23276: 17.8359% +Rate for instruction 23277: 17.8367% +Rate for instruction 23278: 17.837% +Rate for instruction 23279: 17.8372% +Rate for instruction 23280: 17.8376% +Rate for instruction 23281: 17.837% +Rate for instruction 23282: 17.8366% +Rate for instruction 23283: 17.836% +Rate for instruction 23284: 17.8355% +Rate for instruction 23285: 17.8352% +Rate for instruction 23286: 17.835% +Rate for instruction 23287: 17.8349% +Rate for instruction 23288: 17.8346% +Rate for instruction 23289: 17.834% +Rate for instruction 23290: 17.8339% +Rate for instruction 23291: 17.8333% +Rate for instruction 23292: 17.833% +Rate for instruction 23293: 17.8328% +Rate for instruction 23294: 17.8322% +Rate for instruction 23295: 17.8319% +Rate for instruction 23296: 17.8318% +Rate for instruction 23297: 17.8313% +Rate for instruction 23298: 17.8311% +Rate for instruction 23299: 17.8306% +Rate for instruction 23300: 17.8309% +Rate for instruction 23301: 17.8313% +Rate for instruction 23302: 17.8307% +Rate for instruction 23303: 17.8302% +Rate for instruction 23304: 17.8308% +Rate for instruction 23305: 17.8308% +Rate for instruction 23306: 17.8306% +Rate for instruction 23307: 17.8311% +Rate for instruction 23308: 17.8307% +Rate for instruction 23309: 17.8301% +Rate for instruction 23310: 17.8303% +Rate for instruction 23311: 17.8305% +Rate for instruction 23312: 17.8306% +Rate for instruction 23313: 17.8308% +Rate for instruction 23314: 17.8309% +Rate for instruction 23315: 17.8308% +Rate for instruction 23316: 17.8307% +Rate for instruction 23317: 17.8317% +Rate for instruction 23318: 17.8324% +Rate for instruction 23319: 17.8332% +Rate for instruction 23320: 17.8344% +Rate for instruction 23321: 17.8349% +Rate for instruction 23322: 17.835% +Rate for instruction 23323: 17.8349% +Rate for instruction 23324: 17.8349% +Rate for instruction 23325: 17.8345% +Rate for instruction 23326: 17.8339% +Rate for instruction 23327: 17.8336% +Rate for instruction 23328: 17.8337% +Rate for instruction 23329: 17.8333% +Rate for instruction 23330: 17.8333% +Rate for instruction 23331: 17.8331% +Rate for instruction 23332: 17.8331% +Rate for instruction 23333: 17.833% +Rate for instruction 23334: 17.8329% +Rate for instruction 23335: 17.8335% +Rate for instruction 23336: 17.8338% +Rate for instruction 23337: 17.8344% +Rate for instruction 23338: 17.8346% +Rate for instruction 23339: 17.8347% +Rate for instruction 23340: 17.8349% +Rate for instruction 23341: 17.8351% +Rate for instruction 23342: 17.8349% +Rate for instruction 23343: 17.8346% +Rate for instruction 23344: 17.8348% +Rate for instruction 23345: 17.8347% +Rate for instruction 23346: 17.8343% +Rate for instruction 23347: 17.8342% +Rate for instruction 23348: 17.8342% +Rate for instruction 23349: 17.8336% +Rate for instruction 23350: 17.8334% +Rate for instruction 23351: 17.8331% +Rate for instruction 23352: 17.8332% +Rate for instruction 23353: 17.8326% +Rate for instruction 23354: 17.832% +Rate for instruction 23355: 17.8319% +Rate for instruction 23356: 17.8314% +Rate for instruction 23357: 17.831% +Rate for instruction 23358: 17.8307% +Rate for instruction 23359: 17.8303% +Rate for instruction 23360: 17.8303% +Rate for instruction 23361: 17.8302% +Rate for instruction 23362: 17.83% +Rate for instruction 23363: 17.8305% +Rate for instruction 23364: 17.8314% +Rate for instruction 23365: 17.831% +Rate for instruction 23366: 17.8307% +Rate for instruction 23367: 17.8311% +Rate for instruction 23368: 17.8316% +Rate for instruction 23369: 17.8317% +Rate for instruction 23370: 17.8316% +Rate for instruction 23371: 17.8313% +Rate for instruction 23372: 17.8312% +Rate for instruction 23373: 17.8314% +Rate for instruction 23374: 17.8318% +Rate for instruction 23375: 17.8316% +Rate for instruction 23376: 17.8313% +Rate for instruction 23377: 17.8312% +Rate for instruction 23378: 17.8309% +Rate for instruction 23379: 17.8307% +Rate for instruction 23380: 17.8314% +Rate for instruction 23381: 17.8323% +Rate for instruction 23382: 17.8323% +Rate for instruction 23383: 17.8319% +Rate for instruction 23384: 17.8316% +Rate for instruction 23385: 17.831% +Rate for instruction 23386: 17.8316% +Rate for instruction 23387: 17.8311% +Rate for instruction 23388: 17.8312% +Rate for instruction 23389: 17.8308% +Rate for instruction 23390: 17.8302% +Rate for instruction 23391: 17.8302% +Rate for instruction 23392: 17.8306% +Rate for instruction 23393: 17.8313% +Rate for instruction 23394: 17.8319% +Rate for instruction 23395: 17.8313% +Rate for instruction 23396: 17.8312% +Rate for instruction 23397: 17.8311% +Rate for instruction 23398: 17.8306% +Rate for instruction 23399: 17.8305% +Rate for instruction 23400: 17.8303% +Rate for instruction 23401: 17.8302% +Rate for instruction 23402: 17.8307% +Rate for instruction 23403: 17.8301% +Rate for instruction 23404: 17.8299% +Rate for instruction 23405: 17.8299% +Rate for instruction 23406: 17.8301% +Rate for instruction 23407: 17.83% +Rate for instruction 23408: 17.8294% +Rate for instruction 23409: 17.8292% +Rate for instruction 23410: 17.8291% +Rate for instruction 23411: 17.8296% +Rate for instruction 23412: 17.8297% +Rate for instruction 23413: 17.8302% +Rate for instruction 23414: 17.8309% +Rate for instruction 23415: 17.8318% +Rate for instruction 23416: 17.8312% +Rate for instruction 23417: 17.8321% +Rate for instruction 23418: 17.8332% +Rate for instruction 23419: 17.8332% +Rate for instruction 23420: 17.8334% +Rate for instruction 23421: 17.8328% +Rate for instruction 23422: 17.8327% +Rate for instruction 23423: 17.8323% +Rate for instruction 23424: 17.8317% +Rate for instruction 23425: 17.8313% +Rate for instruction 23426: 17.831% +Rate for instruction 23427: 17.8306% +Rate for instruction 23428: 17.8301% +Rate for instruction 23429: 17.8295% +Rate for instruction 23430: 17.8291% +Rate for instruction 23431: 17.829% +Rate for instruction 23432: 17.8286% +Rate for instruction 23433: 17.829% +Rate for instruction 23434: 17.8284% +Rate for instruction 23435: 17.8288% +Rate for instruction 23436: 17.8282% +Rate for instruction 23437: 17.8287% +Rate for instruction 23438: 17.8293% +Rate for instruction 23439: 17.8293% +Rate for instruction 23440: 17.8302% +Rate for instruction 23441: 17.8311% +Rate for instruction 23442: 17.8311% +Rate for instruction 23443: 17.8305% +Rate for instruction 23444: 17.8308% +Rate for instruction 23445: 17.8302% +Rate for instruction 23446: 17.8302% +Rate for instruction 23447: 17.8314% +Rate for instruction 23448: 17.8318% +Rate for instruction 23449: 17.8325% +Rate for instruction 23450: 17.8324% +Rate for instruction 23451: 17.832% +Rate for instruction 23452: 17.8314% +Rate for instruction 23453: 17.8311% +Rate for instruction 23454: 17.8305% +Rate for instruction 23455: 17.8301% +Rate for instruction 23456: 17.8295% +Rate for instruction 23457: 17.8306% +Rate for instruction 23458: 17.8305% +Rate for instruction 23459: 17.8305% +Rate for instruction 23460: 17.8301% +Rate for instruction 23461: 17.8298% +Rate for instruction 23462: 17.8294% +Rate for instruction 23463: 17.8289% +Rate for instruction 23464: 17.8287% +Rate for instruction 23465: 17.8286% +Rate for instruction 23466: 17.8285% +Rate for instruction 23467: 17.8279% +Rate for instruction 23468: 17.8281% +Rate for instruction 23469: 17.8277% +Rate for instruction 23470: 17.8272% +Rate for instruction 23471: 17.827% +Rate for instruction 23472: 17.8278% +Rate for instruction 23473: 17.8276% +Rate for instruction 23474: 17.8273% +Rate for instruction 23475: 17.8267% +Rate for instruction 23476: 17.8269% +Rate for instruction 23477: 17.8267% +Rate for instruction 23478: 17.8266% +Rate for instruction 23479: 17.8273% +Rate for instruction 23480: 17.8283% +Rate for instruction 23481: 17.829% +Rate for instruction 23482: 17.8288% +Rate for instruction 23483: 17.8282% +Rate for instruction 23484: 17.8277% +Rate for instruction 23485: 17.8273% +Rate for instruction 23486: 17.8272% +Rate for instruction 23487: 17.8274% +Rate for instruction 23488: 17.8272% +Rate for instruction 23489: 17.8266% +Rate for instruction 23490: 17.8263% +Rate for instruction 23491: 17.8259% +Rate for instruction 23492: 17.8256% +Rate for instruction 23493: 17.8252% +Rate for instruction 23494: 17.8249% +Rate for instruction 23495: 17.8248% +Rate for instruction 23496: 17.8247% +Rate for instruction 23497: 17.8243% +Rate for instruction 23498: 17.8242% +Rate for instruction 23499: 17.8237% +Rate for instruction 23500: 17.8241% +Rate for instruction 23501: 17.8242% +Rate for instruction 23502: 17.8236% +Rate for instruction 23503: 17.8236% +Rate for instruction 23504: 17.8232% +Rate for instruction 23505: 17.8239% +Rate for instruction 23506: 17.824% +Rate for instruction 23507: 17.8249% +Rate for instruction 23508: 17.8257% +Rate for instruction 23509: 17.8268% +Rate for instruction 23510: 17.8268% +Rate for instruction 23511: 17.8266% +Rate for instruction 23512: 17.8276% +Rate for instruction 23513: 17.8273% +Rate for instruction 23514: 17.8269% +Rate for instruction 23515: 17.828% +Rate for instruction 23516: 17.8277% +Rate for instruction 23517: 17.8274% +Rate for instruction 23518: 17.8278% +Rate for instruction 23519: 17.8272% +Rate for instruction 23520: 17.8268% +Rate for instruction 23521: 17.8267% +Rate for instruction 23522: 17.8272% +Rate for instruction 23523: 17.8273% +Rate for instruction 23524: 17.8282% +Rate for instruction 23525: 17.8279% +Rate for instruction 23526: 17.8281% +Rate for instruction 23527: 17.8288% +Rate for instruction 23528: 17.8286% +Rate for instruction 23529: 17.829% +Rate for instruction 23530: 17.8285% +Rate for instruction 23531: 17.8294% +Rate for instruction 23532: 17.83% +Rate for instruction 23533: 17.8297% +Rate for instruction 23534: 17.8302% +Rate for instruction 23535: 17.8308% +Rate for instruction 23536: 17.8307% +Rate for instruction 23537: 17.8316% +Rate for instruction 23538: 17.8323% +Rate for instruction 23539: 17.8333% +Rate for instruction 23540: 17.8332% +Rate for instruction 23541: 17.8341% +Rate for instruction 23542: 17.8348% +Rate for instruction 23543: 17.8353% +Rate for instruction 23544: 17.8352% +Rate for instruction 23545: 17.836% +Rate for instruction 23546: 17.8354% +Rate for instruction 23547: 17.8349% +Rate for instruction 23548: 17.8343% +Rate for instruction 23549: 17.835% +Rate for instruction 23550: 17.8354% +Rate for instruction 23551: 17.8358% +Rate for instruction 23552: 17.8356% +Rate for instruction 23553: 17.8356% +Rate for instruction 23554: 17.8353% +Rate for instruction 23555: 17.8349% +Rate for instruction 23556: 17.8348% +Rate for instruction 23557: 17.8357% +Rate for instruction 23558: 17.8353% +Rate for instruction 23559: 17.8352% +Rate for instruction 23560: 17.8346% +Rate for instruction 23561: 17.8345% +Rate for instruction 23562: 17.8342% +Rate for instruction 23563: 17.8352% +Rate for instruction 23564: 17.8348% +Rate for instruction 23565: 17.8358% +Rate for instruction 23566: 17.8362% +Rate for instruction 23567: 17.8361% +Rate for instruction 23568: 17.8372% +Rate for instruction 23569: 17.8366% +Rate for instruction 23570: 17.8369% +Rate for instruction 23571: 17.8367% +Rate for instruction 23572: 17.8369% +Rate for instruction 23573: 17.8363% +Rate for instruction 23574: 17.836% +Rate for instruction 23575: 17.8369% +Rate for instruction 23576: 17.8378% +Rate for instruction 23577: 17.8382% +Rate for instruction 23578: 17.8376% +Rate for instruction 23579: 17.8378% +Rate for instruction 23580: 17.8384% +Rate for instruction 23581: 17.8384% +Rate for instruction 23582: 17.8388% +Rate for instruction 23583: 17.8392% +Rate for instruction 23584: 17.8394% +Rate for instruction 23585: 17.8401% +Rate for instruction 23586: 17.8407% +Rate for instruction 23587: 17.8401% +Rate for instruction 23588: 17.8398% +Rate for instruction 23589: 17.8405% +Rate for instruction 23590: 17.8401% +Rate for instruction 23591: 17.8397% +Rate for instruction 23592: 17.8402% +Rate for instruction 23593: 17.8399% +Rate for instruction 23594: 17.8406% +Rate for instruction 23595: 17.8404% +Rate for instruction 23596: 17.8403% +Rate for instruction 23597: 17.84% +Rate for instruction 23598: 17.8397% +Rate for instruction 23599: 17.8391% +Rate for instruction 23600: 17.8387% +Rate for instruction 23601: 17.8384% +Rate for instruction 23602: 17.8393% +Rate for instruction 23603: 17.84% +Rate for instruction 23604: 17.8399% +Rate for instruction 23605: 17.841% +Rate for instruction 23606: 17.8415% +Rate for instruction 23607: 17.8421% +Rate for instruction 23608: 17.8429% +Rate for instruction 23609: 17.8428% +Rate for instruction 23610: 17.8422% +Rate for instruction 23611: 17.842% +Rate for instruction 23612: 17.842% +Rate for instruction 23613: 17.8418% +Rate for instruction 23614: 17.8421% +Rate for instruction 23615: 17.8424% +Rate for instruction 23616: 17.8418% +Rate for instruction 23617: 17.8417% +Rate for instruction 23618: 17.8411% +Rate for instruction 23619: 17.8416% +Rate for instruction 23620: 17.8428% +Rate for instruction 23621: 17.8435% +Rate for instruction 23622: 17.8442% +Rate for instruction 23623: 17.844% +Rate for instruction 23624: 17.8435% +Rate for instruction 23625: 17.8444% +Rate for instruction 23626: 17.8438% +Rate for instruction 23627: 17.8441% +Rate for instruction 23628: 17.8446% +Rate for instruction 23629: 17.8447% +Rate for instruction 23630: 17.8442% +Rate for instruction 23631: 17.8436% +Rate for instruction 23632: 17.8434% +Rate for instruction 23633: 17.8428% +Rate for instruction 23634: 17.8423% +Rate for instruction 23635: 17.8418% +Rate for instruction 23636: 17.842% +Rate for instruction 23637: 17.8414% +Rate for instruction 23638: 17.8411% +Rate for instruction 23639: 17.841% +Rate for instruction 23640: 17.8409% +Rate for instruction 23641: 17.8405% +Rate for instruction 23642: 17.8399% +Rate for instruction 23643: 17.8403% +Rate for instruction 23644: 17.8402% +Rate for instruction 23645: 17.8397% +Rate for instruction 23646: 17.8391% +Rate for instruction 23647: 17.8395% +Rate for instruction 23648: 17.8394% +Rate for instruction 23649: 17.839% +Rate for instruction 23650: 17.8391% +Rate for instruction 23651: 17.8388% +Rate for instruction 23652: 17.8385% +Rate for instruction 23653: 17.8383% +Rate for instruction 23654: 17.8377% +Rate for instruction 23655: 17.8377% +Rate for instruction 23656: 17.8378% +Rate for instruction 23657: 17.8374% +Rate for instruction 23658: 17.8371% +Rate for instruction 23659: 17.8371% +Rate for instruction 23660: 17.8367% +Rate for instruction 23661: 17.8361% +Rate for instruction 23662: 17.8363% +Rate for instruction 23663: 17.8361% +Rate for instruction 23664: 17.836% +Rate for instruction 23665: 17.836% +Rate for instruction 23666: 17.8356% +Rate for instruction 23667: 17.8352% +Rate for instruction 23668: 17.8349% +Rate for instruction 23669: 17.8353% +Rate for instruction 23670: 17.8352% +Rate for instruction 23671: 17.8351% +Rate for instruction 23672: 17.8347% +Rate for instruction 23673: 17.8347% +Rate for instruction 23674: 17.8345% +Rate for instruction 23675: 17.8344% +Rate for instruction 23676: 17.8339% +Rate for instruction 23677: 17.8335% +Rate for instruction 23678: 17.834% +Rate for instruction 23679: 17.8336% +Rate for instruction 23680: 17.8335% +Rate for instruction 23681: 17.8332% +Rate for instruction 23682: 17.8338% +Rate for instruction 23683: 17.8332% +Rate for instruction 23684: 17.8329% +Rate for instruction 23685: 17.8332% +Rate for instruction 23686: 17.8335% +Rate for instruction 23687: 17.8341% +Rate for instruction 23688: 17.8345% +Rate for instruction 23689: 17.8342% +Rate for instruction 23690: 17.8349% +Rate for instruction 23691: 17.8348% +Rate for instruction 23692: 17.8345% +Rate for instruction 23693: 17.8344% +Rate for instruction 23694: 17.8342% +Rate for instruction 23695: 17.8337% +Rate for instruction 23696: 17.8338% +Rate for instruction 23697: 17.8344% +Rate for instruction 23698: 17.8338% +Rate for instruction 23699: 17.834% +Rate for instruction 23700: 17.8336% +Rate for instruction 23701: 17.833% +Rate for instruction 23702: 17.833% +Rate for instruction 23703: 17.8331% +Rate for instruction 23704: 17.8331% +Rate for instruction 23705: 17.8334% +Rate for instruction 23706: 17.8331% +Rate for instruction 23707: 17.833% +Rate for instruction 23708: 17.8334% +Rate for instruction 23709: 17.8341% +Rate for instruction 23710: 17.834% +Rate for instruction 23711: 17.834% +Rate for instruction 23712: 17.8336% +Rate for instruction 23713: 17.8332% +Rate for instruction 23714: 17.8326% +Rate for instruction 23715: 17.8325% +Rate for instruction 23716: 17.8326% +Rate for instruction 23717: 17.8321% +Rate for instruction 23718: 17.8315% +Rate for instruction 23719: 17.8322% +Rate for instruction 23720: 17.8333% +Rate for instruction 23721: 17.8332% +Rate for instruction 23722: 17.8332% +Rate for instruction 23723: 17.833% +Rate for instruction 23724: 17.8335% +Rate for instruction 23725: 17.8336% +Rate for instruction 23726: 17.8338% +Rate for instruction 23727: 17.8337% +Rate for instruction 23728: 17.8333% +Rate for instruction 23729: 17.8327% +Rate for instruction 23730: 17.8324% +Rate for instruction 23731: 17.8326% +Rate for instruction 23732: 17.8327% +Rate for instruction 23733: 17.8327% +Rate for instruction 23734: 17.8328% +Rate for instruction 23735: 17.8322% +Rate for instruction 23736: 17.8319% +Rate for instruction 23737: 17.8318% +Rate for instruction 23738: 17.8316% +Rate for instruction 23739: 17.8316% +Rate for instruction 23740: 17.8314% +Rate for instruction 23741: 17.8313% +Rate for instruction 23742: 17.8308% +Rate for instruction 23743: 17.8311% +Rate for instruction 23744: 17.8314% +Rate for instruction 23745: 17.8313% +Rate for instruction 23746: 17.8309% +Rate for instruction 23747: 17.8315% +Rate for instruction 23748: 17.8309% +Rate for instruction 23749: 17.8311% +Rate for instruction 23750: 17.8315% +Rate for instruction 23751: 17.8315% +Rate for instruction 23752: 17.8321% +Rate for instruction 23753: 17.8328% +Rate for instruction 23754: 17.8337% +Rate for instruction 23755: 17.8337% +Rate for instruction 23756: 17.8334% +Rate for instruction 23757: 17.8329% +Rate for instruction 23758: 17.8326% +Rate for instruction 23759: 17.8322% +Rate for instruction 23760: 17.8329% +Rate for instruction 23761: 17.8334% +Rate for instruction 23762: 17.8332% +Rate for instruction 23763: 17.8329% +Rate for instruction 23764: 17.8325% +Rate for instruction 23765: 17.832% +Rate for instruction 23766: 17.8318% +Rate for instruction 23767: 17.8323% +Rate for instruction 23768: 17.8327% +Rate for instruction 23769: 17.8321% +Rate for instruction 23770: 17.833% +Rate for instruction 23771: 17.8332% +Rate for instruction 23772: 17.8326% +Rate for instruction 23773: 17.8328% +Rate for instruction 23774: 17.8326% +Rate for instruction 23775: 17.832% +Rate for instruction 23776: 17.8316% +Rate for instruction 23777: 17.8323% +Rate for instruction 23778: 17.8318% +Rate for instruction 23779: 17.8324% +Rate for instruction 23780: 17.8331% +Rate for instruction 23781: 17.8335% +Rate for instruction 23782: 17.8335% +Rate for instruction 23783: 17.8334% +Rate for instruction 23784: 17.8328% +Rate for instruction 23785: 17.8324% +Rate for instruction 23786: 17.8318% +Rate for instruction 23787: 17.8319% +Rate for instruction 23788: 17.8313% +Rate for instruction 23789: 17.8309% +Rate for instruction 23790: 17.8303% +Rate for instruction 23791: 17.8303% +Rate for instruction 23792: 17.8301% +Rate for instruction 23793: 17.8295% +Rate for instruction 23794: 17.8292% +Rate for instruction 23795: 17.8288% +Rate for instruction 23796: 17.8285% +Rate for instruction 23797: 17.8286% +Rate for instruction 23798: 17.8283% +Rate for instruction 23799: 17.8285% +Rate for instruction 23800: 17.8284% +Rate for instruction 23801: 17.8283% +Rate for instruction 23802: 17.8282% +Rate for instruction 23803: 17.8281% +Rate for instruction 23804: 17.828% +Rate for instruction 23805: 17.8282% +Rate for instruction 23806: 17.8278% +Rate for instruction 23807: 17.828% +Rate for instruction 23808: 17.8278% +Rate for instruction 23809: 17.8275% +Rate for instruction 23810: 17.8269% +Rate for instruction 23811: 17.8265% +Rate for instruction 23812: 17.8267% +Rate for instruction 23813: 17.8266% +Rate for instruction 23814: 17.8265% +Rate for instruction 23815: 17.8266% +Rate for instruction 23816: 17.8265% +Rate for instruction 23817: 17.8267% +Rate for instruction 23818: 17.8268% +Rate for instruction 23819: 17.827% +Rate for instruction 23820: 17.8265% +Rate for instruction 23821: 17.8261% +Rate for instruction 23822: 17.8257% +Rate for instruction 23823: 17.8254% +Rate for instruction 23824: 17.8252% +Rate for instruction 23825: 17.8252% +Rate for instruction 23826: 17.8253% +Rate for instruction 23827: 17.8253% +Rate for instruction 23828: 17.8254% +Rate for instruction 23829: 17.8259% +Rate for instruction 23830: 17.8258% +Rate for instruction 23831: 17.8259% +Rate for instruction 23832: 17.826% +Rate for instruction 23833: 17.8259% +Rate for instruction 23834: 17.8256% +Rate for instruction 23835: 17.8258% +Rate for instruction 23836: 17.8264% +Rate for instruction 23837: 17.8267% +Rate for instruction 23838: 17.8265% +Rate for instruction 23839: 17.8269% +Rate for instruction 23840: 17.8264% +Rate for instruction 23841: 17.826% +Rate for instruction 23842: 17.8257% +Rate for instruction 23843: 17.8253% +Rate for instruction 23844: 17.8249% +Rate for instruction 23845: 17.8248% +Rate for instruction 23846: 17.8249% +Rate for instruction 23847: 17.8249% +Rate for instruction 23848: 17.8248% +Rate for instruction 23849: 17.8244% +Rate for instruction 23850: 17.8243% +Rate for instruction 23851: 17.8239% +Rate for instruction 23852: 17.8234% +Rate for instruction 23853: 17.8235% +Rate for instruction 23854: 17.8239% +Rate for instruction 23855: 17.8236% +Rate for instruction 23856: 17.8237% +Rate for instruction 23857: 17.8239% +Rate for instruction 23858: 17.8235% +Rate for instruction 23859: 17.8232% +Rate for instruction 23860: 17.8228% +Rate for instruction 23861: 17.823% +Rate for instruction 23862: 17.8239% +Rate for instruction 23863: 17.8244% +Rate for instruction 23864: 17.8246% +Rate for instruction 23865: 17.826% +Rate for instruction 23866: 17.8273% +Rate for instruction 23867: 17.8272% +Rate for instruction 23868: 17.8268% +Rate for instruction 23869: 17.8273% +Rate for instruction 23870: 17.828% +Rate for instruction 23871: 17.8276% +Rate for instruction 23872: 17.827% +Rate for instruction 23873: 17.8281% +Rate for instruction 23874: 17.8288% +Rate for instruction 23875: 17.8299% +Rate for instruction 23876: 17.8311% +Rate for instruction 23877: 17.8313% +Rate for instruction 23878: 17.8317% +Rate for instruction 23879: 17.8328% +Rate for instruction 23880: 17.8335% +Rate for instruction 23881: 17.8337% +Rate for instruction 23882: 17.8331% +Rate for instruction 23883: 17.8327% +Rate for instruction 23884: 17.8326% +Rate for instruction 23885: 17.832% +Rate for instruction 23886: 17.8317% +Rate for instruction 23887: 17.8311% +Rate for instruction 23888: 17.831% +Rate for instruction 23889: 17.8308% +Rate for instruction 23890: 17.8305% +Rate for instruction 23891: 17.8304% +Rate for instruction 23892: 17.8305% +Rate for instruction 23893: 17.8302% +Rate for instruction 23894: 17.8306% +Rate for instruction 23895: 17.8301% +Rate for instruction 23896: 17.8307% +Rate for instruction 23897: 17.8316% +Rate for instruction 23898: 17.8321% +Rate for instruction 23899: 17.8326% +Rate for instruction 23900: 17.8327% +Rate for instruction 23901: 17.8329% +Rate for instruction 23902: 17.8331% +Rate for instruction 23903: 17.8334% +Rate for instruction 23904: 17.8339% +Rate for instruction 23905: 17.8344% +Rate for instruction 23906: 17.8347% +Rate for instruction 23907: 17.8346% +Rate for instruction 23908: 17.8343% +Rate for instruction 23909: 17.834% +Rate for instruction 23910: 17.835% +Rate for instruction 23911: 17.8358% +Rate for instruction 23912: 17.8355% +Rate for instruction 23913: 17.8357% +Rate for instruction 23914: 17.8351% +Rate for instruction 23915: 17.8349% +Rate for instruction 23916: 17.8343% +Rate for instruction 23917: 17.8338% +Rate for instruction 23918: 17.8333% +Rate for instruction 23919: 17.8335% +Rate for instruction 23920: 17.834% +Rate for instruction 23921: 17.8344% +Rate for instruction 23922: 17.8349% +Rate for instruction 23923: 17.8353% +Rate for instruction 23924: 17.8355% +Rate for instruction 23925: 17.8356% +Rate for instruction 23926: 17.835% +Rate for instruction 23927: 17.8356% +Rate for instruction 23928: 17.8351% +Rate for instruction 23929: 17.8349% +Rate for instruction 23930: 17.8349% +Rate for instruction 23931: 17.8343% +Rate for instruction 23932: 17.8346% +Rate for instruction 23933: 17.834% +Rate for instruction 23934: 17.8336% +Rate for instruction 23935: 17.8331% +Rate for instruction 23936: 17.8329% +Rate for instruction 23937: 17.8328% +Rate for instruction 23938: 17.8322% +Rate for instruction 23939: 17.8316% +Rate for instruction 23940: 17.8317% +Rate for instruction 23941: 17.8322% +Rate for instruction 23942: 17.8319% +Rate for instruction 23943: 17.8314% +Rate for instruction 23944: 17.8314% +Rate for instruction 23945: 17.8313% +Rate for instruction 23946: 17.8315% +Rate for instruction 23947: 17.8313% +Rate for instruction 23948: 17.8316% +Rate for instruction 23949: 17.8312% +Rate for instruction 23950: 17.8316% +Rate for instruction 23951: 17.831% +Rate for instruction 23952: 17.8304% +Rate for instruction 23953: 17.8306% +Rate for instruction 23954: 17.8304% +Rate for instruction 23955: 17.8303% +Rate for instruction 23956: 17.8307% +Rate for instruction 23957: 17.8309% +Rate for instruction 23958: 17.8308% +Rate for instruction 23959: 17.8307% +Rate for instruction 23960: 17.8311% +Rate for instruction 23961: 17.8305% +Rate for instruction 23962: 17.8309% +Rate for instruction 23963: 17.8309% +Rate for instruction 23964: 17.8307% +Rate for instruction 23965: 17.8305% +Rate for instruction 23966: 17.8303% +Rate for instruction 23967: 17.8302% +Rate for instruction 23968: 17.8296% +Rate for instruction 23969: 17.8292% +Rate for instruction 23970: 17.8296% +Rate for instruction 23971: 17.829% +Rate for instruction 23972: 17.8294% +Rate for instruction 23973: 17.8289% +Rate for instruction 23974: 17.8293% +Rate for instruction 23975: 17.8298% +Rate for instruction 23976: 17.8304% +Rate for instruction 23977: 17.8306% +Rate for instruction 23978: 17.83% +Rate for instruction 23979: 17.8299% +Rate for instruction 23980: 17.8301% +Rate for instruction 23981: 17.8297% +Rate for instruction 23982: 17.8295% +Rate for instruction 23983: 17.8294% +Rate for instruction 23984: 17.8299% +Rate for instruction 23985: 17.8304% +Rate for instruction 23986: 17.8303% +Rate for instruction 23987: 17.8299% +Rate for instruction 23988: 17.8295% +Rate for instruction 23989: 17.8303% +Rate for instruction 23990: 17.8312% +Rate for instruction 23991: 17.8317% +Rate for instruction 23992: 17.8313% +Rate for instruction 23993: 17.8314% +Rate for instruction 23994: 17.8313% +Rate for instruction 23995: 17.8312% +Rate for instruction 23996: 17.8306% +Rate for instruction 23997: 17.8302% +Rate for instruction 23998: 17.8309% +Rate for instruction 23999: 17.8311% +Rate for instruction 24000: 17.8313% +Rate for instruction 24001: 17.8317% +Rate for instruction 24002: 17.8325% +Rate for instruction 24003: 17.832% +Rate for instruction 24004: 17.8323% +Rate for instruction 24005: 17.8319% +Rate for instruction 24006: 17.8315% +Rate for instruction 24007: 17.8322% +Rate for instruction 24008: 17.8324% +Rate for instruction 24009: 17.8328% +Rate for instruction 24010: 17.833% +Rate for instruction 24011: 17.8326% +Rate for instruction 24012: 17.8326% +Rate for instruction 24013: 17.8322% +Rate for instruction 24014: 17.8323% +Rate for instruction 24015: 17.8317% +Rate for instruction 24016: 17.8316% +Rate for instruction 24017: 17.832% +Rate for instruction 24018: 17.8325% +Rate for instruction 24019: 17.8324% +Rate for instruction 24020: 17.8318% +Rate for instruction 24021: 17.8314% +Rate for instruction 24022: 17.8328% +Rate for instruction 24023: 17.8331% +Rate for instruction 24024: 17.8337% +Rate for instruction 24025: 17.8337% +Rate for instruction 24026: 17.8341% +Rate for instruction 24027: 17.8351% +Rate for instruction 24028: 17.836% +Rate for instruction 24029: 17.837% +Rate for instruction 24030: 17.8377% +Rate for instruction 24031: 17.8382% +Rate for instruction 24032: 17.8381% +Rate for instruction 24033: 17.8376% +Rate for instruction 24034: 17.8387% +Rate for instruction 24035: 17.8393% +Rate for instruction 24036: 17.84% +Rate for instruction 24037: 17.8405% +Rate for instruction 24038: 17.8417% +Rate for instruction 24039: 17.8424% +Rate for instruction 24040: 17.8426% +Rate for instruction 24041: 17.8431% +Rate for instruction 24042: 17.8426% +Rate for instruction 24043: 17.8431% +Rate for instruction 24044: 17.8428% +Rate for instruction 24045: 17.8426% +Rate for instruction 24046: 17.842% +Rate for instruction 24047: 17.8419% +Rate for instruction 24048: 17.8416% +Rate for instruction 24049: 17.8412% +Rate for instruction 24050: 17.8408% +Rate for instruction 24051: 17.8405% +Rate for instruction 24052: 17.8401% +Rate for instruction 24053: 17.84% +Rate for instruction 24054: 17.8402% +Rate for instruction 24055: 17.8406% +Rate for instruction 24056: 17.8402% +Rate for instruction 24057: 17.8407% +Rate for instruction 24058: 17.8401% +Rate for instruction 24059: 17.8403% +Rate for instruction 24060: 17.8398% +Rate for instruction 24061: 17.8405% +Rate for instruction 24062: 17.8408% +Rate for instruction 24063: 17.841% +Rate for instruction 24064: 17.8405% +Rate for instruction 24065: 17.8404% +Rate for instruction 24066: 17.8399% +Rate for instruction 24067: 17.8403% +Rate for instruction 24068: 17.8402% +Rate for instruction 24069: 17.84% +Rate for instruction 24070: 17.84% +Rate for instruction 24071: 17.8404% +Rate for instruction 24072: 17.84% +Rate for instruction 24073: 17.841% +Rate for instruction 24074: 17.8414% +Rate for instruction 24075: 17.8421% +Rate for instruction 24076: 17.8421% +Rate for instruction 24077: 17.8423% +Rate for instruction 24078: 17.8419% +Rate for instruction 24079: 17.8413% +Rate for instruction 24080: 17.8409% +Rate for instruction 24081: 17.8406% +Rate for instruction 24082: 17.8405% +Rate for instruction 24083: 17.8409% +Rate for instruction 24084: 17.8405% +Rate for instruction 24085: 17.8399% +Rate for instruction 24086: 17.8398% +Rate for instruction 24087: 17.8392% +Rate for instruction 24088: 17.8388% +Rate for instruction 24089: 17.8382% +Rate for instruction 24090: 17.838% +Rate for instruction 24091: 17.8384% +Rate for instruction 24092: 17.8378% +Rate for instruction 24093: 17.8375% +Rate for instruction 24094: 17.8369% +Rate for instruction 24095: 17.8365% +Rate for instruction 24096: 17.8359% +Rate for instruction 24097: 17.8365% +Rate for instruction 24098: 17.837% +Rate for instruction 24099: 17.8372% +Rate for instruction 24100: 17.8371% +Rate for instruction 24101: 17.8369% +Rate for instruction 24102: 17.8368% +Rate for instruction 24103: 17.8368% +Rate for instruction 24104: 17.8367% +Rate for instruction 24105: 17.8369% +Rate for instruction 24106: 17.8367% +Rate for instruction 24107: 17.8364% +Rate for instruction 24108: 17.8365% +Rate for instruction 24109: 17.836% +Rate for instruction 24110: 17.8356% +Rate for instruction 24111: 17.8358% +Rate for instruction 24112: 17.8359% +Rate for instruction 24113: 17.8356% +Rate for instruction 24114: 17.8351% +Rate for instruction 24115: 17.8354% +Rate for instruction 24116: 17.8353% +Rate for instruction 24117: 17.8354% +Rate for instruction 24118: 17.835% +Rate for instruction 24119: 17.8344% +Rate for instruction 24120: 17.834% +Rate for instruction 24121: 17.8339% +Rate for instruction 24122: 17.8334% +Rate for instruction 24123: 17.833% +Rate for instruction 24124: 17.8337% +Rate for instruction 24125: 17.8344% +Rate for instruction 24126: 17.8346% +Rate for instruction 24127: 17.8344% +Rate for instruction 24128: 17.8346% +Rate for instruction 24129: 17.8348% +Rate for instruction 24130: 17.8344% +Rate for instruction 24131: 17.834% +Rate for instruction 24132: 17.8337% +Rate for instruction 24133: 17.8338% +Rate for instruction 24134: 17.834% +Rate for instruction 24135: 17.8336% +Rate for instruction 24136: 17.8343% +Rate for instruction 24137: 17.8345% +Rate for instruction 24138: 17.8347% +Rate for instruction 24139: 17.8349% +Rate for instruction 24140: 17.8351% +Rate for instruction 24141: 17.8353% +Rate for instruction 24142: 17.8348% +Rate for instruction 24143: 17.835% +Rate for instruction 24144: 17.835% +Rate for instruction 24145: 17.8348% +Rate for instruction 24146: 17.8342% +Rate for instruction 24147: 17.8341% +Rate for instruction 24148: 17.834% +Rate for instruction 24149: 17.8337% +Rate for instruction 24150: 17.8344% +Rate for instruction 24151: 17.834% +Rate for instruction 24152: 17.8339% +Rate for instruction 24153: 17.8336% +Rate for instruction 24154: 17.8335% +Rate for instruction 24155: 17.8333% +Rate for instruction 24156: 17.8329% +Rate for instruction 24157: 17.8328% +Rate for instruction 24158: 17.8328% +Rate for instruction 24159: 17.833% +Rate for instruction 24160: 17.8331% +Rate for instruction 24161: 17.8332% +Rate for instruction 24162: 17.8329% +Rate for instruction 24163: 17.8325% +Rate for instruction 24164: 17.8322% +Rate for instruction 24165: 17.832% +Rate for instruction 24166: 17.8317% +Rate for instruction 24167: 17.8314% +Rate for instruction 24168: 17.8309% +Rate for instruction 24169: 17.8308% +Rate for instruction 24170: 17.8302% +Rate for instruction 24171: 17.8301% +Rate for instruction 24172: 17.8297% +Rate for instruction 24173: 17.83% +Rate for instruction 24174: 17.8304% +Rate for instruction 24175: 17.8306% +Rate for instruction 24176: 17.8304% +Rate for instruction 24177: 17.8303% +Rate for instruction 24178: 17.8297% +Rate for instruction 24179: 17.8294% +Rate for instruction 24180: 17.8301% +Rate for instruction 24181: 17.8305% +Rate for instruction 24182: 17.8299% +Rate for instruction 24183: 17.83% +Rate for instruction 24184: 17.8299% +Rate for instruction 24185: 17.8307% +Rate for instruction 24186: 17.8313% +Rate for instruction 24187: 17.8318% +Rate for instruction 24188: 17.8318% +Rate for instruction 24189: 17.8322% +Rate for instruction 24190: 17.8329% +Rate for instruction 24191: 17.8331% +Rate for instruction 24192: 17.8334% +Rate for instruction 24193: 17.8329% +Rate for instruction 24194: 17.8324% +Rate for instruction 24195: 17.8334% +Rate for instruction 24196: 17.8329% +Rate for instruction 24197: 17.8333% +Rate for instruction 24198: 17.8327% +Rate for instruction 24199: 17.8323% +Rate for instruction 24200: 17.8324% +Rate for instruction 24201: 17.8331% +Rate for instruction 24202: 17.8339% +Rate for instruction 24203: 17.8338% +Rate for instruction 24204: 17.835% +Rate for instruction 24205: 17.8347% +Rate for instruction 24206: 17.8343% +Rate for instruction 24207: 17.8353% +Rate for instruction 24208: 17.8362% +Rate for instruction 24209: 17.8369% +Rate for instruction 24210: 17.8373% +Rate for instruction 24211: 17.8373% +Rate for instruction 24212: 17.8375% +Rate for instruction 24213: 17.8376% +Rate for instruction 24214: 17.8378% +Rate for instruction 24215: 17.838% +Rate for instruction 24216: 17.8376% +Rate for instruction 24217: 17.8375% +Rate for instruction 24218: 17.8369% +Rate for instruction 24219: 17.8371% +Rate for instruction 24220: 17.8366% +Rate for instruction 24221: 17.8361% +Rate for instruction 24222: 17.8356% +Rate for instruction 24223: 17.8358% +Rate for instruction 24224: 17.8358% +Rate for instruction 24225: 17.8359% +Rate for instruction 24226: 17.8358% +Rate for instruction 24227: 17.8362% +Rate for instruction 24228: 17.8359% +Rate for instruction 24229: 17.8353% +Rate for instruction 24230: 17.8354% +Rate for instruction 24231: 17.8354% +Rate for instruction 24232: 17.8349% +Rate for instruction 24233: 17.8348% +Rate for instruction 24234: 17.8342% +Rate for instruction 24235: 17.8347% +Rate for instruction 24236: 17.8346% +Rate for instruction 24237: 17.834% +Rate for instruction 24238: 17.8344% +Rate for instruction 24239: 17.8342% +Rate for instruction 24240: 17.8347% +Rate for instruction 24241: 17.8344% +Rate for instruction 24242: 17.8351% +Rate for instruction 24243: 17.8353% +Rate for instruction 24244: 17.8356% +Rate for instruction 24245: 17.8356% +Rate for instruction 24246: 17.8352% +Rate for instruction 24247: 17.8346% +Rate for instruction 24248: 17.8359% +Rate for instruction 24249: 17.8366% +Rate for instruction 24250: 17.837% +Rate for instruction 24251: 17.8364% +Rate for instruction 24252: 17.8367% +Rate for instruction 24253: 17.8366% +Rate for instruction 24254: 17.836% +Rate for instruction 24255: 17.8357% +Rate for instruction 24256: 17.8366% +Rate for instruction 24257: 17.836% +Rate for instruction 24258: 17.8357% +Rate for instruction 24259: 17.8358% +Rate for instruction 24260: 17.8357% +Rate for instruction 24261: 17.8351% +Rate for instruction 24262: 17.8347% +Rate for instruction 24263: 17.8341% +Rate for instruction 24264: 17.8339% +Rate for instruction 24265: 17.8333% +Rate for instruction 24266: 17.8329% +Rate for instruction 24267: 17.8336% +Rate for instruction 24268: 17.8331% +Rate for instruction 24269: 17.833% +Rate for instruction 24270: 17.8337% +Rate for instruction 24271: 17.8331% +Rate for instruction 24272: 17.8326% +Rate for instruction 24273: 17.8323% +Rate for instruction 24274: 17.8319% +Rate for instruction 24275: 17.8313% +Rate for instruction 24276: 17.8322% +Rate for instruction 24277: 17.8327% +Rate for instruction 24278: 17.8328% +Rate for instruction 24279: 17.8327% +Rate for instruction 24280: 17.833% +Rate for instruction 24281: 17.8326% +Rate for instruction 24282: 17.8325% +Rate for instruction 24283: 17.8324% +Rate for instruction 24284: 17.8325% +Rate for instruction 24285: 17.8327% +Rate for instruction 24286: 17.8331% +Rate for instruction 24287: 17.833% +Rate for instruction 24288: 17.8335% +Rate for instruction 24289: 17.834% +Rate for instruction 24290: 17.8336% +Rate for instruction 24291: 17.834% +Rate for instruction 24292: 17.8347% +Rate for instruction 24293: 17.8354% +Rate for instruction 24294: 17.8351% +Rate for instruction 24295: 17.835% +Rate for instruction 24296: 17.8352% +Rate for instruction 24297: 17.8346% +Rate for instruction 24298: 17.8341% +Rate for instruction 24299: 17.8338% +Rate for instruction 24300: 17.8337% +Rate for instruction 24301: 17.8333% +Rate for instruction 24302: 17.8329% +Rate for instruction 24303: 17.8328% +Rate for instruction 24304: 17.833% +Rate for instruction 24305: 17.8335% +Rate for instruction 24306: 17.8344% +Rate for instruction 24307: 17.8351% +Rate for instruction 24308: 17.8348% +Rate for instruction 24309: 17.8353% +Rate for instruction 24310: 17.8351% +Rate for instruction 24311: 17.8348% +Rate for instruction 24312: 17.8342% +Rate for instruction 24313: 17.8343% +Rate for instruction 24314: 17.8347% +Rate for instruction 24315: 17.8354% +Rate for instruction 24316: 17.8359% +Rate for instruction 24317: 17.8367% +Rate for instruction 24318: 17.8374% +Rate for instruction 24319: 17.8372% +Rate for instruction 24320: 17.8377% +Rate for instruction 24321: 17.8373% +Rate for instruction 24322: 17.8378% +Rate for instruction 24323: 17.8385% +Rate for instruction 24324: 17.8381% +Rate for instruction 24325: 17.8386% +Rate for instruction 24326: 17.8384% +Rate for instruction 24327: 17.8384% +Rate for instruction 24328: 17.8386% +Rate for instruction 24329: 17.839% +Rate for instruction 24330: 17.8391% +Rate for instruction 24331: 17.839% +Rate for instruction 24332: 17.8389% +Rate for instruction 24333: 17.8384% +Rate for instruction 24334: 17.8385% +Rate for instruction 24335: 17.8382% +Rate for instruction 24336: 17.838% +Rate for instruction 24337: 17.8377% +Rate for instruction 24338: 17.8372% +Rate for instruction 24339: 17.8369% +Rate for instruction 24340: 17.8371% +Rate for instruction 24341: 17.8372% +Rate for instruction 24342: 17.8369% +Rate for instruction 24343: 17.8363% +Rate for instruction 24344: 17.8358% +Rate for instruction 24345: 17.8361% +Rate for instruction 24346: 17.8363% +Rate for instruction 24347: 17.8366% +Rate for instruction 24348: 17.8363% +Rate for instruction 24349: 17.8364% +Rate for instruction 24350: 17.8358% +Rate for instruction 24351: 17.8362% +Rate for instruction 24352: 17.8362% +Rate for instruction 24353: 17.8367% +Rate for instruction 24354: 17.8368% +Rate for instruction 24355: 17.8373% +Rate for instruction 24356: 17.8374% +Rate for instruction 24357: 17.8384% +Rate for instruction 24358: 17.8397% +Rate for instruction 24359: 17.8396% +Rate for instruction 24360: 17.839% +Rate for instruction 24361: 17.8394% +Rate for instruction 24362: 17.8396% +Rate for instruction 24363: 17.8403% +Rate for instruction 24364: 17.8402% +Rate for instruction 24365: 17.8396% +Rate for instruction 24366: 17.8402% +Rate for instruction 24367: 17.8399% +Rate for instruction 24368: 17.8398% +Rate for instruction 24369: 17.8396% +Rate for instruction 24370: 17.8395% +Rate for instruction 24371: 17.8389% +Rate for instruction 24372: 17.8393% +Rate for instruction 24373: 17.8387% +Rate for instruction 24374: 17.8391% +Rate for instruction 24375: 17.8396% +Rate for instruction 24376: 17.8401% +Rate for instruction 24377: 17.8406% +Rate for instruction 24378: 17.841% +Rate for instruction 24379: 17.8422% +Rate for instruction 24380: 17.8435% +Rate for instruction 24381: 17.8429% +Rate for instruction 24382: 17.8427% +Rate for instruction 24383: 17.8435% +Rate for instruction 24384: 17.8429% +Rate for instruction 24385: 17.8435% +Rate for instruction 24386: 17.8432% +Rate for instruction 24387: 17.8431% +Rate for instruction 24388: 17.843% +Rate for instruction 24389: 17.8426% +Rate for instruction 24390: 17.842% +Rate for instruction 24391: 17.8418% +Rate for instruction 24392: 17.8415% +Rate for instruction 24393: 17.8414% +Rate for instruction 24394: 17.8408% +Rate for instruction 24395: 17.8414% +Rate for instruction 24396: 17.8408% +Rate for instruction 24397: 17.8408% +Rate for instruction 24398: 17.8404% +Rate for instruction 24399: 17.8402% +Rate for instruction 24400: 17.8401% +Rate for instruction 24401: 17.8403% +Rate for instruction 24402: 17.8407% +Rate for instruction 24403: 17.8402% +Rate for instruction 24404: 17.8404% +Rate for instruction 24405: 17.8418% +Rate for instruction 24406: 17.8429% +Rate for instruction 24407: 17.8431% +Rate for instruction 24408: 17.843% +Rate for instruction 24409: 17.8429% +Rate for instruction 24410: 17.8435% +Rate for instruction 24411: 17.8435% +Rate for instruction 24412: 17.8436% +Rate for instruction 24413: 17.843% +Rate for instruction 24414: 17.8426% +Rate for instruction 24415: 17.8422% +Rate for instruction 24416: 17.8416% +Rate for instruction 24417: 17.8415% +Rate for instruction 24418: 17.8409% +Rate for instruction 24419: 17.8413% +Rate for instruction 24420: 17.841% +Rate for instruction 24421: 17.8406% +Rate for instruction 24422: 17.8402% +Rate for instruction 24423: 17.8398% +Rate for instruction 24424: 17.8397% +Rate for instruction 24425: 17.8393% +Rate for instruction 24426: 17.8398% +Rate for instruction 24427: 17.8402% +Rate for instruction 24428: 17.8404% +Rate for instruction 24429: 17.8411% +Rate for instruction 24430: 17.841% +Rate for instruction 24431: 17.8407% +Rate for instruction 24432: 17.8408% +Rate for instruction 24433: 17.8402% +Rate for instruction 24434: 17.8398% +Rate for instruction 24435: 17.8405% +Rate for instruction 24436: 17.841% +Rate for instruction 24437: 17.8406% +Rate for instruction 24438: 17.8413% +Rate for instruction 24439: 17.8412% +Rate for instruction 24440: 17.8417% +Rate for instruction 24441: 17.8416% +Rate for instruction 24442: 17.8426% +Rate for instruction 24443: 17.8435% +Rate for instruction 24444: 17.8445% +Rate for instruction 24445: 17.8448% +Rate for instruction 24446: 17.8446% +Rate for instruction 24447: 17.8448% +Rate for instruction 24448: 17.8445% +Rate for instruction 24449: 17.8443% +Rate for instruction 24450: 17.8437% +Rate for instruction 24451: 17.8441% +Rate for instruction 24452: 17.8449% +Rate for instruction 24453: 17.8454% +Rate for instruction 24454: 17.8457% +Rate for instruction 24455: 17.846% +Rate for instruction 24456: 17.8459% +Rate for instruction 24457: 17.8468% +Rate for instruction 24458: 17.8468% +Rate for instruction 24459: 17.8462% +Rate for instruction 24460: 17.8463% +Rate for instruction 24461: 17.8468% +Rate for instruction 24462: 17.8475% +Rate for instruction 24463: 17.8474% +Rate for instruction 24464: 17.847% +Rate for instruction 24465: 17.8467% +Rate for instruction 24466: 17.8463% +Rate for instruction 24467: 17.8465% +Rate for instruction 24468: 17.8464% +Rate for instruction 24469: 17.8465% +Rate for instruction 24470: 17.8467% +Rate for instruction 24471: 17.8471% +Rate for instruction 24472: 17.8473% +Rate for instruction 24473: 17.8478% +Rate for instruction 24474: 17.8476% +Rate for instruction 24475: 17.847% +Rate for instruction 24476: 17.8474% +Rate for instruction 24477: 17.8477% +Rate for instruction 24478: 17.8481% +Rate for instruction 24479: 17.8477% +Rate for instruction 24480: 17.8476% +Rate for instruction 24481: 17.8476% +Rate for instruction 24482: 17.8475% +Rate for instruction 24483: 17.8473% +Rate for instruction 24484: 17.8472% +Rate for instruction 24485: 17.8466% +Rate for instruction 24486: 17.846% +Rate for instruction 24487: 17.847% +Rate for instruction 24488: 17.848% +Rate for instruction 24489: 17.8481% +Rate for instruction 24490: 17.8477% +Rate for instruction 24491: 17.8474% +Rate for instruction 24492: 17.8475% +Rate for instruction 24493: 17.8471% +Rate for instruction 24494: 17.8468% +Rate for instruction 24495: 17.8466% +Rate for instruction 24496: 17.8472% +Rate for instruction 24497: 17.8476% +Rate for instruction 24498: 17.848% +Rate for instruction 24499: 17.8476% +Rate for instruction 24500: 17.8478% +Rate for instruction 24501: 17.8475% +Rate for instruction 24502: 17.8481% +Rate for instruction 24503: 17.8479% +Rate for instruction 24504: 17.8478% +Rate for instruction 24505: 17.8474% +Rate for instruction 24506: 17.8475% +Rate for instruction 24507: 17.8477% +Rate for instruction 24508: 17.8471% +Rate for instruction 24509: 17.8475% +Rate for instruction 24510: 17.8472% +Rate for instruction 24511: 17.8475% +Rate for instruction 24512: 17.8472% +Rate for instruction 24513: 17.8474% +Rate for instruction 24514: 17.8478% +Rate for instruction 24515: 17.8475% +Rate for instruction 24516: 17.8476% +Rate for instruction 24517: 17.8475% +Rate for instruction 24518: 17.8482% +Rate for instruction 24519: 17.8481% +Rate for instruction 24520: 17.8486% +Rate for instruction 24521: 17.8491% +Rate for instruction 24522: 17.8495% +Rate for instruction 24523: 17.8497% +Rate for instruction 24524: 17.8504% +Rate for instruction 24525: 17.85% +Rate for instruction 24526: 17.8494% +Rate for instruction 24527: 17.8493% +Rate for instruction 24528: 17.8489% +Rate for instruction 24529: 17.8485% +Rate for instruction 24530: 17.8488% +Rate for instruction 24531: 17.8489% +Rate for instruction 24532: 17.849% +Rate for instruction 24533: 17.849% +Rate for instruction 24534: 17.8491% +Rate for instruction 24535: 17.8491% +Rate for instruction 24536: 17.849% +Rate for instruction 24537: 17.8488% +Rate for instruction 24538: 17.8484% +Rate for instruction 24539: 17.8481% +Rate for instruction 24540: 17.8475% +Rate for instruction 24541: 17.8474% +Rate for instruction 24542: 17.8472% +Rate for instruction 24543: 17.8468% +Rate for instruction 24544: 17.8467% +Rate for instruction 24545: 17.8464% +Rate for instruction 24546: 17.8466% +Rate for instruction 24547: 17.8464% +Rate for instruction 24548: 17.8467% +Rate for instruction 24549: 17.8469% +Rate for instruction 24550: 17.8467% +Rate for instruction 24551: 17.8464% +Rate for instruction 24552: 17.8468% +Rate for instruction 24553: 17.8483% +Rate for instruction 24554: 17.8482% +Rate for instruction 24555: 17.8479% +Rate for instruction 24556: 17.8483% +Rate for instruction 24557: 17.849% +Rate for instruction 24558: 17.8484% +Rate for instruction 24559: 17.8486% +Rate for instruction 24560: 17.8488% +Rate for instruction 24561: 17.8496% +Rate for instruction 24562: 17.8503% +Rate for instruction 24563: 17.8505% +Rate for instruction 24564: 17.8506% +Rate for instruction 24565: 17.8505% +Rate for instruction 24566: 17.8509% +Rate for instruction 24567: 17.8517% +Rate for instruction 24568: 17.8513% +Rate for instruction 24569: 17.8515% +Rate for instruction 24570: 17.8509% +Rate for instruction 24571: 17.8519% +Rate for instruction 24572: 17.8528% +Rate for instruction 24573: 17.8522% +Rate for instruction 24574: 17.853% +Rate for instruction 24575: 17.8534% +Rate for instruction 24576: 17.8532% +Rate for instruction 24577: 17.8535% +Rate for instruction 24578: 17.8542% +Rate for instruction 24579: 17.8546% +Rate for instruction 24580: 17.8546% +Rate for instruction 24581: 17.8541% +Rate for instruction 24582: 17.854% +Rate for instruction 24583: 17.8535% +Rate for instruction 24584: 17.8542% +Rate for instruction 24585: 17.8551% +Rate for instruction 24586: 17.8557% +Rate for instruction 24587: 17.8563% +Rate for instruction 24588: 17.8563% +Rate for instruction 24589: 17.8569% +Rate for instruction 24590: 17.8577% +Rate for instruction 24591: 17.8573% +Rate for instruction 24592: 17.857% +Rate for instruction 24593: 17.8571% +Rate for instruction 24594: 17.8581% +Rate for instruction 24595: 17.8577% +Rate for instruction 24596: 17.8571% +Rate for instruction 24597: 17.8579% +Rate for instruction 24598: 17.8581% +Rate for instruction 24599: 17.8583% +Rate for instruction 24600: 17.8586% +Rate for instruction 24601: 17.8585% +Rate for instruction 24602: 17.8585% +Rate for instruction 24603: 17.859% +Rate for instruction 24604: 17.8588% +Rate for instruction 24605: 17.859% +Rate for instruction 24606: 17.8597% +Rate for instruction 24607: 17.8599% +Rate for instruction 24608: 17.8609% +Rate for instruction 24609: 17.8605% +Rate for instruction 24610: 17.8602% +Rate for instruction 24611: 17.8601% +Rate for instruction 24612: 17.8599% +Rate for instruction 24613: 17.8593% +Rate for instruction 24614: 17.859% +Rate for instruction 24615: 17.8594% +Rate for instruction 24616: 17.8598% +Rate for instruction 24617: 17.8592% +Rate for instruction 24618: 17.8588% +Rate for instruction 24619: 17.8582% +Rate for instruction 24620: 17.858% +Rate for instruction 24621: 17.8574% +Rate for instruction 24622: 17.857% +Rate for instruction 24623: 17.8564% +Rate for instruction 24624: 17.8566% +Rate for instruction 24625: 17.8564% +Rate for instruction 24626: 17.8563% +Rate for instruction 24627: 17.8569% +Rate for instruction 24628: 17.8576% +Rate for instruction 24629: 17.8585% +Rate for instruction 24630: 17.8584% +Rate for instruction 24631: 17.8581% +Rate for instruction 24632: 17.8578% +Rate for instruction 24633: 17.8579% +Rate for instruction 24634: 17.8573% +Rate for instruction 24635: 17.8577% +Rate for instruction 24636: 17.8576% +Rate for instruction 24637: 17.8581% +Rate for instruction 24638: 17.8585% +Rate for instruction 24639: 17.8579% +Rate for instruction 24640: 17.8577% +Rate for instruction 24641: 17.8582% +Rate for instruction 24642: 17.8589% +Rate for instruction 24643: 17.8594% +Rate for instruction 24644: 17.8596% +Rate for instruction 24645: 17.8597% +Rate for instruction 24646: 17.8592% +Rate for instruction 24647: 17.859% +Rate for instruction 24648: 17.8589% +Rate for instruction 24649: 17.8583% +Rate for instruction 24650: 17.8587% +Rate for instruction 24651: 17.8583% +Rate for instruction 24652: 17.8579% +Rate for instruction 24653: 17.8581% +Rate for instruction 24654: 17.8583% +Rate for instruction 24655: 17.8579% +Rate for instruction 24656: 17.8575% +Rate for instruction 24657: 17.8571% +Rate for instruction 24658: 17.8574% +Rate for instruction 24659: 17.8575% +Rate for instruction 24660: 17.8572% +Rate for instruction 24661: 17.857% +Rate for instruction 24662: 17.857% +Rate for instruction 24663: 17.8565% +Rate for instruction 24664: 17.8564% +Rate for instruction 24665: 17.8567% +Rate for instruction 24666: 17.8568% +Rate for instruction 24667: 17.8565% +Rate for instruction 24668: 17.856% +Rate for instruction 24669: 17.8555% +Rate for instruction 24670: 17.8559% +Rate for instruction 24671: 17.8564% +Rate for instruction 24672: 17.8559% +Rate for instruction 24673: 17.8561% +Rate for instruction 24674: 17.8564% +Rate for instruction 24675: 17.8563% +Rate for instruction 24676: 17.8566% +Rate for instruction 24677: 17.8565% +Rate for instruction 24678: 17.8568% +Rate for instruction 24679: 17.857% +Rate for instruction 24680: 17.8576% +Rate for instruction 24681: 17.8571% +Rate for instruction 24682: 17.8578% +Rate for instruction 24683: 17.8585% +Rate for instruction 24684: 17.8589% +Rate for instruction 24685: 17.8591% +Rate for instruction 24686: 17.8598% +Rate for instruction 24687: 17.8595% +Rate for instruction 24688: 17.8599% +Rate for instruction 24689: 17.8602% +Rate for instruction 24690: 17.8603% +Rate for instruction 24691: 17.8611% +Rate for instruction 24692: 17.8618% +Rate for instruction 24693: 17.8614% +Rate for instruction 24694: 17.8624% +Rate for instruction 24695: 17.8618% +Rate for instruction 24696: 17.8619% +Rate for instruction 24697: 17.8618% +Rate for instruction 24698: 17.8618% +Rate for instruction 24699: 17.8623% +Rate for instruction 24700: 17.8619% +Rate for instruction 24701: 17.8621% +Rate for instruction 24702: 17.8617% +Rate for instruction 24703: 17.8618% +Rate for instruction 24704: 17.8612% +Rate for instruction 24705: 17.8616% +Rate for instruction 24706: 17.8615% +Rate for instruction 24707: 17.8614% +Rate for instruction 24708: 17.8618% +Rate for instruction 24709: 17.8624% +Rate for instruction 24710: 17.8628% +Rate for instruction 24711: 17.8627% +Rate for instruction 24712: 17.8624% +Rate for instruction 24713: 17.8627% +Rate for instruction 24714: 17.863% +Rate for instruction 24715: 17.8628% +Rate for instruction 24716: 17.8631% +Rate for instruction 24717: 17.8632% +Rate for instruction 24718: 17.8634% +Rate for instruction 24719: 17.8635% +Rate for instruction 24720: 17.8643% +Rate for instruction 24721: 17.8648% +Rate for instruction 24722: 17.8652% +Rate for instruction 24723: 17.8651% +Rate for instruction 24724: 17.8658% +Rate for instruction 24725: 17.8663% +Rate for instruction 24726: 17.8665% +Rate for instruction 24727: 17.8679% +Rate for instruction 24728: 17.8686% +Rate for instruction 24729: 17.8693% +Rate for instruction 24730: 17.8698% +Rate for instruction 24731: 17.8696% +Rate for instruction 24732: 17.8701% +Rate for instruction 24733: 17.8703% +Rate for instruction 24734: 17.8705% +Rate for instruction 24735: 17.8709% +Rate for instruction 24736: 17.8714% +Rate for instruction 24737: 17.8713% +Rate for instruction 24738: 17.8712% +Rate for instruction 24739: 17.8714% +Rate for instruction 24740: 17.8722% +Rate for instruction 24741: 17.8726% +Rate for instruction 24742: 17.8722% +Rate for instruction 24743: 17.8727% +Rate for instruction 24744: 17.8735% +Rate for instruction 24745: 17.8742% +Rate for instruction 24746: 17.8746% +Rate for instruction 24747: 17.874% +Rate for instruction 24748: 17.875% +Rate for instruction 24749: 17.8757% +Rate for instruction 24750: 17.8757% +Rate for instruction 24751: 17.8753% +Rate for instruction 24752: 17.8748% +Rate for instruction 24753: 17.875% +Rate for instruction 24754: 17.8758% +Rate for instruction 24755: 17.8759% +Rate for instruction 24756: 17.8759% +Rate for instruction 24757: 17.8763% +Rate for instruction 24758: 17.8769% +Rate for instruction 24759: 17.8776% +Rate for instruction 24760: 17.8781% +Rate for instruction 24761: 17.8785% +Rate for instruction 24762: 17.8789% +Rate for instruction 24763: 17.8796% +Rate for instruction 24764: 17.8799% +Rate for instruction 24765: 17.8798% +Rate for instruction 24766: 17.8805% +Rate for instruction 24767: 17.8805% +Rate for instruction 24768: 17.8811% +Rate for instruction 24769: 17.8811% +Rate for instruction 24770: 17.8818% +Rate for instruction 24771: 17.8817% +Rate for instruction 24772: 17.8827% +Rate for instruction 24773: 17.8832% +Rate for instruction 24774: 17.8839% +Rate for instruction 24775: 17.8847% +Rate for instruction 24776: 17.8858% +Rate for instruction 24777: 17.8867% +Rate for instruction 24778: 17.8872% +Rate for instruction 24779: 17.888% +Rate for instruction 24780: 17.8892% +Rate for instruction 24781: 17.8895% +Rate for instruction 24782: 17.8902% +Rate for instruction 24783: 17.89% +Rate for instruction 24784: 17.8911% +Rate for instruction 24785: 17.8907% +Rate for instruction 24786: 17.891% +Rate for instruction 24787: 17.8913% +Rate for instruction 24788: 17.8912% +Rate for instruction 24789: 17.892% +Rate for instruction 24790: 17.8933% +Rate for instruction 24791: 17.894% +Rate for instruction 24792: 17.8945% +Rate for instruction 24793: 17.8945% +Rate for instruction 24794: 17.8946% +Rate for instruction 24795: 17.8948% +Rate for instruction 24796: 17.8952% +Rate for instruction 24797: 17.8955% +Rate for instruction 24798: 17.8957% +Rate for instruction 24799: 17.8962% +Rate for instruction 24800: 17.8968% +Rate for instruction 24801: 17.8971% +Rate for instruction 24802: 17.8975% +Rate for instruction 24803: 17.898% +Rate for instruction 24804: 17.899% +Rate for instruction 24805: 17.8995% +Rate for instruction 24806: 17.9003% +Rate for instruction 24807: 17.8999% +Rate for instruction 24808: 17.9% +Rate for instruction 24809: 17.9004% +Rate for instruction 24810: 17.9009% +Rate for instruction 24811: 17.9012% +Rate for instruction 24812: 17.9008% +Rate for instruction 24813: 17.9003% +Rate for instruction 24814: 17.9003% +Rate for instruction 24815: 17.8997% +Rate for instruction 24816: 17.9004% +Rate for instruction 24817: 17.9014% +Rate for instruction 24818: 17.9013% +Rate for instruction 24819: 17.9007% +Rate for instruction 24820: 17.9014% +Rate for instruction 24821: 17.9008% +Rate for instruction 24822: 17.9012% +Rate for instruction 24823: 17.9017% +Rate for instruction 24824: 17.9022% +Rate for instruction 24825: 17.9024% +Rate for instruction 24826: 17.9025% +Rate for instruction 24827: 17.9026% +Rate for instruction 24828: 17.9037% +Rate for instruction 24829: 17.9044% +Rate for instruction 24830: 17.9052% +Rate for instruction 24831: 17.9062% +Rate for instruction 24832: 17.9072% +Rate for instruction 24833: 17.9077% +Rate for instruction 24834: 17.9076% +Rate for instruction 24835: 17.9086% +Rate for instruction 24836: 17.9085% +Rate for instruction 24837: 17.9088% +Rate for instruction 24838: 17.9095% +Rate for instruction 24839: 17.9099% +Rate for instruction 24840: 17.9094% +Rate for instruction 24841: 17.9089% +Rate for instruction 24842: 17.9083% +Rate for instruction 24843: 17.9079% +Rate for instruction 24844: 17.9078% +Rate for instruction 24845: 17.9074% +Rate for instruction 24846: 17.9079% +Rate for instruction 24847: 17.909% +Rate for instruction 24848: 17.9086% +Rate for instruction 24849: 17.9085% +Rate for instruction 24850: 17.9081% +Rate for instruction 24851: 17.9089% +Rate for instruction 24852: 17.9088% +Rate for instruction 24853: 17.9084% +Rate for instruction 24854: 17.9079% +Rate for instruction 24855: 17.9085% +Rate for instruction 24856: 17.908% +Rate for instruction 24857: 17.9079% +Rate for instruction 24858: 17.9073% +Rate for instruction 24859: 17.9074% +Rate for instruction 24860: 17.9079% +Rate for instruction 24861: 17.9082% +Rate for instruction 24862: 17.9089% +Rate for instruction 24863: 17.9083% +Rate for instruction 24864: 17.9086% +Rate for instruction 24865: 17.9088% +Rate for instruction 24866: 17.9082% +Rate for instruction 24867: 17.9079% +Rate for instruction 24868: 17.9075% +Rate for instruction 24869: 17.908% +Rate for instruction 24870: 17.9079% +Rate for instruction 24871: 17.9082% +Rate for instruction 24872: 17.9076% +Rate for instruction 24873: 17.9072% +Rate for instruction 24874: 17.908% +Rate for instruction 24875: 17.9076% +Rate for instruction 24876: 17.907% +Rate for instruction 24877: 17.9066% +Rate for instruction 24878: 17.907% +Rate for instruction 24879: 17.9066% +Rate for instruction 24880: 17.9068% +Rate for instruction 24881: 17.9062% +Rate for instruction 24882: 17.9066% +Rate for instruction 24883: 17.9069% +Rate for instruction 24884: 17.9065% +Rate for instruction 24885: 17.9063% +Rate for instruction 24886: 17.9065% +Rate for instruction 24887: 17.9059% +Rate for instruction 24888: 17.906% +Rate for instruction 24889: 17.9054% +Rate for instruction 24890: 17.9058% +Rate for instruction 24891: 17.9063% +Rate for instruction 24892: 17.9057% +Rate for instruction 24893: 17.9056% +Rate for instruction 24894: 17.905% +Rate for instruction 24895: 17.9049% +Rate for instruction 24896: 17.9058% +Rate for instruction 24897: 17.9052% +Rate for instruction 24898: 17.906% +Rate for instruction 24899: 17.9067% +Rate for instruction 24900: 17.908% +Rate for instruction 24901: 17.9082% +Rate for instruction 24902: 17.9076% +Rate for instruction 24903: 17.9072% +Rate for instruction 24904: 17.9068% +Rate for instruction 24905: 17.9075% +Rate for instruction 24906: 17.9078% +Rate for instruction 24907: 17.9073% +Rate for instruction 24908: 17.9078% +Rate for instruction 24909: 17.9075% +Rate for instruction 24910: 17.9073% +Rate for instruction 24911: 17.9072% +Rate for instruction 24912: 17.9066% +Rate for instruction 24913: 17.9067% +Rate for instruction 24914: 17.9064% +Rate for instruction 24915: 17.9062% +Rate for instruction 24916: 17.9059% +Rate for instruction 24917: 17.9055% +Rate for instruction 24918: 17.9057% +Rate for instruction 24919: 17.9051% +Rate for instruction 24920: 17.9047% +Rate for instruction 24921: 17.9042% +Rate for instruction 24922: 17.9041% +Rate for instruction 24923: 17.9041% +Rate for instruction 24924: 17.9049% +Rate for instruction 24925: 17.9052% +Rate for instruction 24926: 17.9047% +Rate for instruction 24927: 17.9051% +Rate for instruction 24928: 17.9059% +Rate for instruction 24929: 17.9061% +Rate for instruction 24930: 17.9059% +Rate for instruction 24931: 17.9067% +Rate for instruction 24932: 17.9061% +Rate for instruction 24933: 17.907% +Rate for instruction 24934: 17.907% +Rate for instruction 24935: 17.9078% +Rate for instruction 24936: 17.9081% +Rate for instruction 24937: 17.9089% +Rate for instruction 24938: 17.9088% +Rate for instruction 24939: 17.9087% +Rate for instruction 24940: 17.9083% +Rate for instruction 24941: 17.9077% +Rate for instruction 24942: 17.9082% +Rate for instruction 24943: 17.9081% +Rate for instruction 24944: 17.9086% +Rate for instruction 24945: 17.9093% +Rate for instruction 24946: 17.9103% +Rate for instruction 24947: 17.9116% +Rate for instruction 24948: 17.9125% +Rate for instruction 24949: 17.9129% +Rate for instruction 24950: 17.9134% +Rate for instruction 24951: 17.9135% +Rate for instruction 24952: 17.9132% +Rate for instruction 24953: 17.9139% +Rate for instruction 24954: 17.9141% +Rate for instruction 24955: 17.9137% +Rate for instruction 24956: 17.9131% +Rate for instruction 24957: 17.9129% +Rate for instruction 24958: 17.9123% +Rate for instruction 24959: 17.9119% +Rate for instruction 24960: 17.9113% +Rate for instruction 24961: 17.9112% +Rate for instruction 24962: 17.9117% +Rate for instruction 24963: 17.9113% +Rate for instruction 24964: 17.912% +Rate for instruction 24965: 17.9114% +Rate for instruction 24966: 17.9112% +Rate for instruction 24967: 17.9108% +Rate for instruction 24968: 17.9102% +Rate for instruction 24969: 17.9107% +Rate for instruction 24970: 17.9115% +Rate for instruction 24971: 17.9114% +Rate for instruction 24972: 17.9117% +Rate for instruction 24973: 17.9117% +Rate for instruction 24974: 17.9122% +Rate for instruction 24975: 17.9118% +Rate for instruction 24976: 17.9128% +Rate for instruction 24977: 17.9139% +Rate for instruction 24978: 17.9147% +Rate for instruction 24979: 17.9142% +Rate for instruction 24980: 17.9136% +Rate for instruction 24981: 17.9134% +Rate for instruction 24982: 17.914% +Rate for instruction 24983: 17.9135% +Rate for instruction 24984: 17.9129% +Rate for instruction 24985: 17.9134% +Rate for instruction 24986: 17.9129% +Rate for instruction 24987: 17.9131% +Rate for instruction 24988: 17.9134% +Rate for instruction 24989: 17.9129% +Rate for instruction 24990: 17.9124% +Rate for instruction 24991: 17.9122% +Rate for instruction 24992: 17.9119% +Rate for instruction 24993: 17.9128% +Rate for instruction 24994: 17.9122% +Rate for instruction 24995: 17.9119% +Rate for instruction 24996: 17.9118% +Rate for instruction 24997: 17.9117% +Rate for instruction 24998: 17.9118% +Rate for instruction 24999: 17.912% +Rate for instruction 25000: 17.9128% +Rate for instruction 25001: 17.9124% +Rate for instruction 25002: 17.9122% +Rate for instruction 25003: 17.9121% +Rate for instruction 25004: 17.9118% +Rate for instruction 25005: 17.9122% +Rate for instruction 25006: 17.9118% +Rate for instruction 25007: 17.9121% +Rate for instruction 25008: 17.9125% +Rate for instruction 25009: 17.9124% +Rate for instruction 25010: 17.9132% +Rate for instruction 25011: 17.9131% +Rate for instruction 25012: 17.9135% +Rate for instruction 25013: 17.914% +Rate for instruction 25014: 17.9146% +Rate for instruction 25015: 17.915% +Rate for instruction 25016: 17.915% +Rate for instruction 25017: 17.9153% +Rate for instruction 25018: 17.9164% +Rate for instruction 25019: 17.9163% +Rate for instruction 25020: 17.9166% +Rate for instruction 25021: 17.9176% +Rate for instruction 25022: 17.9171% +Rate for instruction 25023: 17.9171% +Rate for instruction 25024: 17.9165% +Rate for instruction 25025: 17.9163% +Rate for instruction 25026: 17.916% +Rate for instruction 25027: 17.9161% +Rate for instruction 25028: 17.916% +Rate for instruction 25029: 17.916% +Rate for instruction 25030: 17.9156% +Rate for instruction 25031: 17.9161% +Rate for instruction 25032: 17.9159% +Rate for instruction 25033: 17.9162% +Rate for instruction 25034: 17.9157% +Rate for instruction 25035: 17.9159% +Rate for instruction 25036: 17.9153% +Rate for instruction 25037: 17.9157% +Rate for instruction 25038: 17.9164% +Rate for instruction 25039: 17.9166% +Rate for instruction 25040: 17.9168% +Rate for instruction 25041: 17.9162% +Rate for instruction 25042: 17.917% +Rate for instruction 25043: 17.9165% +Rate for instruction 25044: 17.9161% +Rate for instruction 25045: 17.9155% +Rate for instruction 25046: 17.9152% +Rate for instruction 25047: 17.9156% +Rate for instruction 25048: 17.9163% +Rate for instruction 25049: 17.9159% +Rate for instruction 25050: 17.9165% +Rate for instruction 25051: 17.9172% +Rate for instruction 25052: 17.9177% +Rate for instruction 25053: 17.9178% +Rate for instruction 25054: 17.9177% +Rate for instruction 25055: 17.9182% +Rate for instruction 25056: 17.9187% +Rate for instruction 25057: 17.9187% +Rate for instruction 25058: 17.9188% +Rate for instruction 25059: 17.9193% +Rate for instruction 25060: 17.9189% +Rate for instruction 25061: 17.9197% +Rate for instruction 25062: 17.9195% +Rate for instruction 25063: 17.9191% +Rate for instruction 25064: 17.9186% +Rate for instruction 25065: 17.9193% +Rate for instruction 25066: 17.9187% +Rate for instruction 25067: 17.9196% +Rate for instruction 25068: 17.9195% +Rate for instruction 25069: 17.92% +Rate for instruction 25070: 17.9194% +Rate for instruction 25071: 17.9193% +Rate for instruction 25072: 17.9188% +Rate for instruction 25073: 17.9194% +Rate for instruction 25074: 17.9192% +Rate for instruction 25075: 17.9201% +Rate for instruction 25076: 17.9207% +Rate for instruction 25077: 17.9202% +Rate for instruction 25078: 17.9201% +Rate for instruction 25079: 17.9199% +Rate for instruction 25080: 17.9198% +Rate for instruction 25081: 17.9195% +Rate for instruction 25082: 17.9193% +Rate for instruction 25083: 17.9196% +Rate for instruction 25084: 17.9203% +Rate for instruction 25085: 17.9205% +Rate for instruction 25086: 17.9204% +Rate for instruction 25087: 17.9206% +Rate for instruction 25088: 17.9208% +Rate for instruction 25089: 17.9204% +Rate for instruction 25090: 17.9211% +Rate for instruction 25091: 17.9217% +Rate for instruction 25092: 17.9224% +Rate for instruction 25093: 17.9223% +Rate for instruction 25094: 17.9227% +Rate for instruction 25095: 17.9233% +Rate for instruction 25096: 17.9228% +Rate for instruction 25097: 17.923% +Rate for instruction 25098: 17.923% +Rate for instruction 25099: 17.9225% +Rate for instruction 25100: 17.9231% +Rate for instruction 25101: 17.9238% +Rate for instruction 25102: 17.9237% +Rate for instruction 25103: 17.9239% +Rate for instruction 25104: 17.9243% +Rate for instruction 25105: 17.9242% +Rate for instruction 25106: 17.9241% +Rate for instruction 25107: 17.9236% +Rate for instruction 25108: 17.9232% +Rate for instruction 25109: 17.9231% +Rate for instruction 25110: 17.9227% +Rate for instruction 25111: 17.9225% +Rate for instruction 25112: 17.9221% +Rate for instruction 25113: 17.9218% +Rate for instruction 25114: 17.9216% +Rate for instruction 25115: 17.9222% +Rate for instruction 25116: 17.9232% +Rate for instruction 25117: 17.924% +Rate for instruction 25118: 17.9242% +Rate for instruction 25119: 17.9252% +Rate for instruction 25120: 17.9249% +Rate for instruction 25121: 17.9256% +Rate for instruction 25122: 17.9267% +Rate for instruction 25123: 17.9266% +Rate for instruction 25124: 17.9264% +Rate for instruction 25125: 17.926% +Rate for instruction 25126: 17.9254% +Rate for instruction 25127: 17.9248% +Rate for instruction 25128: 17.9244% +Rate for instruction 25129: 17.9245% +Rate for instruction 25130: 17.9239% +Rate for instruction 25131: 17.9241% +Rate for instruction 25132: 17.9236% +Rate for instruction 25133: 17.9245% +Rate for instruction 25134: 17.924% +Rate for instruction 25135: 17.9253% +Rate for instruction 25136: 17.9256% +Rate for instruction 25137: 17.9263% +Rate for instruction 25138: 17.9276% +Rate for instruction 25139: 17.9285% +Rate for instruction 25140: 17.9281% +Rate for instruction 25141: 17.928% +Rate for instruction 25142: 17.9285% +Rate for instruction 25143: 17.9292% +Rate for instruction 25144: 17.93% +Rate for instruction 25145: 17.9307% +Rate for instruction 25146: 17.9307% +Rate for instruction 25147: 17.9318% +Rate for instruction 25148: 17.9325% +Rate for instruction 25149: 17.9327% +Rate for instruction 25150: 17.9337% +Rate for instruction 25151: 17.9339% +Rate for instruction 25152: 17.9347% +Rate for instruction 25153: 17.9348% +Rate for instruction 25154: 17.9357% +Rate for instruction 25155: 17.9362% +Rate for instruction 25156: 17.9357% +Rate for instruction 25157: 17.9353% +Rate for instruction 25158: 17.9349% +Rate for instruction 25159: 17.9351% +Rate for instruction 25160: 17.9347% +Rate for instruction 25161: 17.9341% +Rate for instruction 25162: 17.9345% +Rate for instruction 25163: 17.9344% +Rate for instruction 25164: 17.9338% +Rate for instruction 25165: 17.9337% +Rate for instruction 25166: 17.9337% +Rate for instruction 25167: 17.9338% +Rate for instruction 25168: 17.9334% +Rate for instruction 25169: 17.9328% +Rate for instruction 25170: 17.9335% +Rate for instruction 25171: 17.9342% +Rate for instruction 25172: 17.9341% +Rate for instruction 25173: 17.9346% +Rate for instruction 25174: 17.9348% +Rate for instruction 25175: 17.9357% +Rate for instruction 25176: 17.9353% +Rate for instruction 25177: 17.9348% +Rate for instruction 25178: 17.9344% +Rate for instruction 25179: 17.9344% +Rate for instruction 25180: 17.9339% +Rate for instruction 25181: 17.9334% +Rate for instruction 25182: 17.934% +Rate for instruction 25183: 17.9334% +Rate for instruction 25184: 17.9331% +Rate for instruction 25185: 17.9333% +Rate for instruction 25186: 17.9334% +Rate for instruction 25187: 17.9339% +Rate for instruction 25188: 17.9335% +Rate for instruction 25189: 17.9337% +Rate for instruction 25190: 17.9338% +Rate for instruction 25191: 17.9338% +Rate for instruction 25192: 17.934% +Rate for instruction 25193: 17.9336% +Rate for instruction 25194: 17.9332% +Rate for instruction 25195: 17.9329% +Rate for instruction 25196: 17.9324% +Rate for instruction 25197: 17.9321% +Rate for instruction 25198: 17.9319% +Rate for instruction 25199: 17.9319% +Rate for instruction 25200: 17.9318% +Rate for instruction 25201: 17.932% +Rate for instruction 25202: 17.9325% +Rate for instruction 25203: 17.9324% +Rate for instruction 25204: 17.9322% +Rate for instruction 25205: 17.9318% +Rate for instruction 25206: 17.9317% +Rate for instruction 25207: 17.9319% +Rate for instruction 25208: 17.9322% +Rate for instruction 25209: 17.9317% +Rate for instruction 25210: 17.9313% +Rate for instruction 25211: 17.931% +Rate for instruction 25212: 17.9309% +Rate for instruction 25213: 17.931% +Rate for instruction 25214: 17.9307% +Rate for instruction 25215: 17.9303% +Rate for instruction 25216: 17.9302% +Rate for instruction 25217: 17.9297% +Rate for instruction 25218: 17.9297% +Rate for instruction 25219: 17.9302% +Rate for instruction 25220: 17.9303% +Rate for instruction 25221: 17.93% +Rate for instruction 25222: 17.9301% +Rate for instruction 25223: 17.9297% +Rate for instruction 25224: 17.93% +Rate for instruction 25225: 17.9302% +Rate for instruction 25226: 17.9297% +Rate for instruction 25227: 17.9294% +Rate for instruction 25228: 17.9288% +Rate for instruction 25229: 17.9287% +Rate for instruction 25230: 17.9286% +Rate for instruction 25231: 17.929% +Rate for instruction 25232: 17.9284% +Rate for instruction 25233: 17.9283% +Rate for instruction 25234: 17.9282% +Rate for instruction 25235: 17.9278% +Rate for instruction 25236: 17.9276% +Rate for instruction 25237: 17.9278% +Rate for instruction 25238: 17.9272% +Rate for instruction 25239: 17.9277% +Rate for instruction 25240: 17.9273% +Rate for instruction 25241: 17.9277% +Rate for instruction 25242: 17.9276% +Rate for instruction 25243: 17.9278% +Rate for instruction 25244: 17.9278% +Rate for instruction 25245: 17.9277% +Rate for instruction 25246: 17.9273% +Rate for instruction 25247: 17.9285% +Rate for instruction 25248: 17.9285% +Rate for instruction 25249: 17.9284% +Rate for instruction 25250: 17.9289% +Rate for instruction 25251: 17.9287% +Rate for instruction 25252: 17.9292% +Rate for instruction 25253: 17.9297% +Rate for instruction 25254: 17.9303% +Rate for instruction 25255: 17.9302% +Rate for instruction 25256: 17.93% +Rate for instruction 25257: 17.931% +Rate for instruction 25258: 17.9304% +Rate for instruction 25259: 17.9311% +Rate for instruction 25260: 17.9311% +Rate for instruction 25261: 17.9321% +Rate for instruction 25262: 17.9329% +Rate for instruction 25263: 17.9337% +Rate for instruction 25264: 17.9341% +Rate for instruction 25265: 17.9343% +Rate for instruction 25266: 17.934% +Rate for instruction 25267: 17.9347% +Rate for instruction 25268: 17.9341% +Rate for instruction 25269: 17.9345% +Rate for instruction 25270: 17.9339% +Rate for instruction 25271: 17.9343% +Rate for instruction 25272: 17.9337% +Rate for instruction 25273: 17.9333% +Rate for instruction 25274: 17.9329% +Rate for instruction 25275: 17.9323% +Rate for instruction 25276: 17.9319% +Rate for instruction 25277: 17.9321% +Rate for instruction 25278: 17.9328% +Rate for instruction 25279: 17.9327% +Rate for instruction 25280: 17.9321% +Rate for instruction 25281: 17.9328% +Rate for instruction 25282: 17.9333% +Rate for instruction 25283: 17.9335% +Rate for instruction 25284: 17.9336% +Rate for instruction 25285: 17.9341% +Rate for instruction 25286: 17.9349% +Rate for instruction 25287: 17.9345% +Rate for instruction 25288: 17.9347% +Rate for instruction 25289: 17.9353% +Rate for instruction 25290: 17.936% +Rate for instruction 25291: 17.9359% +Rate for instruction 25292: 17.9359% +Rate for instruction 25293: 17.9354% +Rate for instruction 25294: 17.9348% +Rate for instruction 25295: 17.9344% +Rate for instruction 25296: 17.9339% +Rate for instruction 25297: 17.9335% +Rate for instruction 25298: 17.9329% +Rate for instruction 25299: 17.9331% +Rate for instruction 25300: 17.9333% +Rate for instruction 25301: 17.9328% +Rate for instruction 25302: 17.9322% +Rate for instruction 25303: 17.9326% +Rate for instruction 25304: 17.9322% +Rate for instruction 25305: 17.9317% +Rate for instruction 25306: 17.9318% +Rate for instruction 25307: 17.9315% +Rate for instruction 25308: 17.9311% +Rate for instruction 25309: 17.9307% +Rate for instruction 25310: 17.9311% +Rate for instruction 25311: 17.9314% +Rate for instruction 25312: 17.9315% +Rate for instruction 25313: 17.9311% +Rate for instruction 25314: 17.9307% +Rate for instruction 25315: 17.9309% +Rate for instruction 25316: 17.9305% +Rate for instruction 25317: 17.9304% +Rate for instruction 25318: 17.9306% +Rate for instruction 25319: 17.9309% +Rate for instruction 25320: 17.931% +Rate for instruction 25321: 17.9309% +Rate for instruction 25322: 17.9313% +Rate for instruction 25323: 17.9308% +Rate for instruction 25324: 17.9309% +Rate for instruction 25325: 17.9311% +Rate for instruction 25326: 17.9307% +Rate for instruction 25327: 17.9307% +Rate for instruction 25328: 17.9303% +Rate for instruction 25329: 17.9305% +Rate for instruction 25330: 17.9306% +Rate for instruction 25331: 17.9302% +Rate for instruction 25332: 17.9305% +Rate for instruction 25333: 17.9309% +Rate for instruction 25334: 17.9303% +Rate for instruction 25335: 17.9306% +Rate for instruction 25336: 17.93% +Rate for instruction 25337: 17.9305% +Rate for instruction 25338: 17.9307% +Rate for instruction 25339: 17.9308% +Rate for instruction 25340: 17.9307% +Rate for instruction 25341: 17.9312% +Rate for instruction 25342: 17.9318% +Rate for instruction 25343: 17.9313% +Rate for instruction 25344: 17.931% +Rate for instruction 25345: 17.9305% +Rate for instruction 25346: 17.9304% +Rate for instruction 25347: 17.9309% +Rate for instruction 25348: 17.9315% +Rate for instruction 25349: 17.9317% +Rate for instruction 25350: 17.9321% +Rate for instruction 25351: 17.9315% +Rate for instruction 25352: 17.9322% +Rate for instruction 25353: 17.9318% +Rate for instruction 25354: 17.9318% +Rate for instruction 25355: 17.932% +Rate for instruction 25356: 17.9321% +Rate for instruction 25357: 17.932% +Rate for instruction 25358: 17.9323% +Rate for instruction 25359: 17.9325% +Rate for instruction 25360: 17.9323% +Rate for instruction 25361: 17.9325% +Rate for instruction 25362: 17.933% +Rate for instruction 25363: 17.9334% +Rate for instruction 25364: 17.9333% +Rate for instruction 25365: 17.9339% +Rate for instruction 25366: 17.9347% +Rate for instruction 25367: 17.9345% +Rate for instruction 25368: 17.9341% +Rate for instruction 25369: 17.934% +Rate for instruction 25370: 17.9337% +Rate for instruction 25371: 17.9345% +Rate for instruction 25372: 17.9355% +Rate for instruction 25373: 17.936% +Rate for instruction 25374: 17.9354% +Rate for instruction 25375: 17.9358% +Rate for instruction 25376: 17.9352% +Rate for instruction 25377: 17.9356% +Rate for instruction 25378: 17.9361% +Rate for instruction 25379: 17.9357% +Rate for instruction 25380: 17.9363% +Rate for instruction 25381: 17.9362% +Rate for instruction 25382: 17.9357% +Rate for instruction 25383: 17.9354% +Rate for instruction 25384: 17.9353% +Rate for instruction 25385: 17.9357% +Rate for instruction 25386: 17.9353% +Rate for instruction 25387: 17.9353% +Rate for instruction 25388: 17.9352% +Rate for instruction 25389: 17.9356% +Rate for instruction 25390: 17.935% +Rate for instruction 25391: 17.9351% +Rate for instruction 25392: 17.9353% +Rate for instruction 25393: 17.9349% +Rate for instruction 25394: 17.9351% +Rate for instruction 25395: 17.9345% +Rate for instruction 25396: 17.9344% +Rate for instruction 25397: 17.9343% +Rate for instruction 25398: 17.9342% +Rate for instruction 25399: 17.9346% +Rate for instruction 25400: 17.9355% +Rate for instruction 25401: 17.9351% +Rate for instruction 25402: 17.9347% +Rate for instruction 25403: 17.9343% +Rate for instruction 25404: 17.9339% +Rate for instruction 25405: 17.9337% +Rate for instruction 25406: 17.9333% +Rate for instruction 25407: 17.933% +Rate for instruction 25408: 17.9328% +Rate for instruction 25409: 17.9327% +Rate for instruction 25410: 17.9324% +Rate for instruction 25411: 17.9331% +Rate for instruction 25412: 17.9328% +Rate for instruction 25413: 17.9326% +Rate for instruction 25414: 17.9329% +Rate for instruction 25415: 17.9327% +Rate for instruction 25416: 17.9321% +Rate for instruction 25417: 17.932% +Rate for instruction 25418: 17.9316% +Rate for instruction 25419: 17.9315% +Rate for instruction 25420: 17.9314% +Rate for instruction 25421: 17.9319% +Rate for instruction 25422: 17.9321% +Rate for instruction 25423: 17.9319% +Rate for instruction 25424: 17.9316% +Rate for instruction 25425: 17.9311% +Rate for instruction 25426: 17.9319% +Rate for instruction 25427: 17.9328% +Rate for instruction 25428: 17.9327% +Rate for instruction 25429: 17.9323% +Rate for instruction 25430: 17.9321% +Rate for instruction 25431: 17.932% +Rate for instruction 25432: 17.9314% +Rate for instruction 25433: 17.9319% +Rate for instruction 25434: 17.9327% +Rate for instruction 25435: 17.9326% +Rate for instruction 25436: 17.9331% +Rate for instruction 25437: 17.9336% +Rate for instruction 25438: 17.9343% +Rate for instruction 25439: 17.9342% +Rate for instruction 25440: 17.9341% +Rate for instruction 25441: 17.9339% +Rate for instruction 25442: 17.9333% +Rate for instruction 25443: 17.9333% +Rate for instruction 25444: 17.9329% +Rate for instruction 25445: 17.9324% +Rate for instruction 25446: 17.9321% +Rate for instruction 25447: 17.9322% +Rate for instruction 25448: 17.9321% +Rate for instruction 25449: 17.9317% +Rate for instruction 25450: 17.9317% +Rate for instruction 25451: 17.9315% +Rate for instruction 25452: 17.932% +Rate for instruction 25453: 17.9328% +Rate for instruction 25454: 17.9333% +Rate for instruction 25455: 17.9337% +Rate for instruction 25456: 17.9337% +Rate for instruction 25457: 17.9338% +Rate for instruction 25458: 17.9337% +Rate for instruction 25459: 17.9334% +Rate for instruction 25460: 17.9332% +Rate for instruction 25461: 17.9337% +Rate for instruction 25462: 17.9343% +Rate for instruction 25463: 17.9348% +Rate for instruction 25464: 17.9346% +Rate for instruction 25465: 17.9345% +Rate for instruction 25466: 17.9342% +Rate for instruction 25467: 17.935% +Rate for instruction 25468: 17.9358% +Rate for instruction 25469: 17.9368% +Rate for instruction 25470: 17.9376% +Rate for instruction 25471: 17.9386% +Rate for instruction 25472: 17.9391% +Rate for instruction 25473: 17.9396% +Rate for instruction 25474: 17.9395% +Rate for instruction 25475: 17.9391% +Rate for instruction 25476: 17.939% +Rate for instruction 25477: 17.9384% +Rate for instruction 25478: 17.938% +Rate for instruction 25479: 17.9374% +Rate for instruction 25480: 17.9373% +Rate for instruction 25481: 17.9368% +Rate for instruction 25482: 17.9364% +Rate for instruction 25483: 17.9358% +Rate for instruction 25484: 17.9359% +Rate for instruction 25485: 17.9353% +Rate for instruction 25486: 17.9351% +Rate for instruction 25487: 17.935% +Rate for instruction 25488: 17.9347% +Rate for instruction 25489: 17.9345% +Rate for instruction 25490: 17.9339% +Rate for instruction 25491: 17.9335% +Rate for instruction 25492: 17.933% +Rate for instruction 25493: 17.9329% +Rate for instruction 25494: 17.9329% +Rate for instruction 25495: 17.9328% +Rate for instruction 25496: 17.9329% +Rate for instruction 25497: 17.9328% +Rate for instruction 25498: 17.9325% +Rate for instruction 25499: 17.9324% +Rate for instruction 25500: 17.9322% +Rate for instruction 25501: 17.9319% +Rate for instruction 25502: 17.9314% +Rate for instruction 25503: 17.9314% +Rate for instruction 25504: 17.9315% +Rate for instruction 25505: 17.9311% +Rate for instruction 25506: 17.9308% +Rate for instruction 25507: 17.9304% +Rate for instruction 25508: 17.9303% +Rate for instruction 25509: 17.9302% +Rate for instruction 25510: 17.9304% +Rate for instruction 25511: 17.9305% +Rate for instruction 25512: 17.9301% +Rate for instruction 25513: 17.9298% +Rate for instruction 25514: 17.9294% +Rate for instruction 25515: 17.9293% +Rate for instruction 25516: 17.9291% +Rate for instruction 25517: 17.9287% +Rate for instruction 25518: 17.9284% +Rate for instruction 25519: 17.9282% +Rate for instruction 25520: 17.9278% +Rate for instruction 25521: 17.9278% +Rate for instruction 25522: 17.9274% +Rate for instruction 25523: 17.9276% +Rate for instruction 25524: 17.9274% +Rate for instruction 25525: 17.9282% +Rate for instruction 25526: 17.9285% +Rate for instruction 25527: 17.9284% +Rate for instruction 25528: 17.9283% +Rate for instruction 25529: 17.9284% +Rate for instruction 25530: 17.928% +Rate for instruction 25531: 17.928% +Rate for instruction 25532: 17.9284% +Rate for instruction 25533: 17.9289% +Rate for instruction 25534: 17.9289% +Rate for instruction 25535: 17.9287% +Rate for instruction 25536: 17.9287% +Rate for instruction 25537: 17.9285% +Rate for instruction 25538: 17.929% +Rate for instruction 25539: 17.9298% +Rate for instruction 25540: 17.9297% +Rate for instruction 25541: 17.9297% +Rate for instruction 25542: 17.9301% +Rate for instruction 25543: 17.9295% +Rate for instruction 25544: 17.9302% +Rate for instruction 25545: 17.9302% +Rate for instruction 25546: 17.9306% +Rate for instruction 25547: 17.9308% +Rate for instruction 25548: 17.9307% +Rate for instruction 25549: 17.9302% +Rate for instruction 25550: 17.9301% +Rate for instruction 25551: 17.9303% +Rate for instruction 25552: 17.93% +Rate for instruction 25553: 17.9298% +Rate for instruction 25554: 17.9301% +Rate for instruction 25555: 17.9306% +Rate for instruction 25556: 17.9304% +Rate for instruction 25557: 17.93% +Rate for instruction 25558: 17.9299% +Rate for instruction 25559: 17.9296% +Rate for instruction 25560: 17.9292% +Rate for instruction 25561: 17.9293% +Rate for instruction 25562: 17.9293% +Rate for instruction 25563: 17.9291% +Rate for instruction 25564: 17.9288% +Rate for instruction 25565: 17.929% +Rate for instruction 25566: 17.9285% +Rate for instruction 25567: 17.9285% +Rate for instruction 25568: 17.9289% +Rate for instruction 25569: 17.9283% +Rate for instruction 25570: 17.9278% +Rate for instruction 25571: 17.9278% +Rate for instruction 25572: 17.9273% +Rate for instruction 25573: 17.9273% +Rate for instruction 25574: 17.9272% +Rate for instruction 25575: 17.9276% +Rate for instruction 25576: 17.9278% +Rate for instruction 25577: 17.9277% +Rate for instruction 25578: 17.9283% +Rate for instruction 25579: 17.9279% +Rate for instruction 25580: 17.9275% +Rate for instruction 25581: 17.9279% +Rate for instruction 25582: 17.9273% +Rate for instruction 25583: 17.9272% +Rate for instruction 25584: 17.9279% +Rate for instruction 25585: 17.9282% +Rate for instruction 25586: 17.9286% +Rate for instruction 25587: 17.928% +Rate for instruction 25588: 17.9275% +Rate for instruction 25589: 17.9281% +Rate for instruction 25590: 17.9277% +Rate for instruction 25591: 17.9284% +Rate for instruction 25592: 17.9289% +Rate for instruction 25593: 17.9295% +Rate for instruction 25594: 17.93% +Rate for instruction 25595: 17.9298% +Rate for instruction 25596: 17.9303% +Rate for instruction 25597: 17.9299% +Rate for instruction 25598: 17.9305% +Rate for instruction 25599: 17.931% +Rate for instruction 25600: 17.9306% +Rate for instruction 25601: 17.931% +Rate for instruction 25602: 17.9316% +Rate for instruction 25603: 17.9312% +Rate for instruction 25604: 17.9319% +Rate for instruction 25605: 17.9327% +Rate for instruction 25606: 17.9323% +Rate for instruction 25607: 17.932% +Rate for instruction 25608: 17.9315% +Rate for instruction 25609: 17.9317% +Rate for instruction 25610: 17.9311% +Rate for instruction 25611: 17.9307% +Rate for instruction 25612: 17.9311% +Rate for instruction 25613: 17.9305% +Rate for instruction 25614: 17.9309% +Rate for instruction 25615: 17.9316% +Rate for instruction 25616: 17.9319% +Rate for instruction 25617: 17.9327% +Rate for instruction 25618: 17.9322% +Rate for instruction 25619: 17.9325% +Rate for instruction 25620: 17.933% +Rate for instruction 25621: 17.9331% +Rate for instruction 25622: 17.933% +Rate for instruction 25623: 17.9324% +Rate for instruction 25624: 17.932% +Rate for instruction 25625: 17.9315% +Rate for instruction 25626: 17.9312% +Rate for instruction 25627: 17.9307% +Rate for instruction 25628: 17.9312% +Rate for instruction 25629: 17.9309% +Rate for instruction 25630: 17.9308% +Rate for instruction 25631: 17.9306% +Rate for instruction 25632: 17.9305% +Rate for instruction 25633: 17.9299% +Rate for instruction 25634: 17.9297% +Rate for instruction 25635: 17.9297% +Rate for instruction 25636: 17.9296% +Rate for instruction 25637: 17.9301% +Rate for instruction 25638: 17.9308% +Rate for instruction 25639: 17.9304% +Rate for instruction 25640: 17.9301% +Rate for instruction 25641: 17.9296% +Rate for instruction 25642: 17.9293% +Rate for instruction 25643: 17.9289% +Rate for instruction 25644: 17.9288% +Rate for instruction 25645: 17.9283% +Rate for instruction 25646: 17.928% +Rate for instruction 25647: 17.9281% +Rate for instruction 25648: 17.928% +Rate for instruction 25649: 17.9282% +Rate for instruction 25650: 17.9279% +Rate for instruction 25651: 17.9281% +Rate for instruction 25652: 17.9282% +Rate for instruction 25653: 17.9276% +Rate for instruction 25654: 17.9274% +Rate for instruction 25655: 17.9271% +Rate for instruction 25656: 17.9269% +Rate for instruction 25657: 17.9269% +Rate for instruction 25658: 17.9267% +Rate for instruction 25659: 17.9267% +Rate for instruction 25660: 17.9262% +Rate for instruction 25661: 17.9264% +Rate for instruction 25662: 17.9267% +Rate for instruction 25663: 17.9268% +Rate for instruction 25664: 17.9264% +Rate for instruction 25665: 17.926% +Rate for instruction 25666: 17.9257% +Rate for instruction 25667: 17.9258% +Rate for instruction 25668: 17.9255% +Rate for instruction 25669: 17.9256% +Rate for instruction 25670: 17.9258% +Rate for instruction 25671: 17.9258% +Rate for instruction 25672: 17.9265% +Rate for instruction 25673: 17.9271% +Rate for instruction 25674: 17.9266% +Rate for instruction 25675: 17.9271% +Rate for instruction 25676: 17.9265% +Rate for instruction 25677: 17.9266% +Rate for instruction 25678: 17.9268% +Rate for instruction 25679: 17.9276% +Rate for instruction 25680: 17.9282% +Rate for instruction 25681: 17.928% +Rate for instruction 25682: 17.9288% +Rate for instruction 25683: 17.9293% +Rate for instruction 25684: 17.9294% +Rate for instruction 25685: 17.9296% +Rate for instruction 25686: 17.9292% +Rate for instruction 25687: 17.9292% +Rate for instruction 25688: 17.929% +Rate for instruction 25689: 17.9284% +Rate for instruction 25690: 17.9282% +Rate for instruction 25691: 17.9282% +Rate for instruction 25692: 17.928% +Rate for instruction 25693: 17.9282% +Rate for instruction 25694: 17.9284% +Rate for instruction 25695: 17.9287% +Rate for instruction 25696: 17.9285% +Rate for instruction 25697: 17.9284% +Rate for instruction 25698: 17.9284% +Rate for instruction 25699: 17.9288% +Rate for instruction 25700: 17.9282% +Rate for instruction 25701: 17.9278% +Rate for instruction 25702: 17.9276% +Rate for instruction 25703: 17.9275% +Rate for instruction 25704: 17.9271% +Rate for instruction 25705: 17.9265% +Rate for instruction 25706: 17.9264% +Rate for instruction 25707: 17.926% +Rate for instruction 25708: 17.9262% +Rate for instruction 25709: 17.9257% +Rate for instruction 25710: 17.9253% +Rate for instruction 25711: 17.9259% +Rate for instruction 25712: 17.9263% +Rate for instruction 25713: 17.9268% +Rate for instruction 25714: 17.9271% +Rate for instruction 25715: 17.9267% +Rate for instruction 25716: 17.9274% +Rate for instruction 25717: 17.9274% +Rate for instruction 25718: 17.9282% +Rate for instruction 25719: 17.9277% +Rate for instruction 25720: 17.928% +Rate for instruction 25721: 17.9281% +Rate for instruction 25722: 17.9287% +Rate for instruction 25723: 17.9285% +Rate for instruction 25724: 17.9279% +Rate for instruction 25725: 17.928% +Rate for instruction 25726: 17.9285% +Rate for instruction 25727: 17.9285% +Rate for instruction 25728: 17.928% +Rate for instruction 25729: 17.9283% +Rate for instruction 25730: 17.9291% +Rate for instruction 25731: 17.9298% +Rate for instruction 25732: 17.9297% +Rate for instruction 25733: 17.9294% +Rate for instruction 25734: 17.9298% +Rate for instruction 25735: 17.93% +Rate for instruction 25736: 17.9302% +Rate for instruction 25737: 17.9301% +Rate for instruction 25738: 17.9297% +Rate for instruction 25739: 17.9297% +Rate for instruction 25740: 17.9295% +Rate for instruction 25741: 17.9289% +Rate for instruction 25742: 17.9284% +Rate for instruction 25743: 17.9279% +Rate for instruction 25744: 17.9279% +Rate for instruction 25745: 17.928% +Rate for instruction 25746: 17.9279% +Rate for instruction 25747: 17.9276% +Rate for instruction 25748: 17.9271% +Rate for instruction 25749: 17.9271% +Rate for instruction 25750: 17.927% +Rate for instruction 25751: 17.9268% +Rate for instruction 25752: 17.9267% +Rate for instruction 25753: 17.9266% +Rate for instruction 25754: 17.9263% +Rate for instruction 25755: 17.9264% +Rate for instruction 25756: 17.9264% +Rate for instruction 25757: 17.9266% +Rate for instruction 25758: 17.9268% +Rate for instruction 25759: 17.9264% +Rate for instruction 25760: 17.9268% +Rate for instruction 25761: 17.9273% +Rate for instruction 25762: 17.9273% +Rate for instruction 25763: 17.9271% +Rate for instruction 25764: 17.9265% +Rate for instruction 25765: 17.9263% +Rate for instruction 25766: 17.9259% +Rate for instruction 25767: 17.9267% +Rate for instruction 25768: 17.9275% +Rate for instruction 25769: 17.9269% +Rate for instruction 25770: 17.9267% +Rate for instruction 25771: 17.9261% +Rate for instruction 25772: 17.9265% +Rate for instruction 25773: 17.9274% +Rate for instruction 25774: 17.9285% +Rate for instruction 25775: 17.9292% +Rate for instruction 25776: 17.9301% +Rate for instruction 25777: 17.9303% +Rate for instruction 25778: 17.9314% +Rate for instruction 25779: 17.931% +Rate for instruction 25780: 17.932% +Rate for instruction 25781: 17.9323% +Rate for instruction 25782: 17.9319% +Rate for instruction 25783: 17.9324% +Rate for instruction 25784: 17.9331% +Rate for instruction 25785: 17.9334% +Rate for instruction 25786: 17.9332% +Rate for instruction 25787: 17.9332% +Rate for instruction 25788: 17.9327% +Rate for instruction 25789: 17.9324% +Rate for instruction 25790: 17.9319% +Rate for instruction 25791: 17.9315% +Rate for instruction 25792: 17.9309% +Rate for instruction 25793: 17.9308% +Rate for instruction 25794: 17.9303% +Rate for instruction 25795: 17.9308% +Rate for instruction 25796: 17.9313% +Rate for instruction 25797: 17.9318% +Rate for instruction 25798: 17.9312% +Rate for instruction 25799: 17.931% +Rate for instruction 25800: 17.9306% +Rate for instruction 25801: 17.9308% +Rate for instruction 25802: 17.9313% +Rate for instruction 25803: 17.931% +Rate for instruction 25804: 17.9314% +Rate for instruction 25805: 17.9308% +Rate for instruction 25806: 17.9315% +Rate for instruction 25807: 17.932% +Rate for instruction 25808: 17.9316% +Rate for instruction 25809: 17.9322% +Rate for instruction 25810: 17.9333% +Rate for instruction 25811: 17.934% +Rate for instruction 25812: 17.9343% +Rate for instruction 25813: 17.935% +Rate for instruction 25814: 17.9347% +Rate for instruction 25815: 17.9345% +Rate for instruction 25816: 17.9339% +Rate for instruction 25817: 17.934% +Rate for instruction 25818: 17.9342% +Rate for instruction 25819: 17.9336% +Rate for instruction 25820: 17.9338% +Rate for instruction 25821: 17.9339% +Rate for instruction 25822: 17.9335% +Rate for instruction 25823: 17.9337% +Rate for instruction 25824: 17.9342% +Rate for instruction 25825: 17.9338% +Rate for instruction 25826: 17.9338% +Rate for instruction 25827: 17.9343% +Rate for instruction 25828: 17.9344% +Rate for instruction 25829: 17.9344% +Rate for instruction 25830: 17.9351% +Rate for instruction 25831: 17.9351% +Rate for instruction 25832: 17.9352% +Rate for instruction 25833: 17.9349% +Rate for instruction 25834: 17.9344% +Rate for instruction 25835: 17.9341% +Rate for instruction 25836: 17.9343% +Rate for instruction 25837: 17.9338% +Rate for instruction 25838: 17.9334% +Rate for instruction 25839: 17.933% +Rate for instruction 25840: 17.9326% +Rate for instruction 25841: 17.9329% +Rate for instruction 25842: 17.9327% +Rate for instruction 25843: 17.9329% +Rate for instruction 25844: 17.9323% +Rate for instruction 25845: 17.9324% +Rate for instruction 25846: 17.9327% +Rate for instruction 25847: 17.9328% +Rate for instruction 25848: 17.9327% +Rate for instruction 25849: 17.9329% +Rate for instruction 25850: 17.9329% +Rate for instruction 25851: 17.9334% +Rate for instruction 25852: 17.9338% +Rate for instruction 25853: 17.9334% +Rate for instruction 25854: 17.9337% +Rate for instruction 25855: 17.9342% +Rate for instruction 25856: 17.9344% +Rate for instruction 25857: 17.9343% +Rate for instruction 25858: 17.9345% +Rate for instruction 25859: 17.9353% +Rate for instruction 25860: 17.9361% +Rate for instruction 25861: 17.9369% +Rate for instruction 25862: 17.9364% +Rate for instruction 25863: 17.9364% +Rate for instruction 25864: 17.9359% +Rate for instruction 25865: 17.9358% +Rate for instruction 25866: 17.9358% +Rate for instruction 25867: 17.9353% +Rate for instruction 25868: 17.9349% +Rate for instruction 25869: 17.9345% +Rate for instruction 25870: 17.9351% +Rate for instruction 25871: 17.9358% +Rate for instruction 25872: 17.9352% +Rate for instruction 25873: 17.9359% +Rate for instruction 25874: 17.9361% +Rate for instruction 25875: 17.9355% +Rate for instruction 25876: 17.9357% +Rate for instruction 25877: 17.9362% +Rate for instruction 25878: 17.9364% +Rate for instruction 25879: 17.9366% +Rate for instruction 25880: 17.9365% +Rate for instruction 25881: 17.9372% +Rate for instruction 25882: 17.9375% +Rate for instruction 25883: 17.9376% +Rate for instruction 25884: 17.937% +Rate for instruction 25885: 17.9366% +Rate for instruction 25886: 17.9362% +Rate for instruction 25887: 17.9369% +Rate for instruction 25888: 17.9366% +Rate for instruction 25889: 17.9371% +Rate for instruction 25890: 17.9378% +Rate for instruction 25891: 17.9387% +Rate for instruction 25892: 17.9394% +Rate for instruction 25893: 17.94% +Rate for instruction 25894: 17.9405% +Rate for instruction 25895: 17.941% +Rate for instruction 25896: 17.9406% +Rate for instruction 25897: 17.9414% +Rate for instruction 25898: 17.941% +Rate for instruction 25899: 17.9405% +Rate for instruction 25900: 17.9404% +Rate for instruction 25901: 17.9408% +Rate for instruction 25902: 17.9409% +Rate for instruction 25903: 17.9412% +Rate for instruction 25904: 17.9407% +Rate for instruction 25905: 17.9406% +Rate for instruction 25906: 17.9418% +Rate for instruction 25907: 17.9422% +Rate for instruction 25908: 17.9428% +Rate for instruction 25909: 17.9435% +Rate for instruction 25910: 17.9438% +Rate for instruction 25911: 17.9442% +Rate for instruction 25912: 17.9444% +Rate for instruction 25913: 17.945% +Rate for instruction 25914: 17.9455% +Rate for instruction 25915: 17.946% +Rate for instruction 25916: 17.9465% +Rate for instruction 25917: 17.9461% +Rate for instruction 25918: 17.9464% +Rate for instruction 25919: 17.946% +Rate for instruction 25920: 17.9457% +Rate for instruction 25921: 17.9453% +Rate for instruction 25922: 17.946% +Rate for instruction 25923: 17.9455% +Rate for instruction 25924: 17.9451% +Rate for instruction 25925: 17.9456% +Rate for instruction 25926: 17.9459% +Rate for instruction 25927: 17.9464% +Rate for instruction 25928: 17.9459% +Rate for instruction 25929: 17.9459% +Rate for instruction 25930: 17.9457% +Rate for instruction 25931: 17.9459% +Rate for instruction 25932: 17.9454% +Rate for instruction 25933: 17.9459% +Rate for instruction 25934: 17.9462% +Rate for instruction 25935: 17.947% +Rate for instruction 25936: 17.9473% +Rate for instruction 25937: 17.9477% +Rate for instruction 25938: 17.9479% +Rate for instruction 25939: 17.9479% +Rate for instruction 25940: 17.9477% +Rate for instruction 25941: 17.9476% +Rate for instruction 25942: 17.9476% +Rate for instruction 25943: 17.9471% +Rate for instruction 25944: 17.9467% +Rate for instruction 25945: 17.9461% +Rate for instruction 25946: 17.9459% +Rate for instruction 25947: 17.9454% +Rate for instruction 25948: 17.945% +Rate for instruction 25949: 17.9447% +Rate for instruction 25950: 17.9442% +Rate for instruction 25951: 17.9438% +Rate for instruction 25952: 17.9435% +Rate for instruction 25953: 17.9431% +Rate for instruction 25954: 17.9426% +Rate for instruction 25955: 17.942% +Rate for instruction 25956: 17.9418% +Rate for instruction 25957: 17.9413% +Rate for instruction 25958: 17.9412% +Rate for instruction 25959: 17.9412% +Rate for instruction 25960: 17.9408% +Rate for instruction 25961: 17.9407% +Rate for instruction 25962: 17.9408% +Rate for instruction 25963: 17.9405% +Rate for instruction 25964: 17.9406% +Rate for instruction 25965: 17.9402% +Rate for instruction 25966: 17.9404% +Rate for instruction 25967: 17.9403% +Rate for instruction 25968: 17.9397% +Rate for instruction 25969: 17.9398% +Rate for instruction 25970: 17.9394% +Rate for instruction 25971: 17.9393% +Rate for instruction 25972: 17.939% +Rate for instruction 25973: 17.9386% +Rate for instruction 25974: 17.9386% +Rate for instruction 25975: 17.9383% +Rate for instruction 25976: 17.9379% +Rate for instruction 25977: 17.9375% +Rate for instruction 25978: 17.9374% +Rate for instruction 25979: 17.937% +Rate for instruction 25980: 17.9365% +Rate for instruction 25981: 17.9362% +Rate for instruction 25982: 17.9361% +Rate for instruction 25983: 17.9356% +Rate for instruction 25984: 17.9353% +Rate for instruction 25985: 17.9352% +Rate for instruction 25986: 17.9353% +Rate for instruction 25987: 17.9353% +Rate for instruction 25988: 17.9351% +Rate for instruction 25989: 17.9353% +Rate for instruction 25990: 17.9352% +Rate for instruction 25991: 17.9351% +Rate for instruction 25992: 17.9347% +Rate for instruction 25993: 17.9345% +Rate for instruction 25994: 17.9345% +Rate for instruction 25995: 17.9343% +Rate for instruction 25996: 17.9345% +Rate for instruction 25997: 17.9339% +Rate for instruction 25998: 17.9338% +Rate for instruction 25999: 17.9333% +Rate for instruction 26000: 17.9341% +Rate for instruction 26001: 17.9346% +Rate for instruction 26002: 17.9348% +Rate for instruction 26003: 17.9342% +Rate for instruction 26004: 17.9344% +Rate for instruction 26005: 17.9346% +Rate for instruction 26006: 17.9341% +Rate for instruction 26007: 17.9347% +Rate for instruction 26008: 17.9342% +Rate for instruction 26009: 17.9342% +Rate for instruction 26010: 17.9341% +Rate for instruction 26011: 17.9343% +Rate for instruction 26012: 17.9354% +Rate for instruction 26013: 17.9359% +Rate for instruction 26014: 17.936% +Rate for instruction 26015: 17.9362% +Rate for instruction 26016: 17.9368% +Rate for instruction 26017: 17.9371% +Rate for instruction 26018: 17.9366% +Rate for instruction 26019: 17.9377% +Rate for instruction 26020: 17.9377% +Rate for instruction 26021: 17.9375% +Rate for instruction 26022: 17.9375% +Rate for instruction 26023: 17.9371% +Rate for instruction 26024: 17.9366% +Rate for instruction 26025: 17.9364% +Rate for instruction 26026: 17.9363% +Rate for instruction 26027: 17.9357% +Rate for instruction 26028: 17.9367% +Rate for instruction 26029: 17.9368% +Rate for instruction 26030: 17.9375% +Rate for instruction 26031: 17.9375% +Rate for instruction 26032: 17.937% +Rate for instruction 26033: 17.9376% +Rate for instruction 26034: 17.9384% +Rate for instruction 26035: 17.9392% +Rate for instruction 26036: 17.9399% +Rate for instruction 26037: 17.9393% +Rate for instruction 26038: 17.9401% +Rate for instruction 26039: 17.9409% +Rate for instruction 26040: 17.9403% +Rate for instruction 26041: 17.9411% +Rate for instruction 26042: 17.9413% +Rate for instruction 26043: 17.9418% +Rate for instruction 26044: 17.942% +Rate for instruction 26045: 17.9418% +Rate for instruction 26046: 17.9421% +Rate for instruction 26047: 17.9417% +Rate for instruction 26048: 17.9419% +Rate for instruction 26049: 17.9414% +Rate for instruction 26050: 17.9413% +Rate for instruction 26051: 17.9407% +Rate for instruction 26052: 17.9409% +Rate for instruction 26053: 17.9404% +Rate for instruction 26054: 17.9403% +Rate for instruction 26055: 17.9408% +Rate for instruction 26056: 17.9413% +Rate for instruction 26057: 17.9416% +Rate for instruction 26058: 17.9421% +Rate for instruction 26059: 17.9423% +Rate for instruction 26060: 17.9424% +Rate for instruction 26061: 17.9433% +Rate for instruction 26062: 17.9429% +Rate for instruction 26063: 17.9427% +Rate for instruction 26064: 17.9432% +Rate for instruction 26065: 17.9428% +Rate for instruction 26066: 17.9427% +Rate for instruction 26067: 17.9427% +Rate for instruction 26068: 17.9428% +Rate for instruction 26069: 17.9434% +Rate for instruction 26070: 17.9438% +Rate for instruction 26071: 17.9441% +Rate for instruction 26072: 17.9441% +Rate for instruction 26073: 17.9448% +Rate for instruction 26074: 17.9456% +Rate for instruction 26075: 17.9455% +Rate for instruction 26076: 17.9449% +Rate for instruction 26077: 17.9445% +Rate for instruction 26078: 17.9449% +Rate for instruction 26079: 17.9443% +Rate for instruction 26080: 17.9439% +Rate for instruction 26081: 17.9434% +Rate for instruction 26082: 17.9432% +Rate for instruction 26083: 17.9435% +Rate for instruction 26084: 17.9431% +Rate for instruction 26085: 17.9432% +Rate for instruction 26086: 17.9431% +Rate for instruction 26087: 17.9428% +Rate for instruction 26088: 17.9426% +Rate for instruction 26089: 17.9422% +Rate for instruction 26090: 17.9418% +Rate for instruction 26091: 17.9418% +Rate for instruction 26092: 17.9416% +Rate for instruction 26093: 17.9413% +Rate for instruction 26094: 17.9418% +Rate for instruction 26095: 17.9423% +Rate for instruction 26096: 17.9422% +Rate for instruction 26097: 17.9421% +Rate for instruction 26098: 17.9422% +Rate for instruction 26099: 17.9428% +Rate for instruction 26100: 17.9426% +Rate for instruction 26101: 17.9429% +Rate for instruction 26102: 17.9436% +Rate for instruction 26103: 17.9433% +Rate for instruction 26104: 17.9435% +Rate for instruction 26105: 17.9431% +Rate for instruction 26106: 17.9429% +Rate for instruction 26107: 17.9426% +Rate for instruction 26108: 17.9424% +Rate for instruction 26109: 17.9421% +Rate for instruction 26110: 17.942% +Rate for instruction 26111: 17.9421% +Rate for instruction 26112: 17.9417% +Rate for instruction 26113: 17.9413% +Rate for instruction 26114: 17.9416% +Rate for instruction 26115: 17.9413% +Rate for instruction 26116: 17.941% +Rate for instruction 26117: 17.9406% +Rate for instruction 26118: 17.9402% +Rate for instruction 26119: 17.9397% +Rate for instruction 26120: 17.9393% +Rate for instruction 26121: 17.939% +Rate for instruction 26122: 17.9388% +Rate for instruction 26123: 17.9386% +Rate for instruction 26124: 17.9388% +Rate for instruction 26125: 17.9391% +Rate for instruction 26126: 17.9387% +Rate for instruction 26127: 17.9385% +Rate for instruction 26128: 17.939% +Rate for instruction 26129: 17.9399% +Rate for instruction 26130: 17.9398% +Rate for instruction 26131: 17.9397% +Rate for instruction 26132: 17.9393% +Rate for instruction 26133: 17.9405% +Rate for instruction 26134: 17.9415% +Rate for instruction 26135: 17.9415% +Rate for instruction 26136: 17.9411% +Rate for instruction 26137: 17.9415% +Rate for instruction 26138: 17.9414% +Rate for instruction 26139: 17.9419% +Rate for instruction 26140: 17.9428% +Rate for instruction 26141: 17.9424% +Rate for instruction 26142: 17.9419% +Rate for instruction 26143: 17.9416% +Rate for instruction 26144: 17.9412% +Rate for instruction 26145: 17.9411% +Rate for instruction 26146: 17.9407% +Rate for instruction 26147: 17.9405% +Rate for instruction 26148: 17.941% +Rate for instruction 26149: 17.9404% +Rate for instruction 26150: 17.94% +Rate for instruction 26151: 17.9401% +Rate for instruction 26152: 17.9404% +Rate for instruction 26153: 17.9406% +Rate for instruction 26154: 17.9408% +Rate for instruction 26155: 17.9418% +Rate for instruction 26156: 17.9424% +Rate for instruction 26157: 17.9419% +Rate for instruction 26158: 17.9426% +Rate for instruction 26159: 17.9425% +Rate for instruction 26160: 17.9423% +Rate for instruction 26161: 17.9419% +Rate for instruction 26162: 17.9421% +Rate for instruction 26163: 17.9419% +Rate for instruction 26164: 17.9419% +Rate for instruction 26165: 17.9415% +Rate for instruction 26166: 17.9423% +Rate for instruction 26167: 17.9428% +Rate for instruction 26168: 17.9425% +Rate for instruction 26169: 17.9432% +Rate for instruction 26170: 17.9437% +Rate for instruction 26171: 17.9437% +Rate for instruction 26172: 17.9433% +Rate for instruction 26173: 17.9429% +Rate for instruction 26174: 17.9427% +Rate for instruction 26175: 17.9433% +Rate for instruction 26176: 17.944% +Rate for instruction 26177: 17.9443% +Rate for instruction 26178: 17.9449% +Rate for instruction 26179: 17.9457% +Rate for instruction 26180: 17.9455% +Rate for instruction 26181: 17.946% +Rate for instruction 26182: 17.9457% +Rate for instruction 26183: 17.9465% +Rate for instruction 26184: 17.9466% +Rate for instruction 26185: 17.9468% +Rate for instruction 26186: 17.9462% +Rate for instruction 26187: 17.9458% +Rate for instruction 26188: 17.9454% +Rate for instruction 26189: 17.9449% +Rate for instruction 26190: 17.9449% +Rate for instruction 26191: 17.9444% +Rate for instruction 26192: 17.9446% +Rate for instruction 26193: 17.9448% +Rate for instruction 26194: 17.9446% +Rate for instruction 26195: 17.9443% +Rate for instruction 26196: 17.9441% +Rate for instruction 26197: 17.9438% +Rate for instruction 26198: 17.9436% +Rate for instruction 26199: 17.9435% +Rate for instruction 26200: 17.9432% +Rate for instruction 26201: 17.9433% +Rate for instruction 26202: 17.9436% +Rate for instruction 26203: 17.9434% +Rate for instruction 26204: 17.944% +Rate for instruction 26205: 17.9435% +Rate for instruction 26206: 17.9431% +Rate for instruction 26207: 17.9427% +Rate for instruction 26208: 17.9433% +Rate for instruction 26209: 17.9432% +Rate for instruction 26210: 17.943% +Rate for instruction 26211: 17.9436% +Rate for instruction 26212: 17.9437% +Rate for instruction 26213: 17.9445% +Rate for instruction 26214: 17.9442% +Rate for instruction 26215: 17.9437% +Rate for instruction 26216: 17.9436% +Rate for instruction 26217: 17.9433% +Rate for instruction 26218: 17.9431% +Rate for instruction 26219: 17.943% +Rate for instruction 26220: 17.9428% +Rate for instruction 26221: 17.9428% +Rate for instruction 26222: 17.9431% +Rate for instruction 26223: 17.943% +Rate for instruction 26224: 17.9425% +Rate for instruction 26225: 17.9424% +Rate for instruction 26226: 17.9422% +Rate for instruction 26227: 17.9419% +Rate for instruction 26228: 17.9418% +Rate for instruction 26229: 17.9413% +Rate for instruction 26230: 17.9412% +Rate for instruction 26231: 17.9407% +Rate for instruction 26232: 17.941% +Rate for instruction 26233: 17.9406% +Rate for instruction 26234: 17.9407% +Rate for instruction 26235: 17.9407% +Rate for instruction 26236: 17.941% +Rate for instruction 26237: 17.9414% +Rate for instruction 26238: 17.9419% +Rate for instruction 26239: 17.9413% +Rate for instruction 26240: 17.9417% +Rate for instruction 26241: 17.9417% +Rate for instruction 26242: 17.9422% +Rate for instruction 26243: 17.9426% +Rate for instruction 26244: 17.9429% +Rate for instruction 26245: 17.9424% +Rate for instruction 26246: 17.9431% +Rate for instruction 26247: 17.9441% +Rate for instruction 26248: 17.9444% +Rate for instruction 26249: 17.944% +Rate for instruction 26250: 17.9445% +Rate for instruction 26251: 17.9443% +Rate for instruction 26252: 17.9449% +Rate for instruction 26253: 17.9447% +Rate for instruction 26254: 17.9453% +Rate for instruction 26255: 17.9453% +Rate for instruction 26256: 17.9451% +Rate for instruction 26257: 17.9454% +Rate for instruction 26258: 17.9455% +Rate for instruction 26259: 17.9458% +Rate for instruction 26260: 17.9465% +Rate for instruction 26261: 17.9462% +Rate for instruction 26262: 17.9458% +Rate for instruction 26263: 17.9456% +Rate for instruction 26264: 17.9453% +Rate for instruction 26265: 17.9451% +Rate for instruction 26266: 17.9459% +Rate for instruction 26267: 17.9455% +Rate for instruction 26268: 17.945% +Rate for instruction 26269: 17.9452% +Rate for instruction 26270: 17.9449% +Rate for instruction 26271: 17.9445% +Rate for instruction 26272: 17.9443% +Rate for instruction 26273: 17.9446% +Rate for instruction 26274: 17.9453% +Rate for instruction 26275: 17.9454% +Rate for instruction 26276: 17.9451% +Rate for instruction 26277: 17.9451% +Rate for instruction 26278: 17.9454% +Rate for instruction 26279: 17.9458% +Rate for instruction 26280: 17.946% +Rate for instruction 26281: 17.9463% +Rate for instruction 26282: 17.9462% +Rate for instruction 26283: 17.9463% +Rate for instruction 26284: 17.946% +Rate for instruction 26285: 17.9459% +Rate for instruction 26286: 17.9455% +Rate for instruction 26287: 17.945% +Rate for instruction 26288: 17.9446% +Rate for instruction 26289: 17.9453% +Rate for instruction 26290: 17.9456% +Rate for instruction 26291: 17.9458% +Rate for instruction 26292: 17.9466% +Rate for instruction 26293: 17.9474% +Rate for instruction 26294: 17.9474% +Rate for instruction 26295: 17.9469% +Rate for instruction 26296: 17.9471% +Rate for instruction 26297: 17.947% +Rate for instruction 26298: 17.948% +Rate for instruction 26299: 17.9488% +Rate for instruction 26300: 17.9486% +Rate for instruction 26301: 17.948% +Rate for instruction 26302: 17.9478% +Rate for instruction 26303: 17.9483% +Rate for instruction 26304: 17.948% +Rate for instruction 26305: 17.9476% +Rate for instruction 26306: 17.9475% +Rate for instruction 26307: 17.9482% +Rate for instruction 26308: 17.9478% +Rate for instruction 26309: 17.948% +Rate for instruction 26310: 17.9476% +Rate for instruction 26311: 17.9481% +Rate for instruction 26312: 17.9487% +Rate for instruction 26313: 17.9489% +Rate for instruction 26314: 17.9484% +Rate for instruction 26315: 17.9486% +Rate for instruction 26316: 17.948% +Rate for instruction 26317: 17.9479% +Rate for instruction 26318: 17.9475% +Rate for instruction 26319: 17.9475% +Rate for instruction 26320: 17.9469% +Rate for instruction 26321: 17.9473% +Rate for instruction 26322: 17.947% +Rate for instruction 26323: 17.9469% +Rate for instruction 26324: 17.9474% +Rate for instruction 26325: 17.947% +Rate for instruction 26326: 17.9472% +Rate for instruction 26327: 17.9474% +Rate for instruction 26328: 17.9469% +Rate for instruction 26329: 17.9465% +Rate for instruction 26330: 17.9465% +Rate for instruction 26331: 17.947% +Rate for instruction 26332: 17.9478% +Rate for instruction 26333: 17.9483% +Rate for instruction 26334: 17.9491% +Rate for instruction 26335: 17.9497% +Rate for instruction 26336: 17.9499% +Rate for instruction 26337: 17.9504% +Rate for instruction 26338: 17.9506% +Rate for instruction 26339: 17.9503% +Rate for instruction 26340: 17.9498% +Rate for instruction 26341: 17.9494% +Rate for instruction 26342: 17.9489% +Rate for instruction 26343: 17.9485% +Rate for instruction 26344: 17.9482% +Rate for instruction 26345: 17.9481% +Rate for instruction 26346: 17.9479% +Rate for instruction 26347: 17.9475% +Rate for instruction 26348: 17.9473% +Rate for instruction 26349: 17.9469% +Rate for instruction 26350: 17.9476% +Rate for instruction 26351: 17.9471% +Rate for instruction 26352: 17.9482% +Rate for instruction 26353: 17.9476% +Rate for instruction 26354: 17.9474% +Rate for instruction 26355: 17.9479% +Rate for instruction 26356: 17.9478% +Rate for instruction 26357: 17.9476% +Rate for instruction 26358: 17.9475% +Rate for instruction 26359: 17.9479% +Rate for instruction 26360: 17.9481% +Rate for instruction 26361: 17.9482% +Rate for instruction 26362: 17.9482% +Rate for instruction 26363: 17.9481% +Rate for instruction 26364: 17.9488% +Rate for instruction 26365: 17.9484% +Rate for instruction 26366: 17.9478% +Rate for instruction 26367: 17.9475% +Rate for instruction 26368: 17.9469% +Rate for instruction 26369: 17.947% +Rate for instruction 26370: 17.9464% +Rate for instruction 26371: 17.946% +Rate for instruction 26372: 17.9455% +Rate for instruction 26373: 17.9457% +Rate for instruction 26374: 17.9452% +Rate for instruction 26375: 17.9446% +Rate for instruction 26376: 17.9442% +Rate for instruction 26377: 17.9437% +Rate for instruction 26378: 17.9433% +Rate for instruction 26379: 17.9434% +Rate for instruction 26380: 17.9436% +Rate for instruction 26381: 17.943% +Rate for instruction 26382: 17.9426% +Rate for instruction 26383: 17.9436% +Rate for instruction 26384: 17.9443% +Rate for instruction 26385: 17.9445% +Rate for instruction 26386: 17.9446% +Rate for instruction 26387: 17.9441% +Rate for instruction 26388: 17.9437% +Rate for instruction 26389: 17.9434% +Rate for instruction 26390: 17.9438% +Rate for instruction 26391: 17.944% +Rate for instruction 26392: 17.9436% +Rate for instruction 26393: 17.9435% +Rate for instruction 26394: 17.9432% +Rate for instruction 26395: 17.9433% +Rate for instruction 26396: 17.9436% +Rate for instruction 26397: 17.9437% +Rate for instruction 26398: 17.9439% +Rate for instruction 26399: 17.9442% +Rate for instruction 26400: 17.9437% +Rate for instruction 26401: 17.9436% +Rate for instruction 26402: 17.9438% +Rate for instruction 26403: 17.9435% +Rate for instruction 26404: 17.9436% +Rate for instruction 26405: 17.9435% +Rate for instruction 26406: 17.9431% +Rate for instruction 26407: 17.9431% +Rate for instruction 26408: 17.9429% +Rate for instruction 26409: 17.9424% +Rate for instruction 26410: 17.9426% +Rate for instruction 26411: 17.9432% +Rate for instruction 26412: 17.9431% +Rate for instruction 26413: 17.9428% +Rate for instruction 26414: 17.9423% +Rate for instruction 26415: 17.9419% +Rate for instruction 26416: 17.9415% +Rate for instruction 26417: 17.9425% +Rate for instruction 26418: 17.9431% +Rate for instruction 26419: 17.9436% +Rate for instruction 26420: 17.9439% +Rate for instruction 26421: 17.9438% +Rate for instruction 26422: 17.944% +Rate for instruction 26423: 17.9442% +Rate for instruction 26424: 17.9445% +Rate for instruction 26425: 17.9446% +Rate for instruction 26426: 17.9442% +Rate for instruction 26427: 17.9438% +Rate for instruction 26428: 17.9439% +Rate for instruction 26429: 17.9436% +Rate for instruction 26430: 17.9438% +Rate for instruction 26431: 17.9439% +Rate for instruction 26432: 17.9441% +Rate for instruction 26433: 17.9435% +Rate for instruction 26434: 17.9443% +Rate for instruction 26435: 17.9448% +Rate for instruction 26436: 17.9447% +Rate for instruction 26437: 17.9447% +Rate for instruction 26438: 17.9449% +Rate for instruction 26439: 17.9447% +Rate for instruction 26440: 17.9446% +Rate for instruction 26441: 17.9446% +Rate for instruction 26442: 17.9444% +Rate for instruction 26443: 17.9445% +Rate for instruction 26444: 17.9445% +Rate for instruction 26445: 17.9448% +Rate for instruction 26446: 17.9443% +Rate for instruction 26447: 17.9444% +Rate for instruction 26448: 17.9445% +Rate for instruction 26449: 17.9443% +Rate for instruction 26450: 17.9446% +Rate for instruction 26451: 17.9448% +Rate for instruction 26452: 17.9452% +Rate for instruction 26453: 17.9454% +Rate for instruction 26454: 17.9459% +Rate for instruction 26455: 17.9453% +Rate for instruction 26456: 17.9449% +Rate for instruction 26457: 17.9446% +Rate for instruction 26458: 17.944% +Rate for instruction 26459: 17.9439% +Rate for instruction 26460: 17.9435% +Rate for instruction 26461: 17.9433% +Rate for instruction 26462: 17.9432% +Rate for instruction 26463: 17.9428% +Rate for instruction 26464: 17.9426% +Rate for instruction 26465: 17.9425% +Rate for instruction 26466: 17.9421% +Rate for instruction 26467: 17.9423% +Rate for instruction 26468: 17.942% +Rate for instruction 26469: 17.9432% +Rate for instruction 26470: 17.9434% +Rate for instruction 26471: 17.9439% +Rate for instruction 26472: 17.9443% +Rate for instruction 26473: 17.9439% +Rate for instruction 26474: 17.9438% +Rate for instruction 26475: 17.9434% +Rate for instruction 26476: 17.9434% +Rate for instruction 26477: 17.9438% +Rate for instruction 26478: 17.9434% +Rate for instruction 26479: 17.9436% +Rate for instruction 26480: 17.9444% +Rate for instruction 26481: 17.9451% +Rate for instruction 26482: 17.9456% +Rate for instruction 26483: 17.9465% +Rate for instruction 26484: 17.946% +Rate for instruction 26485: 17.9456% +Rate for instruction 26486: 17.9461% +Rate for instruction 26487: 17.9464% +Rate for instruction 26488: 17.9471% +Rate for instruction 26489: 17.9473% +Rate for instruction 26490: 17.9467% +Rate for instruction 26491: 17.9469% +Rate for instruction 26492: 17.9473% +Rate for instruction 26493: 17.9467% +Rate for instruction 26494: 17.9466% +Rate for instruction 26495: 17.9461% +Rate for instruction 26496: 17.9457% +Rate for instruction 26497: 17.9452% +Rate for instruction 26498: 17.9449% +Rate for instruction 26499: 17.9444% +Rate for instruction 26500: 17.9446% +Rate for instruction 26501: 17.9442% +Rate for instruction 26502: 17.9437% +Rate for instruction 26503: 17.9437% +Rate for instruction 26504: 17.9433% +Rate for instruction 26505: 17.9428% +Rate for instruction 26506: 17.943% +Rate for instruction 26507: 17.9425% +Rate for instruction 26508: 17.9421% +Rate for instruction 26509: 17.9421% +Rate for instruction 26510: 17.9416% +Rate for instruction 26511: 17.9415% +Rate for instruction 26512: 17.9413% +Rate for instruction 26513: 17.941% +Rate for instruction 26514: 17.9408% +Rate for instruction 26515: 17.9405% +Rate for instruction 26516: 17.9412% +Rate for instruction 26517: 17.9414% +Rate for instruction 26518: 17.941% +Rate for instruction 26519: 17.9409% +Rate for instruction 26520: 17.9406% +Rate for instruction 26521: 17.9407% +Rate for instruction 26522: 17.9403% +Rate for instruction 26523: 17.9404% +Rate for instruction 26524: 17.9405% +Rate for instruction 26525: 17.9403% +Rate for instruction 26526: 17.9402% +Rate for instruction 26527: 17.9403% +Rate for instruction 26528: 17.9397% +Rate for instruction 26529: 17.9396% +Rate for instruction 26530: 17.9397% +Rate for instruction 26531: 17.9397% +Rate for instruction 26532: 17.9399% +Rate for instruction 26533: 17.94% +Rate for instruction 26534: 17.9405% +Rate for instruction 26535: 17.9405% +Rate for instruction 26536: 17.9404% +Rate for instruction 26537: 17.9402% +Rate for instruction 26538: 17.9396% +Rate for instruction 26539: 17.9391% +Rate for instruction 26540: 17.9387% +Rate for instruction 26541: 17.9391% +Rate for instruction 26542: 17.9387% +Rate for instruction 26543: 17.9381% +Rate for instruction 26544: 17.9378% +Rate for instruction 26545: 17.9374% +Rate for instruction 26546: 17.9376% +Rate for instruction 26547: 17.937% +Rate for instruction 26548: 17.9372% +Rate for instruction 26549: 17.937% +Rate for instruction 26550: 17.9372% +Rate for instruction 26551: 17.9368% +Rate for instruction 26552: 17.9367% +Rate for instruction 26553: 17.9363% +Rate for instruction 26554: 17.9362% +Rate for instruction 26555: 17.9358% +Rate for instruction 26556: 17.9362% +Rate for instruction 26557: 17.9362% +Rate for instruction 26558: 17.936% +Rate for instruction 26559: 17.9356% +Rate for instruction 26560: 17.9352% +Rate for instruction 26561: 17.9351% +Rate for instruction 26562: 17.9352% +Rate for instruction 26563: 17.9352% +Rate for instruction 26564: 17.9348% +Rate for instruction 26565: 17.935% +Rate for instruction 26566: 17.9348% +Rate for instruction 26567: 17.9347% +Rate for instruction 26568: 17.9347% +Rate for instruction 26569: 17.9348% +Rate for instruction 26570: 17.9348% +Rate for instruction 26571: 17.935% +Rate for instruction 26572: 17.9348% +Rate for instruction 26573: 17.936% +Rate for instruction 26574: 17.9357% +Rate for instruction 26575: 17.9368% +Rate for instruction 26576: 17.9369% +Rate for instruction 26577: 17.9368% +Rate for instruction 26578: 17.9364% +Rate for instruction 26579: 17.9364% +Rate for instruction 26580: 17.9362% +Rate for instruction 26581: 17.9361% +Rate for instruction 26582: 17.9356% +Rate for instruction 26583: 17.9356% +Rate for instruction 26584: 17.9352% +Rate for instruction 26585: 17.9351% +Rate for instruction 26586: 17.9355% +Rate for instruction 26587: 17.9351% +Rate for instruction 26588: 17.9353% +Rate for instruction 26589: 17.9347% +Rate for instruction 26590: 17.9354% +Rate for instruction 26591: 17.9357% +Rate for instruction 26592: 17.9352% +Rate for instruction 26593: 17.9348% +Rate for instruction 26594: 17.9344% +Rate for instruction 26595: 17.934% +Rate for instruction 26596: 17.9345% +Rate for instruction 26597: 17.9341% +Rate for instruction 26598: 17.9336% +Rate for instruction 26599: 17.9338% +Rate for instruction 26600: 17.9338% +Rate for instruction 26601: 17.9345% +Rate for instruction 26602: 17.9349% +Rate for instruction 26603: 17.9356% +Rate for instruction 26604: 17.9359% +Rate for instruction 26605: 17.9354% +Rate for instruction 26606: 17.9356% +Rate for instruction 26607: 17.9358% +Rate for instruction 26608: 17.9359% +Rate for instruction 26609: 17.9363% +Rate for instruction 26610: 17.9359% +Rate for instruction 26611: 17.9368% +Rate for instruction 26612: 17.9366% +Rate for instruction 26613: 17.9365% +Rate for instruction 26614: 17.9368% +Rate for instruction 26615: 17.9373% +Rate for instruction 26616: 17.9368% +Rate for instruction 26617: 17.9364% +Rate for instruction 26618: 17.9364% +Rate for instruction 26619: 17.9369% +Rate for instruction 26620: 17.9364% +Rate for instruction 26621: 17.9373% +Rate for instruction 26622: 17.9376% +Rate for instruction 26623: 17.9381% +Rate for instruction 26624: 17.9398% +Rate for instruction 26625: 17.9402% +Rate for instruction 26626: 17.9412% +Rate for instruction 26627: 17.9428% +Rate for instruction 26628: 17.9423% +Rate for instruction 26629: 17.9423% +Rate for instruction 26630: 17.9438% +Rate for instruction 26631: 17.945% +Rate for instruction 26632: 17.9448% +Rate for instruction 26633: 17.9463% +Rate for instruction 26634: 17.9457% +Rate for instruction 26635: 17.9472% +Rate for instruction 26636: 17.9487% +Rate for instruction 26637: 17.9486% +Rate for instruction 26638: 17.9484% +Rate for instruction 26639: 17.9499% +Rate for instruction 26640: 17.9499% +Rate for instruction 26641: 17.9498% +Rate for instruction 26642: 17.9512% +Rate for instruction 26643: 17.9524% +Rate for instruction 26644: 17.952% +Rate for instruction 26645: 17.9523% +Rate for instruction 26646: 17.953% +Rate for instruction 26647: 17.9526% +Rate for instruction 26648: 17.9522% +Rate for instruction 26649: 17.9521% +Rate for instruction 26650: 17.9518% +Rate for instruction 26651: 17.9516% +Rate for instruction 26652: 17.9519% +Rate for instruction 26653: 17.9521% +Rate for instruction 26654: 17.9526% +Rate for instruction 26655: 17.9532% +Rate for instruction 26656: 17.953% +Rate for instruction 26657: 17.9536% +Rate for instruction 26658: 17.9541% +Rate for instruction 26659: 17.955% +Rate for instruction 26660: 17.9548% +Rate for instruction 26661: 17.9557% +Rate for instruction 26662: 17.9552% +Rate for instruction 26663: 17.9546% +Rate for instruction 26664: 17.9542% +Rate for instruction 26665: 17.9537% +Rate for instruction 26666: 17.9533% +Rate for instruction 26667: 17.9528% +Rate for instruction 26668: 17.9536% +Rate for instruction 26669: 17.953% +Rate for instruction 26670: 17.9535% +Rate for instruction 26671: 17.953% +Rate for instruction 26672: 17.9526% +Rate for instruction 26673: 17.9538% +Rate for instruction 26674: 17.9533% +Rate for instruction 26675: 17.9545% +Rate for instruction 26676: 17.9558% +Rate for instruction 26677: 17.9554% +Rate for instruction 26678: 17.9549% +Rate for instruction 26679: 17.9544% +Rate for instruction 26680: 17.9539% +Rate for instruction 26681: 17.9538% +Rate for instruction 26682: 17.9537% +Rate for instruction 26683: 17.9533% +Rate for instruction 26684: 17.9528% +Rate for instruction 26685: 17.9541% +Rate for instruction 26686: 17.9537% +Rate for instruction 26687: 17.9533% +Rate for instruction 26688: 17.9528% +Rate for instruction 26689: 17.9524% +Rate for instruction 26690: 17.9519% +Rate for instruction 26691: 17.9534% +Rate for instruction 26692: 17.9528% +Rate for instruction 26693: 17.9525% +Rate for instruction 26694: 17.9521% +Rate for instruction 26695: 17.9521% +Rate for instruction 26696: 17.9517% +Rate for instruction 26697: 17.9529% +Rate for instruction 26698: 17.9527% +Rate for instruction 26699: 17.9526% +Rate for instruction 26700: 17.9535% +Rate for instruction 26701: 17.9534% +Rate for instruction 26702: 17.9546% +Rate for instruction 26703: 17.9547% +Rate for instruction 26704: 17.9543% +Rate for instruction 26705: 17.9556% +Rate for instruction 26706: 17.9551% +Rate for instruction 26707: 17.9564% +Rate for instruction 26708: 17.9578% +Rate for instruction 26709: 17.9573% +Rate for instruction 26710: 17.9567% +Rate for instruction 26711: 17.9565% +Rate for instruction 26712: 17.9565% +Rate for instruction 26713: 17.9562% +Rate for instruction 26714: 17.9572% +Rate for instruction 26715: 17.9567% +Rate for instruction 26716: 17.9577% +Rate for instruction 26717: 17.9572% +Rate for instruction 26718: 17.9584% +Rate for instruction 26719: 17.9598% +Rate for instruction 26720: 17.9592% +Rate for instruction 26721: 17.9603% +Rate for instruction 26722: 17.96% +Rate for instruction 26723: 17.9599% +Rate for instruction 26724: 17.9613% +Rate for instruction 26725: 17.9615% +Rate for instruction 26726: 17.9609% +Rate for instruction 26727: 17.9609% +Rate for instruction 26728: 17.9623% +Rate for instruction 26729: 17.9634% +Rate for instruction 26730: 17.963% +Rate for instruction 26731: 17.9641% +Rate for instruction 26732: 17.965% +Rate for instruction 26733: 17.9659% +Rate for instruction 26734: 17.9658% +Rate for instruction 26735: 17.9655% +Rate for instruction 26736: 17.9652% +Rate for instruction 26737: 17.9652% +Rate for instruction 26738: 17.965% +Rate for instruction 26739: 17.9647% +Rate for instruction 26740: 17.9658% +Rate for instruction 26741: 17.967% +Rate for instruction 26742: 17.9666% +Rate for instruction 26743: 17.9661% +Rate for instruction 26744: 17.966% +Rate for instruction 26745: 17.9656% +Rate for instruction 26746: 17.9669% +Rate for instruction 26747: 17.9664% +Rate for instruction 26748: 17.9677% +Rate for instruction 26749: 17.9688% +Rate for instruction 26750: 17.9686% +Rate for instruction 26751: 17.969% +Rate for instruction 26752: 17.9687% +Rate for instruction 26753: 17.9691% +Rate for instruction 26754: 17.9687% +Rate for instruction 26755: 17.9685% +Rate for instruction 26756: 17.968% +Rate for instruction 26757: 17.9676% +Rate for instruction 26758: 17.9674% +Rate for instruction 26759: 17.9684% +Rate for instruction 26760: 17.9699% +Rate for instruction 26761: 17.9709% +Rate for instruction 26762: 17.9711% +Rate for instruction 26763: 17.9709% +Rate for instruction 26764: 17.9707% +Rate for instruction 26765: 17.9716% +Rate for instruction 26766: 17.9713% +Rate for instruction 26767: 17.9721% +Rate for instruction 26768: 17.9727% +Rate for instruction 26769: 17.9722% +Rate for instruction 26770: 17.9719% +Rate for instruction 26771: 17.972% +Rate for instruction 26772: 17.9733% +Rate for instruction 26773: 17.9732% +Rate for instruction 26774: 17.9746% +Rate for instruction 26775: 17.9742% +Rate for instruction 26776: 17.9737% +Rate for instruction 26777: 17.974% +Rate for instruction 26778: 17.9752% +Rate for instruction 26779: 17.9748% +Rate for instruction 26780: 17.9753% +Rate for instruction 26781: 17.9759% +Rate for instruction 26782: 17.9758% +Rate for instruction 26783: 17.9759% +Rate for instruction 26784: 17.9756% +Rate for instruction 26785: 17.9754% +Rate for instruction 26786: 17.9771% +Rate for instruction 26787: 17.9786% +Rate for instruction 26788: 17.9804% +Rate for instruction 26789: 17.9819% +Rate for instruction 26790: 17.9834% +Rate for instruction 26791: 17.9847% +Rate for instruction 26792: 17.9842% +Rate for instruction 26793: 17.9858% +Rate for instruction 26794: 17.9854% +Rate for instruction 26795: 17.9869% +Rate for instruction 26796: 17.9884% +Rate for instruction 26797: 17.9899% +Rate for instruction 26798: 17.9901% +Rate for instruction 26799: 17.9902% +Rate for instruction 26800: 17.9897% +Rate for instruction 26801: 17.9893% +Rate for instruction 26802: 17.9908% +Rate for instruction 26803: 17.9904% +Rate for instruction 26804: 17.9906% +Rate for instruction 26805: 17.9901% +Rate for instruction 26806: 17.9903% +Rate for instruction 26807: 17.9899% +Rate for instruction 26808: 17.9899% +Rate for instruction 26809: 17.9894% +Rate for instruction 26810: 17.9899% +Rate for instruction 26811: 17.9905% +Rate for instruction 26812: 17.9916% +Rate for instruction 26813: 17.9922% +Rate for instruction 26814: 17.9932% +Rate for instruction 26815: 17.9941% +Rate for instruction 26816: 17.9936% +Rate for instruction 26817: 17.9935% +Rate for instruction 26818: 17.993% +Rate for instruction 26819: 17.9926% +Rate for instruction 26820: 17.9922% +Rate for instruction 26821: 17.9917% +Rate for instruction 26822: 17.9913% +Rate for instruction 26823: 17.9908% +Rate for instruction 26824: 17.9907% +Rate for instruction 26825: 17.9906% +Rate for instruction 26826: 17.9902% +Rate for instruction 26827: 17.9918% +Rate for instruction 26828: 17.9916% +Rate for instruction 26829: 17.9913% +Rate for instruction 26830: 17.991% +Rate for instruction 26831: 17.9904% +Rate for instruction 26832: 17.9908% +Rate for instruction 26833: 17.9912% +Rate for instruction 26834: 17.9917% +Rate for instruction 26835: 17.9919% +Rate for instruction 26836: 17.9925% +Rate for instruction 26837: 17.993% +Rate for instruction 26838: 17.9926% +Rate for instruction 26839: 17.9924% +Rate for instruction 26840: 17.9923% +Rate for instruction 26841: 17.9926% +Rate for instruction 26842: 17.9935% +Rate for instruction 26843: 17.9936% +Rate for instruction 26844: 17.9939% +Rate for instruction 26845: 17.9941% +Rate for instruction 26846: 17.994% +Rate for instruction 26847: 17.9936% +Rate for instruction 26848: 17.9947% +Rate for instruction 26849: 17.9941% +Rate for instruction 26850: 17.9953% +Rate for instruction 26851: 17.9954% +Rate for instruction 26852: 17.9951% +Rate for instruction 26853: 17.9953% +Rate for instruction 26854: 17.9948% +Rate for instruction 26855: 17.9948% +Rate for instruction 26856: 17.9943% +Rate for instruction 26857: 17.9944% +Rate for instruction 26858: 17.9944% +Rate for instruction 26859: 17.9944% +Rate for instruction 26860: 17.9946% +Rate for instruction 26861: 17.9947% +Rate for instruction 26862: 17.9942% +Rate for instruction 26863: 17.9938% +Rate for instruction 26864: 17.9938% +Rate for instruction 26865: 17.9936% +Rate for instruction 26866: 17.993% +Rate for instruction 26867: 17.9941% +Rate for instruction 26868: 17.995% +Rate for instruction 26869: 17.995% +Rate for instruction 26870: 17.9947% +Rate for instruction 26871: 17.9947% +Rate for instruction 26872: 17.9949% +Rate for instruction 26873: 17.9948% +Rate for instruction 26874: 17.9951% +Rate for instruction 26875: 17.9952% +Rate for instruction 26876: 17.9954% +Rate for instruction 26877: 17.9954% +Rate for instruction 26878: 17.9956% +Rate for instruction 26879: 17.9955% +Rate for instruction 26880: 17.9961% +Rate for instruction 26881: 17.9967% +Rate for instruction 26882: 17.9968% +Rate for instruction 26883: 17.998% +Rate for instruction 26884: 17.9976% +Rate for instruction 26885: 17.9974% +Rate for instruction 26886: 17.9984% +Rate for instruction 26887: 17.9979% +Rate for instruction 26888: 17.9988% +Rate for instruction 26889: 17.9997% +Rate for instruction 26890: 17.9992% +Rate for instruction 26891: 17.9988% +Rate for instruction 26892: 17.9993% +Rate for instruction 26893: 18.0002% +Rate for instruction 26894: 18.0006% +Rate for instruction 26895: 18.001% +Rate for instruction 26896: 18.0016% +Rate for instruction 26897: 18.0026% +Rate for instruction 26898: 18.0024% +Rate for instruction 26899: 18.0024% +Rate for instruction 26900: 18.0025% +Rate for instruction 26901: 18.0027% +Rate for instruction 26902: 18.0041% +Rate for instruction 26903: 18.0055% +Rate for instruction 26904: 18.0059% +Rate for instruction 26905: 18.006% +Rate for instruction 26906: 18.0055% +Rate for instruction 26907: 18.0055% +Rate for instruction 26908: 18.0058% +Rate for instruction 26909: 18.006% +Rate for instruction 26910: 18.0056% +Rate for instruction 26911: 18.0061% +Rate for instruction 26912: 18.0066% +Rate for instruction 26913: 18.0065% +Rate for instruction 26914: 18.0067% +Rate for instruction 26915: 18.0062% +Rate for instruction 26916: 18.0064% +Rate for instruction 26917: 18.0063% +Rate for instruction 26918: 18.0063% +Rate for instruction 26919: 18.0062% +Rate for instruction 26920: 18.0061% +Rate for instruction 26921: 18.0063% +Rate for instruction 26922: 18.0063% +Rate for instruction 26923: 18.0061% +Rate for instruction 26924: 18.0067% +Rate for instruction 26925: 18.0069% +Rate for instruction 26926: 18.0077% +Rate for instruction 26927: 18.0074% +Rate for instruction 26928: 18.0079% +Rate for instruction 26929: 18.0077% +Rate for instruction 26930: 18.008% +Rate for instruction 26931: 18.0076% +Rate for instruction 26932: 18.0076% +Rate for instruction 26933: 18.0073% +Rate for instruction 26934: 18.007% +Rate for instruction 26935: 18.0066% +Rate for instruction 26936: 18.0065% +Rate for instruction 26937: 18.0064% +Rate for instruction 26938: 18.0064% +Rate for instruction 26939: 18.0061% +Rate for instruction 26940: 18.006% +Rate for instruction 26941: 18.0058% +Rate for instruction 26942: 18.0055% +Rate for instruction 26943: 18.0053% +Rate for instruction 26944: 18.0049% +Rate for instruction 26945: 18.005% +Rate for instruction 26946: 18.0049% +Rate for instruction 26947: 18.0049% +Rate for instruction 26948: 18.0047% +Rate for instruction 26949: 18.0046% +Rate for instruction 26950: 18.0042% +Rate for instruction 26951: 18.0042% +Rate for instruction 26952: 18.0038% +Rate for instruction 26953: 18.0036% +Rate for instruction 26954: 18.0032% +Rate for instruction 26955: 18.004% +Rate for instruction 26956: 18.005% +Rate for instruction 26957: 18.0058% +Rate for instruction 26958: 18.0067% +Rate for instruction 26959: 18.0077% +Rate for instruction 26960: 18.0075% +Rate for instruction 26961: 18.0083% +Rate for instruction 26962: 18.0087% +Rate for instruction 26963: 18.0086% +Rate for instruction 26964: 18.0094% +Rate for instruction 26965: 18.009% +Rate for instruction 26966: 18.0085% +Rate for instruction 26967: 18.0081% +Rate for instruction 26968: 18.008% +Rate for instruction 26969: 18.0075% +Rate for instruction 26970: 18.0071% +Rate for instruction 26971: 18.008% +Rate for instruction 26972: 18.0075% +Rate for instruction 26973: 18.0078% +Rate for instruction 26974: 18.0073% +Rate for instruction 26975: 18.007% +Rate for instruction 26976: 18.0065% +Rate for instruction 26977: 18.0063% +Rate for instruction 26978: 18.0062% +Rate for instruction 26979: 18.0058% +Rate for instruction 26980: 18.0057% +Rate for instruction 26981: 18.0056% +Rate for instruction 26982: 18.0051% +Rate for instruction 26983: 18.0045% +Rate for instruction 26984: 18.0046% +Rate for instruction 26985: 18.0041% +Rate for instruction 26986: 18.0047% +Rate for instruction 26987: 18.0057% +Rate for instruction 26988: 18.0055% +Rate for instruction 26989: 18.0051% +Rate for instruction 26990: 18.0051% +Rate for instruction 26991: 18.0048% +Rate for instruction 26992: 18.0047% +Rate for instruction 26993: 18.0044% +Rate for instruction 26994: 18.0043% +Rate for instruction 26995: 18.0047% +Rate for instruction 26996: 18.0046% +Rate for instruction 26997: 18.0045% +Rate for instruction 26998: 18.0041% +Rate for instruction 26999: 18.0041% +Rate for instruction 27000: 18.004% +Rate for instruction 27001: 18.0038% +Rate for instruction 27002: 18.0038% +Rate for instruction 27003: 18.0036% +Rate for instruction 27004: 18.0031% +Rate for instruction 27005: 18.0037% +Rate for instruction 27006: 18.0042% +Rate for instruction 27007: 18.0039% +Rate for instruction 27008: 18.004% +Rate for instruction 27009: 18.0037% +Rate for instruction 27010: 18.0036% +Rate for instruction 27011: 18.0038% +Rate for instruction 27012: 18.0042% +Rate for instruction 27013: 18.0041% +Rate for instruction 27014: 18.0044% +Rate for instruction 27015: 18.0046% +Rate for instruction 27016: 18.0046% +Rate for instruction 27017: 18.0048% +Rate for instruction 27018: 18.0049% +Rate for instruction 27019: 18.0045% +Rate for instruction 27020: 18.0047% +Rate for instruction 27021: 18.005% +Rate for instruction 27022: 18.0049% +Rate for instruction 27023: 18.0049% +Rate for instruction 27024: 18.0048% +Rate for instruction 27025: 18.0045% +Rate for instruction 27026: 18.0046% +Rate for instruction 27027: 18.0051% +Rate for instruction 27028: 18.0046% +Rate for instruction 27029: 18.0051% +Rate for instruction 27030: 18.0055% +Rate for instruction 27031: 18.0056% +Rate for instruction 27032: 18.0056% +Rate for instruction 27033: 18.0054% +Rate for instruction 27034: 18.0056% +Rate for instruction 27035: 18.0059% +Rate for instruction 27036: 18.0065% +Rate for instruction 27037: 18.0061% +Rate for instruction 27038: 18.006% +Rate for instruction 27039: 18.0057% +Rate for instruction 27040: 18.0064% +Rate for instruction 27041: 18.0065% +Rate for instruction 27042: 18.0064% +Rate for instruction 27043: 18.0066% +Rate for instruction 27044: 18.0067% +Rate for instruction 27045: 18.0065% +Rate for instruction 27046: 18.0067% +Rate for instruction 27047: 18.0062% +Rate for instruction 27048: 18.0062% +Rate for instruction 27049: 18.0067% +Rate for instruction 27050: 18.0063% +Rate for instruction 27051: 18.0059% +Rate for instruction 27052: 18.0058% +Rate for instruction 27053: 18.0059% +Rate for instruction 27054: 18.0059% +Rate for instruction 27055: 18.0055% +Rate for instruction 27056: 18.0056% +Rate for instruction 27057: 18.0059% +Rate for instruction 27058: 18.006% +Rate for instruction 27059: 18.0056% +Rate for instruction 27060: 18.0063% +Rate for instruction 27061: 18.0067% +Rate for instruction 27062: 18.007% +Rate for instruction 27063: 18.0065% +Rate for instruction 27064: 18.0067% +Rate for instruction 27065: 18.0066% +Rate for instruction 27066: 18.0069% +Rate for instruction 27067: 18.0068% +Rate for instruction 27068: 18.0065% +Rate for instruction 27069: 18.0069% +Rate for instruction 27070: 18.0069% +Rate for instruction 27071: 18.0067% +Rate for instruction 27072: 18.0067% +Rate for instruction 27073: 18.0066% +Rate for instruction 27074: 18.0068% +Rate for instruction 27075: 18.0063% +Rate for instruction 27076: 18.0061% +Rate for instruction 27077: 18.0061% +Rate for instruction 27078: 18.006% +Rate for instruction 27079: 18.0062% +Rate for instruction 27080: 18.0065% +Rate for instruction 27081: 18.0061% +Rate for instruction 27082: 18.0065% +Rate for instruction 27083: 18.0061% +Rate for instruction 27084: 18.0061% +Rate for instruction 27085: 18.0062% +Rate for instruction 27086: 18.0061% +Rate for instruction 27087: 18.0057% +Rate for instruction 27088: 18.0056% +Rate for instruction 27089: 18.0065% +Rate for instruction 27090: 18.0075% +Rate for instruction 27091: 18.0076% +Rate for instruction 27092: 18.0075% +Rate for instruction 27093: 18.0071% +Rate for instruction 27094: 18.008% +Rate for instruction 27095: 18.0083% +Rate for instruction 27096: 18.0085% +Rate for instruction 27097: 18.008% +Rate for instruction 27098: 18.0089% +Rate for instruction 27099: 18.0084% +Rate for instruction 27100: 18.0093% +Rate for instruction 27101: 18.009% +Rate for instruction 27102: 18.0088% +Rate for instruction 27103: 18.0087% +Rate for instruction 27104: 18.0087% +Rate for instruction 27105: 18.0088% +Rate for instruction 27106: 18.0091% +Rate for instruction 27107: 18.0086% +Rate for instruction 27108: 18.0084% +Rate for instruction 27109: 18.0078% +Rate for instruction 27110: 18.0073% +Rate for instruction 27111: 18.0076% +Rate for instruction 27112: 18.0077% +Rate for instruction 27113: 18.0082% +Rate for instruction 27114: 18.0081% +Rate for instruction 27115: 18.0078% +Rate for instruction 27116: 18.0079% +Rate for instruction 27117: 18.0075% +Rate for instruction 27118: 18.0071% +Rate for instruction 27119: 18.0067% +Rate for instruction 27120: 18.0068% +Rate for instruction 27121: 18.0065% +Rate for instruction 27122: 18.0066% +Rate for instruction 27123: 18.0061% +Rate for instruction 27124: 18.0071% +Rate for instruction 27125: 18.0071% +Rate for instruction 27126: 18.0073% +Rate for instruction 27127: 18.0078% +Rate for instruction 27128: 18.0081% +Rate for instruction 27129: 18.0084% +Rate for instruction 27130: 18.0081% +Rate for instruction 27131: 18.0075% +Rate for instruction 27132: 18.0072% +Rate for instruction 27133: 18.0069% +Rate for instruction 27134: 18.0064% +Rate for instruction 27135: 18.006% +Rate for instruction 27136: 18.0072% +Rate for instruction 27137: 18.007% +Rate for instruction 27138: 18.007% +Rate for instruction 27139: 18.0069% +Rate for instruction 27140: 18.007% +Rate for instruction 27141: 18.0064% +Rate for instruction 27142: 18.0061% +Rate for instruction 27143: 18.0057% +Rate for instruction 27144: 18.0054% +Rate for instruction 27145: 18.0053% +Rate for instruction 27146: 18.0048% +Rate for instruction 27147: 18.0049% +Rate for instruction 27148: 18.0048% +Rate for instruction 27149: 18.005% +Rate for instruction 27150: 18.0047% +Rate for instruction 27151: 18.0042% +Rate for instruction 27152: 18.004% +Rate for instruction 27153: 18.0037% +Rate for instruction 27154: 18.0036% +Rate for instruction 27155: 18.0035% +Rate for instruction 27156: 18.0036% +Rate for instruction 27157: 18.0039% +Rate for instruction 27158: 18.0034% +Rate for instruction 27159: 18.0037% +Rate for instruction 27160: 18.0038% +Rate for instruction 27161: 18.0037% +Rate for instruction 27162: 18.0034% +Rate for instruction 27163: 18.003% +Rate for instruction 27164: 18.0027% +Rate for instruction 27165: 18.0024% +Rate for instruction 27166: 18.0028% +Rate for instruction 27167: 18.0025% +Rate for instruction 27168: 18.002% +Rate for instruction 27169: 18.0025% +Rate for instruction 27170: 18.0026% +Rate for instruction 27171: 18.0028% +Rate for instruction 27172: 18.0034% +Rate for instruction 27173: 18.0039% +Rate for instruction 27174: 18.0038% +Rate for instruction 27175: 18.0036% +Rate for instruction 27176: 18.0036% +Rate for instruction 27177: 18.0031% +Rate for instruction 27178: 18.0027% +Rate for instruction 27179: 18.0029% +Rate for instruction 27180: 18.0027% +Rate for instruction 27181: 18.0024% +Rate for instruction 27182: 18.0021% +Rate for instruction 27183: 18.0031% +Rate for instruction 27184: 18.0043% +Rate for instruction 27185: 18.0045% +Rate for instruction 27186: 18.0046% +Rate for instruction 27187: 18.0051% +Rate for instruction 27188: 18.0054% +Rate for instruction 27189: 18.0055% +Rate for instruction 27190: 18.0055% +Rate for instruction 27191: 18.0054% +Rate for instruction 27192: 18.006% +Rate for instruction 27193: 18.0067% +Rate for instruction 27194: 18.0063% +Rate for instruction 27195: 18.0065% +Rate for instruction 27196: 18.0062% +Rate for instruction 27197: 18.0066% +Rate for instruction 27198: 18.0067% +Rate for instruction 27199: 18.0069% +Rate for instruction 27200: 18.0075% +Rate for instruction 27201: 18.0076% +Rate for instruction 27202: 18.0081% +Rate for instruction 27203: 18.0088% +Rate for instruction 27204: 18.0093% +Rate for instruction 27205: 18.0093% +Rate for instruction 27206: 18.0095% +Rate for instruction 27207: 18.0091% +Rate for instruction 27208: 18.0097% +Rate for instruction 27209: 18.0101% +Rate for instruction 27210: 18.0097% +Rate for instruction 27211: 18.0103% +Rate for instruction 27212: 18.0108% +Rate for instruction 27213: 18.0104% +Rate for instruction 27214: 18.0104% +Rate for instruction 27215: 18.0101% +Rate for instruction 27216: 18.0105% +Rate for instruction 27217: 18.0108% +Rate for instruction 27218: 18.0108% +Rate for instruction 27219: 18.0108% +Rate for instruction 27220: 18.0106% +Rate for instruction 27221: 18.0105% +Rate for instruction 27222: 18.0105% +Rate for instruction 27223: 18.0103% +Rate for instruction 27224: 18.0102% +Rate for instruction 27225: 18.0102% +Rate for instruction 27226: 18.0097% +Rate for instruction 27227: 18.0097% +Rate for instruction 27228: 18.0101% +Rate for instruction 27229: 18.0105% +Rate for instruction 27230: 18.0104% +Rate for instruction 27231: 18.0106% +Rate for instruction 27232: 18.0104% +Rate for instruction 27233: 18.0104% +Rate for instruction 27234: 18.0106% +Rate for instruction 27235: 18.0107% +Rate for instruction 27236: 18.0109% +Rate for instruction 27237: 18.0106% +Rate for instruction 27238: 18.0104% +Rate for instruction 27239: 18.0101% +Rate for instruction 27240: 18.0105% +Rate for instruction 27241: 18.0107% +Rate for instruction 27242: 18.0108% +Rate for instruction 27243: 18.0106% +Rate for instruction 27244: 18.0106% +Rate for instruction 27245: 18.0101% +Rate for instruction 27246: 18.01% +Rate for instruction 27247: 18.0098% +Rate for instruction 27248: 18.0101% +Rate for instruction 27249: 18.0103% +Rate for instruction 27250: 18.0103% +Rate for instruction 27251: 18.0098% +Rate for instruction 27252: 18.0094% +Rate for instruction 27253: 18.0089% +Rate for instruction 27254: 18.0086% +Rate for instruction 27255: 18.0089% +Rate for instruction 27256: 18.0091% +Rate for instruction 27257: 18.0085% +Rate for instruction 27258: 18.0083% +Rate for instruction 27259: 18.0084% +Rate for instruction 27260: 18.0085% +Rate for instruction 27261: 18.009% +Rate for instruction 27262: 18.0091% +Rate for instruction 27263: 18.0087% +Rate for instruction 27264: 18.0091% +Rate for instruction 27265: 18.0088% +Rate for instruction 27266: 18.0092% +Rate for instruction 27267: 18.009% +Rate for instruction 27268: 18.0085% +Rate for instruction 27269: 18.0082% +Rate for instruction 27270: 18.0084% +Rate for instruction 27271: 18.0082% +Rate for instruction 27272: 18.0084% +Rate for instruction 27273: 18.0079% +Rate for instruction 27274: 18.0086% +Rate for instruction 27275: 18.0081% +Rate for instruction 27276: 18.0087% +Rate for instruction 27277: 18.0086% +Rate for instruction 27278: 18.0092% +Rate for instruction 27279: 18.0098% +Rate for instruction 27280: 18.0097% +Rate for instruction 27281: 18.0095% +Rate for instruction 27282: 18.009% +Rate for instruction 27283: 18.0094% +Rate for instruction 27284: 18.01% +Rate for instruction 27285: 18.0104% +Rate for instruction 27286: 18.0108% +Rate for instruction 27287: 18.0106% +Rate for instruction 27288: 18.0115% +Rate for instruction 27289: 18.0114% +Rate for instruction 27290: 18.0121% +Rate for instruction 27291: 18.0119% +Rate for instruction 27292: 18.0119% +Rate for instruction 27293: 18.0116% +Rate for instruction 27294: 18.0116% +Rate for instruction 27295: 18.0115% +Rate for instruction 27296: 18.0114% +Rate for instruction 27297: 18.0115% +Rate for instruction 27298: 18.0111% +Rate for instruction 27299: 18.0108% +Rate for instruction 27300: 18.0112% +Rate for instruction 27301: 18.0111% +Rate for instruction 27302: 18.0108% +Rate for instruction 27303: 18.0105% +Rate for instruction 27304: 18.0102% +Rate for instruction 27305: 18.0101% +Rate for instruction 27306: 18.0107% +Rate for instruction 27307: 18.0113% +Rate for instruction 27308: 18.0111% +Rate for instruction 27309: 18.0113% +Rate for instruction 27310: 18.0115% +Rate for instruction 27311: 18.0119% +Rate for instruction 27312: 18.0124% +Rate for instruction 27313: 18.0122% +Rate for instruction 27314: 18.0131% +Rate for instruction 27315: 18.0133% +Rate for instruction 27316: 18.0134% +Rate for instruction 27317: 18.0129% +Rate for instruction 27318: 18.0125% +Rate for instruction 27319: 18.0124% +Rate for instruction 27320: 18.0119% +Rate for instruction 27321: 18.0115% +Rate for instruction 27322: 18.0115% +Rate for instruction 27323: 18.0112% +Rate for instruction 27324: 18.0108% +Rate for instruction 27325: 18.0106% +Rate for instruction 27326: 18.0106% +Rate for instruction 27327: 18.011% +Rate for instruction 27328: 18.0105% +Rate for instruction 27329: 18.0105% +Rate for instruction 27330: 18.0103% +Rate for instruction 27331: 18.01% +Rate for instruction 27332: 18.0104% +Rate for instruction 27333: 18.0103% +Rate for instruction 27334: 18.0097% +Rate for instruction 27335: 18.0092% +Rate for instruction 27336: 18.0097% +Rate for instruction 27337: 18.0093% +Rate for instruction 27338: 18.0092% +Rate for instruction 27339: 18.0095% +Rate for instruction 27340: 18.0092% +Rate for instruction 27341: 18.0091% +Rate for instruction 27342: 18.0088% +Rate for instruction 27343: 18.0093% +Rate for instruction 27344: 18.0092% +Rate for instruction 27345: 18.0098% +Rate for instruction 27346: 18.0101% +Rate for instruction 27347: 18.0096% +Rate for instruction 27348: 18.0104% +Rate for instruction 27349: 18.0103% +Rate for instruction 27350: 18.0097% +Rate for instruction 27351: 18.0101% +Rate for instruction 27352: 18.0097% +Rate for instruction 27353: 18.0096% +Rate for instruction 27354: 18.0091% +Rate for instruction 27355: 18.0087% +Rate for instruction 27356: 18.009% +Rate for instruction 27357: 18.0095% +Rate for instruction 27358: 18.0101% +Rate for instruction 27359: 18.0106% +Rate for instruction 27360: 18.011% +Rate for instruction 27361: 18.0107% +Rate for instruction 27362: 18.011% +Rate for instruction 27363: 18.0107% +Rate for instruction 27364: 18.0109% +Rate for instruction 27365: 18.0115% +Rate for instruction 27366: 18.0119% +Rate for instruction 27367: 18.0123% +Rate for instruction 27368: 18.0121% +Rate for instruction 27369: 18.0126% +Rate for instruction 27370: 18.013% +Rate for instruction 27371: 18.0131% +Rate for instruction 27372: 18.0133% +Rate for instruction 27373: 18.0137% +Rate for instruction 27374: 18.0142% +Rate for instruction 27375: 18.0141% +Rate for instruction 27376: 18.0139% +Rate for instruction 27377: 18.014% +Rate for instruction 27378: 18.0138% +Rate for instruction 27379: 18.0133% +Rate for instruction 27380: 18.0128% +Rate for instruction 27381: 18.0128% +Rate for instruction 27382: 18.0134% +Rate for instruction 27383: 18.0142% +Rate for instruction 27384: 18.0137% +Rate for instruction 27385: 18.0133% +Rate for instruction 27386: 18.0137% +Rate for instruction 27387: 18.0143% +Rate for instruction 27388: 18.015% +Rate for instruction 27389: 18.0151% +Rate for instruction 27390: 18.015% +Rate for instruction 27391: 18.0151% +Rate for instruction 27392: 18.0157% +Rate for instruction 27393: 18.0164% +Rate for instruction 27394: 18.0159% +Rate for instruction 27395: 18.0155% +Rate for instruction 27396: 18.0157% +Rate for instruction 27397: 18.0162% +Rate for instruction 27398: 18.0162% +Rate for instruction 27399: 18.0167% +Rate for instruction 27400: 18.0167% +Rate for instruction 27401: 18.0164% +Rate for instruction 27402: 18.0159% +Rate for instruction 27403: 18.0165% +Rate for instruction 27404: 18.0159% +Rate for instruction 27405: 18.0156% +Rate for instruction 27406: 18.0152% +Rate for instruction 27407: 18.0147% +Rate for instruction 27408: 18.015% +Rate for instruction 27409: 18.0146% +Rate for instruction 27410: 18.0141% +Rate for instruction 27411: 18.014% +Rate for instruction 27412: 18.0136% +Rate for instruction 27413: 18.0149% +Rate for instruction 27414: 18.0158% +Rate for instruction 27415: 18.0167% +Rate for instruction 27416: 18.0176% +Rate for instruction 27417: 18.0178% +Rate for instruction 27418: 18.0173% +Rate for instruction 27419: 18.0167% +Rate for instruction 27420: 18.0181% +Rate for instruction 27421: 18.0175% +Rate for instruction 27422: 18.0172% +Rate for instruction 27423: 18.0166% +Rate for instruction 27424: 18.0172% +Rate for instruction 27425: 18.0179% +Rate for instruction 27426: 18.0175% +Rate for instruction 27427: 18.0171% +Rate for instruction 27428: 18.017% +Rate for instruction 27429: 18.0165% +Rate for instruction 27430: 18.0165% +Rate for instruction 27431: 18.016% +Rate for instruction 27432: 18.0158% +Rate for instruction 27433: 18.016% +Rate for instruction 27434: 18.0159% +Rate for instruction 27435: 18.0162% +Rate for instruction 27436: 18.0158% +Rate for instruction 27437: 18.0161% +Rate for instruction 27438: 18.0165% +Rate for instruction 27439: 18.0161% +Rate for instruction 27440: 18.0167% +Rate for instruction 27441: 18.0169% +Rate for instruction 27442: 18.0172% +Rate for instruction 27443: 18.0179% +Rate for instruction 27444: 18.0183% +Rate for instruction 27445: 18.0189% +Rate for instruction 27446: 18.0186% +Rate for instruction 27447: 18.0194% +Rate for instruction 27448: 18.019% +Rate for instruction 27449: 18.0198% +Rate for instruction 27450: 18.0202% +Rate for instruction 27451: 18.0207% +Rate for instruction 27452: 18.0207% +Rate for instruction 27453: 18.0202% +Rate for instruction 27454: 18.0197% +Rate for instruction 27455: 18.0199% +Rate for instruction 27456: 18.0201% +Rate for instruction 27457: 18.0198% +Rate for instruction 27458: 18.0196% +Rate for instruction 27459: 18.0194% +Rate for instruction 27460: 18.0188% +Rate for instruction 27461: 18.0187% +Rate for instruction 27462: 18.0192% +Rate for instruction 27463: 18.02% +Rate for instruction 27464: 18.0214% +Rate for instruction 27465: 18.0226% +Rate for instruction 27466: 18.0236% +Rate for instruction 27467: 18.0231% +Rate for instruction 27468: 18.0235% +Rate for instruction 27469: 18.024% +Rate for instruction 27470: 18.0243% +Rate for instruction 27471: 18.0256% +Rate for instruction 27472: 18.0264% +Rate for instruction 27473: 18.0274% +Rate for instruction 27474: 18.0272% +Rate for instruction 27475: 18.0266% +Rate for instruction 27476: 18.0265% +Rate for instruction 27477: 18.0266% +Rate for instruction 27478: 18.0265% +Rate for instruction 27479: 18.026% +Rate for instruction 27480: 18.0257% +Rate for instruction 27481: 18.0256% +Rate for instruction 27482: 18.0261% +Rate for instruction 27483: 18.0262% +Rate for instruction 27484: 18.0256% +Rate for instruction 27485: 18.0254% +Rate for instruction 27486: 18.0252% +Rate for instruction 27487: 18.0253% +Rate for instruction 27488: 18.0248% +Rate for instruction 27489: 18.0245% +Rate for instruction 27490: 18.0242% +Rate for instruction 27491: 18.0237% +Rate for instruction 27492: 18.0233% +Rate for instruction 27493: 18.0235% +Rate for instruction 27494: 18.0241% +Rate for instruction 27495: 18.0236% +Rate for instruction 27496: 18.0232% +Rate for instruction 27497: 18.0227% +Rate for instruction 27498: 18.0225% +Rate for instruction 27499: 18.022% +Rate for instruction 27500: 18.0216% +Rate for instruction 27501: 18.0218% +Rate for instruction 27502: 18.0225% +Rate for instruction 27503: 18.0226% +Rate for instruction 27504: 18.0225% +Rate for instruction 27505: 18.0224% +Rate for instruction 27506: 18.0227% +Rate for instruction 27507: 18.0224% +Rate for instruction 27508: 18.0224% +Rate for instruction 27509: 18.0225% +Rate for instruction 27510: 18.022% +Rate for instruction 27511: 18.0223% +Rate for instruction 27512: 18.0221% +Rate for instruction 27513: 18.0217% +Rate for instruction 27514: 18.0218% +Rate for instruction 27515: 18.0214% +Rate for instruction 27516: 18.0209% +Rate for instruction 27517: 18.0209% +Rate for instruction 27518: 18.0206% +Rate for instruction 27519: 18.0203% +Rate for instruction 27520: 18.0199% +Rate for instruction 27521: 18.0194% +Rate for instruction 27522: 18.0196% +Rate for instruction 27523: 18.0199% +Rate for instruction 27524: 18.0196% +Rate for instruction 27525: 18.0193% +Rate for instruction 27526: 18.0191% +Rate for instruction 27527: 18.0187% +Rate for instruction 27528: 18.0183% +Rate for instruction 27529: 18.0185% +Rate for instruction 27530: 18.0188% +Rate for instruction 27531: 18.0185% +Rate for instruction 27532: 18.0188% +Rate for instruction 27533: 18.0188% +Rate for instruction 27534: 18.0193% +Rate for instruction 27535: 18.0198% +Rate for instruction 27536: 18.0201% +Rate for instruction 27537: 18.0206% +Rate for instruction 27538: 18.0209% +Rate for instruction 27539: 18.0213% +Rate for instruction 27540: 18.0217% +Rate for instruction 27541: 18.0213% +Rate for instruction 27542: 18.0208% +Rate for instruction 27543: 18.0208% +Rate for instruction 27544: 18.0206% +Rate for instruction 27545: 18.0217% +Rate for instruction 27546: 18.0216% +Rate for instruction 27547: 18.0228% +Rate for instruction 27548: 18.0226% +Rate for instruction 27549: 18.0223% +Rate for instruction 27550: 18.0222% +Rate for instruction 27551: 18.0223% +Rate for instruction 27552: 18.0222% +Rate for instruction 27553: 18.0227% +Rate for instruction 27554: 18.0226% +Rate for instruction 27555: 18.0227% +Rate for instruction 27556: 18.0228% +Rate for instruction 27557: 18.0225% +Rate for instruction 27558: 18.0223% +Rate for instruction 27559: 18.0224% +Rate for instruction 27560: 18.022% +Rate for instruction 27561: 18.0222% +Rate for instruction 27562: 18.0221% +Rate for instruction 27563: 18.0217% +Rate for instruction 27564: 18.0215% +Rate for instruction 27565: 18.0214% +Rate for instruction 27566: 18.0214% +Rate for instruction 27567: 18.021% +Rate for instruction 27568: 18.0207% +Rate for instruction 27569: 18.0201% +Rate for instruction 27570: 18.0205% +Rate for instruction 27571: 18.0211% +Rate for instruction 27572: 18.0208% +Rate for instruction 27573: 18.021% +Rate for instruction 27574: 18.0206% +Rate for instruction 27575: 18.021% +Rate for instruction 27576: 18.0206% +Rate for instruction 27577: 18.0204% +Rate for instruction 27578: 18.0201% +Rate for instruction 27579: 18.02% +Rate for instruction 27580: 18.0197% +Rate for instruction 27581: 18.0191% +Rate for instruction 27582: 18.0188% +Rate for instruction 27583: 18.0189% +Rate for instruction 27584: 18.0186% +Rate for instruction 27585: 18.0182% +Rate for instruction 27586: 18.0185% +Rate for instruction 27587: 18.0181% +Rate for instruction 27588: 18.0182% +Rate for instruction 27589: 18.0181% +Rate for instruction 27590: 18.0177% +Rate for instruction 27591: 18.0173% +Rate for instruction 27592: 18.0179% +Rate for instruction 27593: 18.0179% +Rate for instruction 27594: 18.0175% +Rate for instruction 27595: 18.0174% +Rate for instruction 27596: 18.0174% +Rate for instruction 27597: 18.0171% +Rate for instruction 27598: 18.0174% +Rate for instruction 27599: 18.0173% +Rate for instruction 27600: 18.0179% +Rate for instruction 27601: 18.0188% +Rate for instruction 27602: 18.0188% +Rate for instruction 27603: 18.0183% +Rate for instruction 27604: 18.0182% +Rate for instruction 27605: 18.0184% +Rate for instruction 27606: 18.0186% +Rate for instruction 27607: 18.019% +Rate for instruction 27608: 18.0188% +Rate for instruction 27609: 18.019% +Rate for instruction 27610: 18.0185% +Rate for instruction 27611: 18.0181% +Rate for instruction 27612: 18.018% +Rate for instruction 27613: 18.0179% +Rate for instruction 27614: 18.0174% +Rate for instruction 27615: 18.0173% +Rate for instruction 27616: 18.0168% +Rate for instruction 27617: 18.0168% +Rate for instruction 27618: 18.0166% +Rate for instruction 27619: 18.0166% +Rate for instruction 27620: 18.0163% +Rate for instruction 27621: 18.016% +Rate for instruction 27622: 18.0155% +Rate for instruction 27623: 18.016% +Rate for instruction 27624: 18.0174% +Rate for instruction 27625: 18.0172% +Rate for instruction 27626: 18.0169% +Rate for instruction 27627: 18.0167% +Rate for instruction 27628: 18.0167% +Rate for instruction 27629: 18.0173% +Rate for instruction 27630: 18.0177% +Rate for instruction 27631: 18.0185% +Rate for instruction 27632: 18.0193% +Rate for instruction 27633: 18.0188% +Rate for instruction 27634: 18.0198% +Rate for instruction 27635: 18.0193% +Rate for instruction 27636: 18.019% +Rate for instruction 27637: 18.0191% +Rate for instruction 27638: 18.0186% +Rate for instruction 27639: 18.0185% +Rate for instruction 27640: 18.0181% +Rate for instruction 27641: 18.0195% +Rate for instruction 27642: 18.021% +Rate for instruction 27643: 18.0209% +Rate for instruction 27644: 18.0223% +Rate for instruction 27645: 18.0236% +Rate for instruction 27646: 18.0232% +Rate for instruction 27647: 18.0229% +Rate for instruction 27648: 18.024% +Rate for instruction 27649: 18.0248% +Rate for instruction 27650: 18.0248% +Rate for instruction 27651: 18.025% +Rate for instruction 27652: 18.0248% +Rate for instruction 27653: 18.0259% +Rate for instruction 27654: 18.0271% +Rate for instruction 27655: 18.0268% +Rate for instruction 27656: 18.0281% +Rate for instruction 27657: 18.0291% +Rate for instruction 27658: 18.0292% +Rate for instruction 27659: 18.0292% +Rate for instruction 27660: 18.0287% +Rate for instruction 27661: 18.0286% +Rate for instruction 27662: 18.0281% +Rate for instruction 27663: 18.0286% +Rate for instruction 27664: 18.0293% +Rate for instruction 27665: 18.0288% +Rate for instruction 27666: 18.0286% +Rate for instruction 27667: 18.029% +Rate for instruction 27668: 18.0289% +Rate for instruction 27669: 18.0287% +Rate for instruction 27670: 18.0296% +Rate for instruction 27671: 18.0302% +Rate for instruction 27672: 18.0305% +Rate for instruction 27673: 18.0305% +Rate for instruction 27674: 18.0313% +Rate for instruction 27675: 18.0321% +Rate for instruction 27676: 18.0322% +Rate for instruction 27677: 18.0322% +Rate for instruction 27678: 18.0317% +Rate for instruction 27679: 18.0313% +Rate for instruction 27680: 18.0308% +Rate for instruction 27681: 18.0306% +Rate for instruction 27682: 18.0301% +Rate for instruction 27683: 18.0297% +Rate for instruction 27684: 18.0298% +Rate for instruction 27685: 18.0295% +Rate for instruction 27686: 18.0294% +Rate for instruction 27687: 18.0291% +Rate for instruction 27688: 18.0285% +Rate for instruction 27689: 18.0283% +Rate for instruction 27690: 18.0284% +Rate for instruction 27691: 18.0285% +Rate for instruction 27692: 18.0284% +Rate for instruction 27693: 18.0281% +Rate for instruction 27694: 18.0278% +Rate for instruction 27695: 18.0277% +Rate for instruction 27696: 18.0274% +Rate for instruction 27697: 18.0274% +Rate for instruction 27698: 18.0276% +Rate for instruction 27699: 18.0274% +Rate for instruction 27700: 18.027% +Rate for instruction 27701: 18.0266% +Rate for instruction 27702: 18.0264% +Rate for instruction 27703: 18.026% +Rate for instruction 27704: 18.0256% +Rate for instruction 27705: 18.0259% +Rate for instruction 27706: 18.0263% +Rate for instruction 27707: 18.0263% +Rate for instruction 27708: 18.0264% +Rate for instruction 27709: 18.0263% +Rate for instruction 27710: 18.026% +Rate for instruction 27711: 18.0255% +Rate for instruction 27712: 18.0254% +Rate for instruction 27713: 18.0256% +Rate for instruction 27714: 18.0258% +Rate for instruction 27715: 18.0254% +Rate for instruction 27716: 18.0249% +Rate for instruction 27717: 18.0245% +Rate for instruction 27718: 18.024% +Rate for instruction 27719: 18.0241% +Rate for instruction 27720: 18.0235% +Rate for instruction 27721: 18.0233% +Rate for instruction 27722: 18.0228% +Rate for instruction 27723: 18.0227% +Rate for instruction 27724: 18.0226% +Rate for instruction 27725: 18.0228% +Rate for instruction 27726: 18.0227% +Rate for instruction 27727: 18.0226% +Rate for instruction 27728: 18.0224% +Rate for instruction 27729: 18.022% +Rate for instruction 27730: 18.0218% +Rate for instruction 27731: 18.0218% +Rate for instruction 27732: 18.0214% +Rate for instruction 27733: 18.0219% +Rate for instruction 27734: 18.0222% +Rate for instruction 27735: 18.0224% +Rate for instruction 27736: 18.0222% +Rate for instruction 27737: 18.0228% +Rate for instruction 27738: 18.0232% +Rate for instruction 27739: 18.023% +Rate for instruction 27740: 18.0228% +Rate for instruction 27741: 18.0222% +Rate for instruction 27742: 18.0217% +Rate for instruction 27743: 18.0214% +Rate for instruction 27744: 18.0218% +Rate for instruction 27745: 18.0223% +Rate for instruction 27746: 18.0226% +Rate for instruction 27747: 18.0228% +Rate for instruction 27748: 18.0227% +Rate for instruction 27749: 18.0227% +Rate for instruction 27750: 18.0229% +Rate for instruction 27751: 18.0227% +Rate for instruction 27752: 18.0224% +Rate for instruction 27753: 18.0222% +Rate for instruction 27754: 18.0228% +Rate for instruction 27755: 18.0229% +Rate for instruction 27756: 18.0223% +Rate for instruction 27757: 18.0221% +Rate for instruction 27758: 18.0217% +Rate for instruction 27759: 18.0219% +Rate for instruction 27760: 18.0214% +Rate for instruction 27761: 18.0217% +Rate for instruction 27762: 18.0216% +Rate for instruction 27763: 18.0217% +Rate for instruction 27764: 18.0216% +Rate for instruction 27765: 18.0212% +Rate for instruction 27766: 18.0214% +Rate for instruction 27767: 18.0212% +Rate for instruction 27768: 18.0215% +Rate for instruction 27769: 18.0221% +Rate for instruction 27770: 18.0228% +Rate for instruction 27771: 18.0227% +Rate for instruction 27772: 18.0226% +Rate for instruction 27773: 18.0231% +Rate for instruction 27774: 18.023% +Rate for instruction 27775: 18.0225% +Rate for instruction 27776: 18.0224% +Rate for instruction 27777: 18.0228% +Rate for instruction 27778: 18.0226% +Rate for instruction 27779: 18.0222% +Rate for instruction 27780: 18.0221% +Rate for instruction 27781: 18.0222% +Rate for instruction 27782: 18.022% +Rate for instruction 27783: 18.0223% +Rate for instruction 27784: 18.0218% +Rate for instruction 27785: 18.0224% +Rate for instruction 27786: 18.0225% +Rate for instruction 27787: 18.0223% +Rate for instruction 27788: 18.0222% +Rate for instruction 27789: 18.0223% +Rate for instruction 27790: 18.0217% +Rate for instruction 27791: 18.0216% +Rate for instruction 27792: 18.0213% +Rate for instruction 27793: 18.0213% +Rate for instruction 27794: 18.0215% +Rate for instruction 27795: 18.0215% +Rate for instruction 27796: 18.021% +Rate for instruction 27797: 18.0222% +Rate for instruction 27798: 18.0218% +Rate for instruction 27799: 18.0213% +Rate for instruction 27800: 18.0219% +Rate for instruction 27801: 18.0218% +Rate for instruction 27802: 18.0213% +Rate for instruction 27803: 18.0216% +Rate for instruction 27804: 18.0211% +Rate for instruction 27805: 18.0212% +Rate for instruction 27806: 18.0213% +Rate for instruction 27807: 18.0223% +Rate for instruction 27808: 18.0232% +Rate for instruction 27809: 18.0237% +Rate for instruction 27810: 18.0232% +Rate for instruction 27811: 18.0228% +Rate for instruction 27812: 18.0238% +Rate for instruction 27813: 18.0247% +Rate for instruction 27814: 18.0243% +Rate for instruction 27815: 18.0253% +Rate for instruction 27816: 18.0258% +Rate for instruction 27817: 18.0261% +Rate for instruction 27818: 18.0263% +Rate for instruction 27819: 18.026% +Rate for instruction 27820: 18.0268% +Rate for instruction 27821: 18.0281% +Rate for instruction 27822: 18.0276% +Rate for instruction 27823: 18.0288% +Rate for instruction 27824: 18.0285% +Rate for instruction 27825: 18.0282% +Rate for instruction 27826: 18.0277% +Rate for instruction 27827: 18.0278% +Rate for instruction 27828: 18.0277% +Rate for instruction 27829: 18.0273% +Rate for instruction 27830: 18.0271% +Rate for instruction 27831: 18.027% +Rate for instruction 27832: 18.0266% +Rate for instruction 27833: 18.0267% +Rate for instruction 27834: 18.0267% +Rate for instruction 27835: 18.027% +Rate for instruction 27836: 18.0268% +Rate for instruction 27837: 18.0264% +Rate for instruction 27838: 18.0267% +Rate for instruction 27839: 18.0265% +Rate for instruction 27840: 18.0268% +Rate for instruction 27841: 18.0278% +Rate for instruction 27842: 18.028% +Rate for instruction 27843: 18.0278% +Rate for instruction 27844: 18.0288% +Rate for instruction 27845: 18.0297% +Rate for instruction 27846: 18.0298% +Rate for instruction 27847: 18.03% +Rate for instruction 27848: 18.0302% +Rate for instruction 27849: 18.0301% +Rate for instruction 27850: 18.0297% +Rate for instruction 27851: 18.031% +Rate for instruction 27852: 18.0322% +Rate for instruction 27853: 18.0318% +Rate for instruction 27854: 18.0325% +Rate for instruction 27855: 18.032% +Rate for instruction 27856: 18.0325% +Rate for instruction 27857: 18.032% +Rate for instruction 27858: 18.0316% +Rate for instruction 27859: 18.0312% +Rate for instruction 27860: 18.0307% +Rate for instruction 27861: 18.0306% +Rate for instruction 27862: 18.0301% +Rate for instruction 27863: 18.0297% +Rate for instruction 27864: 18.0305% +Rate for instruction 27865: 18.0308% +Rate for instruction 27866: 18.0308% +Rate for instruction 27867: 18.0312% +Rate for instruction 27868: 18.0319% +Rate for instruction 27869: 18.0317% +Rate for instruction 27870: 18.0313% +Rate for instruction 27871: 18.0312% +Rate for instruction 27872: 18.031% +Rate for instruction 27873: 18.0313% +Rate for instruction 27874: 18.0313% +Rate for instruction 27875: 18.0308% +Rate for instruction 27876: 18.0306% +Rate for instruction 27877: 18.0305% +Rate for instruction 27878: 18.0303% +Rate for instruction 27879: 18.0302% +Rate for instruction 27880: 18.0299% +Rate for instruction 27881: 18.0305% +Rate for instruction 27882: 18.0303% +Rate for instruction 27883: 18.0302% +Rate for instruction 27884: 18.0297% +Rate for instruction 27885: 18.0301% +Rate for instruction 27886: 18.0306% +Rate for instruction 27887: 18.0309% +Rate for instruction 27888: 18.0308% +Rate for instruction 27889: 18.0304% +Rate for instruction 27890: 18.0306% +Rate for instruction 27891: 18.0309% +Rate for instruction 27892: 18.0314% +Rate for instruction 27893: 18.0313% +Rate for instruction 27894: 18.0318% +Rate for instruction 27895: 18.0318% +Rate for instruction 27896: 18.0323% +Rate for instruction 27897: 18.0322% +Rate for instruction 27898: 18.0322% +Rate for instruction 27899: 18.0327% +Rate for instruction 27900: 18.0331% +Rate for instruction 27901: 18.0336% +Rate for instruction 27902: 18.0334% +Rate for instruction 27903: 18.033% +Rate for instruction 27904: 18.0327% +Rate for instruction 27905: 18.0328% +Rate for instruction 27906: 18.033% +Rate for instruction 27907: 18.0327% +Rate for instruction 27908: 18.0324% +Rate for instruction 27909: 18.032% +Rate for instruction 27910: 18.0322% +Rate for instruction 27911: 18.0324% +Rate for instruction 27912: 18.0327% +Rate for instruction 27913: 18.0323% +Rate for instruction 27914: 18.0326% +Rate for instruction 27915: 18.0327% +Rate for instruction 27916: 18.0324% +Rate for instruction 27917: 18.0329% +Rate for instruction 27918: 18.0329% +Rate for instruction 27919: 18.0334% +Rate for instruction 27920: 18.0334% +Rate for instruction 27921: 18.0335% +Rate for instruction 27922: 18.0337% +Rate for instruction 27923: 18.0333% +Rate for instruction 27924: 18.0335% +Rate for instruction 27925: 18.0331% +Rate for instruction 27926: 18.0333% +Rate for instruction 27927: 18.0341% +Rate for instruction 27928: 18.0342% +Rate for instruction 27929: 18.0337% +Rate for instruction 27930: 18.0337% +Rate for instruction 27931: 18.0332% +Rate for instruction 27932: 18.0327% +Rate for instruction 27933: 18.0333% +Rate for instruction 27934: 18.034% +Rate for instruction 27935: 18.0346% +Rate for instruction 27936: 18.0344% +Rate for instruction 27937: 18.0351% +Rate for instruction 27938: 18.0359% +Rate for instruction 27939: 18.0366% +Rate for instruction 27940: 18.0373% +Rate for instruction 27941: 18.0372% +Rate for instruction 27942: 18.0371% +Rate for instruction 27943: 18.0368% +Rate for instruction 27944: 18.0372% +Rate for instruction 27945: 18.0379% +Rate for instruction 27946: 18.0374% +Rate for instruction 27947: 18.038% +Rate for instruction 27948: 18.0381% +Rate for instruction 27949: 18.0389% +Rate for instruction 27950: 18.0387% +Rate for instruction 27951: 18.039% +Rate for instruction 27952: 18.0387% +Rate for instruction 27953: 18.0384% +Rate for instruction 27954: 18.039% +Rate for instruction 27955: 18.0385% +Rate for instruction 27956: 18.0381% +Rate for instruction 27957: 18.0393% +Rate for instruction 27958: 18.0388% +Rate for instruction 27959: 18.0383% +Rate for instruction 27960: 18.0382% +Rate for instruction 27961: 18.0393% +Rate for instruction 27962: 18.0402% +Rate for instruction 27963: 18.0411% +Rate for instruction 27964: 18.0418% +Rate for instruction 27965: 18.042% +Rate for instruction 27966: 18.0423% +Rate for instruction 27967: 18.0429% +Rate for instruction 27968: 18.0433% +Rate for instruction 27969: 18.0441% +Rate for instruction 27970: 18.0447% +Rate for instruction 27971: 18.0452% +Rate for instruction 27972: 18.0447% +Rate for instruction 27973: 18.0446% +Rate for instruction 27974: 18.0448% +Rate for instruction 27975: 18.0443% +Rate for instruction 27976: 18.0442% +Rate for instruction 27977: 18.0438% +Rate for instruction 27978: 18.0451% +Rate for instruction 27979: 18.0448% +Rate for instruction 27980: 18.0452% +Rate for instruction 27981: 18.0458% +Rate for instruction 27982: 18.0463% +Rate for instruction 27983: 18.0471% +Rate for instruction 27984: 18.0469% +Rate for instruction 27985: 18.0475% +Rate for instruction 27986: 18.0478% +Rate for instruction 27987: 18.0477% +Rate for instruction 27988: 18.0473% +Rate for instruction 27989: 18.0468% +Rate for instruction 27990: 18.0466% +Rate for instruction 27991: 18.0471% +Rate for instruction 27992: 18.0474% +Rate for instruction 27993: 18.047% +Rate for instruction 27994: 18.0466% +Rate for instruction 27995: 18.0464% +Rate for instruction 27996: 18.047% +Rate for instruction 27997: 18.0465% +Rate for instruction 27998: 18.0464% +Rate for instruction 27999: 18.047% +Rate for instruction 28000: 18.0474% +Rate for instruction 28001: 18.0471% +Rate for instruction 28002: 18.0479% +Rate for instruction 28003: 18.0487% +Rate for instruction 28004: 18.0492% +Rate for instruction 28005: 18.0501% +Rate for instruction 28006: 18.051% +Rate for instruction 28007: 18.0505% +Rate for instruction 28008: 18.0502% +Rate for instruction 28009: 18.051% +Rate for instruction 28010: 18.0516% +Rate for instruction 28011: 18.0524% +Rate for instruction 28012: 18.0532% +Rate for instruction 28013: 18.0526% +Rate for instruction 28014: 18.0528% +Rate for instruction 28015: 18.0527% +Rate for instruction 28016: 18.0524% +Rate for instruction 28017: 18.0536% +Rate for instruction 28018: 18.0542% +Rate for instruction 28019: 18.0543% +Rate for instruction 28020: 18.0546% +Rate for instruction 28021: 18.0541% +Rate for instruction 28022: 18.0545% +Rate for instruction 28023: 18.0542% +Rate for instruction 28024: 18.0537% +Rate for instruction 28025: 18.0533% +Rate for instruction 28026: 18.0529% +Rate for instruction 28027: 18.0524% +Rate for instruction 28028: 18.0525% +Rate for instruction 28029: 18.0519% +Rate for instruction 28030: 18.052% +Rate for instruction 28031: 18.0518% +Rate for instruction 28032: 18.0513% +Rate for instruction 28033: 18.0514% +Rate for instruction 28034: 18.0509% +Rate for instruction 28035: 18.0507% +Rate for instruction 28036: 18.0506% +Rate for instruction 28037: 18.0502% +Rate for instruction 28038: 18.05% +Rate for instruction 28039: 18.0504% +Rate for instruction 28040: 18.0506% +Rate for instruction 28041: 18.0503% +Rate for instruction 28042: 18.0503% +Rate for instruction 28043: 18.0498% +Rate for instruction 28044: 18.0498% +Rate for instruction 28045: 18.0502% +Rate for instruction 28046: 18.0502% +Rate for instruction 28047: 18.0501% +Rate for instruction 28048: 18.05% +Rate for instruction 28049: 18.05% +Rate for instruction 28050: 18.0495% +Rate for instruction 28051: 18.0496% +Rate for instruction 28052: 18.0492% +Rate for instruction 28053: 18.049% +Rate for instruction 28054: 18.0493% +Rate for instruction 28055: 18.0492% +Rate for instruction 28056: 18.049% +Rate for instruction 28057: 18.0487% +Rate for instruction 28058: 18.0486% +Rate for instruction 28059: 18.0494% +Rate for instruction 28060: 18.0501% +Rate for instruction 28061: 18.0503% +Rate for instruction 28062: 18.0502% +Rate for instruction 28063: 18.0497% +Rate for instruction 28064: 18.0496% +Rate for instruction 28065: 18.0491% +Rate for instruction 28066: 18.0491% +Rate for instruction 28067: 18.049% +Rate for instruction 28068: 18.0492% +Rate for instruction 28069: 18.0497% +Rate for instruction 28070: 18.0497% +Rate for instruction 28071: 18.0497% +Rate for instruction 28072: 18.0498% +Rate for instruction 28073: 18.0505% +Rate for instruction 28074: 18.0512% +Rate for instruction 28075: 18.0511% +Rate for instruction 28076: 18.051% +Rate for instruction 28077: 18.0514% +Rate for instruction 28078: 18.051% +Rate for instruction 28079: 18.0517% +Rate for instruction 28080: 18.0524% +Rate for instruction 28081: 18.0522% +Rate for instruction 28082: 18.0518% +Rate for instruction 28083: 18.0528% +Rate for instruction 28084: 18.0525% +Rate for instruction 28085: 18.052% +Rate for instruction 28086: 18.0531% +Rate for instruction 28087: 18.0526% +Rate for instruction 28088: 18.0535% +Rate for instruction 28089: 18.0532% +Rate for instruction 28090: 18.0533% +Rate for instruction 28091: 18.0535% +Rate for instruction 28092: 18.0534% +Rate for instruction 28093: 18.0541% +Rate for instruction 28094: 18.055% +Rate for instruction 28095: 18.0544% +Rate for instruction 28096: 18.0541% +Rate for instruction 28097: 18.0544% +Rate for instruction 28098: 18.055% +Rate for instruction 28099: 18.0553% +Rate for instruction 28100: 18.056% +Rate for instruction 28101: 18.0566% +Rate for instruction 28102: 18.0561% +Rate for instruction 28103: 18.0559% +Rate for instruction 28104: 18.0555% +Rate for instruction 28105: 18.0555% +Rate for instruction 28106: 18.0556% +Rate for instruction 28107: 18.0555% +Rate for instruction 28108: 18.055% +Rate for instruction 28109: 18.0546% +Rate for instruction 28110: 18.0544% +Rate for instruction 28111: 18.0546% +Rate for instruction 28112: 18.0549% +Rate for instruction 28113: 18.0549% +Rate for instruction 28114: 18.0551% +Rate for instruction 28115: 18.0547% +Rate for instruction 28116: 18.0545% +Rate for instruction 28117: 18.0543% +Rate for instruction 28118: 18.055% +Rate for instruction 28119: 18.0549% +Rate for instruction 28120: 18.0552% +Rate for instruction 28121: 18.055% +Rate for instruction 28122: 18.0546% +Rate for instruction 28123: 18.0542% +Rate for instruction 28124: 18.0543% +Rate for instruction 28125: 18.0538% +Rate for instruction 28126: 18.0534% +Rate for instruction 28127: 18.054% +Rate for instruction 28128: 18.0539% +Rate for instruction 28129: 18.0542% +Rate for instruction 28130: 18.0544% +Rate for instruction 28131: 18.0553% +Rate for instruction 28132: 18.0557% +Rate for instruction 28133: 18.0566% +Rate for instruction 28134: 18.0573% +Rate for instruction 28135: 18.0576% +Rate for instruction 28136: 18.0585% +Rate for instruction 28137: 18.0587% +Rate for instruction 28138: 18.0592% +Rate for instruction 28139: 18.0592% +Rate for instruction 28140: 18.0595% +Rate for instruction 28141: 18.059% +Rate for instruction 28142: 18.0585% +Rate for instruction 28143: 18.0581% +Rate for instruction 28144: 18.0587% +Rate for instruction 28145: 18.0583% +Rate for instruction 28146: 18.0584% +Rate for instruction 28147: 18.0578% +Rate for instruction 28148: 18.0579% +Rate for instruction 28149: 18.0579% +Rate for instruction 28150: 18.058% +Rate for instruction 28151: 18.0576% +Rate for instruction 28152: 18.0574% +Rate for instruction 28153: 18.0584% +Rate for instruction 28154: 18.059% +Rate for instruction 28155: 18.0585% +Rate for instruction 28156: 18.0593% +Rate for instruction 28157: 18.0599% +Rate for instruction 28158: 18.0604% +Rate for instruction 28159: 18.0604% +Rate for instruction 28160: 18.0606% +Rate for instruction 28161: 18.0606% +Rate for instruction 28162: 18.0608% +Rate for instruction 28163: 18.0608% +Rate for instruction 28164: 18.0609% +Rate for instruction 28165: 18.0609% +Rate for instruction 28166: 18.0604% +Rate for instruction 28167: 18.0602% +Rate for instruction 28168: 18.0602% +Rate for instruction 28169: 18.0599% +Rate for instruction 28170: 18.0602% +Rate for instruction 28171: 18.0597% +Rate for instruction 28172: 18.0594% +Rate for instruction 28173: 18.0592% +Rate for instruction 28174: 18.0595% +Rate for instruction 28175: 18.0605% +Rate for instruction 28176: 18.0611% +Rate for instruction 28177: 18.0616% +Rate for instruction 28178: 18.0613% +Rate for instruction 28179: 18.061% +Rate for instruction 28180: 18.0607% +Rate for instruction 28181: 18.0602% +Rate for instruction 28182: 18.0603% +Rate for instruction 28183: 18.0602% +Rate for instruction 28184: 18.0602% +Rate for instruction 28185: 18.0602% +Rate for instruction 28186: 18.0604% +Rate for instruction 28187: 18.0606% +Rate for instruction 28188: 18.0605% +Rate for instruction 28189: 18.06% +Rate for instruction 28190: 18.0599% +Rate for instruction 28191: 18.0605% +Rate for instruction 28192: 18.06% +Rate for instruction 28193: 18.0604% +Rate for instruction 28194: 18.0609% +Rate for instruction 28195: 18.0607% +Rate for instruction 28196: 18.061% +Rate for instruction 28197: 18.0605% +Rate for instruction 28198: 18.0605% +Rate for instruction 28199: 18.0603% +Rate for instruction 28200: 18.0606% +Rate for instruction 28201: 18.0601% +Rate for instruction 28202: 18.0601% +Rate for instruction 28203: 18.06% +Rate for instruction 28204: 18.0602% +Rate for instruction 28205: 18.0601% +Rate for instruction 28206: 18.0602% +Rate for instruction 28207: 18.0603% +Rate for instruction 28208: 18.0605% +Rate for instruction 28209: 18.0607% +Rate for instruction 28210: 18.0607% +Rate for instruction 28211: 18.0612% +Rate for instruction 28212: 18.0611% +Rate for instruction 28213: 18.0609% +Rate for instruction 28214: 18.0609% +Rate for instruction 28215: 18.0608% +Rate for instruction 28216: 18.0603% +Rate for instruction 28217: 18.0602% +Rate for instruction 28218: 18.0605% +Rate for instruction 28219: 18.0608% +Rate for instruction 28220: 18.061% +Rate for instruction 28221: 18.0607% +Rate for instruction 28222: 18.0612% +Rate for instruction 28223: 18.0607% +Rate for instruction 28224: 18.0608% +Rate for instruction 28225: 18.0603% +Rate for instruction 28226: 18.061% +Rate for instruction 28227: 18.0612% +Rate for instruction 28228: 18.0616% +Rate for instruction 28229: 18.0625% +Rate for instruction 28230: 18.062% +Rate for instruction 28231: 18.0626% +Rate for instruction 28232: 18.0621% +Rate for instruction 28233: 18.0616% +Rate for instruction 28234: 18.0624% +Rate for instruction 28235: 18.0619% +Rate for instruction 28236: 18.0615% +Rate for instruction 28237: 18.0613% +Rate for instruction 28238: 18.0608% +Rate for instruction 28239: 18.0604% +Rate for instruction 28240: 18.0599% +Rate for instruction 28241: 18.0597% +Rate for instruction 28242: 18.0598% +Rate for instruction 28243: 18.0595% +Rate for instruction 28244: 18.0598% +Rate for instruction 28245: 18.0607% +Rate for instruction 28246: 18.0613% +Rate for instruction 28247: 18.061% +Rate for instruction 28248: 18.0605% +Rate for instruction 28249: 18.0604% +Rate for instruction 28250: 18.0602% +Rate for instruction 28251: 18.0605% +Rate for instruction 28252: 18.06% +Rate for instruction 28253: 18.0598% +Rate for instruction 28254: 18.0605% +Rate for instruction 28255: 18.0602% +Rate for instruction 28256: 18.061% +Rate for instruction 28257: 18.0611% +Rate for instruction 28258: 18.0608% +Rate for instruction 28259: 18.0611% +Rate for instruction 28260: 18.061% +Rate for instruction 28261: 18.0619% +Rate for instruction 28262: 18.0628% +Rate for instruction 28263: 18.0625% +Rate for instruction 28264: 18.0622% +Rate for instruction 28265: 18.0617% +Rate for instruction 28266: 18.0621% +Rate for instruction 28267: 18.0624% +Rate for instruction 28268: 18.0619% +Rate for instruction 28269: 18.0621% +Rate for instruction 28270: 18.0625% +Rate for instruction 28271: 18.0633% +Rate for instruction 28272: 18.0643% +Rate for instruction 28273: 18.0646% +Rate for instruction 28274: 18.0647% +Rate for instruction 28275: 18.0652% +Rate for instruction 28276: 18.0662% +Rate for instruction 28277: 18.0669% +Rate for instruction 28278: 18.067% +Rate for instruction 28279: 18.0665% +Rate for instruction 28280: 18.0662% +Rate for instruction 28281: 18.0661% +Rate for instruction 28282: 18.0662% +Rate for instruction 28283: 18.067% +Rate for instruction 28284: 18.0675% +Rate for instruction 28285: 18.0672% +Rate for instruction 28286: 18.0671% +Rate for instruction 28287: 18.0681% +Rate for instruction 28288: 18.068% +Rate for instruction 28289: 18.0684% +Rate for instruction 28290: 18.0687% +Rate for instruction 28291: 18.0682% +Rate for instruction 28292: 18.0679% +Rate for instruction 28293: 18.0681% +Rate for instruction 28294: 18.0679% +Rate for instruction 28295: 18.0675% +Rate for instruction 28296: 18.0672% +Rate for instruction 28297: 18.0672% +Rate for instruction 28298: 18.0674% +Rate for instruction 28299: 18.0669% +Rate for instruction 28300: 18.067% +Rate for instruction 28301: 18.0667% +Rate for instruction 28302: 18.0662% +Rate for instruction 28303: 18.0664% +Rate for instruction 28304: 18.0658% +Rate for instruction 28305: 18.0662% +Rate for instruction 28306: 18.0663% +Rate for instruction 28307: 18.066% +Rate for instruction 28308: 18.0664% +Rate for instruction 28309: 18.0667% +Rate for instruction 28310: 18.0669% +Rate for instruction 28311: 18.0664% +Rate for instruction 28312: 18.0659% +Rate for instruction 28313: 18.0655% +Rate for instruction 28314: 18.0659% +Rate for instruction 28315: 18.0654% +Rate for instruction 28316: 18.0655% +Rate for instruction 28317: 18.0658% +Rate for instruction 28318: 18.066% +Rate for instruction 28319: 18.0655% +Rate for instruction 28320: 18.0657% +Rate for instruction 28321: 18.066% +Rate for instruction 28322: 18.0665% +Rate for instruction 28323: 18.0662% +Rate for instruction 28324: 18.0672% +Rate for instruction 28325: 18.0681% +Rate for instruction 28326: 18.0676% +Rate for instruction 28327: 18.0673% +Rate for instruction 28328: 18.0668% +Rate for instruction 28329: 18.0669% +Rate for instruction 28330: 18.0664% +Rate for instruction 28331: 18.0661% +Rate for instruction 28332: 18.0656% +Rate for instruction 28333: 18.0653% +Rate for instruction 28334: 18.0648% +Rate for instruction 28335: 18.065% +Rate for instruction 28336: 18.0644% +Rate for instruction 28337: 18.0649% +Rate for instruction 28338: 18.0659% +Rate for instruction 28339: 18.0663% +Rate for instruction 28340: 18.0661% +Rate for instruction 28341: 18.0663% +Rate for instruction 28342: 18.0665% +Rate for instruction 28343: 18.0664% +Rate for instruction 28344: 18.0665% +Rate for instruction 28345: 18.0671% +Rate for instruction 28346: 18.0678% +Rate for instruction 28347: 18.0686% +Rate for instruction 28348: 18.0682% +Rate for instruction 28349: 18.0678% +Rate for instruction 28350: 18.0675% +Rate for instruction 28351: 18.067% +Rate for instruction 28352: 18.0666% +Rate for instruction 28353: 18.0661% +Rate for instruction 28354: 18.0656% +Rate for instruction 28355: 18.0652% +Rate for instruction 28356: 18.0657% +Rate for instruction 28357: 18.0653% +Rate for instruction 28358: 18.0656% +Rate for instruction 28359: 18.0653% +Rate for instruction 28360: 18.0652% +Rate for instruction 28361: 18.0655% +Rate for instruction 28362: 18.0657% +Rate for instruction 28363: 18.066% +Rate for instruction 28364: 18.066% +Rate for instruction 28365: 18.0663% +Rate for instruction 28366: 18.0658% +Rate for instruction 28367: 18.0659% +Rate for instruction 28368: 18.0662% +Rate for instruction 28369: 18.0662% +Rate for instruction 28370: 18.066% +Rate for instruction 28371: 18.0663% +Rate for instruction 28372: 18.0659% +Rate for instruction 28373: 18.0664% +Rate for instruction 28374: 18.0667% +Rate for instruction 28375: 18.0666% +Rate for instruction 28376: 18.0664% +Rate for instruction 28377: 18.066% +Rate for instruction 28378: 18.0655% +Rate for instruction 28379: 18.065% +Rate for instruction 28380: 18.0649% +Rate for instruction 28381: 18.0649% +Rate for instruction 28382: 18.0644% +Rate for instruction 28383: 18.0645% +Rate for instruction 28384: 18.0641% +Rate for instruction 28385: 18.0638% +Rate for instruction 28386: 18.0635% +Rate for instruction 28387: 18.0636% +Rate for instruction 28388: 18.064% +Rate for instruction 28389: 18.065% +Rate for instruction 28390: 18.0645% +Rate for instruction 28391: 18.0649% +Rate for instruction 28392: 18.0647% +Rate for instruction 28393: 18.0653% +Rate for instruction 28394: 18.0655% +Rate for instruction 28395: 18.0655% +Rate for instruction 28396: 18.0658% +Rate for instruction 28397: 18.0663% +Rate for instruction 28398: 18.0666% +Rate for instruction 28399: 18.067% +Rate for instruction 28400: 18.0671% +Rate for instruction 28401: 18.0675% +Rate for instruction 28402: 18.0674% +Rate for instruction 28403: 18.0681% +Rate for instruction 28404: 18.0678% +Rate for instruction 28405: 18.0673% +Rate for instruction 28406: 18.068% +Rate for instruction 28407: 18.0676% +Rate for instruction 28408: 18.0678% +Rate for instruction 28409: 18.0674% +Rate for instruction 28410: 18.0672% +Rate for instruction 28411: 18.0674% +Rate for instruction 28412: 18.0681% +Rate for instruction 28413: 18.0677% +Rate for instruction 28414: 18.0685% +Rate for instruction 28415: 18.0693% +Rate for instruction 28416: 18.0699% +Rate for instruction 28417: 18.0703% +Rate for instruction 28418: 18.07% +Rate for instruction 28419: 18.0702% +Rate for instruction 28420: 18.0707% +Rate for instruction 28421: 18.0705% +Rate for instruction 28422: 18.0708% +Rate for instruction 28423: 18.0709% +Rate for instruction 28424: 18.0709% +Rate for instruction 28425: 18.0707% +Rate for instruction 28426: 18.0706% +Rate for instruction 28427: 18.0702% +Rate for instruction 28428: 18.0701% +Rate for instruction 28429: 18.0702% +Rate for instruction 28430: 18.0697% +Rate for instruction 28431: 18.07% +Rate for instruction 28432: 18.0696% +Rate for instruction 28433: 18.0692% +Rate for instruction 28434: 18.0693% +Rate for instruction 28435: 18.0693% +Rate for instruction 28436: 18.07% +Rate for instruction 28437: 18.0702% +Rate for instruction 28438: 18.0704% +Rate for instruction 28439: 18.0699% +Rate for instruction 28440: 18.0705% +Rate for instruction 28441: 18.0706% +Rate for instruction 28442: 18.0703% +Rate for instruction 28443: 18.0698% +Rate for instruction 28444: 18.0694% +Rate for instruction 28445: 18.0692% +Rate for instruction 28446: 18.069% +Rate for instruction 28447: 18.0687% +Rate for instruction 28448: 18.0689% +Rate for instruction 28449: 18.0691% +Rate for instruction 28450: 18.069% +Rate for instruction 28451: 18.0686% +Rate for instruction 28452: 18.0692% +Rate for instruction 28453: 18.069% +Rate for instruction 28454: 18.0696% +Rate for instruction 28455: 18.0692% +Rate for instruction 28456: 18.0696% +Rate for instruction 28457: 18.0698% +Rate for instruction 28458: 18.0697% +Rate for instruction 28459: 18.0695% +Rate for instruction 28460: 18.0695% +Rate for instruction 28461: 18.0698% +Rate for instruction 28462: 18.07% +Rate for instruction 28463: 18.071% +Rate for instruction 28464: 18.0717% +Rate for instruction 28465: 18.072% +Rate for instruction 28466: 18.0721% +Rate for instruction 28467: 18.0724% +Rate for instruction 28468: 18.0723% +Rate for instruction 28469: 18.0719% +Rate for instruction 28470: 18.0725% +Rate for instruction 28471: 18.0723% +Rate for instruction 28472: 18.0722% +Rate for instruction 28473: 18.073% +Rate for instruction 28474: 18.0731% +Rate for instruction 28475: 18.073% +Rate for instruction 28476: 18.0736% +Rate for instruction 28477: 18.074% +Rate for instruction 28478: 18.075% +Rate for instruction 28479: 18.0756% +Rate for instruction 28480: 18.0766% +Rate for instruction 28481: 18.077% +Rate for instruction 28482: 18.077% +Rate for instruction 28483: 18.0776% +Rate for instruction 28484: 18.0777% +Rate for instruction 28485: 18.0782% +Rate for instruction 28486: 18.0786% +Rate for instruction 28487: 18.0781% +Rate for instruction 28488: 18.0788% +Rate for instruction 28489: 18.0794% +Rate for instruction 28490: 18.079% +Rate for instruction 28491: 18.079% +Rate for instruction 28492: 18.0792% +Rate for instruction 28493: 18.0791% +Rate for instruction 28494: 18.08% +Rate for instruction 28495: 18.0808% +Rate for instruction 28496: 18.0818% +Rate for instruction 28497: 18.0829% +Rate for instruction 28498: 18.0839% +Rate for instruction 28499: 18.0842% +Rate for instruction 28500: 18.0847% +Rate for instruction 28501: 18.0855% +Rate for instruction 28502: 18.0855% +Rate for instruction 28503: 18.0852% +Rate for instruction 28504: 18.0852% +Rate for instruction 28505: 18.0853% +Rate for instruction 28506: 18.0861% +Rate for instruction 28507: 18.0868% +Rate for instruction 28508: 18.0866% +Rate for instruction 28509: 18.0876% +Rate for instruction 28510: 18.0882% +Rate for instruction 28511: 18.0877% +Rate for instruction 28512: 18.0878% +Rate for instruction 28513: 18.0876% +Rate for instruction 28514: 18.0872% +Rate for instruction 28515: 18.0869% +Rate for instruction 28516: 18.0869% +Rate for instruction 28517: 18.0864% +Rate for instruction 28518: 18.0867% +Rate for instruction 28519: 18.0866% +Rate for instruction 28520: 18.0864% +Rate for instruction 28521: 18.0868% +Rate for instruction 28522: 18.087% +Rate for instruction 28523: 18.0871% +Rate for instruction 28524: 18.0868% +Rate for instruction 28525: 18.0867% +Rate for instruction 28526: 18.0869% +Rate for instruction 28527: 18.0865% +Rate for instruction 28528: 18.0862% +Rate for instruction 28529: 18.0874% +Rate for instruction 28530: 18.0886% +Rate for instruction 28531: 18.0881% +Rate for instruction 28532: 18.0881% +Rate for instruction 28533: 18.0876% +Rate for instruction 28534: 18.0872% +Rate for instruction 28535: 18.0867% +Rate for instruction 28536: 18.0865% +Rate for instruction 28537: 18.086% +Rate for instruction 28538: 18.0863% +Rate for instruction 28539: 18.0862% +Rate for instruction 28540: 18.086% +Rate for instruction 28541: 18.0855% +Rate for instruction 28542: 18.0854% +Rate for instruction 28543: 18.0853% +Rate for instruction 28544: 18.0853% +Rate for instruction 28545: 18.0852% +Rate for instruction 28546: 18.0849% +Rate for instruction 28547: 18.0851% +Rate for instruction 28548: 18.085% +Rate for instruction 28549: 18.0845% +Rate for instruction 28550: 18.0845% +Rate for instruction 28551: 18.0847% +Rate for instruction 28552: 18.0845% +Rate for instruction 28553: 18.0842% +Rate for instruction 28554: 18.0843% +Rate for instruction 28555: 18.0839% +Rate for instruction 28556: 18.0834% +Rate for instruction 28557: 18.0833% +Rate for instruction 28558: 18.0835% +Rate for instruction 28559: 18.083% +Rate for instruction 28560: 18.0828% +Rate for instruction 28561: 18.0832% +Rate for instruction 28562: 18.0832% +Rate for instruction 28563: 18.0838% +Rate for instruction 28564: 18.084% +Rate for instruction 28565: 18.0835% +Rate for instruction 28566: 18.0831% +Rate for instruction 28567: 18.0832% +Rate for instruction 28568: 18.0827% +Rate for instruction 28569: 18.083% +Rate for instruction 28570: 18.0832% +Rate for instruction 28571: 18.0829% +Rate for instruction 28572: 18.0826% +Rate for instruction 28573: 18.0821% +Rate for instruction 28574: 18.0817% +Rate for instruction 28575: 18.0815% +Rate for instruction 28576: 18.0814% +Rate for instruction 28577: 18.0811% +Rate for instruction 28578: 18.0809% +Rate for instruction 28579: 18.0807% +Rate for instruction 28580: 18.0802% +Rate for instruction 28581: 18.0802% +Rate for instruction 28582: 18.0797% +Rate for instruction 28583: 18.0795% +Rate for instruction 28584: 18.0795% +Rate for instruction 28585: 18.0797% +Rate for instruction 28586: 18.0804% +Rate for instruction 28587: 18.0801% +Rate for instruction 28588: 18.0806% +Rate for instruction 28589: 18.0804% +Rate for instruction 28590: 18.0799% +Rate for instruction 28591: 18.0794% +Rate for instruction 28592: 18.0797% +Rate for instruction 28593: 18.0799% +Rate for instruction 28594: 18.0806% +Rate for instruction 28595: 18.0808% +Rate for instruction 28596: 18.0804% +Rate for instruction 28597: 18.0803% +Rate for instruction 28598: 18.0802% +Rate for instruction 28599: 18.0803% +Rate for instruction 28600: 18.0802% +Rate for instruction 28601: 18.0805% +Rate for instruction 28602: 18.0805% +Rate for instruction 28603: 18.0808% +Rate for instruction 28604: 18.0814% +Rate for instruction 28605: 18.0813% +Rate for instruction 28606: 18.081% +Rate for instruction 28607: 18.0806% +Rate for instruction 28608: 18.0802% +Rate for instruction 28609: 18.08% +Rate for instruction 28610: 18.0795% +Rate for instruction 28611: 18.0797% +Rate for instruction 28612: 18.0796% +Rate for instruction 28613: 18.0806% +Rate for instruction 28614: 18.0814% +Rate for instruction 28615: 18.0811% +Rate for instruction 28616: 18.0816% +Rate for instruction 28617: 18.0811% +Rate for instruction 28618: 18.0821% +Rate for instruction 28619: 18.0828% +Rate for instruction 28620: 18.0829% +Rate for instruction 28621: 18.0824% +Rate for instruction 28622: 18.0834% +Rate for instruction 28623: 18.0847% +Rate for instruction 28624: 18.0851% +Rate for instruction 28625: 18.0856% +Rate for instruction 28626: 18.0855% +Rate for instruction 28627: 18.0853% +Rate for instruction 28628: 18.0851% +Rate for instruction 28629: 18.0847% +Rate for instruction 28630: 18.0845% +Rate for instruction 28631: 18.0841% +Rate for instruction 28632: 18.084% +Rate for instruction 28633: 18.0838% +Rate for instruction 28634: 18.0838% +Rate for instruction 28635: 18.0835% +Rate for instruction 28636: 18.0834% +Rate for instruction 28637: 18.0832% +Rate for instruction 28638: 18.0832% +Rate for instruction 28639: 18.0832% +Rate for instruction 28640: 18.0827% +Rate for instruction 28641: 18.0828% +Rate for instruction 28642: 18.0832% +Rate for instruction 28643: 18.0829% +Rate for instruction 28644: 18.0829% +Rate for instruction 28645: 18.0828% +Rate for instruction 28646: 18.0826% +Rate for instruction 28647: 18.0823% +Rate for instruction 28648: 18.082% +Rate for instruction 28649: 18.0818% +Rate for instruction 28650: 18.0821% +Rate for instruction 28651: 18.0817% +Rate for instruction 28652: 18.0819% +Rate for instruction 28653: 18.0818% +Rate for instruction 28654: 18.0817% +Rate for instruction 28655: 18.0816% +Rate for instruction 28656: 18.0823% +Rate for instruction 28657: 18.0833% +Rate for instruction 28658: 18.0828% +Rate for instruction 28659: 18.0827% +Rate for instruction 28660: 18.0829% +Rate for instruction 28661: 18.0828% +Rate for instruction 28662: 18.0825% +Rate for instruction 28663: 18.0827% +Rate for instruction 28664: 18.0822% +Rate for instruction 28665: 18.0823% +Rate for instruction 28666: 18.0822% +Rate for instruction 28667: 18.0817% +Rate for instruction 28668: 18.0822% +Rate for instruction 28669: 18.083% +Rate for instruction 28670: 18.0826% +Rate for instruction 28671: 18.0821% +Rate for instruction 28672: 18.082% +Rate for instruction 28673: 18.0818% +Rate for instruction 28674: 18.0814% +Rate for instruction 28675: 18.0812% +Rate for instruction 28676: 18.0808% +Rate for instruction 28677: 18.0803% +Rate for instruction 28678: 18.0804% +Rate for instruction 28679: 18.0813% +Rate for instruction 28680: 18.0817% +Rate for instruction 28681: 18.0812% +Rate for instruction 28682: 18.0807% +Rate for instruction 28683: 18.0811% +Rate for instruction 28684: 18.0806% +Rate for instruction 28685: 18.0802% +Rate for instruction 28686: 18.0798% +Rate for instruction 28687: 18.0799% +Rate for instruction 28688: 18.0804% +Rate for instruction 28689: 18.0804% +Rate for instruction 28690: 18.0809% +Rate for instruction 28691: 18.0805% +Rate for instruction 28692: 18.0809% +Rate for instruction 28693: 18.0812% +Rate for instruction 28694: 18.081% +Rate for instruction 28695: 18.0808% +Rate for instruction 28696: 18.0807% +Rate for instruction 28697: 18.0811% +Rate for instruction 28698: 18.081% +Rate for instruction 28699: 18.0809% +Rate for instruction 28700: 18.0811% +Rate for instruction 28701: 18.0813% +Rate for instruction 28702: 18.0808% +Rate for instruction 28703: 18.0808% +Rate for instruction 28704: 18.0807% +Rate for instruction 28705: 18.0804% +Rate for instruction 28706: 18.0804% +Rate for instruction 28707: 18.0801% +Rate for instruction 28708: 18.0798% +Rate for instruction 28709: 18.08% +Rate for instruction 28710: 18.0795% +Rate for instruction 28711: 18.0794% +Rate for instruction 28712: 18.0791% +Rate for instruction 28713: 18.0794% +Rate for instruction 28714: 18.0793% +Rate for instruction 28715: 18.079% +Rate for instruction 28716: 18.0788% +Rate for instruction 28717: 18.0786% +Rate for instruction 28718: 18.0788% +Rate for instruction 28719: 18.0788% +Rate for instruction 28720: 18.0786% +Rate for instruction 28721: 18.0782% +Rate for instruction 28722: 18.0782% +Rate for instruction 28723: 18.078% +Rate for instruction 28724: 18.0782% +Rate for instruction 28725: 18.0781% +Rate for instruction 28726: 18.078% +Rate for instruction 28727: 18.0782% +Rate for instruction 28728: 18.0782% +Rate for instruction 28729: 18.0793% +Rate for instruction 28730: 18.0802% +Rate for instruction 28731: 18.0801% +Rate for instruction 28732: 18.08% +Rate for instruction 28733: 18.08% +Rate for instruction 28734: 18.0795% +Rate for instruction 28735: 18.0792% +Rate for instruction 28736: 18.0788% +Rate for instruction 28737: 18.0786% +Rate for instruction 28738: 18.0785% +Rate for instruction 28739: 18.0783% +Rate for instruction 28740: 18.078% +Rate for instruction 28741: 18.0783% +Rate for instruction 28742: 18.0785% +Rate for instruction 28743: 18.0786% +Rate for instruction 28744: 18.0781% +Rate for instruction 28745: 18.0776% +Rate for instruction 28746: 18.0771% +Rate for instruction 28747: 18.0767% +Rate for instruction 28748: 18.0762% +Rate for instruction 28749: 18.0759% +Rate for instruction 28750: 18.0759% +Rate for instruction 28751: 18.0755% +Rate for instruction 28752: 18.0753% +Rate for instruction 28753: 18.0752% +Rate for instruction 28754: 18.0748% +Rate for instruction 28755: 18.0749% +Rate for instruction 28756: 18.0753% +Rate for instruction 28757: 18.0751% +Rate for instruction 28758: 18.0757% +Rate for instruction 28759: 18.0759% +Rate for instruction 28760: 18.0756% +Rate for instruction 28761: 18.0753% +Rate for instruction 28762: 18.0754% +Rate for instruction 28763: 18.0755% +Rate for instruction 28764: 18.0751% +Rate for instruction 28765: 18.0754% +Rate for instruction 28766: 18.0749% +Rate for instruction 28767: 18.075% +Rate for instruction 28768: 18.0749% +Rate for instruction 28769: 18.0745% +Rate for instruction 28770: 18.0744% +Rate for instruction 28771: 18.0743% +Rate for instruction 28772: 18.0744% +Rate for instruction 28773: 18.0748% +Rate for instruction 28774: 18.0747% +Rate for instruction 28775: 18.0749% +Rate for instruction 28776: 18.0753% +Rate for instruction 28777: 18.0748% +Rate for instruction 28778: 18.0746% +Rate for instruction 28779: 18.0745% +Rate for instruction 28780: 18.0743% +Rate for instruction 28781: 18.0739% +Rate for instruction 28782: 18.0741% +Rate for instruction 28783: 18.0749% +Rate for instruction 28784: 18.0745% +Rate for instruction 28785: 18.0741% +Rate for instruction 28786: 18.0751% +Rate for instruction 28787: 18.0763% +Rate for instruction 28788: 18.0774% +Rate for instruction 28789: 18.0781% +Rate for instruction 28790: 18.0778% +Rate for instruction 28791: 18.0791% +Rate for instruction 28792: 18.0788% +Rate for instruction 28793: 18.0792% +Rate for instruction 28794: 18.0798% +Rate for instruction 28795: 18.0801% +Rate for instruction 28796: 18.0809% +Rate for instruction 28797: 18.0818% +Rate for instruction 28798: 18.0817% +Rate for instruction 28799: 18.0824% +Rate for instruction 28800: 18.0819% +Rate for instruction 28801: 18.0817% +Rate for instruction 28802: 18.0813% +Rate for instruction 28803: 18.0812% +Rate for instruction 28804: 18.0809% +Rate for instruction 28805: 18.0808% +Rate for instruction 28806: 18.0809% +Rate for instruction 28807: 18.081% +Rate for instruction 28808: 18.0808% +Rate for instruction 28809: 18.0809% +Rate for instruction 28810: 18.0804% +Rate for instruction 28811: 18.0805% +Rate for instruction 28812: 18.0809% +Rate for instruction 28813: 18.0804% +Rate for instruction 28814: 18.0799% +Rate for instruction 28815: 18.0796% +Rate for instruction 28816: 18.0801% +Rate for instruction 28817: 18.0799% +Rate for instruction 28818: 18.0796% +Rate for instruction 28819: 18.0791% +Rate for instruction 28820: 18.0787% +Rate for instruction 28821: 18.079% +Rate for instruction 28822: 18.0786% +Rate for instruction 28823: 18.0786% +Rate for instruction 28824: 18.0786% +Rate for instruction 28825: 18.0788% +Rate for instruction 28826: 18.0783% +Rate for instruction 28827: 18.0786% +Rate for instruction 28828: 18.0785% +Rate for instruction 28829: 18.0792% +Rate for instruction 28830: 18.0799% +Rate for instruction 28831: 18.0798% +Rate for instruction 28832: 18.0798% +Rate for instruction 28833: 18.0798% +Rate for instruction 28834: 18.0795% +Rate for instruction 28835: 18.0794% +Rate for instruction 28836: 18.0791% +Rate for instruction 28837: 18.0786% +Rate for instruction 28838: 18.0784% +Rate for instruction 28839: 18.0787% +Rate for instruction 28840: 18.0783% +Rate for instruction 28841: 18.0785% +Rate for instruction 28842: 18.0784% +Rate for instruction 28843: 18.0784% +Rate for instruction 28844: 18.0787% +Rate for instruction 28845: 18.0784% +Rate for instruction 28846: 18.0784% +Rate for instruction 28847: 18.0784% +Rate for instruction 28848: 18.0779% +Rate for instruction 28849: 18.0784% +Rate for instruction 28850: 18.0782% +Rate for instruction 28851: 18.0785% +Rate for instruction 28852: 18.079% +Rate for instruction 28853: 18.0787% +Rate for instruction 28854: 18.0782% +Rate for instruction 28855: 18.0781% +Rate for instruction 28856: 18.0779% +Rate for instruction 28857: 18.0775% +Rate for instruction 28858: 18.0779% +Rate for instruction 28859: 18.078% +Rate for instruction 28860: 18.0779% +Rate for instruction 28861: 18.0779% +Rate for instruction 28862: 18.0785% +Rate for instruction 28863: 18.0781% +Rate for instruction 28864: 18.0783% +Rate for instruction 28865: 18.078% +Rate for instruction 28866: 18.0783% +Rate for instruction 28867: 18.0782% +Rate for instruction 28868: 18.0787% +Rate for instruction 28869: 18.0785% +Rate for instruction 28870: 18.0784% +Rate for instruction 28871: 18.0787% +Rate for instruction 28872: 18.0793% +Rate for instruction 28873: 18.0792% +Rate for instruction 28874: 18.079% +Rate for instruction 28875: 18.0788% +Rate for instruction 28876: 18.0797% +Rate for instruction 28877: 18.0794% +Rate for instruction 28878: 18.0794% +Rate for instruction 28879: 18.0796% +Rate for instruction 28880: 18.0792% +Rate for instruction 28881: 18.0795% +Rate for instruction 28882: 18.0794% +Rate for instruction 28883: 18.0792% +Rate for instruction 28884: 18.0793% +Rate for instruction 28885: 18.0792% +Rate for instruction 28886: 18.0788% +Rate for instruction 28887: 18.0786% +Rate for instruction 28888: 18.0781% +Rate for instruction 28889: 18.0781% +Rate for instruction 28890: 18.0788% +Rate for instruction 28891: 18.0798% +Rate for instruction 28892: 18.0796% +Rate for instruction 28893: 18.0796% +Rate for instruction 28894: 18.0791% +Rate for instruction 28895: 18.0788% +Rate for instruction 28896: 18.0783% +Rate for instruction 28897: 18.0779% +Rate for instruction 28898: 18.0778% +Rate for instruction 28899: 18.0785% +Rate for instruction 28900: 18.0794% +Rate for instruction 28901: 18.079% +Rate for instruction 28902: 18.0794% +Rate for instruction 28903: 18.0789% +Rate for instruction 28904: 18.0795% +Rate for instruction 28905: 18.0793% +Rate for instruction 28906: 18.0797% +Rate for instruction 28907: 18.0804% +Rate for instruction 28908: 18.0801% +Rate for instruction 28909: 18.0805% +Rate for instruction 28910: 18.0806% +Rate for instruction 28911: 18.0801% +Rate for instruction 28912: 18.08% +Rate for instruction 28913: 18.0808% +Rate for instruction 28914: 18.0812% +Rate for instruction 28915: 18.081% +Rate for instruction 28916: 18.0808% +Rate for instruction 28917: 18.081% +Rate for instruction 28918: 18.0815% +Rate for instruction 28919: 18.0821% +Rate for instruction 28920: 18.0816% +Rate for instruction 28921: 18.0815% +Rate for instruction 28922: 18.081% +Rate for instruction 28923: 18.0807% +Rate for instruction 28924: 18.0803% +Rate for instruction 28925: 18.0798% +Rate for instruction 28926: 18.0795% +Rate for instruction 28927: 18.0792% +Rate for instruction 28928: 18.0793% +Rate for instruction 28929: 18.0796% +Rate for instruction 28930: 18.0791% +Rate for instruction 28931: 18.0787% +Rate for instruction 28932: 18.0785% +Rate for instruction 28933: 18.0783% +Rate for instruction 28934: 18.079% +Rate for instruction 28935: 18.0785% +Rate for instruction 28936: 18.0791% +Rate for instruction 28937: 18.0791% +Rate for instruction 28938: 18.0789% +Rate for instruction 28939: 18.0784% +Rate for instruction 28940: 18.079% +Rate for instruction 28941: 18.0793% +Rate for instruction 28942: 18.0794% +Rate for instruction 28943: 18.0791% +Rate for instruction 28944: 18.0787% +Rate for instruction 28945: 18.0785% +Rate for instruction 28946: 18.078% +Rate for instruction 28947: 18.0787% +Rate for instruction 28948: 18.0789% +Rate for instruction 28949: 18.0787% +Rate for instruction 28950: 18.0798% +Rate for instruction 28951: 18.0806% +Rate for instruction 28952: 18.0812% +Rate for instruction 28953: 18.0811% +Rate for instruction 28954: 18.0812% +Rate for instruction 28955: 18.0814% +Rate for instruction 28956: 18.0809% +Rate for instruction 28957: 18.0807% +Rate for instruction 28958: 18.0817% +Rate for instruction 28959: 18.0825% +Rate for instruction 28960: 18.0823% +Rate for instruction 28961: 18.0818% +Rate for instruction 28962: 18.0814% +Rate for instruction 28963: 18.0809% +Rate for instruction 28964: 18.0808% +Rate for instruction 28965: 18.0803% +Rate for instruction 28966: 18.0815% +Rate for instruction 28967: 18.0812% +Rate for instruction 28968: 18.081% +Rate for instruction 28969: 18.0816% +Rate for instruction 28970: 18.0813% +Rate for instruction 28971: 18.081% +Rate for instruction 28972: 18.0805% +Rate for instruction 28973: 18.08% +Rate for instruction 28974: 18.0795% +Rate for instruction 28975: 18.0792% +Rate for instruction 28976: 18.0791% +Rate for instruction 28977: 18.0798% +Rate for instruction 28978: 18.0802% +Rate for instruction 28979: 18.0802% +Rate for instruction 28980: 18.0811% +Rate for instruction 28981: 18.0809% +Rate for instruction 28982: 18.0817% +Rate for instruction 28983: 18.0815% +Rate for instruction 28984: 18.0815% +Rate for instruction 28985: 18.0814% +Rate for instruction 28986: 18.0812% +Rate for instruction 28987: 18.0822% +Rate for instruction 28988: 18.0827% +Rate for instruction 28989: 18.0822% +Rate for instruction 28990: 18.0823% +Rate for instruction 28991: 18.0818% +Rate for instruction 28992: 18.0816% +Rate for instruction 28993: 18.0819% +Rate for instruction 28994: 18.0822% +Rate for instruction 28995: 18.0825% +Rate for instruction 28996: 18.0822% +Rate for instruction 28997: 18.0831% +Rate for instruction 28998: 18.0829% +Rate for instruction 28999: 18.0829% +Rate for instruction 29000: 18.0825% +Rate for instruction 29001: 18.0824% +Rate for instruction 29002: 18.0823% +Rate for instruction 29003: 18.0821% +Rate for instruction 29004: 18.0819% +Rate for instruction 29005: 18.0815% +Rate for instruction 29006: 18.0816% +Rate for instruction 29007: 18.0817% +Rate for instruction 29008: 18.0817% +Rate for instruction 29009: 18.0814% +Rate for instruction 29010: 18.0809% +Rate for instruction 29011: 18.081% +Rate for instruction 29012: 18.0815% +Rate for instruction 29013: 18.0824% +Rate for instruction 29014: 18.0824% +Rate for instruction 29015: 18.0822% +Rate for instruction 29016: 18.0824% +Rate for instruction 29017: 18.082% +Rate for instruction 29018: 18.0818% +Rate for instruction 29019: 18.0824% +Rate for instruction 29020: 18.0831% +Rate for instruction 29021: 18.083% +Rate for instruction 29022: 18.0826% +Rate for instruction 29023: 18.0824% +Rate for instruction 29024: 18.0823% +Rate for instruction 29025: 18.0833% +Rate for instruction 29026: 18.083% +Rate for instruction 29027: 18.0837% +Rate for instruction 29028: 18.0847% +Rate for instruction 29029: 18.0858% +Rate for instruction 29030: 18.0864% +Rate for instruction 29031: 18.0867% +Rate for instruction 29032: 18.0862% +Rate for instruction 29033: 18.0857% +Rate for instruction 29034: 18.0855% +Rate for instruction 29035: 18.0858% +Rate for instruction 29036: 18.0861% +Rate for instruction 29037: 18.0859% +Rate for instruction 29038: 18.0858% +Rate for instruction 29039: 18.0859% +Rate for instruction 29040: 18.0861% +Rate for instruction 29041: 18.0863% +Rate for instruction 29042: 18.0862% +Rate for instruction 29043: 18.0858% +Rate for instruction 29044: 18.0853% +Rate for instruction 29045: 18.0852% +Rate for instruction 29046: 18.0853% +Rate for instruction 29047: 18.0848% +Rate for instruction 29048: 18.0847% +Rate for instruction 29049: 18.0849% +Rate for instruction 29050: 18.0845% +Rate for instruction 29051: 18.084% +Rate for instruction 29052: 18.0847% +Rate for instruction 29053: 18.0842% +Rate for instruction 29054: 18.0852% +Rate for instruction 29055: 18.0851% +Rate for instruction 29056: 18.0861% +Rate for instruction 29057: 18.0865% +Rate for instruction 29058: 18.0867% +Rate for instruction 29059: 18.0871% +Rate for instruction 29060: 18.0877% +Rate for instruction 29061: 18.0877% +Rate for instruction 29062: 18.0875% +Rate for instruction 29063: 18.0882% +Rate for instruction 29064: 18.0888% +Rate for instruction 29065: 18.0895% +Rate for instruction 29066: 18.0896% +Rate for instruction 29067: 18.0891% +Rate for instruction 29068: 18.0897% +Rate for instruction 29069: 18.0892% +Rate for instruction 29070: 18.0889% +Rate for instruction 29071: 18.0889% +Rate for instruction 29072: 18.0886% +Rate for instruction 29073: 18.0894% +Rate for instruction 29074: 18.0893% +Rate for instruction 29075: 18.0893% +Rate for instruction 29076: 18.0896% +Rate for instruction 29077: 18.0905% +Rate for instruction 29078: 18.0918% +Rate for instruction 29079: 18.092% +Rate for instruction 29080: 18.0923% +Rate for instruction 29081: 18.0926% +Rate for instruction 29082: 18.0929% +Rate for instruction 29083: 18.0933% +Rate for instruction 29084: 18.0931% +Rate for instruction 29085: 18.093% +Rate for instruction 29086: 18.0933% +Rate for instruction 29087: 18.0935% +Rate for instruction 29088: 18.093% +Rate for instruction 29089: 18.0941% +Rate for instruction 29090: 18.0952% +Rate for instruction 29091: 18.095% +Rate for instruction 29092: 18.0953% +Rate for instruction 29093: 18.0964% +Rate for instruction 29094: 18.0959% +Rate for instruction 29095: 18.0965% +Rate for instruction 29096: 18.0964% +Rate for instruction 29097: 18.0965% +Rate for instruction 29098: 18.0968% +Rate for instruction 29099: 18.0974% +Rate for instruction 29100: 18.0969% +Rate for instruction 29101: 18.097% +Rate for instruction 29102: 18.0979% +Rate for instruction 29103: 18.0982% +Rate for instruction 29104: 18.0977% +Rate for instruction 29105: 18.0975% +Rate for instruction 29106: 18.0986% +Rate for instruction 29107: 18.0994% +Rate for instruction 29108: 18.1001% +Rate for instruction 29109: 18.1002% +Rate for instruction 29110: 18.1011% +Rate for instruction 29111: 18.102% +Rate for instruction 29112: 18.1028% +Rate for instruction 29113: 18.1024% +Rate for instruction 29114: 18.1024% +Rate for instruction 29115: 18.1021% +Rate for instruction 29116: 18.1019% +Rate for instruction 29117: 18.1018% +Rate for instruction 29118: 18.1017% +Rate for instruction 29119: 18.1018% +Rate for instruction 29120: 18.1013% +Rate for instruction 29121: 18.1012% +Rate for instruction 29122: 18.1012% +Rate for instruction 29123: 18.1011% +Rate for instruction 29124: 18.1008% +Rate for instruction 29125: 18.1004% +Rate for instruction 29126: 18.1003% +Rate for instruction 29127: 18.1011% +Rate for instruction 29128: 18.1007% +Rate for instruction 29129: 18.1007% +Rate for instruction 29130: 18.1002% +Rate for instruction 29131: 18.101% +Rate for instruction 29132: 18.1005% +Rate for instruction 29133: 18.1014% +Rate for instruction 29134: 18.1022% +Rate for instruction 29135: 18.1029% +Rate for instruction 29136: 18.1032% +Rate for instruction 29137: 18.1034% +Rate for instruction 29138: 18.1033% +Rate for instruction 29139: 18.1031% +Rate for instruction 29140: 18.103% +Rate for instruction 29141: 18.1034% +Rate for instruction 29142: 18.1034% +Rate for instruction 29143: 18.1031% +Rate for instruction 29144: 18.1026% +Rate for instruction 29145: 18.1025% +Rate for instruction 29146: 18.102% +Rate for instruction 29147: 18.1017% +Rate for instruction 29148: 18.1012% +Rate for instruction 29149: 18.1009% +Rate for instruction 29150: 18.101% +Rate for instruction 29151: 18.1006% +Rate for instruction 29152: 18.1001% +Rate for instruction 29153: 18.1002% +Rate for instruction 29154: 18.1005% +Rate for instruction 29155: 18.1008% +Rate for instruction 29156: 18.1008% +Rate for instruction 29157: 18.1006% +Rate for instruction 29158: 18.1004% +Rate for instruction 29159: 18.1001% +Rate for instruction 29160: 18.1003% +Rate for instruction 29161: 18.1001% +Rate for instruction 29162: 18.0996% +Rate for instruction 29163: 18.0991% +Rate for instruction 29164: 18.0987% +Rate for instruction 29165: 18.0984% +Rate for instruction 29166: 18.0979% +Rate for instruction 29167: 18.0981% +Rate for instruction 29168: 18.098% +Rate for instruction 29169: 18.0976% +Rate for instruction 29170: 18.0977% +Rate for instruction 29171: 18.0978% +Rate for instruction 29172: 18.0979% +Rate for instruction 29173: 18.098% +Rate for instruction 29174: 18.0985% +Rate for instruction 29175: 18.0983% +Rate for instruction 29176: 18.0983% +Rate for instruction 29177: 18.0979% +Rate for instruction 29178: 18.0976% +Rate for instruction 29179: 18.0971% +Rate for instruction 29180: 18.0969% +Rate for instruction 29181: 18.097% +Rate for instruction 29182: 18.0972% +Rate for instruction 29183: 18.0972% +Rate for instruction 29184: 18.0968% +Rate for instruction 29185: 18.0968% +Rate for instruction 29186: 18.0968% +Rate for instruction 29187: 18.0969% +Rate for instruction 29188: 18.0964% +Rate for instruction 29189: 18.0966% +Rate for instruction 29190: 18.0962% +Rate for instruction 29191: 18.096% +Rate for instruction 29192: 18.0958% +Rate for instruction 29193: 18.0958% +Rate for instruction 29194: 18.0957% +Rate for instruction 29195: 18.0953% +Rate for instruction 29196: 18.0954% +Rate for instruction 29197: 18.0953% +Rate for instruction 29198: 18.0955% +Rate for instruction 29199: 18.0954% +Rate for instruction 29200: 18.0953% +Rate for instruction 29201: 18.0956% +Rate for instruction 29202: 18.0952% +Rate for instruction 29203: 18.0949% +Rate for instruction 29204: 18.0946% +Rate for instruction 29205: 18.0947% +Rate for instruction 29206: 18.0946% +Rate for instruction 29207: 18.0944% +Rate for instruction 29208: 18.0941% +Rate for instruction 29209: 18.0939% +Rate for instruction 29210: 18.0934% +Rate for instruction 29211: 18.0933% +Rate for instruction 29212: 18.0931% +Rate for instruction 29213: 18.093% +Rate for instruction 29214: 18.0927% +Rate for instruction 29215: 18.0927% +Rate for instruction 29216: 18.0922% +Rate for instruction 29217: 18.0921% +Rate for instruction 29218: 18.0919% +Rate for instruction 29219: 18.0921% +Rate for instruction 29220: 18.0917% +Rate for instruction 29221: 18.0916% +Rate for instruction 29222: 18.092% +Rate for instruction 29223: 18.0923% +Rate for instruction 29224: 18.092% +Rate for instruction 29225: 18.092% +Rate for instruction 29226: 18.0922% +Rate for instruction 29227: 18.0924% +Rate for instruction 29228: 18.0923% +Rate for instruction 29229: 18.0924% +Rate for instruction 29230: 18.092% +Rate for instruction 29231: 18.0923% +Rate for instruction 29232: 18.0924% +Rate for instruction 29233: 18.0926% +Rate for instruction 29234: 18.093% +Rate for instruction 29235: 18.0937% +Rate for instruction 29236: 18.0943% +Rate for instruction 29237: 18.0946% +Rate for instruction 29238: 18.095% +Rate for instruction 29239: 18.0951% +Rate for instruction 29240: 18.0947% +Rate for instruction 29241: 18.0945% +Rate for instruction 29242: 18.0944% +Rate for instruction 29243: 18.0943% +Rate for instruction 29244: 18.0946% +Rate for instruction 29245: 18.0953% +Rate for instruction 29246: 18.0955% +Rate for instruction 29247: 18.0958% +Rate for instruction 29248: 18.0965% +Rate for instruction 29249: 18.0973% +Rate for instruction 29250: 18.098% +Rate for instruction 29251: 18.0984% +Rate for instruction 29252: 18.0985% +Rate for instruction 29253: 18.0985% +Rate for instruction 29254: 18.0996% +Rate for instruction 29255: 18.1004% +Rate for instruction 29256: 18.1001% +Rate for instruction 29257: 18.0997% +Rate for instruction 29258: 18.0992% +Rate for instruction 29259: 18.0989% +Rate for instruction 29260: 18.099% +Rate for instruction 29261: 18.0992% +Rate for instruction 29262: 18.099% +Rate for instruction 29263: 18.0989% +Rate for instruction 29264: 18.0988% +Rate for instruction 29265: 18.0983% +Rate for instruction 29266: 18.0986% +Rate for instruction 29267: 18.0985% +Rate for instruction 29268: 18.0986% +Rate for instruction 29269: 18.0985% +Rate for instruction 29270: 18.0986% +Rate for instruction 29271: 18.0993% +Rate for instruction 29272: 18.099% +Rate for instruction 29273: 18.099% +Rate for instruction 29274: 18.0985% +Rate for instruction 29275: 18.098% +Rate for instruction 29276: 18.0987% +Rate for instruction 29277: 18.0988% +Rate for instruction 29278: 18.0986% +Rate for instruction 29279: 18.0989% +Rate for instruction 29280: 18.0992% +Rate for instruction 29281: 18.0992% +Rate for instruction 29282: 18.099% +Rate for instruction 29283: 18.0991% +Rate for instruction 29284: 18.0988% +Rate for instruction 29285: 18.0997% +Rate for instruction 29286: 18.1003% +Rate for instruction 29287: 18.1006% +Rate for instruction 29288: 18.1008% +Rate for instruction 29289: 18.1011% +Rate for instruction 29290: 18.1011% +Rate for instruction 29291: 18.1017% +Rate for instruction 29292: 18.1025% +Rate for instruction 29293: 18.1031% +Rate for instruction 29294: 18.1034% +Rate for instruction 29295: 18.1038% +Rate for instruction 29296: 18.1044% +Rate for instruction 29297: 18.1044% +Rate for instruction 29298: 18.1043% +Rate for instruction 29299: 18.104% +Rate for instruction 29300: 18.1043% +Rate for instruction 29301: 18.1044% +Rate for instruction 29302: 18.1047% +Rate for instruction 29303: 18.1044% +Rate for instruction 29304: 18.1039% +Rate for instruction 29305: 18.1037% +Rate for instruction 29306: 18.1032% +Rate for instruction 29307: 18.1028% +Rate for instruction 29308: 18.1023% +Rate for instruction 29309: 18.1032% +Rate for instruction 29310: 18.104% +Rate for instruction 29311: 18.1035% +Rate for instruction 29312: 18.103% +Rate for instruction 29313: 18.1032% +Rate for instruction 29314: 18.1032% +Rate for instruction 29315: 18.103% +Rate for instruction 29316: 18.1028% +Rate for instruction 29317: 18.1027% +Rate for instruction 29318: 18.1025% +Rate for instruction 29319: 18.1024% +Rate for instruction 29320: 18.1019% +Rate for instruction 29321: 18.1015% +Rate for instruction 29322: 18.1013% +Rate for instruction 29323: 18.1023% +Rate for instruction 29324: 18.1028% +Rate for instruction 29325: 18.1026% +Rate for instruction 29326: 18.1028% +Rate for instruction 29327: 18.1028% +Rate for instruction 29328: 18.1026% +Rate for instruction 29329: 18.1025% +Rate for instruction 29330: 18.1029% +Rate for instruction 29331: 18.103% +Rate for instruction 29332: 18.1025% +Rate for instruction 29333: 18.1028% +Rate for instruction 29334: 18.1026% +Rate for instruction 29335: 18.1029% +Rate for instruction 29336: 18.1028% +Rate for instruction 29337: 18.1028% +Rate for instruction 29338: 18.103% +Rate for instruction 29339: 18.1034% +Rate for instruction 29340: 18.1038% +Rate for instruction 29341: 18.104% +Rate for instruction 29342: 18.1035% +Rate for instruction 29343: 18.103% +Rate for instruction 29344: 18.1031% +Rate for instruction 29345: 18.1031% +Rate for instruction 29346: 18.1033% +Rate for instruction 29347: 18.1036% +Rate for instruction 29348: 18.1034% +Rate for instruction 29349: 18.103% +Rate for instruction 29350: 18.1029% +Rate for instruction 29351: 18.1027% +Rate for instruction 29352: 18.1022% +Rate for instruction 29353: 18.102% +Rate for instruction 29354: 18.1018% +Rate for instruction 29355: 18.1015% +Rate for instruction 29356: 18.102% +Rate for instruction 29357: 18.1025% +Rate for instruction 29358: 18.102% +Rate for instruction 29359: 18.1019% +Rate for instruction 29360: 18.1016% +Rate for instruction 29361: 18.1015% +Rate for instruction 29362: 18.1017% +Rate for instruction 29363: 18.1017% +Rate for instruction 29364: 18.1016% +Rate for instruction 29365: 18.1017% +Rate for instruction 29366: 18.102% +Rate for instruction 29367: 18.1017% +Rate for instruction 29368: 18.1015% +Rate for instruction 29369: 18.1017% +Rate for instruction 29370: 18.1017% +Rate for instruction 29371: 18.1018% +Rate for instruction 29372: 18.1017% +Rate for instruction 29373: 18.1018% +Rate for instruction 29374: 18.102% +Rate for instruction 29375: 18.102% +Rate for instruction 29376: 18.1018% +Rate for instruction 29377: 18.1013% +Rate for instruction 29378: 18.1014% +Rate for instruction 29379: 18.1011% +Rate for instruction 29380: 18.1014% +Rate for instruction 29381: 18.1012% +Rate for instruction 29382: 18.101% +Rate for instruction 29383: 18.1013% +Rate for instruction 29384: 18.1008% +Rate for instruction 29385: 18.1005% +Rate for instruction 29386: 18.1002% +Rate for instruction 29387: 18.1004% +Rate for instruction 29388: 18.1008% +Rate for instruction 29389: 18.1009% +Rate for instruction 29390: 18.1005% +Rate for instruction 29391: 18.1004% +Rate for instruction 29392: 18.1007% +Rate for instruction 29393: 18.1002% +Rate for instruction 29394: 18.1004% +Rate for instruction 29395: 18.1004% +Rate for instruction 29396: 18.1006% +Rate for instruction 29397: 18.1009% +Rate for instruction 29398: 18.101% +Rate for instruction 29399: 18.1006% +Rate for instruction 29400: 18.1006% +Rate for instruction 29401: 18.1003% +Rate for instruction 29402: 18.1002% +Rate for instruction 29403: 18.0997% +Rate for instruction 29404: 18.1001% +Rate for instruction 29405: 18.1002% +Rate for instruction 29406: 18.0997% +Rate for instruction 29407: 18.0995% +Rate for instruction 29408: 18.0992% +Rate for instruction 29409: 18.0997% +Rate for instruction 29410: 18.0995% +Rate for instruction 29411: 18.1007% +Rate for instruction 29412: 18.1006% +Rate for instruction 29413: 18.1013% +Rate for instruction 29414: 18.1013% +Rate for instruction 29415: 18.1019% +Rate for instruction 29416: 18.1024% +Rate for instruction 29417: 18.1029% +Rate for instruction 29418: 18.1025% +Rate for instruction 29419: 18.1031% +Rate for instruction 29420: 18.1027% +Rate for instruction 29421: 18.1034% +Rate for instruction 29422: 18.1031% +Rate for instruction 29423: 18.1032% +Rate for instruction 29424: 18.1042% +Rate for instruction 29425: 18.1053% +Rate for instruction 29426: 18.1061% +Rate for instruction 29427: 18.1069% +Rate for instruction 29428: 18.1076% +Rate for instruction 29429: 18.1084% +Rate for instruction 29430: 18.1085% +Rate for instruction 29431: 18.1081% +Rate for instruction 29432: 18.1083% +Rate for instruction 29433: 18.108% +Rate for instruction 29434: 18.1077% +Rate for instruction 29435: 18.1072% +Rate for instruction 29436: 18.1072% +Rate for instruction 29437: 18.1072% +Rate for instruction 29438: 18.1069% +Rate for instruction 29439: 18.1072% +Rate for instruction 29440: 18.1071% +Rate for instruction 29441: 18.1073% +Rate for instruction 29442: 18.107% +Rate for instruction 29443: 18.107% +Rate for instruction 29444: 18.1072% +Rate for instruction 29445: 18.1068% +Rate for instruction 29446: 18.1068% +Rate for instruction 29447: 18.1069% +Rate for instruction 29448: 18.1069% +Rate for instruction 29449: 18.1071% +Rate for instruction 29450: 18.1066% +Rate for instruction 29451: 18.1065% +Rate for instruction 29452: 18.1062% +Rate for instruction 29453: 18.1057% +Rate for instruction 29454: 18.1053% +Rate for instruction 29455: 18.1058% +Rate for instruction 29456: 18.1054% +Rate for instruction 29457: 18.1061% +Rate for instruction 29458: 18.1057% +Rate for instruction 29459: 18.1056% +Rate for instruction 29460: 18.1061% +Rate for instruction 29461: 18.1064% +Rate for instruction 29462: 18.1068% +Rate for instruction 29463: 18.1072% +Rate for instruction 29464: 18.1071% +Rate for instruction 29465: 18.1077% +Rate for instruction 29466: 18.1076% +Rate for instruction 29467: 18.1074% +Rate for instruction 29468: 18.107% +Rate for instruction 29469: 18.1065% +Rate for instruction 29470: 18.1062% +Rate for instruction 29471: 18.106% +Rate for instruction 29472: 18.1055% +Rate for instruction 29473: 18.1051% +Rate for instruction 29474: 18.1047% +Rate for instruction 29475: 18.105% +Rate for instruction 29476: 18.1053% +Rate for instruction 29477: 18.1048% +Rate for instruction 29478: 18.1045% +Rate for instruction 29479: 18.1041% +Rate for instruction 29480: 18.1037% +Rate for instruction 29481: 18.1032% +Rate for instruction 29482: 18.1038% +Rate for instruction 29483: 18.1043% +Rate for instruction 29484: 18.1049% +Rate for instruction 29485: 18.1048% +Rate for instruction 29486: 18.1054% +Rate for instruction 29487: 18.105% +Rate for instruction 29488: 18.1048% +Rate for instruction 29489: 18.1044% +Rate for instruction 29490: 18.105% +Rate for instruction 29491: 18.1057% +Rate for instruction 29492: 18.1052% +Rate for instruction 29493: 18.1056% +Rate for instruction 29494: 18.1053% +Rate for instruction 29495: 18.1048% +Rate for instruction 29496: 18.1044% +Rate for instruction 29497: 18.1047% +Rate for instruction 29498: 18.1043% +Rate for instruction 29499: 18.1042% +Rate for instruction 29500: 18.1039% +Rate for instruction 29501: 18.1037% +Rate for instruction 29502: 18.1034% +Rate for instruction 29503: 18.1035% +Rate for instruction 29504: 18.104% +Rate for instruction 29505: 18.1041% +Rate for instruction 29506: 18.1037% +Rate for instruction 29507: 18.1036% +Rate for instruction 29508: 18.1037% +Rate for instruction 29509: 18.1035% +Rate for instruction 29510: 18.1039% +Rate for instruction 29511: 18.1045% +Rate for instruction 29512: 18.104% +Rate for instruction 29513: 18.1042% +Rate for instruction 29514: 18.1037% +Rate for instruction 29515: 18.1041% +Rate for instruction 29516: 18.1042% +Rate for instruction 29517: 18.1043% +Rate for instruction 29518: 18.1048% +Rate for instruction 29519: 18.1056% +Rate for instruction 29520: 18.1064% +Rate for instruction 29521: 18.1061% +Rate for instruction 29522: 18.1064% +Rate for instruction 29523: 18.1065% +Rate for instruction 29524: 18.1068% +Rate for instruction 29525: 18.1074% +Rate for instruction 29526: 18.1074% +Rate for instruction 29527: 18.1073% +Rate for instruction 29528: 18.1075% +Rate for instruction 29529: 18.107% +Rate for instruction 29530: 18.1067% +Rate for instruction 29531: 18.1067% +Rate for instruction 29532: 18.1067% +Rate for instruction 29533: 18.1065% +Rate for instruction 29534: 18.1071% +Rate for instruction 29535: 18.1071% +Rate for instruction 29536: 18.1081% +Rate for instruction 29537: 18.1077% +Rate for instruction 29538: 18.1077% +Rate for instruction 29539: 18.1083% +Rate for instruction 29540: 18.1079% +Rate for instruction 29541: 18.1075% +Rate for instruction 29542: 18.1078% +Rate for instruction 29543: 18.1077% +Rate for instruction 29544: 18.1075% +Rate for instruction 29545: 18.1071% +Rate for instruction 29546: 18.1069% +Rate for instruction 29547: 18.107% +Rate for instruction 29548: 18.107% +Rate for instruction 29549: 18.1075% +Rate for instruction 29550: 18.107% +Rate for instruction 29551: 18.1068% +Rate for instruction 29552: 18.1079% +Rate for instruction 29553: 18.1088% +Rate for instruction 29554: 18.1089% +Rate for instruction 29555: 18.1092% +Rate for instruction 29556: 18.1089% +Rate for instruction 29557: 18.1092% +Rate for instruction 29558: 18.1094% +Rate for instruction 29559: 18.11% +Rate for instruction 29560: 18.1095% +Rate for instruction 29561: 18.1095% +Rate for instruction 29562: 18.1098% +Rate for instruction 29563: 18.1105% +Rate for instruction 29564: 18.1111% +Rate for instruction 29565: 18.112% +Rate for instruction 29566: 18.1126% +Rate for instruction 29567: 18.1124% +Rate for instruction 29568: 18.1121% +Rate for instruction 29569: 18.1118% +Rate for instruction 29570: 18.1117% +Rate for instruction 29571: 18.1116% +Rate for instruction 29572: 18.1114% +Rate for instruction 29573: 18.1114% +Rate for instruction 29574: 18.1113% +Rate for instruction 29575: 18.1115% +Rate for instruction 29576: 18.1114% +Rate for instruction 29577: 18.1117% +Rate for instruction 29578: 18.1117% +Rate for instruction 29579: 18.1118% +Rate for instruction 29580: 18.1118% +Rate for instruction 29581: 18.1121% +Rate for instruction 29582: 18.1119% +Rate for instruction 29583: 18.1117% +Rate for instruction 29584: 18.1118% +Rate for instruction 29585: 18.112% +Rate for instruction 29586: 18.1122% +Rate for instruction 29587: 18.1122% +Rate for instruction 29588: 18.1125% +Rate for instruction 29589: 18.1125% +Rate for instruction 29590: 18.1134% +Rate for instruction 29591: 18.1138% +Rate for instruction 29592: 18.1133% +Rate for instruction 29593: 18.1128% +Rate for instruction 29594: 18.113% +Rate for instruction 29595: 18.1125% +Rate for instruction 29596: 18.1129% +Rate for instruction 29597: 18.1137% +Rate for instruction 29598: 18.1143% +Rate for instruction 29599: 18.1141% +Rate for instruction 29600: 18.114% +Rate for instruction 29601: 18.1135% +Rate for instruction 29602: 18.1138% +Rate for instruction 29603: 18.1133% +Rate for instruction 29604: 18.1139% +Rate for instruction 29605: 18.1135% +Rate for instruction 29606: 18.1133% +Rate for instruction 29607: 18.1136% +Rate for instruction 29608: 18.1138% +Rate for instruction 29609: 18.1136% +Rate for instruction 29610: 18.1131% +Rate for instruction 29611: 18.1127% +Rate for instruction 29612: 18.1122% +Rate for instruction 29613: 18.1127% +Rate for instruction 29614: 18.1122% +Rate for instruction 29615: 18.1118% +Rate for instruction 29616: 18.1119% +Rate for instruction 29617: 18.1115% +Rate for instruction 29618: 18.111% +Rate for instruction 29619: 18.1108% +Rate for instruction 29620: 18.1103% +Rate for instruction 29621: 18.11% +Rate for instruction 29622: 18.1095% +Rate for instruction 29623: 18.1091% +Rate for instruction 29624: 18.1087% +Rate for instruction 29625: 18.1082% +Rate for instruction 29626: 18.1081% +Rate for instruction 29627: 18.1084% +Rate for instruction 29628: 18.1079% +Rate for instruction 29629: 18.1082% +Rate for instruction 29630: 18.1079% +Rate for instruction 29631: 18.1074% +Rate for instruction 29632: 18.1073% +Rate for instruction 29633: 18.1081% +Rate for instruction 29634: 18.1077% +Rate for instruction 29635: 18.1079% +Rate for instruction 29636: 18.1077% +Rate for instruction 29637: 18.1076% +Rate for instruction 29638: 18.1076% +Rate for instruction 29639: 18.1072% +Rate for instruction 29640: 18.1069% +Rate for instruction 29641: 18.1071% +Rate for instruction 29642: 18.107% +Rate for instruction 29643: 18.1065% +Rate for instruction 29644: 18.1062% +Rate for instruction 29645: 18.1061% +Rate for instruction 29646: 18.106% +Rate for instruction 29647: 18.1055% +Rate for instruction 29648: 18.1056% +Rate for instruction 29649: 18.1055% +Rate for instruction 29650: 18.1056% +Rate for instruction 29651: 18.1054% +Rate for instruction 29652: 18.1049% +Rate for instruction 29653: 18.1047% +Rate for instruction 29654: 18.1051% +Rate for instruction 29655: 18.1052% +Rate for instruction 29656: 18.1049% +Rate for instruction 29657: 18.1051% +Rate for instruction 29658: 18.1049% +Rate for instruction 29659: 18.1049% +Rate for instruction 29660: 18.1045% +Rate for instruction 29661: 18.1045% +Rate for instruction 29662: 18.1041% +Rate for instruction 29663: 18.1037% +Rate for instruction 29664: 18.1036% +Rate for instruction 29665: 18.1033% +Rate for instruction 29666: 18.103% +Rate for instruction 29667: 18.1025% +Rate for instruction 29668: 18.1024% +Rate for instruction 29669: 18.1019% +Rate for instruction 29670: 18.1024% +Rate for instruction 29671: 18.1021% +Rate for instruction 29672: 18.1018% +Rate for instruction 29673: 18.1021% +Rate for instruction 29674: 18.1017% +Rate for instruction 29675: 18.1022% +Rate for instruction 29676: 18.1023% +Rate for instruction 29677: 18.1025% +Rate for instruction 29678: 18.1028% +Rate for instruction 29679: 18.1023% +Rate for instruction 29680: 18.1027% +Rate for instruction 29681: 18.1029% +Rate for instruction 29682: 18.1032% +Rate for instruction 29683: 18.1029% +Rate for instruction 29684: 18.1032% +Rate for instruction 29685: 18.1031% +Rate for instruction 29686: 18.1027% +Rate for instruction 29687: 18.1031% +Rate for instruction 29688: 18.1033% +Rate for instruction 29689: 18.1031% +Rate for instruction 29690: 18.103% +Rate for instruction 29691: 18.1033% +Rate for instruction 29692: 18.1035% +Rate for instruction 29693: 18.1038% +Rate for instruction 29694: 18.1038% +Rate for instruction 29695: 18.1034% +Rate for instruction 29696: 18.1032% +Rate for instruction 29697: 18.1033% +Rate for instruction 29698: 18.103% +Rate for instruction 29699: 18.103% +Rate for instruction 29700: 18.1026% +Rate for instruction 29701: 18.1025% +Rate for instruction 29702: 18.1024% +Rate for instruction 29703: 18.1028% +Rate for instruction 29704: 18.1024% +Rate for instruction 29705: 18.1021% +Rate for instruction 29706: 18.1021% +Rate for instruction 29707: 18.1018% +Rate for instruction 29708: 18.1019% +Rate for instruction 29709: 18.1024% +Rate for instruction 29710: 18.1032% +Rate for instruction 29711: 18.1033% +Rate for instruction 29712: 18.1028% +Rate for instruction 29713: 18.1037% +Rate for instruction 29714: 18.1033% +Rate for instruction 29715: 18.1037% +Rate for instruction 29716: 18.1042% +Rate for instruction 29717: 18.1049% +Rate for instruction 29718: 18.1045% +Rate for instruction 29719: 18.1046% +Rate for instruction 29720: 18.1047% +Rate for instruction 29721: 18.1042% +Rate for instruction 29722: 18.1042% +Rate for instruction 29723: 18.1041% +Rate for instruction 29724: 18.1042% +Rate for instruction 29725: 18.1042% +Rate for instruction 29726: 18.1042% +Rate for instruction 29727: 18.1041% +Rate for instruction 29728: 18.1042% +Rate for instruction 29729: 18.1046% +Rate for instruction 29730: 18.1048% +Rate for instruction 29731: 18.1043% +Rate for instruction 29732: 18.1041% +Rate for instruction 29733: 18.1041% +Rate for instruction 29734: 18.1047% +Rate for instruction 29735: 18.1042% +Rate for instruction 29736: 18.104% +Rate for instruction 29737: 18.1035% +Rate for instruction 29738: 18.1039% +Rate for instruction 29739: 18.1045% +Rate for instruction 29740: 18.1053% +Rate for instruction 29741: 18.1053% +Rate for instruction 29742: 18.105% +Rate for instruction 29743: 18.105% +Rate for instruction 29744: 18.1047% +Rate for instruction 29745: 18.1046% +Rate for instruction 29746: 18.1041% +Rate for instruction 29747: 18.104% +Rate for instruction 29748: 18.104% +Rate for instruction 29749: 18.1047% +Rate for instruction 29750: 18.1051% +Rate for instruction 29751: 18.1058% +Rate for instruction 29752: 18.1053% +Rate for instruction 29753: 18.1049% +Rate for instruction 29754: 18.1044% +Rate for instruction 29755: 18.1044% +Rate for instruction 29756: 18.1039% +Rate for instruction 29757: 18.1036% +Rate for instruction 29758: 18.1031% +Rate for instruction 29759: 18.1034% +Rate for instruction 29760: 18.1029% +Rate for instruction 29761: 18.1025% +Rate for instruction 29762: 18.1025% +Rate for instruction 29763: 18.1024% +Rate for instruction 29764: 18.1021% +Rate for instruction 29765: 18.1026% +Rate for instruction 29766: 18.1033% +Rate for instruction 29767: 18.1038% +Rate for instruction 29768: 18.1043% +Rate for instruction 29769: 18.1038% +Rate for instruction 29770: 18.1034% +Rate for instruction 29771: 18.1032% +Rate for instruction 29772: 18.1033% +Rate for instruction 29773: 18.1028% +Rate for instruction 29774: 18.1031% +Rate for instruction 29775: 18.1029% +Rate for instruction 29776: 18.1028% +Rate for instruction 29777: 18.1033% +Rate for instruction 29778: 18.1028% +Rate for instruction 29779: 18.1033% +Rate for instruction 29780: 18.1034% +Rate for instruction 29781: 18.1033% +Rate for instruction 29782: 18.1033% +Rate for instruction 29783: 18.1033% +Rate for instruction 29784: 18.104% +Rate for instruction 29785: 18.1048% +Rate for instruction 29786: 18.1055% +Rate for instruction 29787: 18.1059% +Rate for instruction 29788: 18.1055% +Rate for instruction 29789: 18.1056% +Rate for instruction 29790: 18.1055% +Rate for instruction 29791: 18.105% +Rate for instruction 29792: 18.1047% +Rate for instruction 29793: 18.1047% +Rate for instruction 29794: 18.1053% +Rate for instruction 29795: 18.1056% +Rate for instruction 29796: 18.1051% +Rate for instruction 29797: 18.1051% +Rate for instruction 29798: 18.1049% +Rate for instruction 29799: 18.1051% +Rate for instruction 29800: 18.1046% +Rate for instruction 29801: 18.1047% +Rate for instruction 29802: 18.105% +Rate for instruction 29803: 18.1055% +Rate for instruction 29804: 18.1062% +Rate for instruction 29805: 18.1067% +Rate for instruction 29806: 18.1062% +Rate for instruction 29807: 18.1065% +Rate for instruction 29808: 18.1066% +Rate for instruction 29809: 18.1063% +Rate for instruction 29810: 18.1061% +Rate for instruction 29811: 18.106% +Rate for instruction 29812: 18.1063% +Rate for instruction 29813: 18.1067% +Rate for instruction 29814: 18.1065% +Rate for instruction 29815: 18.1061% +Rate for instruction 29816: 18.1065% +Rate for instruction 29817: 18.1072% +Rate for instruction 29818: 18.1071% +Rate for instruction 29819: 18.1081% +Rate for instruction 29820: 18.1077% +Rate for instruction 29821: 18.1082% +Rate for instruction 29822: 18.1084% +Rate for instruction 29823: 18.1082% +Rate for instruction 29824: 18.1078% +Rate for instruction 29825: 18.1073% +Rate for instruction 29826: 18.1069% +Rate for instruction 29827: 18.1077% +Rate for instruction 29828: 18.1085% +Rate for instruction 29829: 18.109% +Rate for instruction 29830: 18.1085% +Rate for instruction 29831: 18.109% +Rate for instruction 29832: 18.1086% +Rate for instruction 29833: 18.1088% +Rate for instruction 29834: 18.1086% +Rate for instruction 29835: 18.1081% +Rate for instruction 29836: 18.1085% +Rate for instruction 29837: 18.1092% +Rate for instruction 29838: 18.1087% +Rate for instruction 29839: 18.1084% +Rate for instruction 29840: 18.1087% +Rate for instruction 29841: 18.1083% +Rate for instruction 29842: 18.1081% +Rate for instruction 29843: 18.1078% +Rate for instruction 29844: 18.1077% +Rate for instruction 29845: 18.1082% diff --git a/ramulator.yaml b/ramulator.yaml index a395471ac6..b7cbe418fd 100755 --- a/ramulator.yaml +++ b/ramulator.yaml @@ -37,4 +37,4 @@ MemorySystem: target_cycle: 0} AddrMapper: - impl: RASL + impl: PBPI_Mapping diff --git a/ramulator2ext/src/addr_mapper/impl/champsim_mappers.cpp b/ramulator2ext/src/addr_mapper/impl/champsim_mappers.cpp index 6abd9da755..6de81688ed 100644 --- a/ramulator2ext/src/addr_mapper/impl/champsim_mappers.cpp +++ b/ramulator2ext/src/addr_mapper/impl/champsim_mappers.cpp @@ -93,6 +93,12 @@ namespace Ramulator{ int m_col_bits_idx = -1; int m_row_bits_idx = -1; + // store the previous address vector + std::vector m_prev_addr_vec; + + // make a vector to store power consumption rates + std::vector power_consumption_rates; + void init() override { }; void setup(IFrontEnd* frontend, IMemorySystem* memory_system) { m_dram = memory_system->get_ifce(); @@ -103,7 +109,7 @@ namespace Ramulator{ m_addr_bits.resize(m_num_levels); for (size_t level = 0; level < m_addr_bits.size(); level++) { m_addr_bits[level] = calc_log2(count[level]); - std::cout << "This is the number of bits in level [" << level << "]: " << m_addr_bits[level] << std::endl; + //std::cout << "This is the number of bits in level [" << level << "]: " << m_addr_bits[level] << std::endl; } // Last (Column) address have the granularity of the prefetch size @@ -121,54 +127,121 @@ namespace Ramulator{ // Assume column is always the last level m_col_bits_idx = m_num_levels - 1; - } + //tot power + std::vector tot_power; + + // initialize the previous address vector with the same size + m_prev_addr_vec.assign(m_num_levels, 0); + } + + // initialize bit counter + int bit_counter = 0; + int num_bits_pc = 0; void apply(Request& req) override { req.addr_vec.resize(m_num_levels, -1); + // initialize xor result to hold power consumption for each level + Addr_t xor_result_power = 0; + + // initialize power_cons to hold the bit changes for each level + std::vector power_vector; + + //retrieve the number of bits for the level currently in + int num_bits = m_addr_bits.size(); + Addr_t col1_bits = 12 - m_tx_offset - m_addr_bits[m_dram->m_levels("bankgroup")] - m_addr_bits[m_dram->m_levels("bank")] - m_addr_bits[m_dram->m_levels("channel")]; - std::cout << "The number of col1_bits [" << col1_bits << "]." << std::endl; + //std::cout << "The number of col1_bits [" << col1_bits << "]." << std::endl; Addr_t col2_bits = m_addr_bits[m_dram->m_levels("column")] - col1_bits; - std::cout << "The number of col2_bits [" << col2_bits << "]." << std::endl; + //std::cout << "The number of col2_bits [" << col2_bits << "]." << std::endl; Addr_t addr = req.addr >> m_tx_offset; - std::cout << "The address is: " << addr << std::endl; + //std::cout << "The address is: " << addr << std::endl; Addr_t xor_bits = req.addr >> 17; - std::cout << "The xor_bits being used: " << xor_bits << std::endl; + //std::cout << "The xor_bits being used: " << xor_bits << std::endl; //channel req.addr_vec[m_dram->m_levels("channel")] = slice_lower_bits(addr, m_addr_bits[m_dram->m_levels("channel")]); - std::cout << "The channel address is: " << req.addr_vec[m_dram->m_levels("channel")] << std::endl; + //std::cout << "The channel address is: " << req.addr_vec[m_dram->m_levels("channel")] << std::endl; //col 1 req.addr_vec[m_dram->m_levels("column")] = slice_lower_bits(addr, col1_bits); - std::cout << "The column address is: " << req.addr_vec[m_dram->m_levels("column")] << std::endl; + //std::cout << "The column address is: " << req.addr_vec[m_dram->m_levels("column")] << std::endl; //bank group and bank if(m_dram->m_organization.count.size() > 5) { int bankgroup_val = slice_lower_bits(addr, m_addr_bits[m_dram->m_levels("bankgroup")]) ^ xor_bits; req.addr_vec[m_dram->m_levels("bankgroup")] = slice_lower_bits(bankgroup_val, m_addr_bits[m_dram->m_levels("bankgroup")]); - std::cout << "After count > 5, bankgroup size is: " << req.addr_vec[m_dram->m_levels("bankgroup")] << std::endl; + //std::cout << "After count > 5, bankgroup size is: " << req.addr_vec[m_dram->m_levels("bankgroup")] << std::endl; int bank_val = slice_lower_bits(addr, m_addr_bits[m_dram->m_levels("bank")]) ^ (xor_bits >> m_addr_bits[m_dram->m_levels("bankgroup")]); req.addr_vec[m_dram->m_levels("bank")] = slice_lower_bits(bank_val,m_addr_bits[m_dram->m_levels("bank")]); - std::cout << "After count > 5, bank size is: " << req.addr_vec[m_dram->m_levels("bank")] << std::endl; + //std::cout << "After count > 5, bank size is: " << req.addr_vec[m_dram->m_levels("bank")] << std::endl; } else { int bank_val = slice_lower_bits(addr, m_addr_bits[m_dram->m_levels("bank")]) ^ xor_bits; req.addr_vec[m_dram->m_levels("bank")] = slice_lower_bits(bank_val, m_addr_bits[m_dram->m_levels("bank")]); - std::cout << "The bankgroup size is: " << req.addr_vec[m_dram->m_levels("bank")] << std::endl; + //std::cout << "The bankgroup size is: " << req.addr_vec[m_dram->m_levels("bank")] << std::endl; } //col 2 req.addr_vec[m_dram->m_levels("column")] += slice_lower_bits(addr, col2_bits) << col1_bits; - std::cout << "The column bits is: " << req.addr_vec[m_dram->m_levels("column")] << std::endl; + //std::cout << "The column bits is: " << req.addr_vec[m_dram->m_levels("column")] << std::endl; //rank req.addr_vec[m_dram->m_levels("rank")] = slice_lower_bits(addr, m_addr_bits[m_dram->m_levels("rank")]); - std::cout << "The rank bits is: " << req.addr_vec[m_dram->m_levels("rank")] << std::endl; + //std::cout << "The rank bits is: " << req.addr_vec[m_dram->m_levels("rank")] << std::endl; //row req.addr_vec[m_dram->m_levels("row")] = slice_lower_bits(addr, m_addr_bits[m_dram->m_levels("row")]); - std::cout << "The row address is: " << req.addr_vec[m_dram->m_levels("row")] << std::endl; - std::cout << std::endl; + //std::cout << "The row address is: " << req.addr_vec[m_dram->m_levels("row")] << std::endl; + //std::cout << std::endl; + + // calculate bit changes for power consumption + for (size_t i = 0; i < m_num_levels; ++i) { + // uncomment for analysis [NOT FOR LONG RUNS] + //std::cout << "The current address for level [" << i << "]: " << req.addr_vec[i] << std::endl; + //std::cout << "The prev address for level [" << i << "]: " << m_prev_addr_vec[i] << std::endl; + xor_result_power |= (req.addr_vec[i] ^ m_prev_addr_vec[i]); + //std::cout << "The xor result: " << xor_result_power << std::endl; + } + //std::cout << std::endl; + // store xor_result into power_vector + power_vector.push_back(xor_result_power); + + + // power consumption ----------------------------------------------------------------------------- + + // convert to binary + std::bitset<64> binary_representation(xor_result_power); + + // count the number of 1s in the xor result + int bit_transitions = std::bitset<64>(xor_result_power).count(); + + //update the total bit counter for transistions and total bits + bit_counter += bit_transitions; + num_bits_pc += m_addr_bits.size(); + + // Cast to float for proper decimal division + double power_consumption_rate = (static_cast(bit_counter) / static_cast(num_bits_pc)) * 100; + + // uncomment this for analysis [NOT FOR LONGER RUNS] + //std::cout << "The power consumption rate: " << std::dec << power_consumption_rate << "%" << std::endl << std::endl; + power_consumption_rates.push_back(power_consumption_rate); + + m_prev_addr_vec.assign(req.addr_vec.begin(), req.addr_vec.end()); + + writePowerConsumptionRatesToFile("power_consumption_rates_PBPI.txt"); + } + + void writePowerConsumptionRatesToFile(const std::string& filename) const { + std::ofstream outFile(filename); // Open the file for writing + + if (outFile.is_open()) { + for (size_t i = 0; i < power_consumption_rates.size(); ++i) { + outFile << "Rate for instruction " << i << ": " << power_consumption_rates[i] << "%" << std::endl; + } + outFile.close(); // Close the file + } else { + std::cerr << "Unable to open file " << filename << std::endl; + } } }; From b911bdb3d416db860ff2bd373e06600c18305b63 Mon Sep 17 00:00:00 2001 From: yanez2001 Date: Mon, 2 Dec 2024 15:26:59 -0600 Subject: [PATCH 10/10] final commit for RASL subsystem --- hammer_test_0_0.hp | 2 +- hammer_test_0_0.hr | 2 +- hammer_test_0_0.log | 233 +- inc/vmem.h | 2 +- power_consumption_rates_rasl.txt | 29848 +--------------- ramulator.yaml | 2 +- .../src/addr_mapper/impl/champsim_mappers.cpp | 14 +- src/vmem.cc | 2 +- 8 files changed, 157 insertions(+), 29948 deletions(-) diff --git a/hammer_test_0_0.hp b/hammer_test_0_0.hp index 3b3541da84..f675cfe132 100644 --- a/hammer_test_0_0.hp +++ b/hammer_test_0_0.hp @@ -1 +1 @@ -0 98 +0 214 diff --git a/hammer_test_0_0.hr b/hammer_test_0_0.hr index e8a13a231e..9fd31fc066 100644 --- a/hammer_test_0_0.hr +++ b/hammer_test_0_0.hr @@ -1 +1 @@ -0 222 +0 296 diff --git a/hammer_test_0_0.log b/hammer_test_0_0.log index de481f138c..41b5ba68eb 100644 --- a/hammer_test_0_0.log +++ b/hammer_test_0_0.log @@ -1,112 +1,157 @@ ROW-HAMMER STATISTICS #################################################################################################### -Row Hammers (READ INSTIGATED): 320 - Normal: 222 Prefetch: 98 +Row Hammers (READ INSTIGATED): 510 + Normal: 296 Prefetch: 214 Row Hammers (WRITE INSTIGATED): 0 Normal: 0 Prefetch: 0 Writeback: 0 -Row Hammers (REFRESH INSTIGATED): 112 -Total Row Hammers: 432 +Row Hammers (REFRESH INSTIGATED): 0 +Total Row Hammers: 510 #################################################################################################### Channels: 1 Ranks: 1 Banks: 16 Rows: 32768 Columns: 1024 -Address Space Used: 0.0162125% +Address Space Used: 0.0247955% #################################################################################################### -Refreshes: 1 +Refreshes: 0 Rows Per Refresh: 4 Refresh Cycles: 0 #################################################################################################### -Victim Reads: 112 +Victim Reads: 0 Victim Writes: 0 -Lost Hammers: 222 - To Refresh: 48 To Access: 174 +Lost Hammers: 0 + To Refresh: 0 To Access: 0 #################################################################################################### Stats by Row - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x7 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (5:1:0) Limit: Access Highest Single-Cycle Hammers(8246)/(Normal:Prefetch:Writeback): 6 (5:1:0) Lost Hammers/(Refresh:Access): 6 (0:6) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x9 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (6:1:0) Limit: Access Highest Single-Cycle Hammers(10994)/(Normal:Prefetch:Writeback): 6 (5:1:0) Lost Hammers/(Refresh:Access): 7 (0:7) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xb Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(7817)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 5 (0:5) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x7 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(7377)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 5 (0:5) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x9 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (3:2:0) Limit: Access Highest Single-Cycle Hammers(6314)/(Normal:Prefetch:Writeback): 5 (3:2:0) Lost Hammers/(Refresh:Access): 5 (0:5) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xb Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (3:1:0) Limit: Access Highest Single-Cycle Hammers(10229)/(Normal:Prefetch:Writeback): 4 (3:1:0) Lost Hammers/(Refresh:Access): 4 (0:4) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x9 Lifetime Hammers/(Normal:Prefetch:Writeback): 9 (5:4:0) Limit: Access Highest Single-Cycle Hammers(13133)/(Normal:Prefetch:Writeback): 4 (1:3:0) Lost Hammers/(Refresh:Access): 9 (0:9) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xa Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (6:2:0) Limit: Access Highest Single-Cycle Hammers(15079)/(Normal:Prefetch:Writeback): 4 (3:1:0) Lost Hammers/(Refresh:Access): 8 (0:8) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x9 Lifetime Hammers/(Normal:Prefetch:Writeback): 11 (9:2:0) Limit: Access Highest Single-Cycle Hammers(8638)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 11 (0:11) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xb Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (4:0:0) Limit: Access Highest Single-Cycle Hammers(9883)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 4 (0:4) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x7 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (3:1:0) Limit: Access Highest Single-Cycle Hammers(6310)/(Normal:Prefetch:Writeback): 4 (3:1:0) Lost Hammers/(Refresh:Access): 4 (0:4) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x7 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (4:0:0) Limit: Access Highest Single-Cycle Hammers(9548)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 4 (0:4) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x8 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (3:1:0) Limit: Access Highest Single-Cycle Hammers(7139)/(Normal:Prefetch:Writeback): 4 (3:1:0) Lost Hammers/(Refresh:Access): 4 (0:4) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xb Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (1:3:0) Limit: Access Highest Single-Cycle Hammers(9629)/(Normal:Prefetch:Writeback): 4 (1:3:0) Lost Hammers/(Refresh:Access): 4 (0:4) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xb Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (3:1:0) Limit: Access Highest Single-Cycle Hammers(8407)/(Normal:Prefetch:Writeback): 4 (3:1:0) Lost Hammers/(Refresh:Access): 4 (0:4) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x9 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (4:4:0) Limit: Access Highest Single-Cycle Hammers(9629)/(Normal:Prefetch:Writeback): 4 (2:2:0) Lost Hammers/(Refresh:Access): 8 (0:8) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x7 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (3:1:0) Limit: Access Highest Single-Cycle Hammers(11887)/(Normal:Prefetch:Writeback): 4 (3:1:0) Lost Hammers/(Refresh:Access): 4 (0:4) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xb Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (1:3:0) Limit: Access Highest Single-Cycle Hammers(9866)/(Normal:Prefetch:Writeback): 3 (1:2:0) Lost Hammers/(Refresh:Access): 4 (0:4) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x7 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (2:1:0) Limit: Access Highest Single-Cycle Hammers(11259)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 3 (0:3) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x8 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (3:1:0) Limit: Access Highest Single-Cycle Hammers(7659)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 4 (0:4) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xa Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (5:1:0) Limit: Access Highest Single-Cycle Hammers(15072)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 6 (0:6) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0xc Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (1:2:0) Limit: Access Highest Single-Cycle Hammers(14935)/(Normal:Prefetch:Writeback): 3 (1:2:0) Lost Hammers/(Refresh:Access): 3 (0:3) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x7 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (1:2:0) Limit: Access Highest Single-Cycle Hammers(6314)/(Normal:Prefetch:Writeback): 3 (1:2:0) Lost Hammers/(Refresh:Access): 3 (0:3) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x9 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(12270)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 5 (0:5) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xb Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (2:1:0) Limit: Access Highest Single-Cycle Hammers(9446)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 3 (0:3) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x7 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (1:2:0) Limit: Access Highest Single-Cycle Hammers(6698)/(Normal:Prefetch:Writeback): 3 (1:2:0) Lost Hammers/(Refresh:Access): 3 (0:3) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x7 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (2:1:0) Limit: Access Highest Single-Cycle Hammers(9948)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 3 (0:3) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x9 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (3:2:0) Limit: Access Highest Single-Cycle Hammers(11759)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 5 (0:5) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xb Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (2:1:0) Limit: Access Highest Single-Cycle Hammers(9191)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 3 (0:3) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x9 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (4:2:0) Limit: Access Highest Single-Cycle Hammers(8407)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 6 (0:6) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x7 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (2:1:0) Limit: Access Highest Single-Cycle Hammers(4379)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 3 (0:3) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xb Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(7538)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 3 (0:3) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x7 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (1:2:0) Limit: Access Highest Single-Cycle Hammers(5575)/(Normal:Prefetch:Writeback): 3 (1:2:0) Lost Hammers/(Refresh:Access): 3 (0:3) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xb Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(8151)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 3 (0:3) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xb Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (2:1:0) Limit: Access Highest Single-Cycle Hammers(8870)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 3 (0:3) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xa Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (3:2:0) Limit: Access Highest Single-Cycle Hammers(15763)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 5 (0:5) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xa Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (4:2:0) Limit: Access Highest Single-Cycle Hammers(15223)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 6 (0:6) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x9 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(12168)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 5 (0:5) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x9 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (3:3:0) Limit: Access Highest Single-Cycle Hammers(14018)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 6 (0:6) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xc Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(18737)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0xa Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (1:4:0) Limit: Access Highest Single-Cycle Hammers(12360)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 5 (0:5) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x9 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (6:1:0) Limit: Access Highest Single-Cycle Hammers(9191)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 7 (0:7) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x9 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (3:3:0) Limit: Access Highest Single-Cycle Hammers(16021)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 6 (0:6) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0xc Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (2:0:0) Limit: Access Highest Single-Cycle Hammers(15763)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 2 (0:2) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xb Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (0:2:0) Limit: Access Highest Single-Cycle Hammers(11666)/(Normal:Prefetch:Writeback): 2 (0:2:0) Lost Hammers/(Refresh:Access): 2 (0:2) - Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x8 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(8574)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 5 (0:5) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x8 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (1:2:0) Limit: Access Highest Single-Cycle Hammers(6604)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 3 (0:3) - Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x7 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(6328)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xa Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (2:2:0) Limit: Access Highest Single-Cycle Hammers(15227)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 4 (0:4) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0xa Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(9940)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 3 (0:3) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x8 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (1:2:0) Limit: Access Highest Single-Cycle Hammers(7056)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 3 (0:3) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xb Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (2:0:0) Limit: Access Highest Single-Cycle Hammers(7821)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 2 (0:2) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xb Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(11759)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xa Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (3:1:0) Limit: Access Highest Single-Cycle Hammers(9697)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 4 (0:4) - Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0xc Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(18429)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x7 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (2:0:0) Limit: Access Highest Single-Cycle Hammers(7990)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 2 (0:2) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x8 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (2:0:0) Limit: Access Highest Single-Cycle Hammers(8722)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 2 (0:2) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xb Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(11340)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0xa Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (4:0:0) Limit: Access Highest Single-Cycle Hammers(5712)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 4 (0:4) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x9 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (2:3:0) Limit: Access Highest Single-Cycle Hammers(14547)/(Normal:Prefetch:Writeback): 2 (0:2:0) Lost Hammers/(Refresh:Access): 5 (0:5) - Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x8 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (4:0:0) Limit: Access Highest Single-Cycle Hammers(7676)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 4 (0:4) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0xa Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (3:1:0) Limit: Access Highest Single-Cycle Hammers(18737)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 4 (0:4) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x9 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(8485)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x9 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(11501)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 5 (0:5) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xa Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(18425)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 5 (0:5) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x7 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(8512)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0xc Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (2:0:0) Limit: Access Highest Single-Cycle Hammers(15844)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 2 (0:2) - Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0xb Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(8485)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x8 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (2:1:0) Limit: Access Highest Single-Cycle Hammers(7299)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 3 (0:3) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x9 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (5:1:0) Limit: Access Highest Single-Cycle Hammers(10963)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 6 (0:6) - Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x8 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (3:1:0) Limit: Access Highest Single-Cycle Hammers(14717)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 4 (0:4) - Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x8 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (2:0:0) Limit: Access Highest Single-Cycle Hammers(6469)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 2 (0:2) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0xc Lifetime Hammers/(Normal:Prefetch:Writeback): 1 (1:0:0) Limit: Access Highest Single-Cycle Hammers(15513)/(Normal:Prefetch:Writeback): 1 (1:0:0) Lost Hammers/(Refresh:Access): 1 (0:1) - Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x8 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (2:1:0) Limit: Access Highest Single-Cycle Hammers(9697)/(Normal:Prefetch:Writeback): 1 (1:0:0) Lost Hammers/(Refresh:Access): 3 (0:3) - Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0xa Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (2:1:0) Limit: Access Highest Single-Cycle Hammers(7299)/(Normal:Prefetch:Writeback): 1 (0:1:0) Lost Hammers/(Refresh:Access): 3 (0:3) - Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x8 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (1:4:0) Limit: Access Highest Single-Cycle Hammers(7983)/(Normal:Prefetch:Writeback): 1 (0:1:0) Lost Hammers/(Refresh:Access): 5 (0:5) - Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0xc Lifetime Hammers/(Normal:Prefetch:Writeback): 1 (1:0:0) Limit: Access Highest Single-Cycle Hammers(18165)/(Normal:Prefetch:Writeback): 1 (1:0:0) Lost Hammers/(Refresh:Access): 1 (0:1) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x8 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (2:0:0) Limit: Access Highest Single-Cycle Hammers(6249)/(Normal:Prefetch:Writeback): 1 (1:0:0) Lost Hammers/(Refresh:Access): 2 (0:2) - Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0xa Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (2:0:0) Limit: Access Highest Single-Cycle Hammers(6249)/(Normal:Prefetch:Writeback): 1 (1:0:0) Lost Hammers/(Refresh:Access): 2 (0:2) - Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x8 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(8566)/(Normal:Prefetch:Writeback): 1 (1:0:0) Lost Hammers/(Refresh:Access): 3 (0:3) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0xc Lifetime Hammers/(Normal:Prefetch:Writeback): 1 (1:0:0) Limit: Access Highest Single-Cycle Hammers(18425)/(Normal:Prefetch:Writeback): 1 (1:0:0) Lost Hammers/(Refresh:Access): 1 (0:1) - Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x7 Lifetime Hammers/(Normal:Prefetch:Writeback): 1 (1:0:0) Limit: Access Highest Single-Cycle Hammers(17846)/(Normal:Prefetch:Writeback): 1 (1:0:0) Lost Hammers/(Refresh:Access): 1 (0:1) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xc Lifetime Hammers/(Normal:Prefetch:Writeback): 1 (1:0:0) Limit: Access Highest Single-Cycle Hammers(18258)/(Normal:Prefetch:Writeback): 1 (1:0:0) Lost Hammers/(Refresh:Access): 1 (0:1) - Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0xa Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (2:0:0) Limit: Access Highest Single-Cycle Hammers(8722)/(Normal:Prefetch:Writeback): 1 (1:0:0) Lost Hammers/(Refresh:Access): 2 (0:2) - Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0xa Lifetime Hammers/(Normal:Prefetch:Writeback): 1 (1:0:0) Limit: Access Highest Single-Cycle Hammers(18258)/(Normal:Prefetch:Writeback): 1 (1:0:0) Lost Hammers/(Refresh:Access): 1 (0:1) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (2:6:0) Limit: Access Highest Single-Cycle Hammers(2243)/(Normal:Prefetch:Writeback): 8 (2:6:0) Lost Hammers/(Refresh:Access): 8 (0:8) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 8 (2:6:0) Limit: Access Highest Single-Cycle Hammers(2243)/(Normal:Prefetch:Writeback): 8 (2:6:0) Lost Hammers/(Refresh:Access): 8 (0:8) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (1:6:0) Limit: Access Highest Single-Cycle Hammers(2995)/(Normal:Prefetch:Writeback): 7 (1:6:0) Lost Hammers/(Refresh:Access): 7 (0:7) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (1:6:0) Limit: Access Highest Single-Cycle Hammers(2694)/(Normal:Prefetch:Writeback): 7 (1:6:0) Lost Hammers/(Refresh:Access): 7 (0:7) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (1:6:0) Limit: Access Highest Single-Cycle Hammers(2995)/(Normal:Prefetch:Writeback): 7 (1:6:0) Lost Hammers/(Refresh:Access): 7 (0:7) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (5:2:0) Limit: Access Highest Single-Cycle Hammers(2679)/(Normal:Prefetch:Writeback): 7 (5:2:0) Lost Hammers/(Refresh:Access): 7 (0:7) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (5:2:0) Limit: Access Highest Single-Cycle Hammers(2679)/(Normal:Prefetch:Writeback): 7 (5:2:0) Lost Hammers/(Refresh:Access): 7 (0:7) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 7 (1:6:0) Limit: Access Highest Single-Cycle Hammers(2694)/(Normal:Prefetch:Writeback): 7 (1:6:0) Lost Hammers/(Refresh:Access): 7 (0:7) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (1:5:0) Limit: Access Highest Single-Cycle Hammers(3037)/(Normal:Prefetch:Writeback): 6 (1:5:0) Lost Hammers/(Refresh:Access): 6 (0:6) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (2:4:0) Limit: Access Highest Single-Cycle Hammers(2197)/(Normal:Prefetch:Writeback): 6 (2:4:0) Lost Hammers/(Refresh:Access): 6 (0:6) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (2:4:0) Limit: Access Highest Single-Cycle Hammers(2982)/(Normal:Prefetch:Writeback): 6 (2:4:0) Lost Hammers/(Refresh:Access): 6 (0:6) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (4:2:0) Limit: Access Highest Single-Cycle Hammers(4001)/(Normal:Prefetch:Writeback): 6 (4:2:0) Lost Hammers/(Refresh:Access): 6 (0:6) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (1:5:0) Limit: Access Highest Single-Cycle Hammers(2235)/(Normal:Prefetch:Writeback): 6 (1:5:0) Lost Hammers/(Refresh:Access): 6 (0:6) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (6:0:0) Limit: Access Highest Single-Cycle Hammers(1576)/(Normal:Prefetch:Writeback): 6 (6:0:0) Lost Hammers/(Refresh:Access): 6 (0:6) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (6:0:0) Limit: Access Highest Single-Cycle Hammers(1576)/(Normal:Prefetch:Writeback): 6 (6:0:0) Lost Hammers/(Refresh:Access): 6 (0:6) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (1:5:0) Limit: Access Highest Single-Cycle Hammers(2235)/(Normal:Prefetch:Writeback): 6 (1:5:0) Lost Hammers/(Refresh:Access): 6 (0:6) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (4:2:0) Limit: Access Highest Single-Cycle Hammers(4001)/(Normal:Prefetch:Writeback): 6 (4:2:0) Lost Hammers/(Refresh:Access): 6 (0:6) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (2:4:0) Limit: Access Highest Single-Cycle Hammers(2197)/(Normal:Prefetch:Writeback): 6 (2:4:0) Lost Hammers/(Refresh:Access): 6 (0:6) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (5:1:0) Limit: Access Highest Single-Cycle Hammers(2649)/(Normal:Prefetch:Writeback): 6 (5:1:0) Lost Hammers/(Refresh:Access): 6 (0:6) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (1:5:0) Limit: Access Highest Single-Cycle Hammers(3037)/(Normal:Prefetch:Writeback): 6 (1:5:0) Lost Hammers/(Refresh:Access): 6 (0:6) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (2:4:0) Limit: Access Highest Single-Cycle Hammers(2176)/(Normal:Prefetch:Writeback): 6 (2:4:0) Lost Hammers/(Refresh:Access): 6 (0:6) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (5:1:0) Limit: Access Highest Single-Cycle Hammers(2649)/(Normal:Prefetch:Writeback): 6 (5:1:0) Lost Hammers/(Refresh:Access): 6 (0:6) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (1:5:0) Limit: Access Highest Single-Cycle Hammers(1869)/(Normal:Prefetch:Writeback): 6 (1:5:0) Lost Hammers/(Refresh:Access): 6 (0:6) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (1:5:0) Limit: Access Highest Single-Cycle Hammers(1869)/(Normal:Prefetch:Writeback): 6 (1:5:0) Lost Hammers/(Refresh:Access): 6 (0:6) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (2:4:0) Limit: Access Highest Single-Cycle Hammers(2176)/(Normal:Prefetch:Writeback): 6 (2:4:0) Lost Hammers/(Refresh:Access): 6 (0:6) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 6 (2:4:0) Limit: Access Highest Single-Cycle Hammers(2982)/(Normal:Prefetch:Writeback): 6 (2:4:0) Lost Hammers/(Refresh:Access): 6 (0:6) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(2751)/(Normal:Prefetch:Writeback): 5 (5:0:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(2105)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(2105)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (3:2:0) Limit: Access Highest Single-Cycle Hammers(1656)/(Normal:Prefetch:Writeback): 5 (3:2:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (3:2:0) Limit: Access Highest Single-Cycle Hammers(1656)/(Normal:Prefetch:Writeback): 5 (3:2:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (1:4:0) Limit: Access Highest Single-Cycle Hammers(2927)/(Normal:Prefetch:Writeback): 5 (1:4:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(2751)/(Normal:Prefetch:Writeback): 5 (5:0:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (1:4:0) Limit: Access Highest Single-Cycle Hammers(2927)/(Normal:Prefetch:Writeback): 5 (1:4:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(1618)/(Normal:Prefetch:Writeback): 5 (5:0:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(1618)/(Normal:Prefetch:Writeback): 5 (5:0:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (1:4:0) Limit: Access Highest Single-Cycle Hammers(2931)/(Normal:Prefetch:Writeback): 5 (1:4:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(2656)/(Normal:Prefetch:Writeback): 5 (5:0:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (5:0:0) Limit: Access Highest Single-Cycle Hammers(2656)/(Normal:Prefetch:Writeback): 5 (5:0:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (2:3:0) Limit: Access Highest Single-Cycle Hammers(2935)/(Normal:Prefetch:Writeback): 5 (2:3:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (2:3:0) Limit: Access Highest Single-Cycle Hammers(2935)/(Normal:Prefetch:Writeback): 5 (2:3:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(1826)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(1826)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (0:5:0) Limit: Access Highest Single-Cycle Hammers(2948)/(Normal:Prefetch:Writeback): 5 (0:5:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (0:5:0) Limit: Access Highest Single-Cycle Hammers(2948)/(Normal:Prefetch:Writeback): 5 (0:5:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(2201)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(2201)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(2690)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (4:1:0) Limit: Access Highest Single-Cycle Hammers(2690)/(Normal:Prefetch:Writeback): 5 (4:1:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 5 (1:4:0) Limit: Access Highest Single-Cycle Hammers(2931)/(Normal:Prefetch:Writeback): 5 (1:4:0) Lost Hammers/(Refresh:Access): 5 (0:5) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (4:0:0) Limit: Access Highest Single-Cycle Hammers(1648)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (4:0:0) Limit: Access Highest Single-Cycle Hammers(1614)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (4:0:0) Limit: Access Highest Single-Cycle Hammers(1614)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (4:0:0) Limit: Access Highest Single-Cycle Hammers(1648)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (0:4:0) Limit: Access Highest Single-Cycle Hammers(3050)/(Normal:Prefetch:Writeback): 4 (0:4:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (0:4:0) Limit: Access Highest Single-Cycle Hammers(3050)/(Normal:Prefetch:Writeback): 4 (0:4:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (0:4:0) Limit: Access Highest Single-Cycle Hammers(3033)/(Normal:Prefetch:Writeback): 4 (0:4:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (3:1:0) Limit: Access Highest Single-Cycle Hammers(2205)/(Normal:Prefetch:Writeback): 4 (3:1:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (3:1:0) Limit: Access Highest Single-Cycle Hammers(1865)/(Normal:Prefetch:Writeback): 4 (3:1:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0x0 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (3:1:0) Limit: Access Highest Single-Cycle Hammers(1865)/(Normal:Prefetch:Writeback): 4 (3:1:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x47 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (0:4:0) Limit: Access Highest Single-Cycle Hammers(2969)/(Normal:Prefetch:Writeback): 4 (0:4:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (0:4:0) Limit: Access Highest Single-Cycle Hammers(2969)/(Normal:Prefetch:Writeback): 4 (0:4:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (3:1:0) Limit: Access Highest Single-Cycle Hammers(2239)/(Normal:Prefetch:Writeback): 4 (3:1:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (3:1:0) Limit: Access Highest Single-Cycle Hammers(2239)/(Normal:Prefetch:Writeback): 4 (3:1:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (4:0:0) Limit: Access Highest Single-Cycle Hammers(2269)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (4:0:0) Limit: Access Highest Single-Cycle Hammers(2269)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (2:2:0) Limit: Access Highest Single-Cycle Hammers(1622)/(Normal:Prefetch:Writeback): 4 (2:2:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (3:1:0) Limit: Access Highest Single-Cycle Hammers(2855)/(Normal:Prefetch:Writeback): 4 (3:1:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (3:1:0) Limit: Access Highest Single-Cycle Hammers(2855)/(Normal:Prefetch:Writeback): 4 (3:1:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (4:0:0) Limit: Access Highest Single-Cycle Hammers(1652)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (4:0:0) Limit: Access Highest Single-Cycle Hammers(1652)/(Normal:Prefetch:Writeback): 4 (4:0:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (2:2:0) Limit: Access Highest Single-Cycle Hammers(1622)/(Normal:Prefetch:Writeback): 4 (2:2:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x49 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (0:4:0) Limit: Access Highest Single-Cycle Hammers(3033)/(Normal:Prefetch:Writeback): 4 (0:4:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 4 (3:1:0) Limit: Access Highest Single-Cycle Hammers(2205)/(Normal:Prefetch:Writeback): 4 (3:1:0) Lost Hammers/(Refresh:Access): 4 (0:4) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (2:1:0) Limit: Access Highest Single-Cycle Hammers(3173)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (2:1:0) Limit: Access Highest Single-Cycle Hammers(5558)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (2:1:0) Limit: Access Highest Single-Cycle Hammers(5558)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (2:1:0) Limit: Access Highest Single-Cycle Hammers(1644)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (2:1:0) Limit: Access Highest Single-Cycle Hammers(1644)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(2914)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(2914)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (1:2:0) Limit: Access Highest Single-Cycle Hammers(3662)/(Normal:Prefetch:Writeback): 3 (1:2:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (1:2:0) Limit: Access Highest Single-Cycle Hammers(3662)/(Normal:Prefetch:Writeback): 3 (1:2:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (2:1:0) Limit: Access Highest Single-Cycle Hammers(3173)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(2290)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0x5 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(2290)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(2034)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(2034)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (2:1:0) Limit: Access Highest Single-Cycle Hammers(1906)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(1808)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0x8 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (3:0:0) Limit: Access Highest Single-Cycle Hammers(1808)/(Normal:Prefetch:Writeback): 3 (3:0:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (2:1:0) Limit: Access Highest Single-Cycle Hammers(1914)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (2:1:0) Limit: Access Highest Single-Cycle Hammers(1914)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0x3 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (2:1:0) Limit: Access Highest Single-Cycle Hammers(1906)/(Normal:Prefetch:Writeback): 3 (2:1:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (0:3:0) Limit: Access Highest Single-Cycle Hammers(4582)/(Normal:Prefetch:Writeback): 3 (0:3:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 3 (0:3:0) Limit: Access Highest Single-Cycle Hammers(4582)/(Normal:Prefetch:Writeback): 3 (0:3:0) Lost Hammers/(Refresh:Access): 3 (0:3) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(4423)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (2:0:0) Limit: Access Highest Single-Cycle Hammers(2303)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(4423)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (2:0:0) Limit: Access Highest Single-Cycle Hammers(1588)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (2:0:0) Limit: Access Highest Single-Cycle Hammers(1588)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(2277)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0xe Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(2277)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (2:0:0) Limit: Access Highest Single-Cycle Hammers(1821)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0x4 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (2:0:0) Limit: Access Highest Single-Cycle Hammers(1821)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (2:0:0) Limit: Access Highest Single-Cycle Hammers(1610)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0x1 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (2:0:0) Limit: Access Highest Single-Cycle Hammers(1610)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (2:0:0) Limit: Access Highest Single-Cycle Hammers(2383)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (2:0:0) Limit: Access Highest Single-Cycle Hammers(5970)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (2:0:0) Limit: Access Highest Single-Cycle Hammers(5970)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (0:2:0) Limit: Access Highest Single-Cycle Hammers(4594)/(Normal:Prefetch:Writeback): 2 (0:2:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (2:0:0) Limit: Access Highest Single-Cycle Hammers(2307)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0xb Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (2:0:0) Limit: Access Highest Single-Cycle Hammers(2307)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0x9 Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (0:2:0) Limit: Access Highest Single-Cycle Hammers(4594)/(Normal:Prefetch:Writeback): 2 (0:2:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (2:0:0) Limit: Access Highest Single-Cycle Hammers(2214)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (2:0:0) Limit: Access Highest Single-Cycle Hammers(2214)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(4091)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0x7 Row: 0x3f Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (2:0:0) Limit: Access Highest Single-Cycle Hammers(2383)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (2:0:0) Limit: Access Highest Single-Cycle Hammers(1584)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (2:0:0) Limit: Access Highest Single-Cycle Hammers(1584)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x57 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(2897)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0xc Row: 0x59 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(2897)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0xd Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (2:0:0) Limit: Access Highest Single-Cycle Hammers(2303)/(Normal:Prefetch:Writeback): 2 (2:0:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0x6 Row: 0x41 Lifetime Hammers/(Normal:Prefetch:Writeback): 2 (1:1:0) Limit: Access Highest Single-Cycle Hammers(4091)/(Normal:Prefetch:Writeback): 2 (1:1:0) Lost Hammers/(Refresh:Access): 2 (0:2) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x61 Lifetime Hammers/(Normal:Prefetch:Writeback): 1 (0:1:0) Limit: Access Highest Single-Cycle Hammers(7675)/(Normal:Prefetch:Writeback): 1 (0:1:0) Lost Hammers/(Refresh:Access): 1 (0:1) + Channel: 0x0 Rank: 0x0 Bank: 0xf Row: 0x5f Lifetime Hammers/(Normal:Prefetch:Writeback): 1 (0:1:0) Limit: Access Highest Single-Cycle Hammers(7675)/(Normal:Prefetch:Writeback): 1 (0:1:0) Lost Hammers/(Refresh:Access): 1 (0:1) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 1 (1:0:0) Limit: Access Highest Single-Cycle Hammers(1898)/(Normal:Prefetch:Writeback): 1 (1:0:0) Lost Hammers/(Refresh:Access): 1 (0:1) + Channel: 0x0 Rank: 0x0 Bank: 0x2 Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 1 (1:0:0) Limit: Access Highest Single-Cycle Hammers(1898)/(Normal:Prefetch:Writeback): 1 (1:0:0) Lost Hammers/(Refresh:Access): 1 (0:1) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x51 Lifetime Hammers/(Normal:Prefetch:Writeback): 1 (1:0:0) Limit: Access Highest Single-Cycle Hammers(1580)/(Normal:Prefetch:Writeback): 1 (1:0:0) Lost Hammers/(Refresh:Access): 1 (0:1) + Channel: 0x0 Rank: 0x0 Bank: 0xa Row: 0x4f Lifetime Hammers/(Normal:Prefetch:Writeback): 1 (1:0:0) Limit: Access Highest Single-Cycle Hammers(1580)/(Normal:Prefetch:Writeback): 1 (1:0:0) Lost Hammers/(Refresh:Access): 1 (0:1) #################################################################################################### diff --git a/inc/vmem.h b/inc/vmem.h index c3aa77d69e..e27c1ebe9a 100644 --- a/inc/vmem.h +++ b/inc/vmem.h @@ -123,4 +123,4 @@ class VirtualMemory std::pair get_pte_pa(uint32_t cpu_num, champsim::page_number vaddr, std::size_t level); }; -#endif +#endif \ No newline at end of file diff --git a/power_consumption_rates_rasl.txt b/power_consumption_rates_rasl.txt index 3623d0de54..8da6378d89 100644 --- a/power_consumption_rates_rasl.txt +++ b/power_consumption_rates_rasl.txt @@ -1,29846 +1,4 @@ Rate for instruction 0: 34.6154% -Rate for instruction 1: 21.1538% -Rate for instruction 2: 15.3846% -Rate for instruction 3: 13.4615% -Rate for instruction 4: 12.3077% -Rate for instruction 5: 11.5385% -Rate for instruction 6: 10.4396% -Rate for instruction 7: 9.61538% -Rate for instruction 8: 9.82906% -Rate for instruction 9: 10.7692% -Rate for instruction 10: 10.8392% -Rate for instruction 11: 12.8205% -Rate for instruction 12: 12.1302% -Rate for instruction 13: 11.8132% -Rate for instruction 14: 13.0769% -Rate for instruction 15: 12.7404% -Rate for instruction 16: 13.5747% -Rate for instruction 17: 14.9573% -Rate for instruction 18: 14.9798% -Rate for instruction 19: 15.1923% -Rate for instruction 20: 15.0183% -Rate for instruction 21: 15.7343% -Rate for instruction 22: 16.2207% -Rate for instruction 23: 16.9872% -Rate for instruction 24: 16.9231% -Rate for instruction 25: 16.4201% -Rate for instruction 26: 17.094% -Rate for instruction 27: 16.8956% -Rate for instruction 28: 17.374% -Rate for instruction 29: 17.0513% -Rate for instruction 30: 17.4938% -Rate for instruction 31: 18.3894% -Rate for instruction 32: 18.8811% -Rate for instruction 33: 19.2308% -Rate for instruction 34: 19.4505% -Rate for instruction 35: 19.5513% -Rate for instruction 36: 19.3347% -Rate for instruction 37: 18.9271% -Rate for instruction 38: 19.6252% -Rate for instruction 39: 20.3846% -Rate for instruction 40: 20.075% -Rate for instruction 41: 19.8718% -Rate for instruction 42: 19.5886% -Rate for instruction 43: 19.9301% -Rate for instruction 44: 20.4274% -Rate for instruction 45: 20.8194% -Rate for instruction 46: 21.0311% -Rate for instruction 47: 20.9936% -Rate for instruction 48: 20.7221% -Rate for instruction 49: 20.3846% -Rate for instruction 50: 20.0603% -Rate for instruction 51: 19.7485% -Rate for instruction 52: 19.521% -Rate for instruction 53: 19.7293% -Rate for instruction 54: 19.8601% -Rate for instruction 55: 19.5742% -Rate for instruction 56: 19.6356% -Rate for instruction 57: 19.496% -Rate for instruction 58: 19.5567% -Rate for instruction 59: 19.4872% -Rate for instruction 60: 19.2938% -Rate for instruction 61: 19.2928% -Rate for instruction 62: 19.2918% -Rate for instruction 63: 19.4111% -Rate for instruction 64: 19.645% -Rate for instruction 65: 19.5221% -Rate for instruction 66: 19.8048% -Rate for instruction 67: 19.8529% -Rate for instruction 68: 19.621% -Rate for instruction 69: 19.6154% -Rate for instruction 70: 19.3933% -Rate for instruction 71: 19.2842% -Rate for instruction 72: 19.0727% -Rate for instruction 73: 19.2827% -Rate for instruction 74: 19.3846% -Rate for instruction 75: 19.5344% -Rate for instruction 76: 19.4306% -Rate for instruction 77: 19.6252% -Rate for instruction 78: 19.6689% -Rate for instruction 79: 19.4712% -Rate for instruction 80: 19.4207% -Rate for instruction 81: 19.3246% -Rate for instruction 82: 19.5088% -Rate for instruction 83: 19.4597% -Rate for instruction 84: 19.3665% -Rate for instruction 85: 19.186% -Rate for instruction 86: 19.0539% -Rate for instruction 87: 18.8811% -Rate for instruction 88: 18.8418% -Rate for instruction 89: 18.6752% -Rate for instruction 90: 18.7658% -Rate for instruction 91: 18.6873% -Rate for instruction 92: 18.5691% -Rate for instruction 93: 18.4124% -Rate for instruction 94: 18.2996% -Rate for instruction 95: 18.149% -Rate for instruction 96: 18.0016% -Rate for instruction 97: 18.0534% -Rate for instruction 98: 17.9099% -Rate for instruction 99: 17.8846% -Rate for instruction 100: 17.8979% -Rate for instruction 101: 17.911% -Rate for instruction 102: 17.8118% -Rate for instruction 103: 17.6775% -Rate for instruction 104: 17.5824% -Rate for instruction 105: 17.598% -Rate for instruction 106: 17.4694% -Rate for instruction 107: 17.4858% -Rate for instruction 108: 17.5018% -Rate for instruction 109: 17.5175% -Rate for instruction 110: 17.5329% -Rate for instruction 111: 17.5137% -Rate for instruction 112: 17.4268% -Rate for instruction 113: 17.3752% -Rate for instruction 114: 17.2575% -Rate for instruction 115: 17.2414% -Rate for instruction 116: 17.1269% -Rate for instruction 117: 17.0469% -Rate for instruction 118: 17.0006% -Rate for instruction 119: 17.1154% -Rate for instruction 120: 17.0057% -Rate for instruction 121: 17.1185% -Rate for instruction 122: 17.1044% -Rate for instruction 123: 16.9975% -Rate for instruction 124: 16.9231% -Rate for instruction 125: 16.8193% -Rate for instruction 126: 16.7777% -Rate for instruction 127: 16.887% -Rate for instruction 128: 16.8157% -Rate for instruction 129: 16.7751% -Rate for instruction 130: 16.7058% -Rate for instruction 131: 16.6667% -Rate for instruction 132: 16.6281% -Rate for instruction 133: 16.791% -Rate for instruction 134: 16.6952% -Rate for instruction 135: 16.7704% -Rate for instruction 136: 16.7883% -Rate for instruction 137: 16.7224% -Rate for instruction 138: 16.7128% -Rate for instruction 139: 16.7582% -Rate for instruction 140: 16.8576% -Rate for instruction 141: 16.766% -Rate for instruction 142: 16.7025% -Rate for instruction 143: 16.6934% -Rate for instruction 144: 16.6844% -Rate for instruction 145: 16.6491% -Rate for instruction 146: 16.6143% -Rate for instruction 147: 16.5541% -Rate for instruction 148: 16.5204% -Rate for instruction 149: 16.4872% -Rate for instruction 150: 16.4544% -Rate for instruction 151: 16.4474% -Rate for instruction 152: 16.4907% -Rate for instruction 153: 16.4585% -Rate for instruction 154: 16.4268% -Rate for instruction 155: 16.5434% -Rate for instruction 156: 16.5115% -Rate for instruction 157: 16.4557% -Rate for instruction 158: 16.5699% -Rate for instruction 159: 16.5385% -Rate for instruction 160: 16.6269% -Rate for instruction 161: 16.7854% -Rate for instruction 162: 16.8712% -Rate for instruction 163: 16.909% -Rate for instruction 164: 16.8998% -Rate for instruction 165: 16.8211% -Rate for instruction 166: 16.8816% -Rate for instruction 167: 16.8956% -Rate for instruction 168: 16.9322% -Rate for instruction 169: 17.0136% -Rate for instruction 170: 17.004% -Rate for instruction 171: 17.0617% -Rate for instruction 172: 17.1854% -Rate for instruction 173: 17.153% -Rate for instruction 174: 17.0769% -Rate for instruction 175: 17.0455% -Rate for instruction 176: 17.123% -Rate for instruction 177: 17.2213% -Rate for instruction 178: 17.1895% -Rate for instruction 179: 17.1795% -Rate for instruction 180: 17.2758% -Rate for instruction 181: 17.2866% -Rate for instruction 182: 17.3813% -Rate for instruction 183: 17.4958% -Rate for instruction 184: 17.5676% -Rate for instruction 185: 17.7419% -Rate for instruction 186: 17.7499% -Rate for instruction 187: 17.6759% -Rate for instruction 188: 17.6435% -Rate for instruction 189: 17.6518% -Rate for instruction 190: 17.7205% -Rate for instruction 191: 17.7083% -Rate for instruction 192: 17.6963% -Rate for instruction 193: 17.7637% -Rate for instruction 194: 17.8107% -Rate for instruction 195: 17.8571% -Rate for instruction 196: 17.8055% -Rate for instruction 197: 17.871% -Rate for instruction 198: 17.9358% -Rate for instruction 199: 18.0577% -Rate for instruction 200: 18.1592% -Rate for instruction 201: 18.0883% -Rate for instruction 202: 18.1319% -Rate for instruction 203: 18.1184% -Rate for instruction 204: 18.1051% -Rate for instruction 205: 18.0358% -Rate for instruction 206: 18.0974% -Rate for instruction 207: 18.0843% -Rate for instruction 208: 18.053% -Rate for instruction 209: 18.0403% -Rate for instruction 210: 18.0824% -Rate for instruction 211: 18.0334% -Rate for instruction 212: 17.9668% -Rate for instruction 213: 17.9188% -Rate for instruction 214: 17.8712% -Rate for instruction 215: 17.8063% -Rate for instruction 216: 17.8306% -Rate for instruction 217: 17.7664% -Rate for instruction 218: 17.7555% -Rate for instruction 219: 17.7273% -Rate for instruction 220: 17.7341% -Rate for instruction 221: 17.6715% -Rate for instruction 222: 17.644% -Rate for instruction 223: 17.5996% -Rate for instruction 224: 17.5726% -Rate for instruction 225: 17.5289% -Rate for instruction 226: 17.4687% -Rate for instruction 227: 17.4426% -Rate for instruction 228: 17.4672% -Rate for instruction 229: 17.4582% -Rate for instruction 230: 17.5325% -Rate for instruction 231: 17.4901% -Rate for instruction 232: 17.4975% -Rate for instruction 233: 17.4885% -Rate for instruction 234: 17.5286% -Rate for instruction 235: 17.4707% -Rate for instruction 236: 17.4619% -Rate for instruction 237: 17.5178% -Rate for instruction 238: 17.4767% -Rate for instruction 239: 17.5321% -Rate for instruction 240: 17.5072% -Rate for instruction 241: 17.4666% -Rate for instruction 242: 17.4581% -Rate for instruction 243: 17.4496% -Rate for instruction 244: 17.4254% -Rate for instruction 245: 17.4171% -Rate for instruction 246: 17.3778% -Rate for instruction 247: 17.3387% -Rate for instruction 248: 17.3309% -Rate for instruction 249: 17.2923% -Rate for instruction 250: 17.2847% -Rate for instruction 251: 17.2924% -Rate for instruction 252: 17.2697% -Rate for instruction 253: 17.2925% -Rate for instruction 254: 17.2398% -Rate for instruction 255: 17.2175% -Rate for instruction 256: 17.1655% -Rate for instruction 257: 17.1884% -Rate for instruction 258: 17.1815% -Rate for instruction 259: 17.1302% -Rate for instruction 260: 17.1824% -Rate for instruction 261: 17.1315% -Rate for instruction 262: 17.1688% -Rate for instruction 263: 17.1183% -Rate for instruction 264: 17.1408% -Rate for instruction 265: 17.2065% -Rate for instruction 266: 17.2429% -Rate for instruction 267: 17.1929% -Rate for instruction 268: 17.2005% -Rate for instruction 269: 17.1652% -Rate for instruction 270: 17.2154% -Rate for instruction 271: 17.1804% -Rate for instruction 272: 17.202% -Rate for instruction 273: 17.2656% -Rate for instruction 274: 17.2587% -Rate for instruction 275: 17.238% -Rate for instruction 276: 17.2036% -Rate for instruction 277: 17.28% -Rate for instruction 278: 17.2594% -Rate for instruction 279: 17.3214% -Rate for instruction 280: 17.3282% -Rate for instruction 281: 17.3759% -Rate for instruction 282: 17.3281% -Rate for instruction 283: 17.2941% -Rate for instruction 284: 17.2605% -Rate for instruction 285: 17.227% -Rate for instruction 286: 17.1804% -Rate for instruction 287: 17.1875% -Rate for instruction 288: 17.1546% -Rate for instruction 289: 17.1353% -Rate for instruction 290: 17.116% -Rate for instruction 291: 17.0706% -Rate for instruction 292: 17.0911% -Rate for instruction 293: 17.1376% -Rate for instruction 294: 17.1317% -Rate for instruction 295: 17.1907% -Rate for instruction 296: 17.2494% -Rate for instruction 297: 17.2948% -Rate for instruction 298: 17.2755% -Rate for instruction 299: 17.3333% -Rate for instruction 300: 17.3013% -Rate for instruction 301: 17.2822% -Rate for instruction 302: 17.2379% -Rate for instruction 303: 17.2065% -Rate for instruction 304: 17.1879% -Rate for instruction 305: 17.1443% -Rate for instruction 306: 17.126% -Rate for instruction 307: 17.1828% -Rate for instruction 308: 17.2392% -Rate for instruction 309: 17.2208% -Rate for instruction 310: 17.1902% -Rate for instruction 311: 17.1844% -Rate for instruction 312: 17.2401% -Rate for instruction 313: 17.3199% -Rate for instruction 314: 17.3504% -Rate for instruction 315: 17.3077% -Rate for instruction 316: 17.3138% -Rate for instruction 317: 17.2714% -Rate for instruction 318: 17.3378% -Rate for instruction 319: 17.3197% -Rate for instruction 320: 17.3616% -Rate for instruction 321: 17.3316% -Rate for instruction 322: 17.3136% -Rate for instruction 323: 17.3789% -Rate for instruction 324: 17.432% -Rate for instruction 325: 17.5083% -Rate for instruction 326: 17.5253% -Rate for instruction 327: 17.5305% -Rate for instruction 328: 17.5357% -Rate for instruction 329: 17.5641% -Rate for instruction 330: 17.604% -Rate for instruction 331: 17.5626% -Rate for instruction 332: 17.556% -Rate for instruction 333: 17.538% -Rate for instruction 334: 17.5201% -Rate for instruction 335: 17.5595% -Rate for instruction 336: 17.5531% -Rate for instruction 337: 17.5353% -Rate for instruction 338: 17.5289% -Rate for instruction 339: 17.5% -Rate for instruction 340: 17.46% -Rate for instruction 341: 17.4426% -Rate for instruction 342: 17.4703% -Rate for instruction 343: 17.4307% -Rate for instruction 344: 17.3913% -Rate for instruction 345: 17.3744% -Rate for instruction 346: 17.3465% -Rate for instruction 347: 17.3077% -Rate for instruction 348: 17.2801% -Rate for instruction 349: 17.2418% -Rate for instruction 350: 17.2693% -Rate for instruction 351: 17.3077% -Rate for instruction 352: 17.2696% -Rate for instruction 353: 17.2425% -Rate for instruction 354: 17.2048% -Rate for instruction 355: 17.1889% -Rate for instruction 356: 17.1515% -Rate for instruction 357: 17.1573% -Rate for instruction 358: 17.1416% -Rate for instruction 359: 17.1368% -Rate for instruction 360: 17.1106% -Rate for instruction 361: 17.1058% -Rate for instruction 362: 17.1011% -Rate for instruction 363: 17.0647% -Rate for instruction 364: 17.1233% -Rate for instruction 365: 17.1921% -Rate for instruction 366: 17.1557% -Rate for instruction 367: 17.1509% -Rate for instruction 368: 17.167% -Rate for instruction 369: 17.183% -Rate for instruction 370: 17.1781% -Rate for instruction 371: 17.1526% -Rate for instruction 372: 17.1272% -Rate for instruction 373: 17.1123% -Rate for instruction 374: 17.1077% -Rate for instruction 375: 17.144% -Rate for instruction 376: 17.1088% -Rate for instruction 377: 17.1652% -Rate for instruction 378: 17.2113% -Rate for instruction 379: 17.1862% -Rate for instruction 380: 17.1613% -Rate for instruction 381: 17.1265% -Rate for instruction 382: 17.1119% -Rate for instruction 383: 17.1174% -Rate for instruction 384: 17.0829% -Rate for instruction 385: 17.0984% -Rate for instruction 386: 17.104% -Rate for instruction 387: 17.0797% -Rate for instruction 388: 17.0852% -Rate for instruction 389: 17.071% -Rate for instruction 390: 17.0765% -Rate for instruction 391: 17.0526% -Rate for instruction 392: 17.0288% -Rate for instruction 393: 17.0148% -Rate for instruction 394: 17.0204% -Rate for instruction 395: 17.0066% -Rate for instruction 396: 16.9928% -Rate for instruction 397: 16.9598% -Rate for instruction 398: 16.9559% -Rate for instruction 399: 16.9808% -Rate for instruction 400: 17.0056% -Rate for instruction 401: 17.0302% -Rate for instruction 402: 17.0834% -Rate for instruction 403: 17.1458% -Rate for instruction 404: 17.1985% -Rate for instruction 405: 17.2414% -Rate for instruction 406: 17.2935% -Rate for instruction 407: 17.336% -Rate for instruction 408: 17.3124% -Rate for instruction 409: 17.2983% -Rate for instruction 410: 17.3217% -Rate for instruction 411: 17.3637% -Rate for instruction 412: 17.331% -Rate for instruction 413: 17.3263% -Rate for instruction 414: 17.3587% -Rate for instruction 415: 17.3262% -Rate for instruction 416: 17.3215% -Rate for instruction 417: 17.3169% -Rate for instruction 418: 17.349% -Rate for instruction 419: 17.3901% -Rate for instruction 420: 17.4219% -Rate for instruction 421: 17.4353% -Rate for instruction 422: 17.4213% -Rate for instruction 423: 17.3893% -Rate for instruction 424: 17.3756% -Rate for instruction 425: 17.3438% -Rate for instruction 426: 17.3122% -Rate for instruction 427: 17.2897% -Rate for instruction 428: 17.2763% -Rate for instruction 429: 17.254% -Rate for instruction 430: 17.2229% -Rate for instruction 431: 17.2098% -Rate for instruction 432: 17.1878% -Rate for instruction 433: 17.1836% -Rate for instruction 434: 17.2149% -Rate for instruction 435: 17.2548% -Rate for instruction 436: 17.2241% -Rate for instruction 437: 17.255% -Rate for instruction 438: 17.2858% -Rate for instruction 439: 17.299% -Rate for instruction 440: 17.3469% -Rate for instruction 441: 17.3686% -Rate for instruction 442: 17.3902% -Rate for instruction 443: 17.377% -Rate for instruction 444: 17.4157% -Rate for instruction 445: 17.4284% -Rate for instruction 446: 17.4152% -Rate for instruction 447: 17.4107% -Rate for instruction 448: 17.4148% -Rate for instruction 449: 17.4103% -Rate for instruction 450: 17.4143% -Rate for instruction 451: 17.4353% -Rate for instruction 452: 17.4393% -Rate for instruction 453: 17.4348% -Rate for instruction 454: 17.4387% -Rate for instruction 455: 17.4173% -Rate for instruction 456: 17.3876% -Rate for instruction 457: 17.3749% -Rate for instruction 458: 17.3454% -Rate for instruction 459: 17.3662% -Rate for instruction 460: 17.3786% -Rate for instruction 461: 17.3826% -Rate for instruction 462: 17.3617% -Rate for instruction 463: 17.3326% -Rate for instruction 464: 17.3284% -Rate for instruction 465: 17.2994% -Rate for instruction 466: 17.2871% -Rate for instruction 467: 17.2748% -Rate for instruction 468: 17.2954% -Rate for instruction 469: 17.3077% -Rate for instruction 470: 17.3363% -Rate for instruction 471: 17.3403% -Rate for instruction 472: 17.3443% -Rate for instruction 473: 17.3483% -Rate for instruction 474: 17.3765% -Rate for instruction 475: 17.3481% -Rate for instruction 476: 17.3601% -Rate for instruction 477: 17.3801% -Rate for instruction 478: 17.4081% -Rate for instruction 479: 17.4279% -Rate for instruction 480: 17.4476% -Rate for instruction 481: 17.4274% -Rate for instruction 482: 17.3993% -Rate for instruction 483: 17.4269% -Rate for instruction 484: 17.4306% -Rate for instruction 485: 17.4501% -Rate for instruction 486: 17.4301% -Rate for instruction 487: 17.4653% -Rate for instruction 488: 17.4375% -Rate for instruction 489: 17.4097% -Rate for instruction 490: 17.3899% -Rate for instruction 491: 17.425% -Rate for instruction 492: 17.3974% -Rate for instruction 493: 17.4089% -Rate for instruction 494: 17.4048% -Rate for instruction 495: 17.4395% -Rate for instruction 496: 17.4199% -Rate for instruction 497: 17.4544% -Rate for instruction 498: 17.458% -Rate for instruction 499: 17.4692% -Rate for instruction 500: 17.442% -Rate for instruction 501: 17.4379% -Rate for instruction 502: 17.4492% -Rate for instruction 503: 17.4679% -Rate for instruction 504: 17.5095% -Rate for instruction 505: 17.4977% -Rate for instruction 506: 17.5239% -Rate for instruction 507: 17.5348% -Rate for instruction 508: 17.5079% -Rate for instruction 509: 17.4962% -Rate for instruction 510: 17.4695% -Rate for instruction 511: 17.4805% -Rate for instruction 512: 17.4539% -Rate for instruction 513: 17.4424% -Rate for instruction 514: 17.4309% -Rate for instruction 515: 17.412% -Rate for instruction 516: 17.4379% -Rate for instruction 517: 17.4265% -Rate for instruction 518: 17.4003% -Rate for instruction 519: 17.4186% -Rate for instruction 520: 17.4147% -Rate for instruction 521: 17.3961% -Rate for instruction 522: 17.3923% -Rate for instruction 523: 17.3738% -Rate for instruction 524: 17.3626% -Rate for instruction 525: 17.3589% -Rate for instruction 526: 17.3405% -Rate for instruction 527: 17.3223% -Rate for instruction 528: 17.2968% -Rate for instruction 529: 17.3077% -Rate for instruction 530: 17.3041% -Rate for instruction 531: 17.286% -Rate for instruction 532: 17.2752% -Rate for instruction 533: 17.2717% -Rate for instruction 534: 17.261% -Rate for instruction 535: 17.2359% -Rate for instruction 536: 17.2182% -Rate for instruction 537: 17.2076% -Rate for instruction 538: 17.1828% -Rate for instruction 539: 17.2009% -Rate for instruction 540: 17.233% -Rate for instruction 541: 17.2509% -Rate for instruction 542: 17.2404% -Rate for instruction 543: 17.2653% -Rate for instruction 544: 17.2406% -Rate for instruction 545: 17.2161% -Rate for instruction 546: 17.2479% -Rate for instruction 547: 17.2235% -Rate for instruction 548: 17.2481% -Rate for instruction 549: 17.2308% -Rate for instruction 550: 17.2484% -Rate for instruction 551: 17.3007% -Rate for instruction 552: 17.3112% -Rate for instruction 553: 17.3146% -Rate for instruction 554: 17.3112% -Rate for instruction 555: 17.3146% -Rate for instruction 556: 17.2904% -Rate for instruction 557: 17.2732% -Rate for instruction 558: 17.2767% -Rate for instruction 559: 17.2527% -Rate for instruction 560: 17.2563% -Rate for instruction 561: 17.2461% -Rate for instruction 562: 17.2496% -Rate for instruction 563: 17.26% -Rate for instruction 564: 17.2771% -Rate for instruction 565: 17.2805% -Rate for instruction 566: 17.3043% -Rate for instruction 567: 17.2941% -Rate for instruction 568: 17.3178% -Rate for instruction 569: 17.3347% -Rate for instruction 570: 17.3313% -Rate for instruction 571: 17.3211% -Rate for instruction 572: 17.2976% -Rate for instruction 573: 17.3345% -Rate for instruction 574: 17.3645% -Rate for instruction 575: 17.3945% -Rate for instruction 576: 17.4177% -Rate for instruction 577: 17.4541% -Rate for instruction 578: 17.4572% -Rate for instruction 579: 17.4337% -Rate for instruction 580: 17.4633% -Rate for instruction 581: 17.4795% -Rate for instruction 582: 17.4561% -Rate for instruction 583: 17.4658% -Rate for instruction 584: 17.449% -Rate for instruction 585: 17.4455% -Rate for instruction 586: 17.442% -Rate for instruction 587: 17.432% -Rate for instruction 588: 17.4416% -Rate for instruction 589: 17.4185% -Rate for instruction 590: 17.4216% -Rate for instruction 591: 17.4246% -Rate for instruction 592: 17.4277% -Rate for instruction 593: 17.4372% -Rate for instruction 594: 17.4402% -Rate for instruction 595: 17.4432% -Rate for instruction 596: 17.4333% -Rate for instruction 597: 17.4235% -Rate for instruction 598: 17.4201% -Rate for instruction 599: 17.4103% -Rate for instruction 600: 17.4005% -Rate for instruction 601: 17.3971% -Rate for instruction 602: 17.4066% -Rate for instruction 603: 17.3841% -Rate for instruction 604: 17.3872% -Rate for instruction 605: 17.3712% -Rate for instruction 606: 17.3742% -Rate for instruction 607: 17.3646% -Rate for instruction 608: 17.393% -Rate for instruction 609: 17.4023% -Rate for instruction 610: 17.4241% -Rate for instruction 611: 17.4082% -Rate for instruction 612: 17.4363% -Rate for instruction 613: 17.4142% -Rate for instruction 614: 17.4234% -Rate for instruction 615: 17.4138% -Rate for instruction 616: 17.423% -Rate for instruction 617: 17.4384% -Rate for instruction 618: 17.4723% -Rate for instruction 619: 17.4752% -Rate for instruction 620: 17.4718% -Rate for instruction 621: 17.4746% -Rate for instruction 622: 17.4589% -Rate for instruction 623: 17.4371% -Rate for instruction 624: 17.4277% -Rate for instruction 625: 17.4429% -Rate for instruction 626: 17.4457% -Rate for instruction 627: 17.4792% -Rate for instruction 628: 17.4575% -Rate for instruction 629: 17.4359% -Rate for instruction 630: 17.457% -Rate for instruction 631: 17.4355% -Rate for instruction 632: 17.4505% -Rate for instruction 633: 17.429% -Rate for instruction 634: 17.4682% -Rate for instruction 635: 17.5012% -Rate for instruction 636: 17.4858% -Rate for instruction 637: 17.4946% -Rate for instruction 638: 17.4853% -Rate for instruction 639: 17.494% -Rate for instruction 640: 17.4727% -Rate for instruction 641: 17.4635% -Rate for instruction 642: 17.4542% -Rate for instruction 643: 17.4331% -Rate for instruction 644: 17.424% -Rate for instruction 645: 17.4327% -Rate for instruction 646: 17.4117% -Rate for instruction 647: 17.4086% -Rate for instruction 648: 17.4233% -Rate for instruction 649: 17.4438% -Rate for instruction 650: 17.4288% -Rate for instruction 651: 17.4611% -Rate for instruction 652: 17.4579% -Rate for instruction 653: 17.4488% -Rate for instruction 654: 17.4339% -Rate for instruction 655: 17.4308% -Rate for instruction 656: 17.4218% -Rate for instruction 657: 17.4071% -Rate for instruction 658: 17.3982% -Rate for instruction 659: 17.4242% -Rate for instruction 660: 17.4037% -Rate for instruction 661: 17.389% -Rate for instruction 662: 17.386% -Rate for instruction 663: 17.383% -Rate for instruction 664: 17.3742% -Rate for instruction 665: 17.3539% -Rate for instruction 666: 17.3452% -Rate for instruction 667: 17.348% -Rate for instruction 668: 17.3336% -Rate for instruction 669: 17.3307% -Rate for instruction 670: 17.345% -Rate for instruction 671: 17.3478% -Rate for instruction 672: 17.3277% -Rate for instruction 673: 17.3248% -Rate for instruction 674: 17.3333% -Rate for instruction 675: 17.3134% -Rate for instruction 676: 17.3446% -Rate for instruction 677: 17.3247% -Rate for instruction 678: 17.3558% -Rate for instruction 679: 17.3756% -Rate for instruction 680: 17.367% -Rate for instruction 681: 17.381% -Rate for instruction 682: 17.3893% -Rate for instruction 683: 17.4033% -Rate for instruction 684: 17.4116% -Rate for instruction 685: 17.403% -Rate for instruction 686: 17.3889% -Rate for instruction 687: 17.3915% -Rate for instruction 688: 17.3831% -Rate for instruction 689: 17.369% -Rate for instruction 690: 17.3606% -Rate for instruction 691: 17.3466% -Rate for instruction 692: 17.366% -Rate for instruction 693: 17.3631% -Rate for instruction 694: 17.3547% -Rate for instruction 695: 17.3574% -Rate for instruction 696: 17.3712% -Rate for instruction 697: 17.3793% -Rate for instruction 698: 17.3985% -Rate for instruction 699: 17.3901% -Rate for instruction 700: 17.3927% -Rate for instruction 701: 17.3899% -Rate for instruction 702: 17.398% -Rate for instruction 703: 17.4115% -Rate for instruction 704: 17.4304% -Rate for instruction 705: 17.433% -Rate for instruction 706: 17.4301% -Rate for instruction 707: 17.4326% -Rate for instruction 708: 17.4135% -Rate for instruction 709: 17.4269% -Rate for instruction 710: 17.4565% -Rate for instruction 711: 17.4752% -Rate for instruction 712: 17.4668% -Rate for instruction 713: 17.4531% -Rate for instruction 714: 17.4341% -Rate for instruction 715: 17.4259% -Rate for instruction 716: 17.4069% -Rate for instruction 717: 17.3934% -Rate for instruction 718: 17.3746% -Rate for instruction 719: 17.3825% -Rate for instruction 720: 17.369% -Rate for instruction 721: 17.3503% -Rate for instruction 722: 17.3742% -Rate for instruction 723: 17.3927% -Rate for instruction 724: 17.3899% -Rate for instruction 725: 17.3713% -Rate for instruction 726: 17.358% -Rate for instruction 727: 17.3447% -Rate for instruction 728: 17.3631% -Rate for instruction 729: 17.3867% -Rate for instruction 730: 17.3892% -Rate for instruction 731: 17.3918% -Rate for instruction 732: 17.4048% -Rate for instruction 733: 17.3968% -Rate for instruction 734: 17.4202% -Rate for instruction 735: 17.407% -Rate for instruction 736: 17.3886% -Rate for instruction 737: 17.3807% -Rate for instruction 738: 17.4248% -Rate for instruction 739: 17.4584% -Rate for instruction 740: 17.4452% -Rate for instruction 741: 17.4787% -Rate for instruction 742: 17.507% -Rate for instruction 743: 17.5352% -Rate for instruction 744: 17.5323% -Rate for instruction 745: 17.5345% -Rate for instruction 746: 17.5574% -Rate for instruction 747: 17.5545% -Rate for instruction 748: 17.5876% -Rate for instruction 749: 17.6154% -Rate for instruction 750: 17.6124% -Rate for instruction 751: 17.6043% -Rate for instruction 752: 17.5963% -Rate for instruction 753: 17.6036% -Rate for instruction 754: 17.6159% -Rate for instruction 755: 17.6282% -Rate for instruction 756: 17.6202% -Rate for instruction 757: 17.6375% -Rate for instruction 758: 17.6244% -Rate for instruction 759: 17.6113% -Rate for instruction 760: 17.6387% -Rate for instruction 761: 17.6307% -Rate for instruction 762: 17.6278% -Rate for instruction 763: 17.6299% -Rate for instruction 764: 17.6521% -Rate for instruction 765: 17.6491% -Rate for instruction 766: 17.6813% -Rate for instruction 767: 17.6883% -Rate for instruction 768: 17.6853% -Rate for instruction 769: 17.6873% -Rate for instruction 770: 17.6694% -Rate for instruction 771: 17.6714% -Rate for instruction 772: 17.6684% -Rate for instruction 773: 17.6903% -Rate for instruction 774: 17.7122% -Rate for instruction 775: 17.6992% -Rate for instruction 776: 17.6963% -Rate for instruction 777: 17.6834% -Rate for instruction 778: 17.6805% -Rate for instruction 779: 17.7022% -Rate for instruction 780: 17.7041% -Rate for instruction 781: 17.6962% -Rate for instruction 782: 17.7031% -Rate for instruction 783: 17.7247% -Rate for instruction 784: 17.7511% -Rate for instruction 785: 17.7481% -Rate for instruction 786: 17.7402% -Rate for instruction 787: 17.7567% -Rate for instruction 788: 17.7684% -Rate for instruction 789: 17.7556% -Rate for instruction 790: 17.7429% -Rate for instruction 791: 17.735% -Rate for instruction 792: 17.7224% -Rate for instruction 793: 17.7194% -Rate for instruction 794: 17.7068% -Rate for instruction 795: 17.7039% -Rate for instruction 796: 17.701% -Rate for instruction 797: 17.7222% -Rate for instruction 798: 17.7193% -Rate for instruction 799: 17.7115% -Rate for instruction 800: 17.699% -Rate for instruction 801: 17.7057% -Rate for instruction 802: 17.7028% -Rate for instruction 803: 17.7% -Rate for instruction 804: 17.7162% -Rate for instruction 805: 17.7038% -Rate for instruction 806: 17.7009% -Rate for instruction 807: 17.698% -Rate for instruction 808: 17.6952% -Rate for instruction 809: 17.7113% -Rate for instruction 810: 17.6989% -Rate for instruction 811: 17.7293% -Rate for instruction 812: 17.7311% -Rate for instruction 813: 17.7424% -Rate for instruction 814: 17.7253% -Rate for instruction 815: 17.713% -Rate for instruction 816: 17.7337% -Rate for instruction 817: 17.7168% -Rate for instruction 818: 17.728% -Rate for instruction 819: 17.7111% -Rate for instruction 820: 17.7317% -Rate for instruction 821: 17.7569% -Rate for instruction 822: 17.74% -Rate for instruction 823: 17.7605% -Rate for instruction 824: 17.7436% -Rate for instruction 825: 17.7361% -Rate for instruction 826: 17.7286% -Rate for instruction 827: 17.7118% -Rate for instruction 828: 17.6997% -Rate for instruction 829: 17.6923% -Rate for instruction 830: 17.6756% -Rate for instruction 831: 17.659% -Rate for instruction 832: 17.6748% -Rate for instruction 833: 17.6582% -Rate for instruction 834: 17.6555% -Rate for instruction 835: 17.6849% -Rate for instruction 836: 17.719% -Rate for instruction 837: 17.707% -Rate for instruction 838: 17.6996% -Rate for instruction 839: 17.7015% -Rate for instruction 840: 17.7444% -Rate for instruction 841: 17.7736% -Rate for instruction 842: 17.7571% -Rate for instruction 843: 17.768% -Rate for instruction 844: 17.7651% -Rate for instruction 845: 17.7578% -Rate for instruction 846: 17.755% -Rate for instruction 847: 17.7386% -Rate for instruction 848: 17.7358% -Rate for instruction 849: 17.7285% -Rate for instruction 850: 17.7393% -Rate for instruction 851: 17.7546% -Rate for instruction 852: 17.7383% -Rate for instruction 853: 17.7491% -Rate for instruction 854: 17.7373% -Rate for instruction 855: 17.7435% -Rate for instruction 856: 17.7453% -Rate for instruction 857: 17.7694% -Rate for instruction 858: 17.789% -Rate for instruction 859: 17.7907% -Rate for instruction 860: 17.779% -Rate for instruction 861: 17.7807% -Rate for instruction 862: 17.7779% -Rate for instruction 863: 17.7796% -Rate for instruction 864: 17.7812% -Rate for instruction 865: 17.7696% -Rate for instruction 866: 17.7668% -Rate for instruction 867: 17.7552% -Rate for instruction 868: 17.7614% -Rate for instruction 869: 17.7719% -Rate for instruction 870: 17.7868% -Rate for instruction 871: 17.7796% -Rate for instruction 872: 17.7637% -Rate for instruction 873: 17.783% -Rate for instruction 874: 17.7802% -Rate for instruction 875: 17.7907% -Rate for instruction 876: 17.7835% -Rate for instruction 877: 17.7852% -Rate for instruction 878: 17.7912% -Rate for instruction 879: 17.7841% -Rate for instruction 880: 17.7901% -Rate for instruction 881: 17.7874% -Rate for instruction 882: 17.7977% -Rate for instruction 883: 17.7819% -Rate for instruction 884: 17.8096% -Rate for instruction 885: 17.8156% -Rate for instruction 886: 17.8302% -Rate for instruction 887: 17.8274% -Rate for instruction 888: 17.8333% -Rate for instruction 889: 17.8479% -Rate for instruction 890: 17.8408% -Rate for instruction 891: 17.851% -Rate for instruction 892: 17.8439% -Rate for instruction 893: 17.8455% -Rate for instruction 894: 17.8599% -Rate for instruction 895: 17.8529% -Rate for instruction 896: 17.863% -Rate for instruction 897: 17.8773% -Rate for instruction 898: 17.8746% -Rate for instruction 899: 17.8932% -Rate for instruction 900: 17.8818% -Rate for instruction 901: 17.8919% -Rate for instruction 902: 17.8848% -Rate for instruction 903: 17.8778% -Rate for instruction 904: 17.8708% -Rate for instruction 905: 17.885% -Rate for instruction 906: 17.8738% -Rate for instruction 907: 17.8753% -Rate for instruction 908: 17.8895% -Rate for instruction 909: 17.874% -Rate for instruction 910: 17.8882% -Rate for instruction 911: 17.8981% -Rate for instruction 912: 17.8869% -Rate for instruction 913: 17.8842% -Rate for instruction 914: 17.8773% -Rate for instruction 915: 17.8829% -Rate for instruction 916: 17.8676% -Rate for instruction 917: 17.8524% -Rate for instruction 918: 17.8413% -Rate for instruction 919: 17.8554% -Rate for instruction 920: 17.861% -Rate for instruction 921: 17.8458% -Rate for instruction 922: 17.8307% -Rate for instruction 923: 17.8155% -Rate for instruction 924: 17.8046% -Rate for instruction 925: 17.8144% -Rate for instruction 926: 17.8284% -Rate for instruction 927: 17.8465% -Rate for instruction 928: 17.8314% -Rate for instruction 929: 17.8371% -Rate for instruction 930: 17.8386% -Rate for instruction 931: 17.84% -Rate for instruction 932: 17.8292% -Rate for instruction 933: 17.8142% -Rate for instruction 934: 17.8075% -Rate for instruction 935: 17.7926% -Rate for instruction 936: 17.7818% -Rate for instruction 937: 17.7669% -Rate for instruction 938: 17.7685% -Rate for instruction 939: 17.7782% -Rate for instruction 940: 17.788% -Rate for instruction 941: 17.7936% -Rate for instruction 942: 17.7992% -Rate for instruction 943: 17.8048% -Rate for instruction 944: 17.8063% -Rate for instruction 945: 17.7915% -Rate for instruction 946: 17.7849% -Rate for instruction 947: 17.7864% -Rate for instruction 948: 17.7798% -Rate for instruction 949: 17.7652% -Rate for instruction 950: 17.7708% -Rate for instruction 951: 17.7885% -Rate for instruction 952: 17.7859% -Rate for instruction 953: 17.7875% -Rate for instruction 954: 17.7769% -Rate for instruction 955: 17.7704% -Rate for instruction 956: 17.7638% -Rate for instruction 957: 17.7694% -Rate for instruction 958: 17.7749% -Rate for instruction 959: 17.7845% -Rate for instruction 960: 17.774% -Rate for instruction 961: 17.7715% -Rate for instruction 962: 17.785% -Rate for instruction 963: 17.7984% -Rate for instruction 964: 17.8039% -Rate for instruction 965: 17.7934% -Rate for instruction 966: 17.7989% -Rate for instruction 967: 17.8004% -Rate for instruction 968: 17.8098% -Rate for instruction 969: 17.8033% -Rate for instruction 970: 17.8127% -Rate for instruction 971: 17.8063% -Rate for instruction 972: 17.7959% -Rate for instruction 973: 17.7816% -Rate for instruction 974: 17.7751% -Rate for instruction 975: 17.7609% -Rate for instruction 976: 17.7584% -Rate for instruction 977: 17.7442% -Rate for instruction 978: 17.7615% -Rate for instruction 979: 17.7708% -Rate for instruction 980: 17.7605% -Rate for instruction 981: 17.7464% -Rate for instruction 982: 17.744% -Rate for instruction 983: 17.7416% -Rate for instruction 984: 17.7353% -Rate for instruction 985: 17.7251% -Rate for instruction 986: 17.7383% -Rate for instruction 987: 17.7515% -Rate for instruction 988: 17.7608% -Rate for instruction 989: 17.7661% -Rate for instruction 990: 17.7598% -Rate for instruction 991: 17.7574% -Rate for instruction 992: 17.7473% -Rate for instruction 993: 17.7643% -Rate for instruction 994: 17.7542% -Rate for instruction 995: 17.7595% -Rate for instruction 996: 17.7494% -Rate for instruction 997: 17.7432% -Rate for instruction 998: 17.7331% -Rate for instruction 999: 17.7231% -Rate for instruction 1000: 17.7284% -Rate for instruction 1001: 17.7222% -Rate for instruction 1002: 17.7161% -Rate for instruction 1003: 17.7099% -Rate for instruction 1004: 17.7114% -Rate for instruction 1005: 17.7091% -Rate for instruction 1006: 17.6954% -Rate for instruction 1007: 17.7007% -Rate for instruction 1008: 17.687% -Rate for instruction 1009: 17.6733% -Rate for instruction 1010: 17.6596% -Rate for instruction 1011: 17.6497% -Rate for instruction 1012: 17.6399% -Rate for instruction 1013: 17.6377% -Rate for instruction 1014: 17.6544% -Rate for instruction 1015: 17.6408% -Rate for instruction 1016: 17.65% -Rate for instruction 1017: 17.6742% -Rate for instruction 1018: 17.6832% -Rate for instruction 1019: 17.6923% -Rate for instruction 1020: 17.6825% -Rate for instruction 1021: 17.684% -Rate for instruction 1022: 17.6855% -Rate for instruction 1023: 17.6946% -Rate for instruction 1024: 17.6998% -Rate for instruction 1025: 17.6976% -Rate for instruction 1026: 17.7103% -Rate for instruction 1027: 17.6968% -Rate for instruction 1028: 17.702% -Rate for instruction 1029: 17.696% -Rate for instruction 1030: 17.7125% -Rate for instruction 1031: 17.7326% -Rate for instruction 1032: 17.7452% -Rate for instruction 1033: 17.7317% -Rate for instruction 1034: 17.7332% -Rate for instruction 1035: 17.7383% -Rate for instruction 1036: 17.7509% -Rate for instruction 1037: 17.756% -Rate for instruction 1038: 17.7612% -Rate for instruction 1039: 17.7552% -Rate for instruction 1040: 17.7677% -Rate for instruction 1041: 17.758% -Rate for instruction 1042: 17.7484% -Rate for instruction 1043: 17.7424% -Rate for instruction 1044: 17.7365% -Rate for instruction 1045: 17.7269% -Rate for instruction 1046: 17.7393% -Rate for instruction 1047: 17.7297% -Rate for instruction 1048: 17.7385% -Rate for instruction 1049: 17.7546% -Rate for instruction 1050: 17.7706% -Rate for instruction 1051: 17.783% -Rate for instruction 1052: 17.7953% -Rate for instruction 1053: 17.8076% -Rate for instruction 1054: 17.8163% -Rate for instruction 1055: 17.8212% -Rate for instruction 1056: 17.8117% -Rate for instruction 1057: 17.8166% -Rate for instruction 1058: 17.8034% -Rate for instruction 1059: 17.8157% -Rate for instruction 1060: 17.8279% -Rate for instruction 1061: 17.8147% -Rate for instruction 1062: 17.8341% -Rate for instruction 1063: 17.8246% -Rate for instruction 1064: 17.844% -Rate for instruction 1065: 17.8345% -Rate for instruction 1066: 17.8214% -Rate for instruction 1067: 17.8227% -Rate for instruction 1068: 17.8456% -Rate for instruction 1069: 17.8433% -Rate for instruction 1070: 17.8482% -Rate for instruction 1071: 17.8459% -Rate for instruction 1072: 17.8579% -Rate for instruction 1073: 17.8484% -Rate for instruction 1074: 17.8354% -Rate for instruction 1075: 17.826% -Rate for instruction 1076: 17.8273% -Rate for instruction 1077: 17.8143% -Rate for instruction 1078: 17.8049% -Rate for instruction 1079: 17.792% -Rate for instruction 1080: 17.8005% -Rate for instruction 1081: 17.8053% -Rate for instruction 1082: 17.7925% -Rate for instruction 1083: 17.7831% -Rate for instruction 1084: 17.7703% -Rate for instruction 1085: 17.7893% -Rate for instruction 1086: 17.8084% -Rate for instruction 1087: 17.8167% -Rate for instruction 1088: 17.8286% -Rate for instruction 1089: 17.8158% -Rate for instruction 1090: 17.8101% -Rate for instruction 1091: 17.829% -Rate for instruction 1092: 17.8443% -Rate for instruction 1093: 17.8315% -Rate for instruction 1094: 17.8258% -Rate for instruction 1095: 17.8306% -Rate for instruction 1096: 17.8213% -Rate for instruction 1097: 17.8156% -Rate for instruction 1098: 17.8029% -Rate for instruction 1099: 17.8112% -Rate for instruction 1100: 17.8195% -Rate for instruction 1101: 17.8347% -Rate for instruction 1102: 17.822% -Rate for instruction 1103: 17.8303% -Rate for instruction 1104: 17.8211% -Rate for instruction 1105: 17.8119% -Rate for instruction 1106: 17.8028% -Rate for instruction 1107: 17.8145% -Rate for instruction 1108: 17.8019% -Rate for instruction 1109: 17.7928% -Rate for instruction 1110: 17.7837% -Rate for instruction 1111: 17.7919% -Rate for instruction 1112: 17.7828% -Rate for instruction 1113: 17.7738% -Rate for instruction 1114: 17.7854% -Rate for instruction 1115: 17.7936% -Rate for instruction 1116: 17.788% -Rate for instruction 1117: 17.7756% -Rate for instruction 1118: 17.7906% -Rate for instruction 1119: 17.7953% -Rate for instruction 1120: 17.7829% -Rate for instruction 1121: 17.7705% -Rate for instruction 1122: 17.7649% -Rate for instruction 1123: 17.756% -Rate for instruction 1124: 17.7538% -Rate for instruction 1125: 17.7483% -Rate for instruction 1126: 17.736% -Rate for instruction 1127: 17.7339% -Rate for instruction 1128: 17.7489% -Rate for instruction 1129: 17.757% -Rate for instruction 1130: 17.7447% -Rate for instruction 1131: 17.7596% -Rate for instruction 1132: 17.7473% -Rate for instruction 1133: 17.7588% -Rate for instruction 1134: 17.7736% -Rate for instruction 1135: 17.7817% -Rate for instruction 1136: 17.7694% -Rate for instruction 1137: 17.7707% -Rate for instruction 1138: 17.7754% -Rate for instruction 1139: 17.7901% -Rate for instruction 1140: 17.7847% -Rate for instruction 1141: 17.8095% -Rate for instruction 1142: 17.8242% -Rate for instruction 1143: 17.8322% -Rate for instruction 1144: 17.8535% -Rate for instruction 1145: 17.8648% -Rate for instruction 1146: 17.8593% -Rate for instruction 1147: 17.8605% -Rate for instruction 1148: 17.865% -Rate for instruction 1149: 17.8696% -Rate for instruction 1150: 17.8808% -Rate for instruction 1151: 17.8953% -Rate for instruction 1152: 17.9065% -Rate for instruction 1153: 17.8976% -Rate for instruction 1154: 17.8988% -Rate for instruction 1155: 17.9032% -Rate for instruction 1156: 17.8944% -Rate for instruction 1157: 17.9089% -Rate for instruction 1158: 17.9332% -Rate for instruction 1159: 17.9211% -Rate for instruction 1160: 17.9322% -Rate for instruction 1161: 17.9399% -Rate for instruction 1162: 17.9509% -Rate for instruction 1163: 17.9619% -Rate for instruction 1164: 17.9663% -Rate for instruction 1165: 17.9575% -Rate for instruction 1166: 17.9817% -Rate for instruction 1167: 17.9926% -Rate for instruction 1168: 17.9805% -Rate for instruction 1169: 17.9849% -Rate for instruction 1170: 17.9892% -Rate for instruction 1171: 17.9936% -Rate for instruction 1172: 18.0077% -Rate for instruction 1173: 18.0022% -Rate for instruction 1174: 18% -Rate for instruction 1175: 17.988% -Rate for instruction 1176: 17.9792% -Rate for instruction 1177: 17.9672% -Rate for instruction 1178: 17.9618% -Rate for instruction 1179: 17.9498% -Rate for instruction 1180: 17.9411% -Rate for instruction 1181: 17.9487% -Rate for instruction 1182: 17.9368% -Rate for instruction 1183: 17.9281% -Rate for instruction 1184: 17.9163% -Rate for instruction 1185: 17.9076% -Rate for instruction 1186: 17.8958% -Rate for instruction 1187: 17.8872% -Rate for instruction 1188: 17.8819% -Rate for instruction 1189: 17.8733% -Rate for instruction 1190: 17.8648% -Rate for instruction 1191: 17.853% -Rate for instruction 1192: 17.8413% -Rate for instruction 1193: 17.8328% -Rate for instruction 1194: 17.821% -Rate for instruction 1195: 17.8158% -Rate for instruction 1196: 17.8106% -Rate for instruction 1197: 17.8021% -Rate for instruction 1198: 17.7905% -Rate for instruction 1199: 17.7885% -Rate for instruction 1200: 17.7801% -Rate for instruction 1201: 17.7845% -Rate for instruction 1202: 17.7793% -Rate for instruction 1203: 17.7837% -Rate for instruction 1204: 17.7817% -Rate for instruction 1205: 17.7701% -Rate for instruction 1206: 17.7681% -Rate for instruction 1207: 17.7598% -Rate for instruction 1208: 17.7483% -Rate for instruction 1209: 17.7432% -Rate for instruction 1210: 17.7476% -Rate for instruction 1211: 17.7361% -Rate for instruction 1212: 17.7373% -Rate for instruction 1213: 17.7259% -Rate for instruction 1214: 17.724% -Rate for instruction 1215: 17.7126% -Rate for instruction 1216: 17.7106% -Rate for instruction 1217: 17.6993% -Rate for instruction 1218: 17.6974% -Rate for instruction 1219: 17.686% -Rate for instruction 1220: 17.6778% -Rate for instruction 1221: 17.6822% -Rate for instruction 1222: 17.6866% -Rate for instruction 1223: 17.6816% -Rate for instruction 1224: 17.6703% -Rate for instruction 1225: 17.6716% -Rate for instruction 1226: 17.6635% -Rate for instruction 1227: 17.6741% -Rate for instruction 1228: 17.6817% -Rate for instruction 1229: 17.6829% -Rate for instruction 1230: 17.6811% -Rate for instruction 1231: 17.6854% -Rate for instruction 1232: 17.6805% -Rate for instruction 1233: 17.6973% -Rate for instruction 1234: 17.6861% -Rate for instruction 1235: 17.6811% -Rate for instruction 1236: 17.6761% -Rate for instruction 1237: 17.6743% -Rate for instruction 1238: 17.6911% -Rate for instruction 1239: 17.683% -Rate for instruction 1240: 17.6935% -Rate for instruction 1241: 17.6886% -Rate for instruction 1242: 17.6898% -Rate for instruction 1243: 17.6818% -Rate for instruction 1244: 17.6923% -Rate for instruction 1245: 17.6874% -Rate for instruction 1246: 17.6794% -Rate for instruction 1247: 17.6868% -Rate for instruction 1248: 17.6972% -Rate for instruction 1249: 17.7046% -Rate for instruction 1250: 17.6966% -Rate for instruction 1251: 17.7163% -Rate for instruction 1252: 17.7175% -Rate for instruction 1253: 17.7248% -Rate for instruction 1254: 17.7138% -Rate for instruction 1255: 17.715% -Rate for instruction 1256: 17.7039% -Rate for instruction 1257: 17.7235% -Rate for instruction 1258: 17.7277% -Rate for instruction 1259: 17.7228% -Rate for instruction 1260: 17.7271% -Rate for instruction 1261: 17.7313% -Rate for instruction 1262: 17.7325% -Rate for instruction 1263: 17.7398% -Rate for instruction 1264: 17.7318% -Rate for instruction 1265: 17.7482% -Rate for instruction 1266: 17.7554% -Rate for instruction 1267: 17.7687% -Rate for instruction 1268: 17.7669% -Rate for instruction 1269: 17.7862% -Rate for instruction 1270: 17.7752% -Rate for instruction 1271: 17.7643% -Rate for instruction 1272: 17.7533% -Rate for instruction 1273: 17.7605% -Rate for instruction 1274: 17.7738% -Rate for instruction 1275: 17.7659% -Rate for instruction 1276: 17.773% -Rate for instruction 1277: 17.7651% -Rate for instruction 1278: 17.7753% -Rate for instruction 1279: 17.7674% -Rate for instruction 1280: 17.7566% -Rate for instruction 1281: 17.7637% -Rate for instruction 1282: 17.7738% -Rate for instruction 1283: 17.766% -Rate for instruction 1284: 17.7731% -Rate for instruction 1285: 17.7772% -Rate for instruction 1286: 17.7873% -Rate for instruction 1287: 17.7765% -Rate for instruction 1288: 17.7657% -Rate for instruction 1289: 17.7609% -Rate for instruction 1290: 17.7501% -Rate for instruction 1291: 17.7423% -Rate for instruction 1292: 17.7316% -Rate for instruction 1293: 17.7268% -Rate for instruction 1294: 17.719% -Rate for instruction 1295: 17.7083% -Rate for instruction 1296: 17.6976% -Rate for instruction 1297: 17.687% -Rate for instruction 1298: 17.6793% -Rate for instruction 1299: 17.6953% -Rate for instruction 1300: 17.7053% -Rate for instruction 1301: 17.7006% -Rate for instruction 1302: 17.7018% -Rate for instruction 1303: 17.697% -Rate for instruction 1304: 17.6982% -Rate for instruction 1305: 17.7053% -Rate for instruction 1306: 17.7182% -Rate for instruction 1307: 17.7341% -Rate for instruction 1308: 17.7235% -Rate for instruction 1309: 17.7305% -Rate for instruction 1310: 17.7199% -Rate for instruction 1311: 17.7298% -Rate for instruction 1312: 17.7222% -Rate for instruction 1313: 17.7116% -Rate for instruction 1314: 17.7245% -Rate for instruction 1315: 17.7227% -Rate for instruction 1316: 17.7268% -Rate for instruction 1317: 17.7308% -Rate for instruction 1318: 17.7203% -Rate for instruction 1319: 17.7098% -Rate for instruction 1320: 17.708% -Rate for instruction 1321: 17.7063% -Rate for instruction 1322: 17.7045% -Rate for instruction 1323: 17.697% -Rate for instruction 1324: 17.6865% -Rate for instruction 1325: 17.6877% -Rate for instruction 1326: 17.683% -Rate for instruction 1327: 17.7016% -Rate for instruction 1328: 17.6998% -Rate for instruction 1329: 17.7039% -Rate for instruction 1330: 17.7224% -Rate for instruction 1331: 17.7119% -Rate for instruction 1332: 17.716% -Rate for instruction 1333: 17.7056% -Rate for instruction 1334: 17.7211% -Rate for instruction 1335: 17.7222% -Rate for instruction 1336: 17.7176% -Rate for instruction 1337: 17.7159% -Rate for instruction 1338: 17.7141% -Rate for instruction 1339: 17.7239% -Rate for instruction 1340: 17.7135% -Rate for instruction 1341: 17.7089% -Rate for instruction 1342: 17.7015% -Rate for instruction 1343: 17.6912% -Rate for instruction 1344: 17.6837% -Rate for instruction 1345: 17.682% -Rate for instruction 1346: 17.6746% -Rate for instruction 1347: 17.6843% -Rate for instruction 1348: 17.6912% -Rate for instruction 1349: 17.6809% -Rate for instruction 1350: 17.6735% -Rate for instruction 1351: 17.6661% -Rate for instruction 1352: 17.6701% -Rate for instruction 1353: 17.6826% -Rate for instruction 1354: 17.6951% -Rate for instruction 1355: 17.7048% -Rate for instruction 1356: 17.7144% -Rate for instruction 1357: 17.7099% -Rate for instruction 1358: 17.711% -Rate for instruction 1359: 17.7206% -Rate for instruction 1360: 17.7273% -Rate for instruction 1361: 17.7285% -Rate for instruction 1362: 17.7267% -Rate for instruction 1363: 17.7194% -Rate for instruction 1364: 17.712% -Rate for instruction 1365: 17.7075% -Rate for instruction 1366: 17.7002% -Rate for instruction 1367: 17.6901% -Rate for instruction 1368: 17.6828% -Rate for instruction 1369: 17.6755% -Rate for instruction 1370: 17.6682% -Rate for instruction 1371: 17.6749% -Rate for instruction 1372: 17.6677% -Rate for instruction 1373: 17.6632% -Rate for instruction 1374: 17.6755% -Rate for instruction 1375: 17.6655% -Rate for instruction 1376: 17.661% -Rate for instruction 1377: 17.6761% -Rate for instruction 1378: 17.6661% -Rate for instruction 1379: 17.6756% -Rate for instruction 1380: 17.6851% -Rate for instruction 1381: 17.6862% -Rate for instruction 1382: 17.6929% -Rate for instruction 1383: 17.6968% -Rate for instruction 1384: 17.7117% -Rate for instruction 1385: 17.7212% -Rate for instruction 1386: 17.7167% -Rate for instruction 1387: 17.7206% -Rate for instruction 1388: 17.7217% -Rate for instruction 1389: 17.72% -Rate for instruction 1390: 17.71% -Rate for instruction 1391: 17.7028% -Rate for instruction 1392: 17.6929% -Rate for instruction 1393: 17.6912% -Rate for instruction 1394: 17.6813% -Rate for instruction 1395: 17.6741% -Rate for instruction 1396: 17.6642% -Rate for instruction 1397: 17.6653% -Rate for instruction 1398: 17.6582% -Rate for instruction 1399: 17.6484% -Rate for instruction 1400: 17.6385% -Rate for instruction 1401: 17.6287% -Rate for instruction 1402: 17.6216% -Rate for instruction 1403: 17.6145% -Rate for instruction 1404: 17.6211% -Rate for instruction 1405: 17.6305% -Rate for instruction 1406: 17.6289% -Rate for instruction 1407: 17.63% -Rate for instruction 1408: 17.6312% -Rate for instruction 1409: 17.6405% -Rate for instruction 1410: 17.6416% -Rate for instruction 1411: 17.6509% -Rate for instruction 1412: 17.6466% -Rate for instruction 1413: 17.6586% -Rate for instruction 1414: 17.6488% -Rate for instruction 1415: 17.6418% -Rate for instruction 1416: 17.6321% -Rate for instruction 1417: 17.6223% -Rate for instruction 1418: 17.6153% -Rate for instruction 1419: 17.6273% -Rate for instruction 1420: 17.623% -Rate for instruction 1421: 17.616% -Rate for instruction 1422: 17.6199% -Rate for instruction 1423: 17.6156% -Rate for instruction 1424: 17.6059% -Rate for instruction 1425: 17.599% -Rate for instruction 1426: 17.6082% -Rate for instruction 1427: 17.6094% -Rate for instruction 1428: 17.6105% -Rate for instruction 1429: 17.6089% -Rate for instruction 1430: 17.6181% -Rate for instruction 1431: 17.6112% -Rate for instruction 1432: 17.6177% -Rate for instruction 1433: 17.6242% -Rate for instruction 1434: 17.6333% -Rate for instruction 1435: 17.6478% -Rate for instruction 1436: 17.6543% -Rate for instruction 1437: 17.65% -Rate for instruction 1438: 17.6565% -Rate for instruction 1439: 17.6522% -Rate for instruction 1440: 17.6453% -Rate for instruction 1441: 17.6358% -Rate for instruction 1442: 17.6369% -Rate for instruction 1443: 17.6406% -Rate for instruction 1444: 17.6338% -Rate for instruction 1445: 17.6242% -Rate for instruction 1446: 17.636% -Rate for instruction 1447: 17.6424% -Rate for instruction 1448: 17.6488% -Rate for instruction 1449: 17.6419% -Rate for instruction 1450: 17.643% -Rate for instruction 1451: 17.6547% -Rate for instruction 1452: 17.6558% -Rate for instruction 1453: 17.6542% -Rate for instruction 1454: 17.6685% -Rate for instruction 1455: 17.6775% -Rate for instruction 1456: 17.6839% -Rate for instruction 1457: 17.677% -Rate for instruction 1458: 17.6833% -Rate for instruction 1459: 17.687% -Rate for instruction 1460: 17.6828% -Rate for instruction 1461: 17.6918% -Rate for instruction 1462: 17.6876% -Rate for instruction 1463: 17.6991% -Rate for instruction 1464: 17.7107% -Rate for instruction 1465: 17.7196% -Rate for instruction 1466: 17.7128% -Rate for instruction 1467: 17.7243% -Rate for instruction 1468: 17.7305% -Rate for instruction 1469: 17.7211% -Rate for instruction 1470: 17.7143% -Rate for instruction 1471: 17.7231% -Rate for instruction 1472: 17.7294% -Rate for instruction 1473: 17.7356% -Rate for instruction 1474: 17.7314% -Rate for instruction 1475: 17.7455% -Rate for instruction 1476: 17.7517% -Rate for instruction 1477: 17.7631% -Rate for instruction 1478: 17.7797% -Rate for instruction 1479: 17.7729% -Rate for instruction 1480: 17.7687% -Rate for instruction 1481: 17.7619% -Rate for instruction 1482: 17.768% -Rate for instruction 1483: 17.782% -Rate for instruction 1484: 17.7907% -Rate for instruction 1485: 17.7995% -Rate for instruction 1486: 17.803% -Rate for instruction 1487: 17.7936% -Rate for instruction 1488: 17.7998% -Rate for instruction 1489: 17.8085% -Rate for instruction 1490: 17.8146% -Rate for instruction 1491: 17.8181% -Rate for instruction 1492: 17.8139% -Rate for instruction 1493: 17.8046% -Rate for instruction 1494: 17.8107% -Rate for instruction 1495: 17.8065% -Rate for instruction 1496: 17.8023% -Rate for instruction 1497: 17.8084% -Rate for instruction 1498: 17.799% -Rate for instruction 1499: 17.7923% -Rate for instruction 1500: 17.7856% -Rate for instruction 1501: 17.7763% -Rate for instruction 1502: 17.7747% -Rate for instruction 1503: 17.7654% -Rate for instruction 1504: 17.7664% -Rate for instruction 1505: 17.7699% -Rate for instruction 1506: 17.7607% -Rate for instruction 1507: 17.7515% -Rate for instruction 1508: 17.7627% -Rate for instruction 1509: 17.7534% -Rate for instruction 1510: 17.7646% -Rate for instruction 1511: 17.7656% -Rate for instruction 1512: 17.7615% -Rate for instruction 1513: 17.7523% -Rate for instruction 1514: 17.7482% -Rate for instruction 1515: 17.7415% -Rate for instruction 1516: 17.745% -Rate for instruction 1517: 17.7384% -Rate for instruction 1518: 17.7343% -Rate for instruction 1519: 17.7353% -Rate for instruction 1520: 17.7388% -Rate for instruction 1521: 17.7423% -Rate for instruction 1522: 17.7458% -Rate for instruction 1523: 17.7544% -Rate for instruction 1524: 17.7554% -Rate for instruction 1525: 17.7488% -Rate for instruction 1526: 17.7422% -Rate for instruction 1527: 17.7432% -Rate for instruction 1528: 17.7517% -Rate for instruction 1529: 17.7577% -Rate for instruction 1530: 17.7536% -Rate for instruction 1531: 17.7671% -Rate for instruction 1532: 17.7681% -Rate for instruction 1533: 17.759% -Rate for instruction 1534: 17.76% -Rate for instruction 1535: 17.7509% -Rate for instruction 1536: 17.7419% -Rate for instruction 1537: 17.7403% -Rate for instruction 1538: 17.7363% -Rate for instruction 1539: 17.7348% -Rate for instruction 1540: 17.7282% -Rate for instruction 1541: 17.7217% -Rate for instruction 1542: 17.7127% -Rate for instruction 1543: 17.7187% -Rate for instruction 1544: 17.7147% -Rate for instruction 1545: 17.7132% -Rate for instruction 1546: 17.7216% -Rate for instruction 1547: 17.7276% -Rate for instruction 1548: 17.7211% -Rate for instruction 1549: 17.7146% -Rate for instruction 1550: 17.7082% -Rate for instruction 1551: 17.7116% -Rate for instruction 1552: 17.7176% -Rate for instruction 1553: 17.7161% -Rate for instruction 1554: 17.7071% -Rate for instruction 1555: 17.7007% -Rate for instruction 1556: 17.7066% -Rate for instruction 1557: 17.7027% -Rate for instruction 1558: 17.6963% -Rate for instruction 1559: 17.6948% -Rate for instruction 1560: 17.6933% -Rate for instruction 1561: 17.6894% -Rate for instruction 1562: 17.6977% -Rate for instruction 1563: 17.7061% -Rate for instruction 1564: 17.7071% -Rate for instruction 1565: 17.7129% -Rate for instruction 1566: 17.7065% -Rate for instruction 1567: 17.7051% -Rate for instruction 1568: 17.7036% -Rate for instruction 1569: 17.7119% -Rate for instruction 1570: 17.7104% -Rate for instruction 1571: 17.7114% -Rate for instruction 1572: 17.7026% -Rate for instruction 1573: 17.6987% -Rate for instruction 1574: 17.6923% -Rate for instruction 1575: 17.6835% -Rate for instruction 1576: 17.6845% -Rate for instruction 1577: 17.6879% -Rate for instruction 1578: 17.6938% -Rate for instruction 1579: 17.6874% -Rate for instruction 1580: 17.6884% -Rate for instruction 1581: 17.6918% -Rate for instruction 1582: 17.7049% -Rate for instruction 1583: 17.718% -Rate for instruction 1584: 17.7263% -Rate for instruction 1585: 17.7224% -Rate for instruction 1586: 17.7233% -Rate for instruction 1587: 17.7219% -Rate for instruction 1588: 17.7228% -Rate for instruction 1589: 17.7238% -Rate for instruction 1590: 17.7199% -Rate for instruction 1591: 17.7184% -Rate for instruction 1592: 17.7169% -Rate for instruction 1593: 17.7179% -Rate for instruction 1594: 17.7092% -Rate for instruction 1595: 17.7174% -Rate for instruction 1596: 17.7111% -Rate for instruction 1597: 17.7169% -Rate for instruction 1598: 17.7202% -Rate for instruction 1599: 17.7115% -Rate for instruction 1600: 17.7077% -Rate for instruction 1601: 17.711% -Rate for instruction 1602: 17.7168% -Rate for instruction 1603: 17.7225% -Rate for instruction 1604: 17.7211% -Rate for instruction 1605: 17.7244% -Rate for instruction 1606: 17.7158% -Rate for instruction 1607: 17.7239% -Rate for instruction 1608: 17.7272% -Rate for instruction 1609: 17.7186% -Rate for instruction 1610: 17.7147% -Rate for instruction 1611: 17.7276% -Rate for instruction 1612: 17.7357% -Rate for instruction 1613: 17.7295% -Rate for instruction 1614: 17.7328% -Rate for instruction 1615: 17.7456% -Rate for instruction 1616: 17.7465% -Rate for instruction 1617: 17.7593% -Rate for instruction 1618: 17.7674% -Rate for instruction 1619: 17.7754% -Rate for instruction 1620: 17.7716% -Rate for instruction 1621: 17.7677% -Rate for instruction 1622: 17.7591% -Rate for instruction 1623: 17.76% -Rate for instruction 1624: 17.7633% -Rate for instruction 1625: 17.7619% -Rate for instruction 1626: 17.758% -Rate for instruction 1627: 17.7566% -Rate for instruction 1628: 17.7528% -Rate for instruction 1629: 17.7466% -Rate for instruction 1630: 17.7404% -Rate for instruction 1631: 17.739% -Rate for instruction 1632: 17.7399% -Rate for instruction 1633: 17.7432% -Rate for instruction 1634: 17.7464% -Rate for instruction 1635: 17.7473% -Rate for instruction 1636: 17.7529% -Rate for instruction 1637: 17.7679% -Rate for instruction 1638: 17.7852% -Rate for instruction 1639: 17.7814% -Rate for instruction 1640: 17.7847% -Rate for instruction 1641: 17.7785% -Rate for instruction 1642: 17.7817% -Rate for instruction 1643: 17.7803% -Rate for instruction 1644: 17.7975% -Rate for instruction 1645: 17.8054% -Rate for instruction 1646: 17.7993% -Rate for instruction 1647: 17.8001% -Rate for instruction 1648: 17.8173% -Rate for instruction 1649: 17.8159% -Rate for instruction 1650: 17.8284% -Rate for instruction 1651: 17.8292% -Rate for instruction 1652: 17.8324% -Rate for instruction 1653: 17.8239% -Rate for instruction 1654: 17.8155% -Rate for instruction 1655: 17.8117% -Rate for instruction 1656: 17.8033% -Rate for instruction 1657: 17.7972% -Rate for instruction 1658: 17.8073% -Rate for instruction 1659: 17.8174% -Rate for instruction 1660: 17.8136% -Rate for instruction 1661: 17.8238% -Rate for instruction 1662: 17.82% -Rate for instruction 1663: 17.8116% -Rate for instruction 1664: 17.8032% -Rate for instruction 1665: 17.7948% -Rate for instruction 1666: 17.7864% -Rate for instruction 1667: 17.7804% -Rate for instruction 1668: 17.7813% -Rate for instruction 1669: 17.789% -Rate for instruction 1670: 17.7876% -Rate for instruction 1671: 17.7862% -Rate for instruction 1672: 17.7916% -Rate for instruction 1673: 17.7833% -Rate for instruction 1674: 17.7796% -Rate for instruction 1675: 17.785% -Rate for instruction 1676: 17.7767% -Rate for instruction 1677: 17.7684% -Rate for instruction 1678: 17.7624% -Rate for instruction 1679: 17.7541% -Rate for instruction 1680: 17.7619% -Rate for instruction 1681: 17.7605% -Rate for instruction 1682: 17.7613% -Rate for instruction 1683: 17.7599% -Rate for instruction 1684: 17.7517% -Rate for instruction 1685: 17.748% -Rate for instruction 1686: 17.7534% -Rate for instruction 1687: 17.7452% -Rate for instruction 1688: 17.7392% -Rate for instruction 1689: 17.7401% -Rate for instruction 1690: 17.7387% -Rate for instruction 1691: 17.735% -Rate for instruction 1692: 17.7337% -Rate for instruction 1693: 17.7277% -Rate for instruction 1694: 17.7445% -Rate for instruction 1695: 17.7567% -Rate for instruction 1696: 17.7508% -Rate for instruction 1697: 17.7426% -Rate for instruction 1698: 17.7548% -Rate for instruction 1699: 17.7466% -Rate for instruction 1700: 17.7407% -Rate for instruction 1701: 17.7393% -Rate for instruction 1702: 17.7357% -Rate for instruction 1703: 17.7298% -Rate for instruction 1704: 17.7261% -Rate for instruction 1705: 17.7338% -Rate for instruction 1706: 17.7459% -Rate for instruction 1707: 17.7581% -Rate for instruction 1708: 17.7634% -Rate for instruction 1709: 17.7553% -Rate for instruction 1710: 17.7494% -Rate for instruction 1711: 17.7435% -Rate for instruction 1712: 17.7399% -Rate for instruction 1713: 17.734% -Rate for instruction 1714: 17.7439% -Rate for instruction 1715: 17.738% -Rate for instruction 1716: 17.7367% -Rate for instruction 1717: 17.7286% -Rate for instruction 1718: 17.7272% -Rate for instruction 1719: 17.7281% -Rate for instruction 1720: 17.7245% -Rate for instruction 1721: 17.7231% -Rate for instruction 1722: 17.7307% -Rate for instruction 1723: 17.7249% -Rate for instruction 1724: 17.7191% -Rate for instruction 1725: 17.7133% -Rate for instruction 1726: 17.7097% -Rate for instruction 1727: 17.7039% -Rate for instruction 1728: 17.7048% -Rate for instruction 1729: 17.7101% -Rate for instruction 1730: 17.7132% -Rate for instruction 1731: 17.7118% -Rate for instruction 1732: 17.7061% -Rate for instruction 1733: 17.7136% -Rate for instruction 1734: 17.7189% -Rate for instruction 1735: 17.7309% -Rate for instruction 1736: 17.7361% -Rate for instruction 1737: 17.737% -Rate for instruction 1738: 17.7578% -Rate for instruction 1739: 17.752% -Rate for instruction 1740: 17.755% -Rate for instruction 1741: 17.7603% -Rate for instruction 1742: 17.77% -Rate for instruction 1743: 17.7686% -Rate for instruction 1744: 17.7805% -Rate for instruction 1745: 17.7835% -Rate for instruction 1746: 17.7909% -Rate for instruction 1747: 17.7852% -Rate for instruction 1748: 17.786% -Rate for instruction 1749: 17.8% -Rate for instruction 1750: 17.792% -Rate for instruction 1751: 17.795% -Rate for instruction 1752: 17.8068% -Rate for instruction 1753: 17.8076% -Rate for instruction 1754: 17.8063% -Rate for instruction 1755: 17.8005% -Rate for instruction 1756: 17.7926% -Rate for instruction 1757: 17.789% -Rate for instruction 1758: 17.7811% -Rate for instruction 1759: 17.7863% -Rate for instruction 1760: 17.7958% -Rate for instruction 1761: 17.7945% -Rate for instruction 1762: 17.7866% -Rate for instruction 1763: 17.7939% -Rate for instruction 1764: 17.8034% -Rate for instruction 1765: 17.8108% -Rate for instruction 1766: 17.8072% -Rate for instruction 1767: 17.8146% -Rate for instruction 1768: 17.8262% -Rate for instruction 1769: 17.8249% -Rate for instruction 1770: 17.8191% -Rate for instruction 1771: 17.8156% -Rate for instruction 1772: 17.8099% -Rate for instruction 1773: 17.8042% -Rate for instruction 1774: 17.7963% -Rate for instruction 1775: 17.795% -Rate for instruction 1776: 17.7936% -Rate for instruction 1777: 17.7879% -Rate for instruction 1778: 17.7822% -Rate for instruction 1779: 17.7744% -Rate for instruction 1780: 17.7688% -Rate for instruction 1781: 17.7609% -Rate for instruction 1782: 17.7704% -Rate for instruction 1783: 17.7691% -Rate for instruction 1784: 17.7634% -Rate for instruction 1785: 17.7707% -Rate for instruction 1786: 17.7844% -Rate for instruction 1787: 17.7809% -Rate for instruction 1788: 17.7817% -Rate for instruction 1789: 17.7869% -Rate for instruction 1790: 17.792% -Rate for instruction 1791: 17.8013% -Rate for instruction 1792: 17.8021% -Rate for instruction 1793: 17.7986% -Rate for instruction 1794: 17.8016% -Rate for instruction 1795: 17.796% -Rate for instruction 1796: 17.7989% -Rate for instruction 1797: 17.7911% -Rate for instruction 1798: 17.8005% -Rate for instruction 1799: 17.7927% -Rate for instruction 1800: 17.7871% -Rate for instruction 1801: 17.7794% -Rate for instruction 1802: 17.7759% -Rate for instruction 1803: 17.7853% -Rate for instruction 1804: 17.7775% -Rate for instruction 1805: 17.789% -Rate for instruction 1806: 17.794% -Rate for instruction 1807: 17.7927% -Rate for instruction 1808: 17.7914% -Rate for instruction 1809: 17.7858% -Rate for instruction 1810: 17.7845% -Rate for instruction 1811: 17.781% -Rate for instruction 1812: 17.7797% -Rate for instruction 1813: 17.7741% -Rate for instruction 1814: 17.7686% -Rate for instruction 1815: 17.763% -Rate for instruction 1816: 17.7617% -Rate for instruction 1817: 17.7689% -Rate for instruction 1818: 17.7739% -Rate for instruction 1819: 17.7684% -Rate for instruction 1820: 17.7607% -Rate for instruction 1821: 17.7573% -Rate for instruction 1822: 17.7497% -Rate for instruction 1823: 17.7526% -Rate for instruction 1824: 17.7513% -Rate for instruction 1825: 17.7521% -Rate for instruction 1826: 17.7593% -Rate for instruction 1827: 17.7537% -Rate for instruction 1828: 17.7524% -Rate for instruction 1829: 17.7512% -Rate for instruction 1830: 17.7583% -Rate for instruction 1831: 17.7507% -Rate for instruction 1832: 17.7578% -Rate for instruction 1833: 17.7628% -Rate for instruction 1834: 17.7552% -Rate for instruction 1835: 17.7497% -Rate for instruction 1836: 17.7421% -Rate for instruction 1837: 17.745% -Rate for instruction 1838: 17.7396% -Rate for instruction 1839: 17.732% -Rate for instruction 1840: 17.7245% -Rate for instruction 1841: 17.719% -Rate for instruction 1842: 17.7282% -Rate for instruction 1843: 17.7248% -Rate for instruction 1844: 17.7215% -Rate for instruction 1845: 17.7181% -Rate for instruction 1846: 17.7252% -Rate for instruction 1847: 17.7219% -Rate for instruction 1848: 17.7164% -Rate for instruction 1849: 17.7089% -Rate for instruction 1850: 17.7035% -Rate for instruction 1851: 17.7002% -Rate for instruction 1852: 17.6927% -Rate for instruction 1853: 17.6894% -Rate for instruction 1854: 17.6923% -Rate for instruction 1855: 17.6973% -Rate for instruction 1856: 17.6898% -Rate for instruction 1857: 17.6824% -Rate for instruction 1858: 17.6894% -Rate for instruction 1859: 17.682% -Rate for instruction 1860: 17.6766% -Rate for instruction 1861: 17.6754% -Rate for instruction 1862: 17.6762% -Rate for instruction 1863: 17.6832% -Rate for instruction 1864: 17.6779% -Rate for instruction 1865: 17.6705% -Rate for instruction 1866: 17.6795% -Rate for instruction 1867: 17.6907% -Rate for instruction 1868: 17.6977% -Rate for instruction 1869: 17.6944% -Rate for instruction 1870: 17.6911% -Rate for instruction 1871: 17.7001% -Rate for instruction 1872: 17.6989% -Rate for instruction 1873: 17.6935% -Rate for instruction 1874: 17.6985% -Rate for instruction 1875: 17.7013% -Rate for instruction 1876: 17.6939% -Rate for instruction 1877: 17.6927% -Rate for instruction 1878: 17.6915% -Rate for instruction 1879: 17.6841% -Rate for instruction 1880: 17.6809% -Rate for instruction 1881: 17.6735% -Rate for instruction 1882: 17.6784% -Rate for instruction 1883: 17.6833% -Rate for instruction 1884: 17.6801% -Rate for instruction 1885: 17.6809% -Rate for instruction 1886: 17.6858% -Rate for instruction 1887: 17.6805% -Rate for instruction 1888: 17.6956% -Rate for instruction 1889: 17.7066% -Rate for instruction 1890: 17.7175% -Rate for instruction 1891: 17.7183% -Rate for instruction 1892: 17.7151% -Rate for instruction 1893: 17.7199% -Rate for instruction 1894: 17.7228% -Rate for instruction 1895: 17.7175% -Rate for instruction 1896: 17.7162% -Rate for instruction 1897: 17.715% -Rate for instruction 1898: 17.7077% -Rate for instruction 1899: 17.7024% -Rate for instruction 1900: 17.7012% -Rate for instruction 1901: 17.698% -Rate for instruction 1902: 17.6988% -Rate for instruction 1903: 17.7016% -Rate for instruction 1904: 17.6943% -Rate for instruction 1905: 17.6911% -Rate for instruction 1906: 17.6919% -Rate for instruction 1907: 17.6907% -Rate for instruction 1908: 17.6875% -Rate for instruction 1909: 17.6863% -Rate for instruction 1910: 17.681% -Rate for instruction 1911: 17.6919% -Rate for instruction 1912: 17.6847% -Rate for instruction 1913: 17.6875% -Rate for instruction 1914: 17.6903% -Rate for instruction 1915: 17.6831% -Rate for instruction 1916: 17.6799% -Rate for instruction 1917: 17.6807% -Rate for instruction 1918: 17.6835% -Rate for instruction 1919: 17.6763% -Rate for instruction 1920: 17.6811% -Rate for instruction 1921: 17.6779% -Rate for instruction 1922: 17.6767% -Rate for instruction 1923: 17.6755% -Rate for instruction 1924: 17.6683% -Rate for instruction 1925: 17.6691% -Rate for instruction 1926: 17.668% -Rate for instruction 1927: 17.6608% -Rate for instruction 1928: 17.6596% -Rate for instruction 1929: 17.6564% -Rate for instruction 1930: 17.6513% -Rate for instruction 1931: 17.6481% -Rate for instruction 1932: 17.6489% -Rate for instruction 1933: 17.6438% -Rate for instruction 1934: 17.6426% -Rate for instruction 1935: 17.6534% -Rate for instruction 1936: 17.6542% -Rate for instruction 1937: 17.649% -Rate for instruction 1938: 17.6419% -Rate for instruction 1939: 17.6388% -Rate for instruction 1940: 17.6317% -Rate for instruction 1941: 17.6266% -Rate for instruction 1942: 17.6195% -Rate for instruction 1943: 17.6203% -Rate for instruction 1944: 17.6231% -Rate for instruction 1945: 17.6259% -Rate for instruction 1946: 17.6247% -Rate for instruction 1947: 17.6177% -Rate for instruction 1948: 17.6126% -Rate for instruction 1949: 17.6055% -Rate for instruction 1950: 17.6004% -Rate for instruction 1951: 17.5934% -Rate for instruction 1952: 17.5883% -Rate for instruction 1953: 17.5872% -Rate for instruction 1954: 17.5861% -Rate for instruction 1955: 17.5849% -Rate for instruction 1956: 17.5936% -Rate for instruction 1957: 17.6023% -Rate for instruction 1958: 17.6032% -Rate for instruction 1959: 17.6119% -Rate for instruction 1960: 17.6225% -Rate for instruction 1961: 17.6174% -Rate for instruction 1962: 17.6261% -Rate for instruction 1963: 17.623% -Rate for instruction 1964: 17.6297% -Rate for instruction 1965: 17.6344% -Rate for instruction 1966: 17.6274% -Rate for instruction 1967: 17.6243% -Rate for instruction 1968: 17.6349% -Rate for instruction 1969: 17.6318% -Rate for instruction 1970: 17.6248% -Rate for instruction 1971: 17.6198% -Rate for instruction 1972: 17.6245% -Rate for instruction 1973: 17.6272% -Rate for instruction 1974: 17.6203% -Rate for instruction 1975: 17.6172% -Rate for instruction 1976: 17.6141% -Rate for instruction 1977: 17.6091% -Rate for instruction 1978: 17.606% -Rate for instruction 1979: 17.6068% -Rate for instruction 1980: 17.6018% -Rate for instruction 1981: 17.6046% -Rate for instruction 1982: 17.6093% -Rate for instruction 1983: 17.6062% -Rate for instruction 1984: 17.6012% -Rate for instruction 1985: 17.604% -Rate for instruction 1986: 17.6087% -Rate for instruction 1987: 17.6192% -Rate for instruction 1988: 17.6239% -Rate for instruction 1989: 17.6285% -Rate for instruction 1990: 17.639% -Rate for instruction 1991: 17.634% -Rate for instruction 1992: 17.6271% -Rate for instruction 1993: 17.6202% -Rate for instruction 1994: 17.6133% -Rate for instruction 1995: 17.6218% -Rate for instruction 1996: 17.6168% -Rate for instruction 1997: 17.6234% -Rate for instruction 1998: 17.6223% -Rate for instruction 1999: 17.6192% -Rate for instruction 2000: 17.6162% -Rate for instruction 2001: 17.6132% -Rate for instruction 2002: 17.6101% -Rate for instruction 2003: 17.6052% -Rate for instruction 2004: 17.6117% -Rate for instruction 2005: 17.6183% -Rate for instruction 2006: 17.6153% -Rate for instruction 2007: 17.6142% -Rate for instruction 2008: 17.6092% -Rate for instruction 2009: 17.6024% -Rate for instruction 2010: 17.6013% -Rate for instruction 2011: 17.6002% -Rate for instruction 2012: 17.5933% -Rate for instruction 2013: 17.5999% -Rate for instruction 2014: 17.6007% -Rate for instruction 2015: 17.6015% -Rate for instruction 2016: 17.6004% -Rate for instruction 2017: 17.5955% -Rate for instruction 2018: 17.6001% -Rate for instruction 2019: 17.599% -Rate for instruction 2020: 17.6074% -Rate for instruction 2021: 17.612% -Rate for instruction 2022: 17.6204% -Rate for instruction 2023: 17.6326% -Rate for instruction 2024: 17.6467% -Rate for instruction 2025: 17.6551% -Rate for instruction 2026: 17.6692% -Rate for instruction 2027: 17.6623% -Rate for instruction 2028: 17.665% -Rate for instruction 2029: 17.6677% -Rate for instruction 2030: 17.6609% -Rate for instruction 2031: 17.6673% -Rate for instruction 2032: 17.6662% -Rate for instruction 2033: 17.6651% -Rate for instruction 2034: 17.6602% -Rate for instruction 2035: 17.6609% -Rate for instruction 2036: 17.6542% -Rate for instruction 2037: 17.6512% -Rate for instruction 2038: 17.6501% -Rate for instruction 2039: 17.6433% -Rate for instruction 2040: 17.6365% -Rate for instruction 2041: 17.6373% -Rate for instruction 2042: 17.6306% -Rate for instruction 2043: 17.6295% -Rate for instruction 2044: 17.6265% -Rate for instruction 2045: 17.6235% -Rate for instruction 2046: 17.6187% -Rate for instruction 2047: 17.6251% -Rate for instruction 2048: 17.6202% -Rate for instruction 2049: 17.6248% -Rate for instruction 2050: 17.618% -Rate for instruction 2051: 17.6207% -Rate for instruction 2052: 17.6196% -Rate for instruction 2053: 17.6148% -Rate for instruction 2054: 17.6249% -Rate for instruction 2055: 17.622% -Rate for instruction 2056: 17.6153% -Rate for instruction 2057: 17.6105% -Rate for instruction 2058: 17.6206% -Rate for instruction 2059: 17.6214% -Rate for instruction 2060: 17.6184% -Rate for instruction 2061: 17.6211% -Rate for instruction 2062: 17.6218% -Rate for instruction 2063: 17.6189% -Rate for instruction 2064: 17.6234% -Rate for instruction 2065: 17.6167% -Rate for instruction 2066: 17.6101% -Rate for instruction 2067: 17.6034% -Rate for instruction 2068: 17.6023% -Rate for instruction 2069: 17.5957% -Rate for instruction 2070: 17.5909% -Rate for instruction 2071: 17.5843% -Rate for instruction 2072: 17.5814% -Rate for instruction 2073: 17.5784% -Rate for instruction 2074: 17.5792% -Rate for instruction 2075: 17.5745% -Rate for instruction 2076: 17.5734% -Rate for instruction 2077: 17.5742% -Rate for instruction 2078: 17.5713% -Rate for instruction 2079: 17.5684% -Rate for instruction 2080: 17.5655% -Rate for instruction 2081: 17.5626% -Rate for instruction 2082: 17.5616% -Rate for instruction 2083: 17.5624% -Rate for instruction 2084: 17.5576% -Rate for instruction 2085: 17.5566% -Rate for instruction 2086: 17.5611% -Rate for instruction 2087: 17.5564% -Rate for instruction 2088: 17.5608% -Rate for instruction 2089: 17.5543% -Rate for instruction 2090: 17.5496% -Rate for instruction 2091: 17.5485% -Rate for instruction 2092: 17.5438% -Rate for instruction 2093: 17.541% -Rate for instruction 2094: 17.5454% -Rate for instruction 2095: 17.5481% -Rate for instruction 2096: 17.5452% -Rate for instruction 2097: 17.546% -Rate for instruction 2098: 17.5468% -Rate for instruction 2099: 17.5458% -Rate for instruction 2100: 17.5429% -Rate for instruction 2101: 17.5492% -Rate for instruction 2102: 17.55% -Rate for instruction 2103: 17.549% -Rate for instruction 2104: 17.548% -Rate for instruction 2105: 17.5469% -Rate for instruction 2106: 17.5423% -Rate for instruction 2107: 17.5358% -Rate for instruction 2108: 17.5293% -Rate for instruction 2109: 17.5246% -Rate for instruction 2110: 17.5181% -Rate for instruction 2111: 17.5153% -Rate for instruction 2112: 17.5216% -Rate for instruction 2113: 17.5187% -Rate for instruction 2114: 17.5195% -Rate for instruction 2115: 17.524% -Rate for instruction 2116: 17.5175% -Rate for instruction 2117: 17.5129% -Rate for instruction 2118: 17.5101% -Rate for instruction 2119: 17.5109% -Rate for instruction 2120: 17.5099% -Rate for instruction 2121: 17.5143% -Rate for instruction 2122: 17.5097% -Rate for instruction 2123: 17.5105% -Rate for instruction 2124: 17.5059% -Rate for instruction 2125: 17.5067% -Rate for instruction 2126: 17.5039% -Rate for instruction 2127: 17.5011% -Rate for instruction 2128: 17.5073% -Rate for instruction 2129: 17.5009% -Rate for instruction 2130: 17.4963% -Rate for instruction 2131: 17.4899% -Rate for instruction 2132: 17.4961% -Rate for instruction 2133: 17.4915% -Rate for instruction 2134: 17.4869% -Rate for instruction 2135: 17.4842% -Rate for instruction 2136: 17.4814% -Rate for instruction 2137: 17.4786% -Rate for instruction 2138: 17.4758% -Rate for instruction 2139: 17.4694% -Rate for instruction 2140: 17.4739% -Rate for instruction 2141: 17.4693% -Rate for instruction 2142: 17.4719% -Rate for instruction 2143: 17.4745% -Rate for instruction 2144: 17.47% -Rate for instruction 2145: 17.4744% -Rate for instruction 2146: 17.4734% -Rate for instruction 2147: 17.4688% -Rate for instruction 2148: 17.475% -Rate for instruction 2149: 17.4741% -Rate for instruction 2150: 17.4695% -Rate for instruction 2151: 17.4685% -Rate for instruction 2152: 17.4622% -Rate for instruction 2153: 17.463% -Rate for instruction 2154: 17.4639% -Rate for instruction 2155: 17.4665% -Rate for instruction 2156: 17.4691% -Rate for instruction 2157: 17.4663% -Rate for instruction 2158: 17.476% -Rate for instruction 2159: 17.4715% -Rate for instruction 2160: 17.4741% -Rate for instruction 2161: 17.4838% -Rate for instruction 2162: 17.4935% -Rate for instruction 2163: 17.4979% -Rate for instruction 2164: 17.504% -Rate for instruction 2165: 17.5083% -Rate for instruction 2166: 17.5145% -Rate for instruction 2167: 17.5082% -Rate for instruction 2168: 17.5072% -Rate for instruction 2169: 17.5009% -Rate for instruction 2170: 17.5052% -Rate for instruction 2171: 17.5007% -Rate for instruction 2172: 17.498% -Rate for instruction 2173: 17.5023% -Rate for instruction 2174: 17.5084% -Rate for instruction 2175: 17.5092% -Rate for instruction 2176: 17.5029% -Rate for instruction 2177: 17.5055% -Rate for instruction 2178: 17.5027% -Rate for instruction 2179: 17.5106% -Rate for instruction 2180: 17.5202% -Rate for instruction 2181: 17.5316% -Rate for instruction 2182: 17.527% -Rate for instruction 2183: 17.5261% -Rate for instruction 2184: 17.5233% -Rate for instruction 2185: 17.5188% -Rate for instruction 2186: 17.5126% -Rate for instruction 2187: 17.5098% -Rate for instruction 2188: 17.5054% -Rate for instruction 2189: 17.5009% -Rate for instruction 2190: 17.4946% -Rate for instruction 2191: 17.4902% -Rate for instruction 2192: 17.4875% -Rate for instruction 2193: 17.4935% -Rate for instruction 2194: 17.4908% -Rate for instruction 2195: 17.4898% -Rate for instruction 2196: 17.4854% -Rate for instruction 2197: 17.4879% -Rate for instruction 2198: 17.487% -Rate for instruction 2199: 17.4825% -Rate for instruction 2200: 17.4868% -Rate for instruction 2201: 17.4946% -Rate for instruction 2202: 17.4989% -Rate for instruction 2203: 17.4962% -Rate for instruction 2204: 17.5004% -Rate for instruction 2205: 17.4942% -Rate for instruction 2206: 17.4881% -Rate for instruction 2207: 17.4836% -Rate for instruction 2208: 17.4775% -Rate for instruction 2209: 17.473% -Rate for instruction 2210: 17.4669% -Rate for instruction 2211: 17.4694% -Rate for instruction 2212: 17.4737% -Rate for instruction 2213: 17.471% -Rate for instruction 2214: 17.4648% -Rate for instruction 2215: 17.4622% -Rate for instruction 2216: 17.4664% -Rate for instruction 2217: 17.4724% -Rate for instruction 2218: 17.4663% -Rate for instruction 2219: 17.4636% -Rate for instruction 2220: 17.4627% -Rate for instruction 2221: 17.4617% -Rate for instruction 2222: 17.4625% -Rate for instruction 2223: 17.4581% -Rate for instruction 2224: 17.4624% -Rate for instruction 2225: 17.4649% -Rate for instruction 2226: 17.4623% -Rate for instruction 2227: 17.4682% -Rate for instruction 2228: 17.4656% -Rate for instruction 2229: 17.4698% -Rate for instruction 2230: 17.4654% -Rate for instruction 2231: 17.4697% -Rate for instruction 2232: 17.4636% -Rate for instruction 2233: 17.4575% -Rate for instruction 2234: 17.4531% -Rate for instruction 2235: 17.447% -Rate for instruction 2236: 17.4427% -Rate for instruction 2237: 17.4366% -Rate for instruction 2238: 17.4357% -Rate for instruction 2239: 17.4382% -Rate for instruction 2240: 17.4338% -Rate for instruction 2241: 17.4312% -Rate for instruction 2242: 17.432% -Rate for instruction 2243: 17.4362% -Rate for instruction 2244: 17.437% -Rate for instruction 2245: 17.4413% -Rate for instruction 2246: 17.4369% -Rate for instruction 2247: 17.4429% -Rate for instruction 2248: 17.4368% -Rate for instruction 2249: 17.4427% -Rate for instruction 2250: 17.4452% -Rate for instruction 2251: 17.446% -Rate for instruction 2252: 17.44% -Rate for instruction 2253: 17.4357% -Rate for instruction 2254: 17.4433% -Rate for instruction 2255: 17.4458% -Rate for instruction 2256: 17.4449% -Rate for instruction 2257: 17.4406% -Rate for instruction 2258: 17.4379% -Rate for instruction 2259: 17.4404% -Rate for instruction 2260: 17.4361% -Rate for instruction 2261: 17.4386% -Rate for instruction 2262: 17.436% -Rate for instruction 2263: 17.4317% -Rate for instruction 2264: 17.4376% -Rate for instruction 2265: 17.4435% -Rate for instruction 2266: 17.4392% -Rate for instruction 2267: 17.4366% -Rate for instruction 2268: 17.4323% -Rate for instruction 2269: 17.4263% -Rate for instruction 2270: 17.4254% -Rate for instruction 2271: 17.4194% -Rate for instruction 2272: 17.4202% -Rate for instruction 2273: 17.4193% -Rate for instruction 2274: 17.4167% -Rate for instruction 2275: 17.4192% -Rate for instruction 2276: 17.4133% -Rate for instruction 2277: 17.4107% -Rate for instruction 2278: 17.4098% -Rate for instruction 2279: 17.4072% -Rate for instruction 2280: 17.4013% -Rate for instruction 2281: 17.3987% -Rate for instruction 2282: 17.3978% -Rate for instruction 2283: 17.3986% -Rate for instruction 2284: 17.3977% -Rate for instruction 2285: 17.3935% -Rate for instruction 2286: 17.396% -Rate for instruction 2287: 17.3968% -Rate for instruction 2288: 17.4026% -Rate for instruction 2289: 17.3984% -Rate for instruction 2290: 17.3975% -Rate for instruction 2291: 17.3966% -Rate for instruction 2292: 17.3974% -Rate for instruction 2293: 17.3949% -Rate for instruction 2294: 17.3923% -Rate for instruction 2295: 17.3898% -Rate for instruction 2296: 17.3839% -Rate for instruction 2297: 17.3847% -Rate for instruction 2298: 17.3788% -Rate for instruction 2299: 17.3796% -Rate for instruction 2300: 17.3787% -Rate for instruction 2301: 17.3729% -Rate for instruction 2302: 17.3753% -Rate for instruction 2303: 17.3695% -Rate for instruction 2304: 17.3636% -Rate for instruction 2305: 17.3694% -Rate for instruction 2306: 17.3735% -Rate for instruction 2307: 17.3827% -Rate for instruction 2308: 17.3785% -Rate for instruction 2309: 17.381% -Rate for instruction 2310: 17.3801% -Rate for instruction 2311: 17.3792% -Rate for instruction 2312: 17.385% -Rate for instruction 2313: 17.3891% -Rate for instruction 2314: 17.3849% -Rate for instruction 2315: 17.3907% -Rate for instruction 2316: 17.3865% -Rate for instruction 2317: 17.3907% -Rate for instruction 2318: 17.3848% -Rate for instruction 2319: 17.3806% -Rate for instruction 2320: 17.3881% -Rate for instruction 2321: 17.3922% -Rate for instruction 2322: 17.4029% -Rate for instruction 2323: 17.3987% -Rate for instruction 2324: 17.3962% -Rate for instruction 2325: 17.4003% -Rate for instruction 2326: 17.3978% -Rate for instruction 2327: 17.392% -Rate for instruction 2328: 17.3977% -Rate for instruction 2329: 17.3985% -Rate for instruction 2330: 17.3993% -Rate for instruction 2331: 17.4001% -Rate for instruction 2332: 17.4008% -Rate for instruction 2333: 17.4% -Rate for instruction 2334: 17.3975% -Rate for instruction 2335: 17.3933% -Rate for instruction 2336: 17.3908% -Rate for instruction 2337: 17.3899% -Rate for instruction 2338: 17.3874% -Rate for instruction 2339: 17.3817% -Rate for instruction 2340: 17.3792% -Rate for instruction 2341: 17.375% -Rate for instruction 2342: 17.3824% -Rate for instruction 2343: 17.3766% -Rate for instruction 2344: 17.3807% -Rate for instruction 2345: 17.3749% -Rate for instruction 2346: 17.379% -Rate for instruction 2347: 17.3749% -Rate for instruction 2348: 17.3822% -Rate for instruction 2349: 17.3764% -Rate for instruction 2350: 17.3838% -Rate for instruction 2351: 17.3845% -Rate for instruction 2352: 17.3821% -Rate for instruction 2353: 17.3861% -Rate for instruction 2354: 17.3853% -Rate for instruction 2355: 17.3877% -Rate for instruction 2356: 17.3819% -Rate for instruction 2357: 17.3778% -Rate for instruction 2358: 17.3737% -Rate for instruction 2359: 17.368% -Rate for instruction 2360: 17.3737% -Rate for instruction 2361: 17.3712% -Rate for instruction 2362: 17.3655% -Rate for instruction 2363: 17.3614% -Rate for instruction 2364: 17.3573% -Rate for instruction 2365: 17.3565% -Rate for instruction 2366: 17.3573% -Rate for instruction 2367: 17.3532% -Rate for instruction 2368: 17.3491% -Rate for instruction 2369: 17.3434% -Rate for instruction 2370: 17.3474% -Rate for instruction 2371: 17.345% -Rate for instruction 2372: 17.3393% -Rate for instruction 2373: 17.3352% -Rate for instruction 2374: 17.3296% -Rate for instruction 2375: 17.3271% -Rate for instruction 2376: 17.3279% -Rate for instruction 2377: 17.3287% -Rate for instruction 2378: 17.3263% -Rate for instruction 2379: 17.3255% -Rate for instruction 2380: 17.323% -Rate for instruction 2381: 17.3174% -Rate for instruction 2382: 17.3133% -Rate for instruction 2383: 17.3158% -Rate for instruction 2384: 17.3117% -Rate for instruction 2385: 17.3093% -Rate for instruction 2386: 17.3085% -Rate for instruction 2387: 17.3077% -Rate for instruction 2388: 17.3021% -Rate for instruction 2389: 17.3045% -Rate for instruction 2390: 17.3037% -Rate for instruction 2391: 17.3061% -Rate for instruction 2392: 17.3101% -Rate for instruction 2393: 17.3061% -Rate for instruction 2394: 17.3117% -Rate for instruction 2395: 17.3077% -Rate for instruction 2396: 17.3021% -Rate for instruction 2397: 17.2981% -Rate for instruction 2398: 17.2989% -Rate for instruction 2399: 17.2965% -Rate for instruction 2400: 17.2941% -Rate for instruction 2401: 17.2885% -Rate for instruction 2402: 17.2861% -Rate for instruction 2403: 17.2821% -Rate for instruction 2404: 17.2781% -Rate for instruction 2405: 17.2805% -Rate for instruction 2406: 17.2781% -Rate for instruction 2407: 17.2773% -Rate for instruction 2408: 17.2829% -Rate for instruction 2409: 17.2822% -Rate for instruction 2410: 17.283% -Rate for instruction 2411: 17.2838% -Rate for instruction 2412: 17.2782% -Rate for instruction 2413: 17.2822% -Rate for instruction 2414: 17.2782% -Rate for instruction 2415: 17.2854% -Rate for instruction 2416: 17.2846% -Rate for instruction 2417: 17.287% -Rate for instruction 2418: 17.2894% -Rate for instruction 2419: 17.2886% -Rate for instruction 2420: 17.2878% -Rate for instruction 2421: 17.2902% -Rate for instruction 2422: 17.2942% -Rate for instruction 2423: 17.2918% -Rate for instruction 2424: 17.2879% -Rate for instruction 2425: 17.2871% -Rate for instruction 2426: 17.2815% -Rate for instruction 2427: 17.2776% -Rate for instruction 2428: 17.2721% -Rate for instruction 2429: 17.2745% -Rate for instruction 2430: 17.2784% -Rate for instruction 2431: 17.2761% -Rate for instruction 2432: 17.2705% -Rate for instruction 2433: 17.2713% -Rate for instruction 2434: 17.2658% -Rate for instruction 2435: 17.2651% -Rate for instruction 2436: 17.2674% -Rate for instruction 2437: 17.2714% -Rate for instruction 2438: 17.2722% -Rate for instruction 2439: 17.2777% -Rate for instruction 2440: 17.2848% -Rate for instruction 2441: 17.2809% -Rate for instruction 2442: 17.277% -Rate for instruction 2443: 17.2778% -Rate for instruction 2444: 17.2739% -Rate for instruction 2445: 17.2778% -Rate for instruction 2446: 17.2802% -Rate for instruction 2447: 17.2747% -Rate for instruction 2448: 17.2786% -Rate for instruction 2449: 17.281% -Rate for instruction 2450: 17.2771% -Rate for instruction 2451: 17.2748% -Rate for instruction 2452: 17.2724% -Rate for instruction 2453: 17.2795% -Rate for instruction 2454: 17.2818% -Rate for instruction 2455: 17.2811% -Rate for instruction 2456: 17.2819% -Rate for instruction 2457: 17.2827% -Rate for instruction 2458: 17.2913% -Rate for instruction 2459: 17.2858% -Rate for instruction 2460: 17.296% -Rate for instruction 2461: 17.3046% -Rate for instruction 2462: 17.3069% -Rate for instruction 2463: 17.3077% -Rate for instruction 2464: 17.31% -Rate for instruction 2465: 17.3046% -Rate for instruction 2466: 17.3085% -Rate for instruction 2467: 17.3077% -Rate for instruction 2468: 17.3038% -Rate for instruction 2469: 17.303% -Rate for instruction 2470: 17.3116% -Rate for instruction 2471: 17.3061% -Rate for instruction 2472: 17.3007% -Rate for instruction 2473: 17.2953% -Rate for instruction 2474: 17.2945% -Rate for instruction 2475: 17.2891% -Rate for instruction 2476: 17.2852% -Rate for instruction 2477: 17.2798% -Rate for instruction 2478: 17.2883% -Rate for instruction 2479: 17.286% -Rate for instruction 2480: 17.2821% -Rate for instruction 2481: 17.2798% -Rate for instruction 2482: 17.279% -Rate for instruction 2483: 17.2752% -Rate for instruction 2484: 17.2729% -Rate for instruction 2485: 17.2706% -Rate for instruction 2486: 17.2698% -Rate for instruction 2487: 17.266% -Rate for instruction 2488: 17.2606% -Rate for instruction 2489: 17.2567% -Rate for instruction 2490: 17.2575% -Rate for instruction 2491: 17.2537% -Rate for instruction 2492: 17.2498% -Rate for instruction 2493: 17.2491% -Rate for instruction 2494: 17.2453% -Rate for instruction 2495: 17.2399% -Rate for instruction 2496: 17.2391% -Rate for instruction 2497: 17.2353% -Rate for instruction 2498: 17.2346% -Rate for instruction 2499: 17.2292% -Rate for instruction 2500: 17.2285% -Rate for instruction 2501: 17.2278% -Rate for instruction 2502: 17.227% -Rate for instruction 2503: 17.2217% -Rate for instruction 2504: 17.2179% -Rate for instruction 2505: 17.2125% -Rate for instruction 2506: 17.2118% -Rate for instruction 2507: 17.208% -Rate for instruction 2508: 17.2058% -Rate for instruction 2509: 17.2035% -Rate for instruction 2510: 17.1997% -Rate for instruction 2511: 17.2005% -Rate for instruction 2512: 17.2029% -Rate for instruction 2513: 17.1991% -Rate for instruction 2514: 17.1983% -Rate for instruction 2515: 17.1976% -Rate for instruction 2516: 17.1939% -Rate for instruction 2517: 17.1931% -Rate for instruction 2518: 17.1878% -Rate for instruction 2519: 17.1902% -Rate for instruction 2520: 17.1879% -Rate for instruction 2521: 17.1826% -Rate for instruction 2522: 17.1865% -Rate for instruction 2523: 17.1812% -Rate for instruction 2524: 17.1835% -Rate for instruction 2525: 17.1844% -Rate for instruction 2526: 17.1852% -Rate for instruction 2527: 17.186% -Rate for instruction 2528: 17.1822% -Rate for instruction 2529: 17.1815% -Rate for instruction 2530: 17.1793% -Rate for instruction 2531: 17.174% -Rate for instruction 2532: 17.1688% -Rate for instruction 2533: 17.1681% -Rate for instruction 2534: 17.1658% -Rate for instruction 2535: 17.1636% -Rate for instruction 2536: 17.1584% -Rate for instruction 2537: 17.1607% -Rate for instruction 2538: 17.1585% -Rate for instruction 2539: 17.1563% -Rate for instruction 2540: 17.1571% -Rate for instruction 2541: 17.1534% -Rate for instruction 2542: 17.1617% -Rate for instruction 2543: 17.1671% -Rate for instruction 2544: 17.1694% -Rate for instruction 2545: 17.1763% -Rate for instruction 2546: 17.1756% -Rate for instruction 2547: 17.1794% -Rate for instruction 2548: 17.1742% -Rate for instruction 2549: 17.1795% -Rate for instruction 2550: 17.1758% -Rate for instruction 2551: 17.1721% -Rate for instruction 2552: 17.1668% -Rate for instruction 2553: 17.1631% -Rate for instruction 2554: 17.1654% -Rate for instruction 2555: 17.1617% -Rate for instruction 2556: 17.1655% -Rate for instruction 2557: 17.1649% -Rate for instruction 2558: 17.1612% -Rate for instruction 2559: 17.165% -Rate for instruction 2560: 17.1598% -Rate for instruction 2561: 17.1606% -Rate for instruction 2562: 17.1674% -Rate for instruction 2563: 17.1712% -Rate for instruction 2564: 17.1765% -Rate for instruction 2565: 17.1713% -Rate for instruction 2566: 17.1736% -Rate for instruction 2567: 17.1729% -Rate for instruction 2568: 17.1812% -Rate for instruction 2569: 17.1895% -Rate for instruction 2570: 17.1933% -Rate for instruction 2571: 17.1925% -Rate for instruction 2572: 17.1918% -Rate for instruction 2573: 17.1882% -Rate for instruction 2574: 17.186% -Rate for instruction 2575: 17.1823% -Rate for instruction 2576: 17.1786% -Rate for instruction 2577: 17.1764% -Rate for instruction 2578: 17.1727% -Rate for instruction 2579: 17.178% -Rate for instruction 2580: 17.1803% -Rate for instruction 2581: 17.1751% -Rate for instruction 2582: 17.17% -Rate for instruction 2583: 17.1678% -Rate for instruction 2584: 17.1626% -Rate for instruction 2585: 17.1619% -Rate for instruction 2586: 17.1598% -Rate for instruction 2587: 17.1546% -Rate for instruction 2588: 17.1524% -Rate for instruction 2589: 17.1518% -Rate for instruction 2590: 17.1511% -Rate for instruction 2591: 17.1489% -Rate for instruction 2592: 17.1468% -Rate for instruction 2593: 17.1476% -Rate for instruction 2594: 17.1454% -Rate for instruction 2595: 17.1521% -Rate for instruction 2596: 17.1574% -Rate for instruction 2597: 17.1582% -Rate for instruction 2598: 17.1634% -Rate for instruction 2599: 17.1583% -Rate for instruction 2600: 17.1606% -Rate for instruction 2601: 17.1658% -Rate for instruction 2602: 17.171% -Rate for instruction 2603: 17.1748% -Rate for instruction 2604: 17.1741% -Rate for instruction 2605: 17.1749% -Rate for instruction 2606: 17.1698% -Rate for instruction 2607: 17.1735% -Rate for instruction 2608: 17.1802% -Rate for instruction 2609: 17.1854% -Rate for instruction 2610: 17.1862% -Rate for instruction 2611: 17.184% -Rate for instruction 2612: 17.1921% -Rate for instruction 2613: 17.2003% -Rate for instruction 2614: 17.1996% -Rate for instruction 2615: 17.1974% -Rate for instruction 2616: 17.1967% -Rate for instruction 2617: 17.1931% -Rate for instruction 2618: 17.188% -Rate for instruction 2619: 17.1858% -Rate for instruction 2620: 17.1896% -Rate for instruction 2621: 17.1918% -Rate for instruction 2622: 17.1882% -Rate for instruction 2623: 17.1875% -Rate for instruction 2624: 17.1883% -Rate for instruction 2625: 17.1876% -Rate for instruction 2626: 17.1884% -Rate for instruction 2627: 17.1891% -Rate for instruction 2628: 17.1855% -Rate for instruction 2629: 17.1819% -Rate for instruction 2630: 17.1783% -Rate for instruction 2631: 17.1791% -Rate for instruction 2632: 17.1755% -Rate for instruction 2633: 17.1734% -Rate for instruction 2634: 17.1741% -Rate for instruction 2635: 17.172% -Rate for instruction 2636: 17.1728% -Rate for instruction 2637: 17.1706% -Rate for instruction 2638: 17.17% -Rate for instruction 2639: 17.1678% -Rate for instruction 2640: 17.1642% -Rate for instruction 2641: 17.165% -Rate for instruction 2642: 17.16% -Rate for instruction 2643: 17.1622% -Rate for instruction 2644: 17.1659% -Rate for instruction 2645: 17.1638% -Rate for instruction 2646: 17.1602% -Rate for instruction 2647: 17.161% -Rate for instruction 2648: 17.1589% -Rate for instruction 2649: 17.1582% -Rate for instruction 2650: 17.159% -Rate for instruction 2651: 17.154% -Rate for instruction 2652: 17.1489% -Rate for instruction 2653: 17.1468% -Rate for instruction 2654: 17.1433% -Rate for instruction 2655: 17.1426% -Rate for instruction 2656: 17.1419% -Rate for instruction 2657: 17.1413% -Rate for instruction 2658: 17.1421% -Rate for instruction 2659: 17.1371% -Rate for instruction 2660: 17.135% -Rate for instruction 2661: 17.1343% -Rate for instruction 2662: 17.1351% -Rate for instruction 2663: 17.133% -Rate for instruction 2664: 17.1338% -Rate for instruction 2665: 17.1331% -Rate for instruction 2666: 17.1325% -Rate for instruction 2667: 17.1275% -Rate for instruction 2668: 17.1297% -Rate for instruction 2669: 17.132% -Rate for instruction 2670: 17.1284% -Rate for instruction 2671: 17.1278% -Rate for instruction 2672: 17.1257% -Rate for instruction 2673: 17.1236% -Rate for instruction 2674: 17.1215% -Rate for instruction 2675: 17.1223% -Rate for instruction 2676: 17.1202% -Rate for instruction 2677: 17.1181% -Rate for instruction 2678: 17.1146% -Rate for instruction 2679: 17.1096% -Rate for instruction 2680: 17.109% -Rate for instruction 2681: 17.1098% -Rate for instruction 2682: 17.1091% -Rate for instruction 2683: 17.1085% -Rate for instruction 2684: 17.105% -Rate for instruction 2685: 17.1015% -Rate for instruction 2686: 17.1009% -Rate for instruction 2687: 17.0988% -Rate for instruction 2688: 17.0967% -Rate for instruction 2689: 17.0947% -Rate for instruction 2690: 17.0926% -Rate for instruction 2691: 17.0934% -Rate for instruction 2692: 17.0942% -Rate for instruction 2693: 17.0935% -Rate for instruction 2694: 17.0915% -Rate for instruction 2695: 17.0894% -Rate for instruction 2696: 17.0874% -Rate for instruction 2697: 17.0939% -Rate for instruction 2698: 17.1004% -Rate for instruction 2699: 17.0983% -Rate for instruction 2700: 17.0934% -Rate for instruction 2701: 17.0885% -Rate for instruction 2702: 17.0879% -Rate for instruction 2703: 17.083% -Rate for instruction 2704: 17.0823% -Rate for instruction 2705: 17.086% -Rate for instruction 2706: 17.0825% -Rate for instruction 2707: 17.0833% -Rate for instruction 2708: 17.0883% -Rate for instruction 2709: 17.0891% -Rate for instruction 2710: 17.0913% -Rate for instruction 2711: 17.0978% -Rate for instruction 2712: 17.1014% -Rate for instruction 2713: 17.1065% -Rate for instruction 2714: 17.1058% -Rate for instruction 2715: 17.1123% -Rate for instruction 2716: 17.1159% -Rate for instruction 2717: 17.111% -Rate for instruction 2718: 17.1089% -Rate for instruction 2719: 17.114% -Rate for instruction 2720: 17.1119% -Rate for instruction 2721: 17.107% -Rate for instruction 2722: 17.1036% -Rate for instruction 2723: 17.1015% -Rate for instruction 2724: 17.0981% -Rate for instruction 2725: 17.0961% -Rate for instruction 2726: 17.0912% -Rate for instruction 2727: 17.0863% -Rate for instruction 2728: 17.0829% -Rate for instruction 2729: 17.0823% -Rate for instruction 2730: 17.0873% -Rate for instruction 2731: 17.0909% -Rate for instruction 2732: 17.1001% -Rate for instruction 2733: 17.0953% -Rate for instruction 2734: 17.0918% -Rate for instruction 2735: 17.094% -Rate for instruction 2736: 17.092% -Rate for instruction 2737: 17.0956% -Rate for instruction 2738: 17.0992% -Rate for instruction 2739: 17.0957% -Rate for instruction 2740: 17.0993% -Rate for instruction 2741: 17.1057% -Rate for instruction 2742: 17.1051% -Rate for instruction 2743: 17.1031% -Rate for instruction 2744: 17.1108% -Rate for instruction 2745: 17.1116% -Rate for instruction 2746: 17.1068% -Rate for instruction 2747: 17.1033% -Rate for instruction 2748: 17.0985% -Rate for instruction 2749: 17.0965% -Rate for instruction 2750: 17.0917% -Rate for instruction 2751: 17.0883% -Rate for instruction 2752: 17.0835% -Rate for instruction 2753: 17.0842% -Rate for instruction 2754: 17.085% -Rate for instruction 2755: 17.0816% -Rate for instruction 2756: 17.0796% -Rate for instruction 2757: 17.0804% -Rate for instruction 2758: 17.077% -Rate for instruction 2759: 17.0722% -Rate for instruction 2760: 17.0674% -Rate for instruction 2761: 17.0668% -Rate for instruction 2762: 17.062% -Rate for instruction 2763: 17.0614% -Rate for instruction 2764: 17.0594% -Rate for instruction 2765: 17.0657% -Rate for instruction 2766: 17.0721% -Rate for instruction 2767: 17.0715% -Rate for instruction 2768: 17.0667% -Rate for instruction 2769: 17.0675% -Rate for instruction 2770: 17.0669% -Rate for instruction 2771: 17.0635% -Rate for instruction 2772: 17.0587% -Rate for instruction 2773: 17.054% -Rate for instruction 2774: 17.052% -Rate for instruction 2775: 17.05% -Rate for instruction 2776: 17.0549% -Rate for instruction 2777: 17.0557% -Rate for instruction 2778: 17.0551% -Rate for instruction 2779: 17.0587% -Rate for instruction 2780: 17.0553% -Rate for instruction 2781: 17.0575% -Rate for instruction 2782: 17.0527% -Rate for instruction 2783: 17.048% -Rate for instruction 2784: 17.0515% -Rate for instruction 2785: 17.0495% -Rate for instruction 2786: 17.0489% -Rate for instruction 2787: 17.0456% -Rate for instruction 2788: 17.0408% -Rate for instruction 2789: 17.0458% -Rate for instruction 2790: 17.0507% -Rate for instruction 2791: 17.0501% -Rate for instruction 2792: 17.0454% -Rate for instruction 2793: 17.042% -Rate for instruction 2794: 17.04% -Rate for instruction 2795: 17.0353% -Rate for instruction 2796: 17.0444% -Rate for instruction 2797: 17.0548% -Rate for instruction 2798: 17.0542% -Rate for instruction 2799: 17.0549% -Rate for instruction 2800: 17.053% -Rate for instruction 2801: 17.0483% -Rate for instruction 2802: 17.0463% -Rate for instruction 2803: 17.0443% -Rate for instruction 2804: 17.052% -Rate for instruction 2805: 17.0582% -Rate for instruction 2806: 17.0563% -Rate for instruction 2807: 17.0557% -Rate for instruction 2808: 17.0537% -Rate for instruction 2809: 17.06% -Rate for instruction 2810: 17.0621% -Rate for instruction 2811: 17.0629% -Rate for instruction 2812: 17.0609% -Rate for instruction 2813: 17.063% -Rate for instruction 2814: 17.0583% -Rate for instruction 2815: 17.0577% -Rate for instruction 2816: 17.0544% -Rate for instruction 2817: 17.0525% -Rate for instruction 2818: 17.0546% -Rate for instruction 2819: 17.0499% -Rate for instruction 2820: 17.0466% -Rate for instruction 2821: 17.0433% -Rate for instruction 2822: 17.0468% -Rate for instruction 2823: 17.0448% -Rate for instruction 2824: 17.0511% -Rate for instruction 2825: 17.0477% -Rate for instruction 2826: 17.0472% -Rate for instruction 2827: 17.0425% -Rate for instruction 2828: 17.0487% -Rate for instruction 2829: 17.044% -Rate for instruction 2830: 17.0394% -Rate for instruction 2831: 17.0401% -Rate for instruction 2832: 17.0436% -Rate for instruction 2833: 17.0417% -Rate for instruction 2834: 17.0452% -Rate for instruction 2835: 17.0514% -Rate for instruction 2836: 17.0589% -Rate for instruction 2837: 17.061% -Rate for instruction 2838: 17.0618% -Rate for instruction 2839: 17.0599% -Rate for instruction 2840: 17.0593% -Rate for instruction 2841: 17.0668% -Rate for instruction 2842: 17.0689% -Rate for instruction 2843: 17.0683% -Rate for instruction 2844: 17.0731% -Rate for instruction 2845: 17.0685% -Rate for instruction 2846: 17.0733% -Rate for instruction 2847: 17.07% -Rate for instruction 2848: 17.0721% -Rate for instruction 2849: 17.0729% -Rate for instruction 2850: 17.075% -Rate for instruction 2851: 17.0825% -Rate for instruction 2852: 17.0805% -Rate for instruction 2853: 17.0786% -Rate for instruction 2854: 17.0767% -Rate for instruction 2855: 17.0828% -Rate for instruction 2856: 17.0889% -Rate for instruction 2857: 17.087% -Rate for instruction 2858: 17.085% -Rate for instruction 2859: 17.0818% -Rate for instruction 2860: 17.0906% -Rate for instruction 2861: 17.09% -Rate for instruction 2862: 17.0948% -Rate for instruction 2863: 17.0901% -Rate for instruction 2864: 17.0963% -Rate for instruction 2865: 17.0997% -Rate for instruction 2866: 17.0991% -Rate for instruction 2867: 17.0945% -Rate for instruction 2868: 17.1019% -Rate for instruction 2869: 17.1094% -Rate for instruction 2870: 17.1061% -Rate for instruction 2871: 17.1055% -Rate for instruction 2872: 17.1035% -Rate for instruction 2873: 17.1029% -Rate for instruction 2874: 17.1023% -Rate for instruction 2875: 17.1071% -Rate for instruction 2876: 17.1065% -Rate for instruction 2877: 17.1019% -Rate for instruction 2878: 17.0986% -Rate for instruction 2879: 17.0967% -Rate for instruction 2880: 17.0988% -Rate for instruction 2881: 17.1022% -Rate for instruction 2882: 17.1056% -Rate for instruction 2883: 17.113% -Rate for instruction 2884: 17.1124% -Rate for instruction 2885: 17.1198% -Rate for instruction 2886: 17.1298% -Rate for instruction 2887: 17.1252% -Rate for instruction 2888: 17.1246% -Rate for instruction 2889: 17.1254% -Rate for instruction 2890: 17.1208% -Rate for instruction 2891: 17.1188% -Rate for instruction 2892: 17.1143% -Rate for instruction 2893: 17.119% -Rate for instruction 2894: 17.125% -Rate for instruction 2895: 17.1218% -Rate for instruction 2896: 17.1185% -Rate for instruction 2897: 17.1166% -Rate for instruction 2898: 17.1239% -Rate for instruction 2899: 17.126% -Rate for instruction 2900: 17.132% -Rate for instruction 2901: 17.1301% -Rate for instruction 2902: 17.1361% -Rate for instruction 2903: 17.1408% -Rate for instruction 2904: 17.1362% -Rate for instruction 2905: 17.1409% -Rate for instruction 2906: 17.1496% -Rate for instruction 2907: 17.1477% -Rate for instruction 2908: 17.155% -Rate for instruction 2909: 17.1597% -Rate for instruction 2910: 17.163% -Rate for instruction 2911: 17.1637% -Rate for instruction 2912: 17.1644% -Rate for instruction 2913: 17.1665% -Rate for instruction 2914: 17.1672% -Rate for instruction 2915: 17.1652% -Rate for instruction 2916: 17.1699% -Rate for instruction 2917: 17.1719% -Rate for instruction 2918: 17.1779% -Rate for instruction 2919: 17.1773% -Rate for instruction 2920: 17.1754% -Rate for instruction 2921: 17.1708% -Rate for instruction 2922: 17.1676% -Rate for instruction 2923: 17.163% -Rate for instruction 2924: 17.1637% -Rate for instruction 2925: 17.1592% -Rate for instruction 2926: 17.1559% -Rate for instruction 2927: 17.1606% -Rate for instruction 2928: 17.1639% -Rate for instruction 2929: 17.1646% -Rate for instruction 2930: 17.1627% -Rate for instruction 2931: 17.1581% -Rate for instruction 2932: 17.1549% -Rate for instruction 2933: 17.153% -Rate for instruction 2934: 17.1485% -Rate for instruction 2935: 17.1439% -Rate for instruction 2936: 17.1447% -Rate for instruction 2937: 17.1414% -Rate for instruction 2938: 17.1369% -Rate for instruction 2939: 17.1363% -Rate for instruction 2940: 17.1357% -Rate for instruction 2941: 17.1312% -Rate for instruction 2942: 17.1345% -Rate for instruction 2943: 17.1326% -Rate for instruction 2944: 17.1333% -Rate for instruction 2945: 17.1354% -Rate for instruction 2946: 17.1387% -Rate for instruction 2947: 17.1342% -Rate for instruction 2948: 17.1323% -Rate for instruction 2949: 17.1278% -Rate for instruction 2950: 17.1298% -Rate for instruction 2951: 17.1279% -Rate for instruction 2952: 17.1247% -Rate for instruction 2953: 17.1215% -Rate for instruction 2954: 17.1196% -Rate for instruction 2955: 17.119% -Rate for instruction 2956: 17.1197% -Rate for instruction 2957: 17.1179% -Rate for instruction 2958: 17.1186% -Rate for instruction 2959: 17.1206% -Rate for instruction 2960: 17.1252% -Rate for instruction 2961: 17.122% -Rate for instruction 2962: 17.124% -Rate for instruction 2963: 17.1247% -Rate for instruction 2964: 17.1228% -Rate for instruction 2965: 17.1223% -Rate for instruction 2966: 17.1191% -Rate for instruction 2967: 17.1159% -Rate for instruction 2968: 17.1166% -Rate for instruction 2969: 17.1147% -Rate for instruction 2970: 17.1193% -Rate for instruction 2971: 17.1162% -Rate for instruction 2972: 17.1169% -Rate for instruction 2973: 17.115% -Rate for instruction 2974: 17.1131% -Rate for instruction 2975: 17.1112% -Rate for instruction 2976: 17.1094% -Rate for instruction 2977: 17.1062% -Rate for instruction 2978: 17.1056% -Rate for instruction 2979: 17.1025% -Rate for instruction 2980: 17.1006% -Rate for instruction 2981: 17.0987% -Rate for instruction 2982: 17.0943% -Rate for instruction 2983: 17.0976% -Rate for instruction 2984: 17.0983% -Rate for instruction 2985: 17.0977% -Rate for instruction 2986: 17.0946% -Rate for instruction 2987: 17.0979% -Rate for instruction 2988: 17.1012% -Rate for instruction 2989: 17.0967% -Rate for instruction 2990: 17.0974% -Rate for instruction 2991: 17.0943% -Rate for instruction 2992: 17.1014% -Rate for instruction 2993: 17.097% -Rate for instruction 2994: 17.1041% -Rate for instruction 2995: 17.1061% -Rate for instruction 2996: 17.1081% -Rate for instruction 2997: 17.114% -Rate for instruction 2998: 17.116% -Rate for instruction 2999: 17.1141% -Rate for instruction 3000: 17.1135% -Rate for instruction 3001: 17.1104% -Rate for instruction 3002: 17.1149% -Rate for instruction 3003: 17.1195% -Rate for instruction 3004: 17.1215% -Rate for instruction 3005: 17.1209% -Rate for instruction 3006: 17.1229% -Rate for instruction 3007: 17.1236% -Rate for instruction 3008: 17.1217% -Rate for instruction 3009: 17.1199% -Rate for instruction 3010: 17.118% -Rate for instruction 3011: 17.1187% -Rate for instruction 3012: 17.1194% -Rate for instruction 3013: 17.115% -Rate for instruction 3014: 17.1119% -Rate for instruction 3015: 17.1113% -Rate for instruction 3016: 17.1069% -Rate for instruction 3017: 17.1063% -Rate for instruction 3018: 17.107% -Rate for instruction 3019: 17.109% -Rate for instruction 3020: 17.1059% -Rate for instruction 3021: 17.1079% -Rate for instruction 3022: 17.1099% -Rate for instruction 3023: 17.1055% -Rate for instruction 3024: 17.1062% -Rate for instruction 3025: 17.1043% -Rate for instruction 3026: 17.1076% -Rate for instruction 3027: 17.1134% -Rate for instruction 3028: 17.1141% -Rate for instruction 3029: 17.1135% -Rate for instruction 3030: 17.1091% -Rate for instruction 3031: 17.1111% -Rate for instruction 3032: 17.108% -Rate for instruction 3033: 17.1087% -Rate for instruction 3034: 17.1043% -Rate for instruction 3035: 17.1075% -Rate for instruction 3036: 17.112% -Rate for instruction 3037: 17.1077% -Rate for instruction 3038: 17.1122% -Rate for instruction 3039: 17.1103% -Rate for instruction 3040: 17.1136% -Rate for instruction 3041: 17.1168% -Rate for instruction 3042: 17.1187% -Rate for instruction 3043: 17.1182% -Rate for instruction 3044: 17.1176% -Rate for instruction 3045: 17.1158% -Rate for instruction 3046: 17.119% -Rate for instruction 3047: 17.1222% -Rate for instruction 3048: 17.1229% -Rate for instruction 3049: 17.1185% -Rate for instruction 3050: 17.1192% -Rate for instruction 3051: 17.1212% -Rate for instruction 3052: 17.1257% -Rate for instruction 3053: 17.1301% -Rate for instruction 3054: 17.1258% -Rate for instruction 3055: 17.134% -Rate for instruction 3056: 17.1372% -Rate for instruction 3057: 17.1366% -Rate for instruction 3058: 17.1411% -Rate for instruction 3059: 17.143% -Rate for instruction 3060: 17.145% -Rate for instruction 3061: 17.1419% -Rate for instruction 3062: 17.1413% -Rate for instruction 3063: 17.1382% -Rate for instruction 3064: 17.1351% -Rate for instruction 3065: 17.1371% -Rate for instruction 3066: 17.1378% -Rate for instruction 3067: 17.1372% -Rate for instruction 3068: 17.1404% -Rate for instruction 3069: 17.1373% -Rate for instruction 3070: 17.1417% -Rate for instruction 3071: 17.1474% -Rate for instruction 3072: 17.1469% -Rate for instruction 3073: 17.1488% -Rate for instruction 3074: 17.1507% -Rate for instruction 3075: 17.1551% -Rate for instruction 3076: 17.1521% -Rate for instruction 3077: 17.1577% -Rate for instruction 3078: 17.1547% -Rate for instruction 3079: 17.1603% -Rate for instruction 3080: 17.1635% -Rate for instruction 3081: 17.1642% -Rate for instruction 3082: 17.1711% -Rate for instruction 3083: 17.1755% -Rate for instruction 3084: 17.1712% -Rate for instruction 3085: 17.1756% -Rate for instruction 3086: 17.1713% -Rate for instruction 3087: 17.1669% -Rate for instruction 3088: 17.1651% -Rate for instruction 3089: 17.1708% -Rate for instruction 3090: 17.1714% -Rate for instruction 3091: 17.1758% -Rate for instruction 3092: 17.1715% -Rate for instruction 3093: 17.171% -Rate for instruction 3094: 17.1716% -Rate for instruction 3095: 17.176% -Rate for instruction 3096: 17.1717% -Rate for instruction 3097: 17.1749% -Rate for instruction 3098: 17.1706% -Rate for instruction 3099: 17.1725% -Rate for instruction 3100: 17.1682% -Rate for instruction 3101: 17.1663% -Rate for instruction 3102: 17.172% -Rate for instruction 3103: 17.1726% -Rate for instruction 3104: 17.1721% -Rate for instruction 3105: 17.1678% -Rate for instruction 3106: 17.1647% -Rate for instruction 3107: 17.1604% -Rate for instruction 3108: 17.1586% -Rate for instruction 3109: 17.1543% -Rate for instruction 3110: 17.1538% -Rate for instruction 3111: 17.152% -Rate for instruction 3112: 17.1477% -Rate for instruction 3113: 17.1447% -Rate for instruction 3114: 17.1404% -Rate for instruction 3115: 17.1423% -Rate for instruction 3116: 17.1405% -Rate for instruction 3117: 17.1387% -Rate for instruction 3118: 17.1381% -Rate for instruction 3119: 17.1351% -Rate for instruction 3120: 17.1321% -Rate for instruction 3121: 17.1315% -Rate for instruction 3122: 17.131% -Rate for instruction 3123: 17.1279% -Rate for instruction 3124: 17.1262% -Rate for instruction 3125: 17.1231% -Rate for instruction 3126: 17.125% -Rate for instruction 3127: 17.1208% -Rate for instruction 3128: 17.1178% -Rate for instruction 3129: 17.1135% -Rate for instruction 3130: 17.1118% -Rate for instruction 3131: 17.1088% -Rate for instruction 3132: 17.1107% -Rate for instruction 3133: 17.1113% -Rate for instruction 3134: 17.1132% -Rate for instruction 3135: 17.1115% -Rate for instruction 3136: 17.1134% -Rate for instruction 3137: 17.1128% -Rate for instruction 3138: 17.1147% -Rate for instruction 3139: 17.1105% -Rate for instruction 3140: 17.1075% -Rate for instruction 3141: 17.1045% -Rate for instruction 3142: 17.1052% -Rate for instruction 3143: 17.1046% -Rate for instruction 3144: 17.1004% -Rate for instruction 3145: 17.0974% -Rate for instruction 3146: 17.0932% -Rate for instruction 3147: 17.0927% -Rate for instruction 3148: 17.0933% -Rate for instruction 3149: 17.0891% -Rate for instruction 3150: 17.0849% -Rate for instruction 3151: 17.082% -Rate for instruction 3152: 17.0826% -Rate for instruction 3153: 17.0833% -Rate for instruction 3154: 17.0901% -Rate for instruction 3155: 17.0908% -Rate for instruction 3156: 17.0939% -Rate for instruction 3157: 17.0921% -Rate for instruction 3158: 17.0891% -Rate for instruction 3159: 17.085% -Rate for instruction 3160: 17.0832% -Rate for instruction 3161: 17.0802% -Rate for instruction 3162: 17.0773% -Rate for instruction 3163: 17.0767% -Rate for instruction 3164: 17.0786% -Rate for instruction 3165: 17.0757% -Rate for instruction 3166: 17.0848% -Rate for instruction 3167: 17.0855% -Rate for instruction 3168: 17.0923% -Rate for instruction 3169: 17.0966% -Rate for instruction 3170: 17.0924% -Rate for instruction 3171: 17.0943% -Rate for instruction 3172: 17.0998% -Rate for instruction 3173: 17.1041% -Rate for instruction 3174: 17.1084% -Rate for instruction 3175: 17.1067% -Rate for instruction 3176: 17.1073% -Rate for instruction 3177: 17.1104% -Rate for instruction 3178: 17.1111% -Rate for instruction 3179: 17.1154% -Rate for instruction 3180: 17.1209% -Rate for instruction 3181: 17.1252% -Rate for instruction 3182: 17.1307% -Rate for instruction 3183: 17.1337% -Rate for instruction 3184: 17.1296% -Rate for instruction 3185: 17.1266% -Rate for instruction 3186: 17.1309% -Rate for instruction 3187: 17.1303% -Rate for instruction 3188: 17.1286% -Rate for instruction 3189: 17.1317% -Rate for instruction 3190: 17.1359% -Rate for instruction 3191: 17.1354% -Rate for instruction 3192: 17.1372% -Rate for instruction 3193: 17.1427% -Rate for instruction 3194: 17.1482% -Rate for instruction 3195: 17.144% -Rate for instruction 3196: 17.1483% -Rate for instruction 3197: 17.1477% -Rate for instruction 3198: 17.1436% -Rate for instruction 3199: 17.1454% -Rate for instruction 3200: 17.1413% -Rate for instruction 3201: 17.1371% -Rate for instruction 3202: 17.1354% -Rate for instruction 3203: 17.1336% -Rate for instruction 3204: 17.1355% -Rate for instruction 3205: 17.1361% -Rate for instruction 3206: 17.144% -Rate for instruction 3207: 17.1458% -Rate for instruction 3208: 17.1513% -Rate for instruction 3209: 17.1495% -Rate for instruction 3210: 17.1466% -Rate for instruction 3211: 17.1448% -Rate for instruction 3212: 17.1419% -Rate for instruction 3213: 17.1414% -Rate for instruction 3214: 17.1372% -Rate for instruction 3215: 17.1355% -Rate for instruction 3216: 17.1349% -Rate for instruction 3217: 17.132% -Rate for instruction 3218: 17.1303% -Rate for instruction 3219: 17.1297% -Rate for instruction 3220: 17.1292% -Rate for instruction 3221: 17.1286% -Rate for instruction 3222: 17.1245% -Rate for instruction 3223: 17.1228% -Rate for instruction 3224: 17.1234% -Rate for instruction 3225: 17.1205% -Rate for instruction 3226: 17.1247% -Rate for instruction 3227: 17.1302% -Rate for instruction 3228: 17.132% -Rate for instruction 3229: 17.1327% -Rate for instruction 3230: 17.1345% -Rate for instruction 3231: 17.1304% -Rate for instruction 3232: 17.1286% -Rate for instruction 3233: 17.1269% -Rate for instruction 3234: 17.1228% -Rate for instruction 3235: 17.1211% -Rate for instruction 3236: 17.117% -Rate for instruction 3237: 17.1165% -Rate for instruction 3238: 17.1135% -Rate for instruction 3239: 17.1118% -Rate for instruction 3240: 17.1089% -Rate for instruction 3241: 17.1084% -Rate for instruction 3242: 17.1079% -Rate for instruction 3243: 17.1038% -Rate for instruction 3244: 17.1009% -Rate for instruction 3245: 17.1051% -Rate for instruction 3246: 17.1022% -Rate for instruction 3247: 17.1052% -Rate for instruction 3248: 17.1035% -Rate for instruction 3249: 17.103% -Rate for instruction 3250: 17.0989% -Rate for instruction 3251: 17.0984% -Rate for instruction 3252: 17.099% -Rate for instruction 3253: 17.0973% -Rate for instruction 3254: 17.0991% -Rate for instruction 3255: 17.1022% -Rate for instruction 3256: 17.0993% -Rate for instruction 3257: 17.0964% -Rate for instruction 3258: 17.0947% -Rate for instruction 3259: 17.0965% -Rate for instruction 3260: 17.1007% -Rate for instruction 3261: 17.1096% -Rate for instruction 3262: 17.1067% -Rate for instruction 3263: 17.1109% -Rate for instruction 3264: 17.1139% -Rate for instruction 3265: 17.1134% -Rate for instruction 3266: 17.1176% -Rate for instruction 3267: 17.1135% -Rate for instruction 3268: 17.1153% -Rate for instruction 3269: 17.1124% -Rate for instruction 3270: 17.1096% -Rate for instruction 3271: 17.1079% -Rate for instruction 3272: 17.1073% -Rate for instruction 3273: 17.1068% -Rate for instruction 3274: 17.1075% -Rate for instruction 3275: 17.1034% -Rate for instruction 3276: 17.1017% -Rate for instruction 3277: 17.1024% -Rate for instruction 3278: 17.1042% -Rate for instruction 3279: 17.1013% -Rate for instruction 3280: 17.102% -Rate for instruction 3281: 17.0991% -Rate for instruction 3282: 17.0962% -Rate for instruction 3283: 17.0945% -Rate for instruction 3284: 17.0917% -Rate for instruction 3285: 17.0888% -Rate for instruction 3286: 17.0918% -Rate for instruction 3287: 17.096% -Rate for instruction 3288: 17.0943% -Rate for instruction 3289: 17.0961% -Rate for instruction 3290: 17.0979% -Rate for instruction 3291: 17.0986% -Rate for instruction 3292: 17.0957% -Rate for instruction 3293: 17.0928% -Rate for instruction 3294: 17.0935% -Rate for instruction 3295: 17.0965% -Rate for instruction 3296: 17.0936% -Rate for instruction 3297: 17.0931% -Rate for instruction 3298: 17.0914% -Rate for instruction 3299: 17.0932% -Rate for instruction 3300: 17.0904% -Rate for instruction 3301: 17.0922% -Rate for instruction 3302: 17.0894% -Rate for instruction 3303: 17.0923% -Rate for instruction 3304: 17.0895% -Rate for instruction 3305: 17.0855% -Rate for instruction 3306: 17.0826% -Rate for instruction 3307: 17.0798% -Rate for instruction 3308: 17.077% -Rate for instruction 3309: 17.0765% -Rate for instruction 3310: 17.0783% -Rate for instruction 3311: 17.0743% -Rate for instruction 3312: 17.0726% -Rate for instruction 3313: 17.0709% -Rate for instruction 3314: 17.0681% -Rate for instruction 3315: 17.0653% -Rate for instruction 3316: 17.0659% -Rate for instruction 3317: 17.0654% -Rate for instruction 3318: 17.0649% -Rate for instruction 3319: 17.0621% -Rate for instruction 3320: 17.0651% -Rate for instruction 3321: 17.0634% -Rate for instruction 3322: 17.0606% -Rate for instruction 3323: 17.0566% -Rate for instruction 3324: 17.0526% -Rate for instruction 3325: 17.0533% -Rate for instruction 3326: 17.0493% -Rate for instruction 3327: 17.0558% -Rate for instruction 3328: 17.0552% -Rate for instruction 3329: 17.0559% -Rate for instruction 3330: 17.0531% -Rate for instruction 3331: 17.0491% -Rate for instruction 3332: 17.0509% -Rate for instruction 3333: 17.0493% -Rate for instruction 3334: 17.0488% -Rate for instruction 3335: 17.0506% -Rate for instruction 3336: 17.0478% -Rate for instruction 3337: 17.0554% -Rate for instruction 3338: 17.0583% -Rate for instruction 3339: 17.0567% -Rate for instruction 3340: 17.0608% -Rate for instruction 3341: 17.0637% -Rate for instruction 3342: 17.0632% -Rate for instruction 3343: 17.0662% -Rate for instruction 3344: 17.0622% -Rate for instruction 3345: 17.0629% -Rate for instruction 3346: 17.0589% -Rate for instruction 3347: 17.0561% -Rate for instruction 3348: 17.0591% -Rate for instruction 3349: 17.062% -Rate for instruction 3350: 17.0672% -Rate for instruction 3351: 17.069% -Rate for instruction 3352: 17.0674% -Rate for instruction 3353: 17.0703% -Rate for instruction 3354: 17.071% -Rate for instruction 3355: 17.0693% -Rate for instruction 3356: 17.0677% -Rate for instruction 3357: 17.0649% -Rate for instruction 3358: 17.0644% -Rate for instruction 3359: 17.0616% -Rate for instruction 3360: 17.0577% -Rate for instruction 3361: 17.0537% -Rate for instruction 3362: 17.0521% -Rate for instruction 3363: 17.0504% -Rate for instruction 3364: 17.0511% -Rate for instruction 3365: 17.0506% -Rate for instruction 3366: 17.049% -Rate for instruction 3367: 17.0496% -Rate for instruction 3368: 17.0457% -Rate for instruction 3369: 17.0441% -Rate for instruction 3370: 17.0447% -Rate for instruction 3371: 17.0476% -Rate for instruction 3372: 17.0517% -Rate for instruction 3373: 17.0489% -Rate for instruction 3374: 17.0462% -Rate for instruction 3375: 17.0525% -Rate for instruction 3376: 17.0543% -Rate for instruction 3377: 17.0561% -Rate for instruction 3378: 17.0533% -Rate for instruction 3379: 17.0551% -Rate for instruction 3380: 17.0534% -Rate for instruction 3381: 17.053% -Rate for instruction 3382: 17.0536% -Rate for instruction 3383: 17.0599% -Rate for instruction 3384: 17.0651% -Rate for instruction 3385: 17.0657% -Rate for instruction 3386: 17.0618% -Rate for instruction 3387: 17.0602% -Rate for instruction 3388: 17.0563% -Rate for instruction 3389: 17.0536% -Rate for instruction 3390: 17.0497% -Rate for instruction 3391: 17.0492% -Rate for instruction 3392: 17.0453% -Rate for instruction 3393: 17.0493% -Rate for instruction 3394: 17.0488% -Rate for instruction 3395: 17.0449% -Rate for instruction 3396: 17.0445% -Rate for instruction 3397: 17.044% -Rate for instruction 3398: 17.0435% -Rate for instruction 3399: 17.0407% -Rate for instruction 3400: 17.0402% -Rate for instruction 3401: 17.0375% -Rate for instruction 3402: 17.0347% -Rate for instruction 3403: 17.0309% -Rate for instruction 3404: 17.0281% -Rate for instruction 3405: 17.0276% -Rate for instruction 3406: 17.0283% -Rate for instruction 3407: 17.0244% -Rate for instruction 3408: 17.0239% -Rate for instruction 3409: 17.0212% -Rate for instruction 3410: 17.0207% -Rate for instruction 3411: 17.0191% -Rate for instruction 3412: 17.0186% -Rate for instruction 3413: 17.0159% -Rate for instruction 3414: 17.0211% -Rate for instruction 3415: 17.0172% -Rate for instruction 3416: 17.0201% -Rate for instruction 3417: 17.0207% -Rate for instruction 3418: 17.0191% -Rate for instruction 3419: 17.0175% -Rate for instruction 3420: 17.0182% -Rate for instruction 3421: 17.0155% -Rate for instruction 3422: 17.0161% -Rate for instruction 3423: 17.0134% -Rate for instruction 3424: 17.0152% -Rate for instruction 3425: 17.0124% -Rate for instruction 3426: 17.0108% -Rate for instruction 3427: 17.007% -Rate for instruction 3428: 17.0043% -Rate for instruction 3429: 17.0027% -Rate for instruction 3430: 17.0022% -Rate for instruction 3431: 17.0006% -Rate for instruction 3432: 17.0058% -Rate for instruction 3433: 17.0053% -Rate for instruction 3434: 17.0059% -Rate for instruction 3435: 17.0043% -Rate for instruction 3436: 17.0072% -Rate for instruction 3437: 17.0068% -Rate for instruction 3438: 17.0096% -Rate for instruction 3439: 17.0069% -Rate for instruction 3440: 17.0087% -Rate for instruction 3441: 17.0138% -Rate for instruction 3442: 17.0156% -Rate for instruction 3443: 17.0207% -Rate for instruction 3444: 17.0213% -Rate for instruction 3445: 17.022% -Rate for instruction 3446: 17.0193% -Rate for instruction 3447: 17.0232% -Rate for instruction 3448: 17.0239% -Rate for instruction 3449: 17.0201% -Rate for instruction 3450: 17.0196% -Rate for instruction 3451: 17.0191% -Rate for instruction 3452: 17.0198% -Rate for instruction 3453: 17.0204% -Rate for instruction 3454: 17.0177% -Rate for instruction 3455: 17.0206% -Rate for instruction 3456: 17.0245% -Rate for instruction 3457: 17.0285% -Rate for instruction 3458: 17.0247% -Rate for instruction 3459: 17.0242% -Rate for instruction 3460: 17.0204% -Rate for instruction 3461: 17.0188% -Rate for instruction 3462: 17.0161% -Rate for instruction 3463: 17.0146% -Rate for instruction 3464: 17.0108% -Rate for instruction 3465: 17.0125% -Rate for instruction 3466: 17.0143% -Rate for instruction 3467: 17.0116% -Rate for instruction 3468: 17.0089% -Rate for instruction 3469: 17.0084% -Rate for instruction 3470: 17.0057% -Rate for instruction 3471: 17.0019% -Rate for instruction 3472: 16.9982% -Rate for instruction 3473: 16.9944% -Rate for instruction 3474: 16.995% -Rate for instruction 3475: 16.9923% -Rate for instruction 3476: 16.9952% -Rate for instruction 3477: 16.9947% -Rate for instruction 3478: 16.9921% -Rate for instruction 3479: 16.9883% -Rate for instruction 3480: 16.9922% -Rate for instruction 3481: 16.9973% -Rate for instruction 3482: 16.9946% -Rate for instruction 3483: 16.9909% -Rate for instruction 3484: 16.9882% -Rate for instruction 3485: 16.9888% -Rate for instruction 3486: 16.9895% -Rate for instruction 3487: 16.9879% -Rate for instruction 3488: 16.9875% -Rate for instruction 3489: 16.987% -Rate for instruction 3490: 16.9887% -Rate for instruction 3491: 16.9883% -Rate for instruction 3492: 16.9856% -Rate for instruction 3493: 16.9819% -Rate for instruction 3494: 16.9803% -Rate for instruction 3495: 16.9831% -Rate for instruction 3496: 16.9838% -Rate for instruction 3497: 16.9822% -Rate for instruction 3498: 16.9807% -Rate for instruction 3499: 16.9791% -Rate for instruction 3500: 16.9754% -Rate for instruction 3501: 16.9815% -Rate for instruction 3502: 16.9876% -Rate for instruction 3503: 16.9872% -Rate for instruction 3504: 16.9878% -Rate for instruction 3505: 16.995% -Rate for instruction 3506: 17.0001% -Rate for instruction 3507: 16.9963% -Rate for instruction 3508: 17.0002% -Rate for instruction 3509: 17.0031% -Rate for instruction 3510: 16.9993% -Rate for instruction 3511: 17.0032% -Rate for instruction 3512: 17.0072% -Rate for instruction 3513: 17.0056% -Rate for instruction 3514: 17.0019% -Rate for instruction 3515: 17.0025% -Rate for instruction 3516: 16.9988% -Rate for instruction 3517: 16.9994% -Rate for instruction 3518: 16.9967% -Rate for instruction 3519: 17.0028% -Rate for instruction 3520: 17.0078% -Rate for instruction 3521: 17.0128% -Rate for instruction 3522: 17.0091% -Rate for instruction 3523: 17.0119% -Rate for instruction 3524: 17.0104% -Rate for instruction 3525: 17.0066% -Rate for instruction 3526: 17.0051% -Rate for instruction 3527: 17.0014% -Rate for instruction 3528: 16.9976% -Rate for instruction 3529: 16.995% -Rate for instruction 3530: 16.9934% -Rate for instruction 3531: 16.9908% -Rate for instruction 3532: 16.9871% -Rate for instruction 3533: 16.9866% -Rate for instruction 3534: 16.984% -Rate for instruction 3535: 16.9846% -Rate for instruction 3536: 16.9842% -Rate for instruction 3537: 16.9892% -Rate for instruction 3538: 16.9855% -Rate for instruction 3539: 16.9894% -Rate for instruction 3540: 16.9856% -Rate for instruction 3541: 16.9884% -Rate for instruction 3542: 16.9858% -Rate for instruction 3543: 16.9821% -Rate for instruction 3544: 16.9827% -Rate for instruction 3545: 16.9845% -Rate for instruction 3546: 16.9884% -Rate for instruction 3547: 16.9847% -Rate for instruction 3548: 16.9885% -Rate for instruction 3549: 16.9913% -Rate for instruction 3550: 16.992% -Rate for instruction 3551: 16.9883% -Rate for instruction 3552: 16.9856% -Rate for instruction 3553: 16.9819% -Rate for instruction 3554: 16.9804% -Rate for instruction 3555: 16.9767% -Rate for instruction 3556: 16.9741% -Rate for instruction 3557: 16.9704% -Rate for instruction 3558: 16.9732% -Rate for instruction 3559: 16.9782% -Rate for instruction 3560: 16.9766% -Rate for instruction 3561: 16.973% -Rate for instruction 3562: 16.9725% -Rate for instruction 3563: 16.9753% -Rate for instruction 3564: 16.9792% -Rate for instruction 3565: 16.9852% -Rate for instruction 3566: 16.9869% -Rate for instruction 3567: 16.9832% -Rate for instruction 3568: 16.9828% -Rate for instruction 3569: 16.9823% -Rate for instruction 3570: 16.983% -Rate for instruction 3571: 16.9868% -Rate for instruction 3572: 16.9907% -Rate for instruction 3573: 16.9913% -Rate for instruction 3574: 16.9876% -Rate for instruction 3575: 16.9872% -Rate for instruction 3576: 16.99% -Rate for instruction 3577: 16.9949% -Rate for instruction 3578: 16.9912% -Rate for instruction 3579: 16.9908% -Rate for instruction 3580: 16.9935% -Rate for instruction 3581: 16.9899% -Rate for instruction 3582: 16.9862% -Rate for instruction 3583: 16.9847% -Rate for instruction 3584: 16.9821% -Rate for instruction 3585: 16.9795% -Rate for instruction 3586: 16.9801% -Rate for instruction 3587: 16.9775% -Rate for instruction 3588: 16.9749% -Rate for instruction 3589: 16.9777% -Rate for instruction 3590: 16.9751% -Rate for instruction 3591: 16.98% -Rate for instruction 3592: 16.9785% -Rate for instruction 3593: 16.9759% -Rate for instruction 3594: 16.9734% -Rate for instruction 3595: 16.9697% -Rate for instruction 3596: 16.9735% -Rate for instruction 3597: 16.971% -Rate for instruction 3598: 16.9684% -Rate for instruction 3599: 16.9669% -Rate for instruction 3600: 16.9718% -Rate for instruction 3601: 16.9703% -Rate for instruction 3602: 16.9666% -Rate for instruction 3603: 16.9662% -Rate for instruction 3604: 16.9679% -Rate for instruction 3605: 16.9653% -Rate for instruction 3606: 16.967% -Rate for instruction 3607: 16.9676% -Rate for instruction 3608: 16.9693% -Rate for instruction 3609: 16.9657% -Rate for instruction 3610: 16.9642% -Rate for instruction 3611: 16.9648% -Rate for instruction 3612: 16.9623% -Rate for instruction 3613: 16.9639% -Rate for instruction 3614: 16.9678% -Rate for instruction 3615: 16.9663% -Rate for instruction 3616: 16.9669% -Rate for instruction 3617: 16.9664% -Rate for instruction 3618: 16.9639% -Rate for instruction 3619: 16.9613% -Rate for instruction 3620: 16.9609% -Rate for instruction 3621: 16.9605% -Rate for instruction 3622: 16.959% -Rate for instruction 3623: 16.9564% -Rate for instruction 3624: 16.956% -Rate for instruction 3625: 16.9545% -Rate for instruction 3626: 16.9519% -Rate for instruction 3627: 16.9515% -Rate for instruction 3628: 16.95% -Rate for instruction 3629: 16.9496% -Rate for instruction 3630: 16.947% -Rate for instruction 3631: 16.9434% -Rate for instruction 3632: 16.9409% -Rate for instruction 3633: 16.9394% -Rate for instruction 3634: 16.9368% -Rate for instruction 3635: 16.9375% -Rate for instruction 3636: 16.936% -Rate for instruction 3637: 16.9377% -Rate for instruction 3638: 16.9351% -Rate for instruction 3639: 16.9347% -Rate for instruction 3640: 16.9343% -Rate for instruction 3641: 16.9338% -Rate for instruction 3642: 16.9303% -Rate for instruction 3643: 16.933% -Rate for instruction 3644: 16.9294% -Rate for instruction 3645: 16.9258% -Rate for instruction 3646: 16.9296% -Rate for instruction 3647: 16.9313% -Rate for instruction 3648: 16.9309% -Rate for instruction 3649: 16.9315% -Rate for instruction 3650: 16.929% -Rate for instruction 3651: 16.9338% -Rate for instruction 3652: 16.9302% -Rate for instruction 3653: 16.9372% -Rate for instruction 3654: 16.9431% -Rate for instruction 3655: 16.9479% -Rate for instruction 3656: 16.9475% -Rate for instruction 3657: 16.9492% -Rate for instruction 3658: 16.954% -Rate for instruction 3659: 16.9588% -Rate for instruction 3660: 16.9552% -Rate for instruction 3661: 16.9537% -Rate for instruction 3662: 16.9502% -Rate for instruction 3663: 16.9487% -Rate for instruction 3664: 16.9504% -Rate for instruction 3665: 16.9489% -Rate for instruction 3666: 16.9506% -Rate for instruction 3667: 16.9491% -Rate for instruction 3668: 16.9518% -Rate for instruction 3669: 16.9482% -Rate for instruction 3670: 16.9457% -Rate for instruction 3671: 16.9495% -Rate for instruction 3672: 16.948% -Rate for instruction 3673: 16.9497% -Rate for instruction 3674: 16.9513% -Rate for instruction 3675: 16.953% -Rate for instruction 3676: 16.9547% -Rate for instruction 3677: 16.9563% -Rate for instruction 3678: 16.9601% -Rate for instruction 3679: 16.9628% -Rate for instruction 3680: 16.9624% -Rate for instruction 3681: 16.964% -Rate for instruction 3682: 16.9636% -Rate for instruction 3683: 16.9642% -Rate for instruction 3684: 16.9607% -Rate for instruction 3685: 16.9581% -Rate for instruction 3686: 16.9629% -Rate for instruction 3687: 16.9625% -Rate for instruction 3688: 16.9642% -Rate for instruction 3689: 16.9648% -Rate for instruction 3690: 16.9633% -Rate for instruction 3691: 16.9691% -Rate for instruction 3692: 16.9739% -Rate for instruction 3693: 16.9724% -Rate for instruction 3694: 16.9751% -Rate for instruction 3695: 16.9726% -Rate for instruction 3696: 16.9763% -Rate for instruction 3697: 16.9728% -Rate for instruction 3698: 16.9776% -Rate for instruction 3699: 16.9802% -Rate for instruction 3700: 16.9788% -Rate for instruction 3701: 16.9752% -Rate for instruction 3702: 16.9738% -Rate for instruction 3703: 16.9702% -Rate for instruction 3704: 16.9677% -Rate for instruction 3705: 16.9642% -Rate for instruction 3706: 16.9637% -Rate for instruction 3707: 16.9664% -Rate for instruction 3708: 16.9639% -Rate for instruction 3709: 16.9625% -Rate for instruction 3710: 16.96% -Rate for instruction 3711: 16.9575% -Rate for instruction 3712: 16.9539% -Rate for instruction 3713: 16.9515% -Rate for instruction 3714: 16.951% -Rate for instruction 3715: 16.9496% -Rate for instruction 3716: 16.9492% -Rate for instruction 3717: 16.9456% -Rate for instruction 3718: 16.9452% -Rate for instruction 3719: 16.9448% -Rate for instruction 3720: 16.9475% -Rate for instruction 3721: 16.9481% -Rate for instruction 3722: 16.9497% -Rate for instruction 3723: 16.9503% -Rate for instruction 3724: 16.9479% -Rate for instruction 3725: 16.9443% -Rate for instruction 3726: 16.947% -Rate for instruction 3727: 16.9445% -Rate for instruction 3728: 16.9421% -Rate for instruction 3729: 16.9385% -Rate for instruction 3730: 16.9361% -Rate for instruction 3731: 16.9377% -Rate for instruction 3732: 16.9373% -Rate for instruction 3733: 16.9348% -Rate for instruction 3734: 16.9385% -Rate for instruction 3735: 16.9412% -Rate for instruction 3736: 16.9377% -Rate for instruction 3737: 16.9393% -Rate for instruction 3738: 16.941% -Rate for instruction 3739: 16.9395% -Rate for instruction 3740: 16.9443% -Rate for instruction 3741: 16.9418% -Rate for instruction 3742: 16.9475% -Rate for instruction 3743: 16.9451% -Rate for instruction 3744: 16.9488% -Rate for instruction 3745: 16.9494% -Rate for instruction 3746: 16.9459% -Rate for instruction 3747: 16.9496% -Rate for instruction 3748: 16.9461% -Rate for instruction 3749: 16.9436% -Rate for instruction 3750: 16.9421% -Rate for instruction 3751: 16.9428% -Rate for instruction 3752: 16.9434% -Rate for instruction 3753: 16.9471% -Rate for instruction 3754: 16.9446% -Rate for instruction 3755: 16.9431% -Rate for instruction 3756: 16.9427% -Rate for instruction 3757: 16.9444% -Rate for instruction 3758: 16.9419% -Rate for instruction 3759: 16.9394% -Rate for instruction 3760: 16.938% -Rate for instruction 3761: 16.9366% -Rate for instruction 3762: 16.9341% -Rate for instruction 3763: 16.9306% -Rate for instruction 3764: 16.9343% -Rate for instruction 3765: 16.9339% -Rate for instruction 3766: 16.9304% -Rate for instruction 3767: 16.927% -Rate for instruction 3768: 16.9286% -Rate for instruction 3769: 16.9333% -Rate for instruction 3770: 16.9369% -Rate for instruction 3771: 16.9447% -Rate for instruction 3772: 16.9433% -Rate for instruction 3773: 16.9479% -Rate for instruction 3774: 16.9455% -Rate for instruction 3775: 16.9451% -Rate for instruction 3776: 16.9477% -Rate for instruction 3777: 16.9463% -Rate for instruction 3778: 16.9449% -Rate for instruction 3779: 16.9434% -Rate for instruction 3780: 16.9471% -Rate for instruction 3781: 16.9497% -Rate for instruction 3782: 16.9534% -Rate for instruction 3783: 16.954% -Rate for instruction 3784: 16.9505% -Rate for instruction 3785: 16.9481% -Rate for instruction 3786: 16.9477% -Rate for instruction 3787: 16.9483% -Rate for instruction 3788: 16.9539% -Rate for instruction 3789: 16.9515% -Rate for instruction 3790: 16.9531% -Rate for instruction 3791: 16.9568% -Rate for instruction 3792: 16.9604% -Rate for instruction 3793: 16.962% -Rate for instruction 3794: 16.9585% -Rate for instruction 3795: 16.9612% -Rate for instruction 3796: 16.9587% -Rate for instruction 3797: 16.9593% -Rate for instruction 3798: 16.9589% -Rate for instruction 3799: 16.9595% -Rate for instruction 3800: 16.9591% -Rate for instruction 3801: 16.9557% -Rate for instruction 3802: 16.9562% -Rate for instruction 3803: 16.9579% -Rate for instruction 3804: 16.9554% -Rate for instruction 3805: 16.952% -Rate for instruction 3806: 16.9495% -Rate for instruction 3807: 16.9522% -Rate for instruction 3808: 16.9548% -Rate for instruction 3809: 16.9524% -Rate for instruction 3810: 16.956% -Rate for instruction 3811: 16.9566% -Rate for instruction 3812: 16.9602% -Rate for instruction 3813: 16.9568% -Rate for instruction 3814: 16.9533% -Rate for instruction 3815: 16.9539% -Rate for instruction 3816: 16.9555% -Rate for instruction 3817: 16.9561% -Rate for instruction 3818: 16.9547% -Rate for instruction 3819: 16.9573% -Rate for instruction 3820: 16.9579% -Rate for instruction 3821: 16.9565% -Rate for instruction 3822: 16.9591% -Rate for instruction 3823: 16.9567% -Rate for instruction 3824: 16.9563% -Rate for instruction 3825: 16.9589% -Rate for instruction 3826: 16.9625% -Rate for instruction 3827: 16.9651% -Rate for instruction 3828: 16.9627% -Rate for instruction 3829: 16.9592% -Rate for instruction 3830: 16.9648% -Rate for instruction 3831: 16.9705% -Rate for instruction 3832: 16.973% -Rate for instruction 3833: 16.9736% -Rate for instruction 3834: 16.9722% -Rate for instruction 3835: 16.9738% -Rate for instruction 3836: 16.9754% -Rate for instruction 3837: 16.975% -Rate for instruction 3838: 16.9766% -Rate for instruction 3839: 16.9732% -Rate for instruction 3840: 16.9707% -Rate for instruction 3841: 16.9703% -Rate for instruction 3842: 16.9669% -Rate for instruction 3843: 16.9645% -Rate for instruction 3844: 16.9611% -Rate for instruction 3845: 16.9597% -Rate for instruction 3846: 16.9603% -Rate for instruction 3847: 16.9579% -Rate for instruction 3848: 16.9565% -Rate for instruction 3849: 16.954% -Rate for instruction 3850: 16.9516% -Rate for instruction 3851: 16.9532% -Rate for instruction 3852: 16.9518% -Rate for instruction 3853: 16.9514% -Rate for instruction 3854: 16.948% -Rate for instruction 3855: 16.9446% -Rate for instruction 3856: 16.9452% -Rate for instruction 3857: 16.9418% -Rate for instruction 3858: 16.9404% -Rate for instruction 3859: 16.94% -Rate for instruction 3860: 16.9376% -Rate for instruction 3861: 16.9362% -Rate for instruction 3862: 16.9368% -Rate for instruction 3863: 16.9364% -Rate for instruction 3864: 16.934% -Rate for instruction 3865: 16.9336% -Rate for instruction 3866: 16.9332% -Rate for instruction 3867: 16.9338% -Rate for instruction 3868: 16.9314% -Rate for instruction 3869: 16.928% -Rate for instruction 3870: 16.9267% -Rate for instruction 3871: 16.9263% -Rate for instruction 3872: 16.9259% -Rate for instruction 3873: 16.9225% -Rate for instruction 3874: 16.9211% -Rate for instruction 3875: 16.9237% -Rate for instruction 3876: 16.9233% -Rate for instruction 3877: 16.9219% -Rate for instruction 3878: 16.9245% -Rate for instruction 3879: 16.9261% -Rate for instruction 3880: 16.9237% -Rate for instruction 3881: 16.9262% -Rate for instruction 3882: 16.9278% -Rate for instruction 3883: 16.9274% -Rate for instruction 3884: 16.931% -Rate for instruction 3885: 16.9286% -Rate for instruction 3886: 16.9312% -Rate for instruction 3887: 16.9298% -Rate for instruction 3888: 16.9314% -Rate for instruction 3889: 16.93% -Rate for instruction 3890: 16.9336% -Rate for instruction 3891: 16.9332% -Rate for instruction 3892: 16.9308% -Rate for instruction 3893: 16.9294% -Rate for instruction 3894: 16.928% -Rate for instruction 3895: 16.9266% -Rate for instruction 3896: 16.9312% -Rate for instruction 3897: 16.9318% -Rate for instruction 3898: 16.9402% -Rate for instruction 3899: 16.9389% -Rate for instruction 3900: 16.9404% -Rate for instruction 3901: 16.944% -Rate for instruction 3902: 16.9416% -Rate for instruction 3903: 16.9382% -Rate for instruction 3904: 16.9369% -Rate for instruction 3905: 16.9335% -Rate for instruction 3906: 16.9361% -Rate for instruction 3907: 16.9396% -Rate for instruction 3908: 16.9431% -Rate for instruction 3909: 16.9457% -Rate for instruction 3910: 16.9424% -Rate for instruction 3911: 16.94% -Rate for instruction 3912: 16.9396% -Rate for instruction 3913: 16.9392% -Rate for instruction 3914: 16.9398% -Rate for instruction 3915: 16.9364% -Rate for instruction 3916: 16.9351% -Rate for instruction 3917: 16.9337% -Rate for instruction 3918: 16.9313% -Rate for instruction 3919: 16.929% -Rate for instruction 3920: 16.9364% -Rate for instruction 3921: 16.9409% -Rate for instruction 3922: 16.9425% -Rate for instruction 3923: 16.945% -Rate for instruction 3924: 16.9505% -Rate for instruction 3925: 16.957% -Rate for instruction 3926: 16.9605% -Rate for instruction 3927: 16.9611% -Rate for instruction 3928: 16.9607% -Rate for instruction 3929: 16.9642% -Rate for instruction 3930: 16.9687% -Rate for instruction 3931: 16.9761% -Rate for instruction 3932: 16.9757% -Rate for instruction 3933: 16.9733% -Rate for instruction 3934: 16.9719% -Rate for instruction 3935: 16.9696% -Rate for instruction 3936: 16.9692% -Rate for instruction 3937: 16.9688% -Rate for instruction 3938: 16.9674% -Rate for instruction 3939: 16.9651% -Rate for instruction 3940: 16.9627% -Rate for instruction 3941: 16.9613% -Rate for instruction 3942: 16.9619% -Rate for instruction 3943: 16.9644% -Rate for instruction 3944: 16.9689% -Rate for instruction 3945: 16.9675% -Rate for instruction 3946: 16.9671% -Rate for instruction 3947: 16.9638% -Rate for instruction 3948: 16.9634% -Rate for instruction 3949: 16.9601% -Rate for instruction 3950: 16.9694% -Rate for instruction 3951: 16.9749% -Rate for instruction 3952: 16.9754% -Rate for instruction 3953: 16.974% -Rate for instruction 3954: 16.9756% -Rate for instruction 3955: 16.9752% -Rate for instruction 3956: 16.9728% -Rate for instruction 3957: 16.9734% -Rate for instruction 3958: 16.9711% -Rate for instruction 3959: 16.9707% -Rate for instruction 3960: 16.9712% -Rate for instruction 3961: 16.9679% -Rate for instruction 3962: 16.9646% -Rate for instruction 3963: 16.9749% -Rate for instruction 3964: 16.9716% -Rate for instruction 3965: 16.9702% -Rate for instruction 3966: 16.9698% -Rate for instruction 3967: 16.9762% -Rate for instruction 3968: 16.9797% -Rate for instruction 3969: 16.9764% -Rate for instruction 3970: 16.9837% -Rate for instruction 3971: 16.9804% -Rate for instruction 3972: 16.9781% -Rate for instruction 3973: 16.9815% -Rate for instruction 3974: 16.984% -Rate for instruction 3975: 16.9827% -Rate for instruction 3976: 16.9794% -Rate for instruction 3977: 16.9799% -Rate for instruction 3978: 16.9844% -Rate for instruction 3979: 16.9849% -Rate for instruction 3980: 16.9836% -Rate for instruction 3981: 16.988% -Rate for instruction 3982: 16.9914% -Rate for instruction 3983: 16.9881% -Rate for instruction 3984: 16.9916% -Rate for instruction 3985: 16.9902% -Rate for instruction 3986: 16.9889% -Rate for instruction 3987: 16.9865% -Rate for instruction 3988: 16.9852% -Rate for instruction 3989: 16.9828% -Rate for instruction 3990: 16.9805% -Rate for instruction 3991: 16.9811% -Rate for instruction 3992: 16.9807% -Rate for instruction 3993: 16.9793% -Rate for instruction 3994: 16.978% -Rate for instruction 3995: 16.9766% -Rate for instruction 3996: 16.9762% -Rate for instruction 3997: 16.9758% -Rate for instruction 3998: 16.9744% -Rate for instruction 3999: 16.9712% -Rate for instruction 4000: 16.9698% -Rate for instruction 4001: 16.9675% -Rate for instruction 4002: 16.9661% -Rate for instruction 4003: 16.9744% -Rate for instruction 4004: 16.9711% -Rate for instruction 4005: 16.9755% -Rate for instruction 4006: 16.977% -Rate for instruction 4007: 16.9824% -Rate for instruction 4008: 16.9858% -Rate for instruction 4009: 16.9835% -Rate for instruction 4010: 16.9802% -Rate for instruction 4011: 16.9837% -Rate for instruction 4012: 16.99% -Rate for instruction 4013: 16.9896% -Rate for instruction 4014: 16.9873% -Rate for instruction 4015: 16.984% -Rate for instruction 4016: 16.9826% -Rate for instruction 4017: 16.9794% -Rate for instruction 4018: 16.9771% -Rate for instruction 4019: 16.9738% -Rate for instruction 4020: 16.9743% -Rate for instruction 4021: 16.9711% -Rate for instruction 4022: 16.9697% -Rate for instruction 4023: 16.9674% -Rate for instruction 4024: 16.9642% -Rate for instruction 4025: 16.9628% -Rate for instruction 4026: 16.9596% -Rate for instruction 4027: 16.9573% -Rate for instruction 4028: 16.9569% -Rate for instruction 4029: 16.966% -Rate for instruction 4030: 16.9742% -Rate for instruction 4031: 16.971% -Rate for instruction 4032: 16.9677% -Rate for instruction 4033: 16.9683% -Rate for instruction 4034: 16.9669% -Rate for instruction 4035: 16.9665% -Rate for instruction 4036: 16.9633% -Rate for instruction 4037: 16.9657% -Rate for instruction 4038: 16.9644% -Rate for instruction 4039: 16.9669% -Rate for instruction 4040: 16.9646% -Rate for instruction 4041: 16.9642% -Rate for instruction 4042: 16.9609% -Rate for instruction 4043: 16.9596% -Rate for instruction 4044: 16.9564% -Rate for instruction 4045: 16.955% -Rate for instruction 4046: 16.9632% -Rate for instruction 4047: 16.9694% -Rate for instruction 4048: 16.9662% -Rate for instruction 4049: 16.9677% -Rate for instruction 4050: 16.9654% -Rate for instruction 4051: 16.965% -Rate for instruction 4052: 16.9637% -Rate for instruction 4053: 16.9652% -Rate for instruction 4054: 16.9648% -Rate for instruction 4055: 16.9625% -Rate for instruction 4056: 16.964% -Rate for instruction 4057: 16.9617% -Rate for instruction 4058: 16.9604% -Rate for instruction 4059: 16.9572% -Rate for instruction 4060: 16.9568% -Rate for instruction 4061: 16.9545% -Rate for instruction 4062: 16.9513% -Rate for instruction 4063: 16.9509% -Rate for instruction 4064: 16.9486% -Rate for instruction 4065: 16.9473% -Rate for instruction 4066: 16.946% -Rate for instruction 4067: 16.9475% -Rate for instruction 4068: 16.949% -Rate for instruction 4069: 16.9458% -Rate for instruction 4070: 16.9463% -Rate for instruction 4071: 16.944% -Rate for instruction 4072: 16.9427% -Rate for instruction 4073: 16.9414% -Rate for instruction 4074: 16.9476% -Rate for instruction 4075: 16.9529% -Rate for instruction 4076: 16.9506% -Rate for instruction 4077: 16.9484% -Rate for instruction 4078: 16.9451% -Rate for instruction 4079: 16.9466% -Rate for instruction 4080: 16.9481% -Rate for instruction 4081: 16.9478% -Rate for instruction 4082: 16.9483% -Rate for instruction 4083: 16.9508% -Rate for instruction 4084: 16.9513% -Rate for instruction 4085: 16.9509% -Rate for instruction 4086: 16.9534% -Rate for instruction 4087: 16.9577% -Rate for instruction 4088: 16.9573% -Rate for instruction 4089: 16.9541% -Rate for instruction 4090: 16.9528% -Rate for instruction 4091: 16.9505% -Rate for instruction 4092: 16.9492% -Rate for instruction 4093: 16.946% -Rate for instruction 4094: 16.9447% -Rate for instruction 4095: 16.9415% -Rate for instruction 4096: 16.9383% -Rate for instruction 4097: 16.936% -Rate for instruction 4098: 16.9375% -Rate for instruction 4099: 16.9381% -Rate for instruction 4100: 16.9349% -Rate for instruction 4101: 16.9326% -Rate for instruction 4102: 16.9407% -Rate for instruction 4103: 16.9506% -Rate for instruction 4104: 16.9484% -Rate for instruction 4105: 16.948% -Rate for instruction 4106: 16.9448% -Rate for instruction 4107: 16.9454% -Rate for instruction 4108: 16.944% -Rate for instruction 4109: 16.9502% -Rate for instruction 4110: 16.9508% -Rate for instruction 4111: 16.9513% -Rate for instruction 4112: 16.9491% -Rate for instruction 4113: 16.9571% -Rate for instruction 4114: 16.9558% -Rate for instruction 4115: 16.9648% -Rate for instruction 4116: 16.9644% -Rate for instruction 4117: 16.9631% -Rate for instruction 4118: 16.9617% -Rate for instruction 4119: 16.9614% -Rate for instruction 4120: 16.96% -Rate for instruction 4121: 16.9578% -Rate for instruction 4122: 16.9555% -Rate for instruction 4123: 16.9524% -Rate for instruction 4124: 16.9585% -Rate for instruction 4125: 16.9637% -Rate for instruction 4126: 16.9633% -Rate for instruction 4127: 16.9713% -Rate for instruction 4128: 16.9793% -Rate for instruction 4129: 16.9873% -Rate for instruction 4130: 16.9907% -Rate for instruction 4131: 16.9884% -Rate for instruction 4132: 16.988% -Rate for instruction 4133: 16.9876% -Rate for instruction 4134: 16.9938% -Rate for instruction 4135: 16.9962% -Rate for instruction 4136: 17.0023% -Rate for instruction 4137: 17.0028% -Rate for instruction 4138: 17.0062% -Rate for instruction 4139: 17.0067% -Rate for instruction 4140: 17.0119% -Rate for instruction 4141: 17.0105% -Rate for instruction 4142: 17.0157% -Rate for instruction 4143: 17.0172% -Rate for instruction 4144: 17.0168% -Rate for instruction 4145: 17.0164% -Rate for instruction 4146: 17.0142% -Rate for instruction 4147: 17.011% -Rate for instruction 4148: 17.0097% -Rate for instruction 4149: 17.0065% -Rate for instruction 4150: 17.0042% -Rate for instruction 4151: 17.0011% -Rate for instruction 4152: 17.0007% -Rate for instruction 4153: 16.9984% -Rate for instruction 4154: 16.9971% -Rate for instruction 4155: 16.9995% -Rate for instruction 4156: 17.001% -Rate for instruction 4157: 17.0024% -Rate for instruction 4158: 17.0002% -Rate for instruction 4159: 16.997% -Rate for instruction 4160: 16.9967% -Rate for instruction 4161: 16.9972% -Rate for instruction 4162: 16.9959% -Rate for instruction 4163: 16.9936% -Rate for instruction 4164: 16.9942% -Rate for instruction 4165: 16.9929% -Rate for instruction 4166: 16.9925% -Rate for instruction 4167: 16.993% -Rate for instruction 4168: 16.9926% -Rate for instruction 4169: 16.9913% -Rate for instruction 4170: 16.9928% -Rate for instruction 4171: 16.9906% -Rate for instruction 4172: 16.9874% -Rate for instruction 4173: 16.9879% -Rate for instruction 4174: 16.9894% -Rate for instruction 4175: 16.9909% -Rate for instruction 4176: 16.9923% -Rate for instruction 4177: 16.9929% -Rate for instruction 4178: 16.9943% -Rate for instruction 4179: 16.9958% -Rate for instruction 4180: 17% -Rate for instruction 4181: 17.006% -Rate for instruction 4182: 17.0029% -Rate for instruction 4183: 16.9997% -Rate for instruction 4184: 16.9984% -Rate for instruction 4185: 16.999% -Rate for instruction 4186: 16.9995% -Rate for instruction 4187: 16.9982% -Rate for instruction 4188: 16.9969% -Rate for instruction 4189: 17.0002% -Rate for instruction 4190: 16.998% -Rate for instruction 4191: 17.0012% -Rate for instruction 4192: 17.0027% -Rate for instruction 4193: 17.0032% -Rate for instruction 4194: 17.001% -Rate for instruction 4195: 16.9979% -Rate for instruction 4196: 16.9966% -Rate for instruction 4197: 16.9999% -Rate for instruction 4198: 17.0004% -Rate for instruction 4199: 17.0009% -Rate for instruction 4200: 17.0088% -Rate for instruction 4201: 17.0075% -Rate for instruction 4202: 17.0135% -Rate for instruction 4203: 17.0149% -Rate for instruction 4204: 17.0145% -Rate for instruction 4205: 17.0123% -Rate for instruction 4206: 17.0129% -Rate for instruction 4207: 17.0143% -Rate for instruction 4208: 17.0139% -Rate for instruction 4209: 17.0117% -Rate for instruction 4210: 17.0095% -Rate for instruction 4211: 17.0109% -Rate for instruction 4212: 17.016% -Rate for instruction 4213: 17.0147% -Rate for instruction 4214: 17.0134% -Rate for instruction 4215: 17.0194% -Rate for instruction 4216: 17.0181% -Rate for instruction 4217: 17.0241% -Rate for instruction 4218: 17.0292% -Rate for instruction 4219: 17.0279% -Rate for instruction 4220: 17.0302% -Rate for instruction 4221: 17.0335% -Rate for instruction 4222: 17.0322% -Rate for instruction 4223: 17.0373% -Rate for instruction 4224: 17.035% -Rate for instruction 4225: 17.0337% -Rate for instruction 4226: 17.0315% -Rate for instruction 4227: 17.0348% -Rate for instruction 4228: 17.0362% -Rate for instruction 4229: 17.034% -Rate for instruction 4230: 17.0363% -Rate for instruction 4231: 17.0423% -Rate for instruction 4232: 17.0428% -Rate for instruction 4233: 17.0488% -Rate for instruction 4234: 17.0475% -Rate for instruction 4235: 17.0535% -Rate for instruction 4236: 17.0594% -Rate for instruction 4237: 17.0627% -Rate for instruction 4238: 17.0659% -Rate for instruction 4239: 17.0628% -Rate for instruction 4240: 17.066% -Rate for instruction 4241: 17.0647% -Rate for instruction 4242: 17.0634% -Rate for instruction 4243: 17.0675% -Rate for instruction 4244: 17.0671% -Rate for instruction 4245: 17.0713% -Rate for instruction 4246: 17.0754% -Rate for instruction 4247: 17.0741% -Rate for instruction 4248: 17.0773% -Rate for instruction 4249: 17.0814% -Rate for instruction 4250: 17.0874% -Rate for instruction 4251: 17.0852% -Rate for instruction 4252: 17.092% -Rate for instruction 4253: 17.0898% -Rate for instruction 4254: 17.0894% -Rate for instruction 4255: 17.0881% -Rate for instruction 4256: 17.0913% -Rate for instruction 4257: 17.0882% -Rate for instruction 4258: 17.086% -Rate for instruction 4259: 17.0829% -Rate for instruction 4260: 17.0825% -Rate for instruction 4261: 17.0794% -Rate for instruction 4262: 17.0772% -Rate for instruction 4263: 17.0741% -Rate for instruction 4264: 17.0782% -Rate for instruction 4265: 17.0778% -Rate for instruction 4266: 17.0828% -Rate for instruction 4267: 17.0887% -Rate for instruction 4268: 17.0928% -Rate for instruction 4269: 17.0924% -Rate for instruction 4270: 17.0974% -Rate for instruction 4271: 17.1015% -Rate for instruction 4272: 17.1056% -Rate for instruction 4273: 17.1079% -Rate for instruction 4274: 17.1048% -Rate for instruction 4275: 17.1116% -Rate for instruction 4276: 17.1157% -Rate for instruction 4277: 17.1144% -Rate for instruction 4278: 17.1176% -Rate for instruction 4279: 17.1145% -Rate for instruction 4280: 17.1213% -Rate for instruction 4281: 17.1191% -Rate for instruction 4282: 17.1258% -Rate for instruction 4283: 17.1254% -Rate for instruction 4284: 17.1241% -Rate for instruction 4285: 17.1246% -Rate for instruction 4286: 17.1215% -Rate for instruction 4287: 17.1193% -Rate for instruction 4288: 17.1171% -Rate for instruction 4289: 17.114% -Rate for instruction 4290: 17.1118% -Rate for instruction 4291: 17.1123% -Rate for instruction 4292: 17.111% -Rate for instruction 4293: 17.108% -Rate for instruction 4294: 17.1129% -Rate for instruction 4295: 17.1134% -Rate for instruction 4296: 17.1103% -Rate for instruction 4297: 17.1072% -Rate for instruction 4298: 17.1042% -Rate for instruction 4299: 17.1073% -Rate for instruction 4300: 17.1078% -Rate for instruction 4301: 17.111% -Rate for instruction 4302: 17.1133% -Rate for instruction 4303: 17.1174% -Rate for instruction 4304: 17.1196% -Rate for instruction 4305: 17.1237% -Rate for instruction 4306: 17.1215% -Rate for instruction 4307: 17.122% -Rate for instruction 4308: 17.1216% -Rate for instruction 4309: 17.1194% -Rate for instruction 4310: 17.1172% -Rate for instruction 4311: 17.1141% -Rate for instruction 4312: 17.1137% -Rate for instruction 4313: 17.1107% -Rate for instruction 4314: 17.112% -Rate for instruction 4315: 17.1116% -Rate for instruction 4316: 17.1104% -Rate for instruction 4317: 17.1091% -Rate for instruction 4318: 17.1078% -Rate for instruction 4319: 17.1047% -Rate for instruction 4320: 17.1096% -Rate for instruction 4321: 17.1137% -Rate for instruction 4322: 17.1124% -Rate for instruction 4323: 17.1093% -Rate for instruction 4324: 17.1072% -Rate for instruction 4325: 17.105% -Rate for instruction 4326: 17.1037% -Rate for instruction 4327: 17.1015% -Rate for instruction 4328: 17.0993% -Rate for instruction 4329: 17.0963% -Rate for instruction 4330: 17.0977% -Rate for instruction 4331: 17.0946% -Rate for instruction 4332: 17.0969% -Rate for instruction 4333: 17.0974% -Rate for instruction 4334: 17.0943% -Rate for instruction 4335: 17.093% -Rate for instruction 4336: 17.0953% -Rate for instruction 4337: 17.1011% -Rate for instruction 4338: 17.0989% -Rate for instruction 4339: 17.0959% -Rate for instruction 4340: 17.099% -Rate for instruction 4341: 17.096% -Rate for instruction 4342: 17.0974% -Rate for instruction 4343: 17.0996% -Rate for instruction 4344: 17.0992% -Rate for instruction 4345: 17.1059% -Rate for instruction 4346: 17.1108% -Rate for instruction 4347: 17.1149% -Rate for instruction 4348: 17.1206% -Rate for instruction 4349: 17.1273% -Rate for instruction 4350: 17.1243% -Rate for instruction 4351: 17.1239% -Rate for instruction 4352: 17.1279% -Rate for instruction 4353: 17.1293% -Rate for instruction 4354: 17.1297% -Rate for instruction 4355: 17.1338% -Rate for instruction 4356: 17.136% -Rate for instruction 4357: 17.1427% -Rate for instruction 4358: 17.144% -Rate for instruction 4359: 17.1507% -Rate for instruction 4360: 17.1582% -Rate for instruction 4361: 17.1552% -Rate for instruction 4362: 17.153% -Rate for instruction 4363: 17.1499% -Rate for instruction 4364: 17.1557% -Rate for instruction 4365: 17.1535% -Rate for instruction 4366: 17.1611% -Rate for instruction 4367: 17.1624% -Rate for instruction 4368: 17.1673% -Rate for instruction 4369: 17.1722% -Rate for instruction 4370: 17.1761% -Rate for instruction 4371: 17.174% -Rate for instruction 4372: 17.1771% -Rate for instruction 4373: 17.1811% -Rate for instruction 4374: 17.1789% -Rate for instruction 4375: 17.1802% -Rate for instruction 4376: 17.1781% -Rate for instruction 4377: 17.1786% -Rate for instruction 4378: 17.1799% -Rate for instruction 4379: 17.1848% -Rate for instruction 4380: 17.1817% -Rate for instruction 4381: 17.1874% -Rate for instruction 4382: 17.1844% -Rate for instruction 4383: 17.1849% -Rate for instruction 4384: 17.1818% -Rate for instruction 4385: 17.1876% -Rate for instruction 4386: 17.1924% -Rate for instruction 4387: 17.1946% -Rate for instruction 4388: 17.1986% -Rate for instruction 4389: 17.2026% -Rate for instruction 4390: 17.2004% -Rate for instruction 4391: 17.1982% -Rate for instruction 4392: 17.1969% -Rate for instruction 4393: 17.1948% -Rate for instruction 4394: 17.1926% -Rate for instruction 4395: 17.1896% -Rate for instruction 4396: 17.1883% -Rate for instruction 4397: 17.1861% -Rate for instruction 4398: 17.1848% -Rate for instruction 4399: 17.1818% -Rate for instruction 4400: 17.1788% -Rate for instruction 4401: 17.181% -Rate for instruction 4402: 17.1806% -Rate for instruction 4403: 17.1863% -Rate for instruction 4404: 17.192% -Rate for instruction 4405: 17.1977% -Rate for instruction 4406: 17.2043% -Rate for instruction 4407: 17.2091% -Rate for instruction 4408: 17.2113% -Rate for instruction 4409: 17.2083% -Rate for instruction 4410: 17.2105% -Rate for instruction 4411: 17.2127% -Rate for instruction 4412: 17.2157% -Rate for instruction 4413: 17.2206% -Rate for instruction 4414: 17.2193% -Rate for instruction 4415: 17.2215% -Rate for instruction 4416: 17.2202% -Rate for instruction 4417: 17.2172% -Rate for instruction 4418: 17.2167% -Rate for instruction 4419: 17.2181% -Rate for instruction 4420: 17.2203% -Rate for instruction 4421: 17.2181% -Rate for instruction 4422: 17.2151% -Rate for instruction 4423: 17.2129% -Rate for instruction 4424: 17.2125% -Rate for instruction 4425: 17.2095% -Rate for instruction 4426: 17.2073% -Rate for instruction 4427: 17.2087% -Rate for instruction 4428: 17.2083% -Rate for instruction 4429: 17.2061% -Rate for instruction 4430: 17.2074% -Rate for instruction 4431: 17.2096% -Rate for instruction 4432: 17.2092% -Rate for instruction 4433: 17.2062% -Rate for instruction 4434: 17.2032% -Rate for instruction 4435: 17.2028% -Rate for instruction 4436: 17.2032% -Rate for instruction 4437: 17.2037% -Rate for instruction 4438: 17.2024% -Rate for instruction 4439: 17.1994% -Rate for instruction 4440: 17.199% -Rate for instruction 4441: 17.196% -Rate for instruction 4442: 17.1956% -Rate for instruction 4443: 17.1952% -Rate for instruction 4444: 17.1956% -Rate for instruction 4445: 17.1926% -Rate for instruction 4446: 17.1922% -Rate for instruction 4447: 17.1892% -Rate for instruction 4448: 17.1897% -Rate for instruction 4449: 17.1901% -Rate for instruction 4450: 17.188% -Rate for instruction 4451: 17.1893% -Rate for instruction 4452: 17.1898% -Rate for instruction 4453: 17.1877% -Rate for instruction 4454: 17.189% -Rate for instruction 4455: 17.1869% -Rate for instruction 4456: 17.1873% -Rate for instruction 4457: 17.1852% -Rate for instruction 4458: 17.1865% -Rate for instruction 4459: 17.1913% -Rate for instruction 4460: 17.1891% -Rate for instruction 4461: 17.1879% -Rate for instruction 4462: 17.1926% -Rate for instruction 4463: 17.1897% -Rate for instruction 4464: 17.1884% -Rate for instruction 4465: 17.1854% -Rate for instruction 4466: 17.1841% -Rate for instruction 4467: 17.1846% -Rate for instruction 4468: 17.1816% -Rate for instruction 4469: 17.1855% -Rate for instruction 4470: 17.192% -Rate for instruction 4471: 17.195% -Rate for instruction 4472: 17.1938% -Rate for instruction 4473: 17.1951% -Rate for instruction 4474: 17.1938% -Rate for instruction 4475: 17.1925% -Rate for instruction 4476: 17.1896% -Rate for instruction 4477: 17.1883% -Rate for instruction 4478: 17.187% -Rate for instruction 4479: 17.1849% -Rate for instruction 4480: 17.1837% -Rate for instruction 4481: 17.1824% -Rate for instruction 4482: 17.1829% -Rate for instruction 4483: 17.1807% -Rate for instruction 4484: 17.1821% -Rate for instruction 4485: 17.1808% -Rate for instruction 4486: 17.1795% -Rate for instruction 4487: 17.1826% -Rate for instruction 4488: 17.1873% -Rate for instruction 4489: 17.1869% -Rate for instruction 4490: 17.1908% -Rate for instruction 4491: 17.1938% -Rate for instruction 4492: 17.196% -Rate for instruction 4493: 17.2007% -Rate for instruction 4494: 17.2037% -Rate for instruction 4495: 17.2008% -Rate for instruction 4496: 17.2004% -Rate for instruction 4497: 17.2034% -Rate for instruction 4498: 17.2013% -Rate for instruction 4499: 17.2% -Rate for instruction 4500: 17.1979% -Rate for instruction 4501: 17.1975% -Rate for instruction 4502: 17.1988% -Rate for instruction 4503: 17.1967% -Rate for instruction 4504: 17.1963% -Rate for instruction 4505: 17.1984% -Rate for instruction 4506: 17.1972% -Rate for instruction 4507: 17.1993% -Rate for instruction 4508: 17.1972% -Rate for instruction 4509: 17.1943% -Rate for instruction 4510: 17.1964% -Rate for instruction 4511: 17.1952% -Rate for instruction 4512: 17.1939% -Rate for instruction 4513: 17.1961% -Rate for instruction 4514: 17.1931% -Rate for instruction 4515: 17.197% -Rate for instruction 4516: 17.194% -Rate for instruction 4517: 17.1928% -Rate for instruction 4518: 17.1907% -Rate for instruction 4519: 17.1928% -Rate for instruction 4520: 17.1941% -Rate for instruction 4521: 17.1937% -Rate for instruction 4522: 17.1933% -Rate for instruction 4523: 17.1946% -Rate for instruction 4524: 17.1985% -Rate for instruction 4525: 17.1964% -Rate for instruction 4526: 17.2028% -Rate for instruction 4527: 17.21% -Rate for instruction 4528: 17.2113% -Rate for instruction 4529: 17.2126% -Rate for instruction 4530: 17.2147% -Rate for instruction 4531: 17.2135% -Rate for instruction 4532: 17.2105% -Rate for instruction 4533: 17.2084% -Rate for instruction 4534: 17.2055% -Rate for instruction 4535: 17.2042% -Rate for instruction 4536: 17.2013% -Rate for instruction 4537: 17.1992% -Rate for instruction 4538: 17.2013% -Rate for instruction 4539: 17.1993% -Rate for instruction 4540: 17.2014% -Rate for instruction 4541: 17.2027% -Rate for instruction 4542: 17.2048% -Rate for instruction 4543: 17.2019% -Rate for instruction 4544: 17.204% -Rate for instruction 4545: 17.2062% -Rate for instruction 4546: 17.2049% -Rate for instruction 4547: 17.2028% -Rate for instruction 4548: 17.2041% -Rate for instruction 4549: 17.2029% -Rate for instruction 4550: 17.2025% -Rate for instruction 4551: 17.2012% -Rate for instruction 4552: 17.2034% -Rate for instruction 4553: 17.2021% -Rate for instruction 4554: 17.2017% -Rate for instruction 4555: 17.2005% -Rate for instruction 4556: 17.1992% -Rate for instruction 4557: 17.1972% -Rate for instruction 4558: 17.1968% -Rate for instruction 4559: 17.1938% -Rate for instruction 4560: 17.1951% -Rate for instruction 4561: 17.1956% -Rate for instruction 4562: 17.1977% -Rate for instruction 4563: 17.1948% -Rate for instruction 4564: 17.1927% -Rate for instruction 4565: 17.1948% -Rate for instruction 4566: 17.1927% -Rate for instruction 4567: 17.1907% -Rate for instruction 4568: 17.1903% -Rate for instruction 4569: 17.1916% -Rate for instruction 4570: 17.1895% -Rate for instruction 4571: 17.1899% -Rate for instruction 4572: 17.1887% -Rate for instruction 4573: 17.1874% -Rate for instruction 4574: 17.1879% -Rate for instruction 4575: 17.19% -Rate for instruction 4576: 17.1938% -Rate for instruction 4577: 17.1909% -Rate for instruction 4578: 17.1956% -Rate for instruction 4579: 17.1994% -Rate for instruction 4580: 17.1973% -Rate for instruction 4581: 17.2011% -Rate for instruction 4582: 17.199% -Rate for instruction 4583: 17.1961% -Rate for instruction 4584: 17.1965% -Rate for instruction 4585: 17.1936% -Rate for instruction 4586: 17.1999% -Rate for instruction 4587: 17.197% -Rate for instruction 4588: 17.1958% -Rate for instruction 4589: 17.1962% -Rate for instruction 4590: 17.1942% -Rate for instruction 4591: 17.1929% -Rate for instruction 4592: 17.1917% -Rate for instruction 4593: 17.1913% -Rate for instruction 4594: 17.1918% -Rate for instruction 4595: 17.193% -Rate for instruction 4596: 17.191% -Rate for instruction 4597: 17.1964% -Rate for instruction 4598: 17.2044% -Rate for instruction 4599: 17.2048% -Rate for instruction 4600: 17.2028% -Rate for instruction 4601: 17.2066% -Rate for instruction 4602: 17.2045% -Rate for instruction 4603: 17.2049% -Rate for instruction 4604: 17.2062% -Rate for instruction 4605: 17.2058% -Rate for instruction 4606: 17.2038% -Rate for instruction 4607: 17.2034% -Rate for instruction 4608: 17.2038% -Rate for instruction 4609: 17.2059% -Rate for instruction 4610: 17.2038% -Rate for instruction 4611: 17.2026% -Rate for instruction 4612: 17.2014% -Rate for instruction 4613: 17.201% -Rate for instruction 4614: 17.1981% -Rate for instruction 4615: 17.201% -Rate for instruction 4616: 17.1998% -Rate for instruction 4617: 17.2019% -Rate for instruction 4618: 17.2057% -Rate for instruction 4619: 17.2045% -Rate for instruction 4620: 17.2024% -Rate for instruction 4621: 17.2012% -Rate for instruction 4622: 17.2016% -Rate for instruction 4623: 17.1996% -Rate for instruction 4624: 17.1975% -Rate for instruction 4625: 17.1955% -Rate for instruction 4626: 17.1934% -Rate for instruction 4627: 17.1913% -Rate for instruction 4628: 17.1885% -Rate for instruction 4629: 17.1881% -Rate for instruction 4630: 17.1885% -Rate for instruction 4631: 17.1873% -Rate for instruction 4632: 17.1886% -Rate for instruction 4633: 17.1882% -Rate for instruction 4634: 17.187% -Rate for instruction 4635: 17.1857% -Rate for instruction 4636: 17.1845% -Rate for instruction 4637: 17.1841% -Rate for instruction 4638: 17.1829% -Rate for instruction 4639: 17.18% -Rate for instruction 4640: 17.1805% -Rate for instruction 4641: 17.1784% -Rate for instruction 4642: 17.1822% -Rate for instruction 4643: 17.1793% -Rate for instruction 4644: 17.1798% -Rate for instruction 4645: 17.1769% -Rate for instruction 4646: 17.1765% -Rate for instruction 4647: 17.1736% -Rate for instruction 4648: 17.1757% -Rate for instruction 4649: 17.177% -Rate for instruction 4650: 17.1783% -Rate for instruction 4651: 17.1804% -Rate for instruction 4652: 17.1792% -Rate for instruction 4653: 17.1779% -Rate for instruction 4654: 17.18% -Rate for instruction 4655: 17.1813% -Rate for instruction 4656: 17.185% -Rate for instruction 4657: 17.1822% -Rate for instruction 4658: 17.1801% -Rate for instruction 4659: 17.1773% -Rate for instruction 4660: 17.1761% -Rate for instruction 4661: 17.1732% -Rate for instruction 4662: 17.1712% -Rate for instruction 4663: 17.17% -Rate for instruction 4664: 17.1679% -Rate for instruction 4665: 17.1676% -Rate for instruction 4666: 17.1688% -Rate for instruction 4667: 17.1709% -Rate for instruction 4668: 17.173% -Rate for instruction 4669: 17.1734% -Rate for instruction 4670: 17.1714% -Rate for instruction 4671: 17.1686% -Rate for instruction 4672: 17.169% -Rate for instruction 4673: 17.1719% -Rate for instruction 4674: 17.1732% -Rate for instruction 4675: 17.1736% -Rate for instruction 4676: 17.1708% -Rate for instruction 4677: 17.1696% -Rate for instruction 4678: 17.1667% -Rate for instruction 4679: 17.168% -Rate for instruction 4680: 17.1692% -Rate for instruction 4681: 17.1672% -Rate for instruction 4682: 17.1644% -Rate for instruction 4683: 17.1648% -Rate for instruction 4684: 17.1636% -Rate for instruction 4685: 17.1616% -Rate for instruction 4686: 17.1604% -Rate for instruction 4687: 17.1576% -Rate for instruction 4688: 17.1605% -Rate for instruction 4689: 17.1601% -Rate for instruction 4690: 17.1572% -Rate for instruction 4691: 17.1544% -Rate for instruction 4692: 17.1573% -Rate for instruction 4693: 17.1577% -Rate for instruction 4694: 17.1549% -Rate for instruction 4695: 17.1545% -Rate for instruction 4696: 17.1558% -Rate for instruction 4697: 17.1579% -Rate for instruction 4698: 17.1649% -Rate for instruction 4699: 17.1669% -Rate for instruction 4700: 17.1649% -Rate for instruction 4701: 17.1621% -Rate for instruction 4702: 17.1593% -Rate for instruction 4703: 17.1572% -Rate for instruction 4704: 17.1544% -Rate for instruction 4705: 17.1573% -Rate for instruction 4706: 17.1602% -Rate for instruction 4707: 17.159% -Rate for instruction 4708: 17.1627% -Rate for instruction 4709: 17.1656% -Rate for instruction 4710: 17.1693% -Rate for instruction 4711: 17.1706% -Rate for instruction 4712: 17.1726% -Rate for instruction 4713: 17.1739% -Rate for instruction 4714: 17.1735% -Rate for instruction 4715: 17.1731% -Rate for instruction 4716: 17.1711% -Rate for instruction 4717: 17.1732% -Rate for instruction 4718: 17.1736% -Rate for instruction 4719: 17.1749% -Rate for instruction 4720: 17.172% -Rate for instruction 4721: 17.17% -Rate for instruction 4722: 17.1672% -Rate for instruction 4723: 17.1668% -Rate for instruction 4724: 17.1665% -Rate for instruction 4725: 17.1645% -Rate for instruction 4726: 17.1641% -Rate for instruction 4727: 17.1645% -Rate for instruction 4728: 17.1617% -Rate for instruction 4729: 17.1597% -Rate for instruction 4730: 17.1585% -Rate for instruction 4731: 17.1557% -Rate for instruction 4732: 17.157% -Rate for instruction 4733: 17.1541% -Rate for instruction 4734: 17.1562% -Rate for instruction 4735: 17.1534% -Rate for instruction 4736: 17.1555% -Rate for instruction 4737: 17.1535% -Rate for instruction 4738: 17.1539% -Rate for instruction 4739: 17.1551% -Rate for instruction 4740: 17.1613% -Rate for instruction 4741: 17.1641% -Rate for instruction 4742: 17.1613% -Rate for instruction 4743: 17.1674% -Rate for instruction 4744: 17.1679% -Rate for instruction 4745: 17.1659% -Rate for instruction 4746: 17.1728% -Rate for instruction 4747: 17.1748% -Rate for instruction 4748: 17.1737% -Rate for instruction 4749: 17.1709% -Rate for instruction 4750: 17.1713% -Rate for instruction 4751: 17.1725% -Rate for instruction 4752: 17.1746% -Rate for instruction 4753: 17.1718% -Rate for instruction 4754: 17.1706% -Rate for instruction 4755: 17.1694% -Rate for instruction 4756: 17.1674% -Rate for instruction 4757: 17.1678% -Rate for instruction 4758: 17.165% -Rate for instruction 4759: 17.1647% -Rate for instruction 4760: 17.1635% -Rate for instruction 4761: 17.1607% -Rate for instruction 4762: 17.1595% -Rate for instruction 4763: 17.1575% -Rate for instruction 4764: 17.1572% -Rate for instruction 4765: 17.156% -Rate for instruction 4766: 17.1548% -Rate for instruction 4767: 17.1536% -Rate for instruction 4768: 17.1532% -Rate for instruction 4769: 17.1521% -Rate for instruction 4770: 17.1517% -Rate for instruction 4771: 17.1537% -Rate for instruction 4772: 17.1566% -Rate for instruction 4773: 17.157% -Rate for instruction 4774: 17.1542% -Rate for instruction 4775: 17.1547% -Rate for instruction 4776: 17.1527% -Rate for instruction 4777: 17.1596% -Rate for instruction 4778: 17.1632% -Rate for instruction 4779: 17.1637% -Rate for instruction 4780: 17.1609% -Rate for instruction 4781: 17.1629% -Rate for instruction 4782: 17.1625% -Rate for instruction 4783: 17.1598% -Rate for instruction 4784: 17.1602% -Rate for instruction 4785: 17.159% -Rate for instruction 4786: 17.1595% -Rate for instruction 4787: 17.1567% -Rate for instruction 4788: 17.1555% -Rate for instruction 4789: 17.1527% -Rate for instruction 4790: 17.1507% -Rate for instruction 4791: 17.148% -Rate for instruction 4792: 17.1492% -Rate for instruction 4793: 17.1464% -Rate for instruction 4794: 17.1493% -Rate for instruction 4795: 17.1465% -Rate for instruction 4796: 17.1445% -Rate for instruction 4797: 17.1434% -Rate for instruction 4798: 17.1414% -Rate for instruction 4799: 17.1402% -Rate for instruction 4800: 17.1383% -Rate for instruction 4801: 17.1371% -Rate for instruction 4802: 17.1351% -Rate for instruction 4803: 17.1332% -Rate for instruction 4804: 17.1304% -Rate for instruction 4805: 17.1292% -Rate for instruction 4806: 17.1265% -Rate for instruction 4807: 17.1245% -Rate for instruction 4808: 17.1217% -Rate for instruction 4809: 17.123% -Rate for instruction 4810: 17.1258% -Rate for instruction 4811: 17.1231% -Rate for instruction 4812: 17.1203% -Rate for instruction 4813: 17.1191% -Rate for instruction 4814: 17.1204% -Rate for instruction 4815: 17.1208% -Rate for instruction 4816: 17.1197% -Rate for instruction 4817: 17.1177% -Rate for instruction 4818: 17.1173% -Rate for instruction 4819: 17.1162% -Rate for instruction 4820: 17.1166% -Rate for instruction 4821: 17.1155% -Rate for instruction 4822: 17.1135% -Rate for instruction 4823: 17.1132% -Rate for instruction 4824: 17.1128% -Rate for instruction 4825: 17.1116% -Rate for instruction 4826: 17.1105% -Rate for instruction 4827: 17.1101% -Rate for instruction 4828: 17.109% -Rate for instruction 4829: 17.107% -Rate for instruction 4830: 17.1059% -Rate for instruction 4831: 17.1071% -Rate for instruction 4832: 17.1044% -Rate for instruction 4833: 17.1064% -Rate for instruction 4834: 17.1037% -Rate for instruction 4835: 17.1049% -Rate for instruction 4836: 17.1141% -Rate for instruction 4837: 17.1129% -Rate for instruction 4838: 17.111% -Rate for instruction 4839: 17.109% -Rate for instruction 4840: 17.1063% -Rate for instruction 4841: 17.1115% -Rate for instruction 4842: 17.1088% -Rate for instruction 4843: 17.1084% -Rate for instruction 4844: 17.1088% -Rate for instruction 4845: 17.1077% -Rate for instruction 4846: 17.1065% -Rate for instruction 4847: 17.1046% -Rate for instruction 4848: 17.1027% -Rate for instruction 4849: 17.1015% -Rate for instruction 4850: 17.1035% -Rate for instruction 4851: 17.1056% -Rate for instruction 4852: 17.1052% -Rate for instruction 4853: 17.1033% -Rate for instruction 4854: 17.1005% -Rate for instruction 4855: 17.0986% -Rate for instruction 4856: 17.0967% -Rate for instruction 4857: 17.0947% -Rate for instruction 4858: 17.0967% -Rate for instruction 4859: 17.0964% -Rate for instruction 4860: 17.096% -Rate for instruction 4861: 17.1004% -Rate for instruction 4862: 17.1025% -Rate for instruction 4863: 17.1021% -Rate for instruction 4864: 17.1017% -Rate for instruction 4865: 17.1006% -Rate for instruction 4866: 17.0987% -Rate for instruction 4867: 17.0975% -Rate for instruction 4868: 17.0988% -Rate for instruction 4869: 17.1008% -Rate for instruction 4870: 17.102% -Rate for instruction 4871: 17.1009% -Rate for instruction 4872: 17.0989% -Rate for instruction 4873: 17.1025% -Rate for instruction 4874: 17.1006% -Rate for instruction 4875: 17.1018% -Rate for instruction 4876: 17.0999% -Rate for instruction 4877: 17.098% -Rate for instruction 4878: 17.1% -Rate for instruction 4879: 17.0973% -Rate for instruction 4880: 17.0977% -Rate for instruction 4881: 17.0958% -Rate for instruction 4882: 17.0962% -Rate for instruction 4883: 17.0943% -Rate for instruction 4884: 17.0939% -Rate for instruction 4885: 17.0936% -Rate for instruction 4886: 17.094% -Rate for instruction 4887: 17.0945% -Rate for instruction 4888: 17.0965% -Rate for instruction 4889: 17.0969% -Rate for instruction 4890: 17.0966% -Rate for instruction 4891: 17.0986% -Rate for instruction 4892: 17.099% -Rate for instruction 4893: 17.0963% -Rate for instruction 4894: 17.0967% -Rate for instruction 4895: 17.0987% -Rate for instruction 4896: 17.0976% -Rate for instruction 4897: 17.0965% -Rate for instruction 4898: 17.0945% -Rate for instruction 4899: 17.0934% -Rate for instruction 4900: 17.0923% -Rate for instruction 4901: 17.0904% -Rate for instruction 4902: 17.0892% -Rate for instruction 4903: 17.0873% -Rate for instruction 4904: 17.0877% -Rate for instruction 4905: 17.089% -Rate for instruction 4906: 17.0925% -Rate for instruction 4907: 17.093% -Rate for instruction 4908: 17.0958% -Rate for instruction 4909: 17.0931% -Rate for instruction 4910: 17.0904% -Rate for instruction 4911: 17.0908% -Rate for instruction 4912: 17.0905% -Rate for instruction 4913: 17.0909% -Rate for instruction 4914: 17.0905% -Rate for instruction 4915: 17.091% -Rate for instruction 4916: 17.0891% -Rate for instruction 4917: 17.0895% -Rate for instruction 4918: 17.0915% -Rate for instruction 4919: 17.0888% -Rate for instruction 4920: 17.0869% -Rate for instruction 4921: 17.0897% -Rate for instruction 4922: 17.0878% -Rate for instruction 4923: 17.0898% -Rate for instruction 4924: 17.0879% -Rate for instruction 4925: 17.0922% -Rate for instruction 4926: 17.0934% -Rate for instruction 4927: 17.0946% -Rate for instruction 4928: 17.0935% -Rate for instruction 4929: 17.0939% -Rate for instruction 4930: 17.0975% -Rate for instruction 4931: 17.0979% -Rate for instruction 4932: 17.1007% -Rate for instruction 4933: 17.1035% -Rate for instruction 4934: 17.1008% -Rate for instruction 4935: 17.1035% -Rate for instruction 4936: 17.1024% -Rate for instruction 4937: 17.1052% -Rate for instruction 4938: 17.1072% -Rate for instruction 4939: 17.1084% -Rate for instruction 4940: 17.1088% -Rate for instruction 4941: 17.1085% -Rate for instruction 4942: 17.1081% -Rate for instruction 4943: 17.1054% -Rate for instruction 4944: 17.109% -Rate for instruction 4945: 17.1086% -Rate for instruction 4946: 17.1122% -Rate for instruction 4947: 17.1103% -Rate for instruction 4948: 17.1122% -Rate for instruction 4949: 17.1134% -Rate for instruction 4950: 17.1185% -Rate for instruction 4951: 17.1252% -Rate for instruction 4952: 17.124% -Rate for instruction 4953: 17.1245% -Rate for instruction 4954: 17.1233% -Rate for instruction 4955: 17.1238% -Rate for instruction 4956: 17.1257% -Rate for instruction 4957: 17.1238% -Rate for instruction 4958: 17.1235% -Rate for instruction 4959: 17.1231% -Rate for instruction 4960: 17.1212% -Rate for instruction 4961: 17.1201% -Rate for instruction 4962: 17.1174% -Rate for instruction 4963: 17.1179% -Rate for instruction 4964: 17.1152% -Rate for instruction 4965: 17.1133% -Rate for instruction 4966: 17.1114% -Rate for instruction 4967: 17.1118% -Rate for instruction 4968: 17.1115% -Rate for instruction 4969: 17.1127% -Rate for instruction 4970: 17.1108% -Rate for instruction 4971: 17.1104% -Rate for instruction 4972: 17.1132% -Rate for instruction 4973: 17.1136% -Rate for instruction 4974: 17.1109% -Rate for instruction 4975: 17.1121% -Rate for instruction 4976: 17.111% -Rate for instruction 4977: 17.1107% -Rate for instruction 4978: 17.1096% -Rate for instruction 4979: 17.1108% -Rate for instruction 4980: 17.1081% -Rate for instruction 4981: 17.1108% -Rate for instruction 4982: 17.1113% -Rate for instruction 4983: 17.1109% -Rate for instruction 4984: 17.1098% -Rate for instruction 4985: 17.1133% -Rate for instruction 4986: 17.1137% -Rate for instruction 4987: 17.1134% -Rate for instruction 4988: 17.1153% -Rate for instruction 4989: 17.1135% -Rate for instruction 4990: 17.117% -Rate for instruction 4991: 17.1151% -Rate for instruction 4992: 17.1124% -Rate for instruction 4993: 17.1105% -Rate for instruction 4994: 17.1102% -Rate for instruction 4995: 17.1075% -Rate for instruction 4996: 17.1056% -Rate for instruction 4997: 17.1107% -Rate for instruction 4998: 17.108% -Rate for instruction 4999: 17.1085% -Rate for instruction 5000: 17.1058% -Rate for instruction 5001: 17.1062% -Rate for instruction 5002: 17.1051% -Rate for instruction 5003: 17.1025% -Rate for instruction 5004: 17.1029% -Rate for instruction 5005: 17.1002% -Rate for instruction 5006: 17.1007% -Rate for instruction 5007: 17.0988% -Rate for instruction 5008: 17.0962% -Rate for instruction 5009: 17.0958% -Rate for instruction 5010: 17.0947% -Rate for instruction 5011: 17.0921% -Rate for instruction 5012: 17.0917% -Rate for instruction 5013: 17.0906% -Rate for instruction 5014: 17.0887% -Rate for instruction 5015: 17.0892% -Rate for instruction 5016: 17.0873% -Rate for instruction 5017: 17.0862% -Rate for instruction 5018: 17.0851% -Rate for instruction 5019: 17.0832% -Rate for instruction 5020: 17.0813% -Rate for instruction 5021: 17.0787% -Rate for instruction 5022: 17.0768% -Rate for instruction 5023: 17.078% -Rate for instruction 5024: 17.0769% -Rate for instruction 5025: 17.0758% -Rate for instruction 5026: 17.074% -Rate for instruction 5027: 17.0744% -Rate for instruction 5028: 17.074% -Rate for instruction 5029: 17.0791% -Rate for instruction 5030: 17.0772% -Rate for instruction 5031: 17.0746% -Rate for instruction 5032: 17.0727% -Rate for instruction 5033: 17.0701% -Rate for instruction 5034: 17.0743% -Rate for instruction 5035: 17.0725% -Rate for instruction 5036: 17.0706% -Rate for instruction 5037: 17.068% -Rate for instruction 5038: 17.0676% -Rate for instruction 5039: 17.0673% -Rate for instruction 5040: 17.0647% -Rate for instruction 5041: 17.0628% -Rate for instruction 5042: 17.0655% -Rate for instruction 5043: 17.0667% -Rate for instruction 5044: 17.071% -Rate for instruction 5045: 17.0691% -Rate for instruction 5046: 17.0673% -Rate for instruction 5047: 17.0662% -Rate for instruction 5048: 17.0635% -Rate for instruction 5049: 17.0625% -Rate for instruction 5050: 17.0598% -Rate for instruction 5051: 17.0595% -Rate for instruction 5052: 17.0569% -Rate for instruction 5053: 17.055% -Rate for instruction 5054: 17.0539% -Rate for instruction 5055: 17.0513% -Rate for instruction 5056: 17.051% -Rate for instruction 5057: 17.0514% -Rate for instruction 5058: 17.0526% -Rate for instruction 5059: 17.05% -Rate for instruction 5060: 17.0489% -Rate for instruction 5061: 17.0532% -Rate for instruction 5062: 17.0597% -Rate for instruction 5063: 17.0631% -Rate for instruction 5064: 17.0658% -Rate for instruction 5065: 17.0678% -Rate for instruction 5066: 17.0659% -Rate for instruction 5067: 17.0709% -Rate for instruction 5068: 17.0744% -Rate for instruction 5069: 17.0771% -Rate for instruction 5070: 17.079% -Rate for instruction 5071: 17.0764% -Rate for instruction 5072: 17.0768% -Rate for instruction 5073: 17.0765% -Rate for instruction 5074: 17.083% -Rate for instruction 5075: 17.0887% -Rate for instruction 5076: 17.0891% -Rate for instruction 5077: 17.0888% -Rate for instruction 5078: 17.0885% -Rate for instruction 5079: 17.0874% -Rate for instruction 5080: 17.0886% -Rate for instruction 5081: 17.089% -Rate for instruction 5082: 17.0894% -Rate for instruction 5083: 17.0891% -Rate for instruction 5084: 17.0887% -Rate for instruction 5085: 17.0876% -Rate for instruction 5086: 17.0881% -Rate for instruction 5087: 17.09% -Rate for instruction 5088: 17.0897% -Rate for instruction 5089: 17.0886% -Rate for instruction 5090: 17.089% -Rate for instruction 5091: 17.0871% -Rate for instruction 5092: 17.0891% -Rate for instruction 5093: 17.0865% -Rate for instruction 5094: 17.0884% -Rate for instruction 5095: 17.0896% -Rate for instruction 5096: 17.0907% -Rate for instruction 5097: 17.0904% -Rate for instruction 5098: 17.0931% -Rate for instruction 5099: 17.0935% -Rate for instruction 5100: 17.0954% -Rate for instruction 5101: 17.1011% -Rate for instruction 5102: 17.1016% -Rate for instruction 5103: 17.099% -Rate for instruction 5104: 17.0971% -Rate for instruction 5105: 17.0953% -Rate for instruction 5106: 17.0927% -Rate for instruction 5107: 17.0938% -Rate for instruction 5108: 17.0913% -Rate for instruction 5109: 17.0917% -Rate for instruction 5110: 17.0891% -Rate for instruction 5111: 17.091% -Rate for instruction 5112: 17.0907% -Rate for instruction 5113: 17.0881% -Rate for instruction 5114: 17.0862% -Rate for instruction 5115: 17.0844% -Rate for instruction 5116: 17.0878% -Rate for instruction 5117: 17.0913% -Rate for instruction 5118: 17.0902% -Rate for instruction 5119: 17.0876% -Rate for instruction 5120: 17.091% -Rate for instruction 5121: 17.0884% -Rate for instruction 5122: 17.0873% -Rate for instruction 5123: 17.0848% -Rate for instruction 5124: 17.0882% -Rate for instruction 5125: 17.0871% -Rate for instruction 5126: 17.0868% -Rate for instruction 5127: 17.0849% -Rate for instruction 5128: 17.0831% -Rate for instruction 5129: 17.0805% -Rate for instruction 5130: 17.0809% -Rate for instruction 5131: 17.0791% -Rate for instruction 5132: 17.081% -Rate for instruction 5133: 17.0785% -Rate for instruction 5134: 17.0796% -Rate for instruction 5135: 17.0785% -Rate for instruction 5136: 17.0805% -Rate for instruction 5137: 17.0779% -Rate for instruction 5138: 17.0783% -Rate for instruction 5139: 17.0772% -Rate for instruction 5140: 17.0791% -Rate for instruction 5141: 17.0781% -Rate for instruction 5142: 17.0785% -Rate for instruction 5143: 17.0774% -Rate for instruction 5144: 17.0793% -Rate for instruction 5145: 17.0797% -Rate for instruction 5146: 17.0794% -Rate for instruction 5147: 17.0768% -Rate for instruction 5148: 17.0758% -Rate for instruction 5149: 17.0754% -Rate for instruction 5150: 17.0744% -Rate for instruction 5151: 17.077% -Rate for instruction 5152: 17.0759% -Rate for instruction 5153: 17.0838% -Rate for instruction 5154: 17.085% -Rate for instruction 5155: 17.0869% -Rate for instruction 5156: 17.0881% -Rate for instruction 5157: 17.0922% -Rate for instruction 5158: 17.0904% -Rate for instruction 5159: 17.09% -Rate for instruction 5160: 17.0875% -Rate for instruction 5161: 17.0864% -Rate for instruction 5162: 17.0838% -Rate for instruction 5163: 17.0835% -Rate for instruction 5164: 17.0824% -Rate for instruction 5165: 17.0799% -Rate for instruction 5166: 17.0788% -Rate for instruction 5167: 17.077% -Rate for instruction 5168: 17.0767% -Rate for instruction 5169: 17.0771% -Rate for instruction 5170: 17.076% -Rate for instruction 5171: 17.0742% -Rate for instruction 5172: 17.0716% -Rate for instruction 5173: 17.072% -Rate for instruction 5174: 17.071% -Rate for instruction 5175: 17.0707% -Rate for instruction 5176: 17.0718% -Rate for instruction 5177: 17.0737% -Rate for instruction 5178: 17.0764% -Rate for instruction 5179: 17.076% -Rate for instruction 5180: 17.0764% -Rate for instruction 5181: 17.0746% -Rate for instruction 5182: 17.0758% -Rate for instruction 5183: 17.0762% -Rate for instruction 5184: 17.0737% -Rate for instruction 5185: 17.0711% -Rate for instruction 5186: 17.0686% -Rate for instruction 5187: 17.066% -Rate for instruction 5188: 17.0657% -Rate for instruction 5189: 17.0661% -Rate for instruction 5190: 17.065% -Rate for instruction 5191: 17.0632% -Rate for instruction 5192: 17.0614% -Rate for instruction 5193: 17.0641% -Rate for instruction 5194: 17.0615% -Rate for instruction 5195: 17.0642% -Rate for instruction 5196: 17.0631% -Rate for instruction 5197: 17.0635% -Rate for instruction 5198: 17.0632% -Rate for instruction 5199: 17.0621% -Rate for instruction 5200: 17.0625% -Rate for instruction 5201: 17.0644% -Rate for instruction 5202: 17.0656% -Rate for instruction 5203: 17.0668% -Rate for instruction 5204: 17.0664% -Rate for instruction 5205: 17.0683% -Rate for instruction 5206: 17.0695% -Rate for instruction 5207: 17.0692% -Rate for instruction 5208: 17.0688% -Rate for instruction 5209: 17.0685% -Rate for instruction 5210: 17.0689% -Rate for instruction 5211: 17.0686% -Rate for instruction 5212: 17.0661% -Rate for instruction 5213: 17.0665% -Rate for instruction 5214: 17.0647% -Rate for instruction 5215: 17.0673% -Rate for instruction 5216: 17.0729% -Rate for instruction 5217: 17.0777% -Rate for instruction 5218: 17.0759% -Rate for instruction 5219: 17.0734% -Rate for instruction 5220: 17.0767% -Rate for instruction 5221: 17.0779% -Rate for instruction 5222: 17.0754% -Rate for instruction 5223: 17.0787% -Rate for instruction 5224: 17.0762% -Rate for instruction 5225: 17.0751% -Rate for instruction 5226: 17.0785% -Rate for instruction 5227: 17.084% -Rate for instruction 5228: 17.0859% -Rate for instruction 5229: 17.0871% -Rate for instruction 5230: 17.0926% -Rate for instruction 5231: 17.0923% -Rate for instruction 5232: 17.0898% -Rate for instruction 5233: 17.0902% -Rate for instruction 5234: 17.0884% -Rate for instruction 5235: 17.0873% -Rate for instruction 5236: 17.087% -Rate for instruction 5237: 17.0867% -Rate for instruction 5238: 17.0863% -Rate for instruction 5239: 17.0846% -Rate for instruction 5240: 17.085% -Rate for instruction 5241: 17.0832% -Rate for instruction 5242: 17.0836% -Rate for instruction 5243: 17.0833% -Rate for instruction 5244: 17.0873% -Rate for instruction 5245: 17.0855% -Rate for instruction 5246: 17.0889% -Rate for instruction 5247: 17.0871% -Rate for instruction 5248: 17.089% -Rate for instruction 5249: 17.0908% -Rate for instruction 5250: 17.0891% -Rate for instruction 5251: 17.0887% -Rate for instruction 5252: 17.0935% -Rate for instruction 5253: 17.091% -Rate for instruction 5254: 17.0885% -Rate for instruction 5255: 17.0904% -Rate for instruction 5256: 17.0878% -Rate for instruction 5257: 17.0904% -Rate for instruction 5258: 17.0923% -Rate for instruction 5259: 17.0905% -Rate for instruction 5260: 17.0931% -Rate for instruction 5261: 17.095% -Rate for instruction 5262: 17.1005% -Rate for instruction 5263: 17.0995% -Rate for instruction 5264: 17.0984% -Rate for instruction 5265: 17.0981% -Rate for instruction 5266: 17.0999% -Rate for instruction 5267: 17.1025% -Rate for instruction 5268: 17.1029% -Rate for instruction 5269: 17.1033% -Rate for instruction 5270: 17.1008% -Rate for instruction 5271: 17.099% -Rate for instruction 5272: 17.0965% -Rate for instruction 5273: 17.0955% -Rate for instruction 5274: 17.093% -Rate for instruction 5275: 17.0934% -Rate for instruction 5276: 17.0923% -Rate for instruction 5277: 17.0935% -Rate for instruction 5278: 17.0953% -Rate for instruction 5279: 17.0943% -Rate for instruction 5280: 17.0947% -Rate for instruction 5281: 17.0936% -Rate for instruction 5282: 17.0918% -Rate for instruction 5283: 17.0922% -Rate for instruction 5284: 17.0934% -Rate for instruction 5285: 17.0938% -Rate for instruction 5286: 17.0942% -Rate for instruction 5287: 17.0924% -Rate for instruction 5288: 17.0928% -Rate for instruction 5289: 17.0918% -Rate for instruction 5290: 17.0907% -Rate for instruction 5291: 17.0882% -Rate for instruction 5292: 17.0901% -Rate for instruction 5293: 17.0876% -Rate for instruction 5294: 17.0887% -Rate for instruction 5295: 17.0862% -Rate for instruction 5296: 17.0873% -Rate for instruction 5297: 17.0848% -Rate for instruction 5298: 17.083% -Rate for instruction 5299: 17.0849% -Rate for instruction 5300: 17.086% -Rate for instruction 5301: 17.0843% -Rate for instruction 5302: 17.0847% -Rate for instruction 5303: 17.0851% -Rate for instruction 5304: 17.084% -Rate for instruction 5305: 17.0837% -Rate for instruction 5306: 17.0834% -Rate for instruction 5307: 17.0809% -Rate for instruction 5308: 17.0791% -Rate for instruction 5309: 17.0766% -Rate for instruction 5310: 17.0741% -Rate for instruction 5311: 17.0724% -Rate for instruction 5312: 17.0713% -Rate for instruction 5313: 17.071% -Rate for instruction 5314: 17.07% -Rate for instruction 5315: 17.0704% -Rate for instruction 5316: 17.0693% -Rate for instruction 5317: 17.0676% -Rate for instruction 5318: 17.0665% -Rate for instruction 5319: 17.0677% -Rate for instruction 5320: 17.0659% -Rate for instruction 5321: 17.0649% -Rate for instruction 5322: 17.0638% -Rate for instruction 5323: 17.065% -Rate for instruction 5324: 17.0625% -Rate for instruction 5325: 17.0629% -Rate for instruction 5326: 17.0683% -Rate for instruction 5327: 17.0724% -Rate for instruction 5328: 17.0713% -Rate for instruction 5329: 17.0717% -Rate for instruction 5330: 17.0707% -Rate for instruction 5331: 17.0718% -Rate for instruction 5332: 17.0693% -Rate for instruction 5333: 17.0712% -Rate for instruction 5334: 17.0694% -Rate for instruction 5335: 17.0669% -Rate for instruction 5336: 17.071% -Rate for instruction 5337: 17.0728% -Rate for instruction 5338: 17.0746% -Rate for instruction 5339: 17.0758% -Rate for instruction 5340: 17.0762% -Rate for instruction 5341: 17.0751% -Rate for instruction 5342: 17.0741% -Rate for instruction 5343: 17.0723% -Rate for instruction 5344: 17.0763% -Rate for instruction 5345: 17.0753% -Rate for instruction 5346: 17.075% -Rate for instruction 5347: 17.0732% -Rate for instruction 5348: 17.0708% -Rate for instruction 5349: 17.0683% -Rate for instruction 5350: 17.0665% -Rate for instruction 5351: 17.0662% -Rate for instruction 5352: 17.0645% -Rate for instruction 5353: 17.0663% -Rate for instruction 5354: 17.0674% -Rate for instruction 5355: 17.0722% -Rate for instruction 5356: 17.0747% -Rate for instruction 5357: 17.0787% -Rate for instruction 5358: 17.0784% -Rate for instruction 5359: 17.0759% -Rate for instruction 5360: 17.0742% -Rate for instruction 5361: 17.0731% -Rate for instruction 5362: 17.0707% -Rate for instruction 5363: 17.0689% -Rate for instruction 5364: 17.0693% -Rate for instruction 5365: 17.0676% -Rate for instruction 5366: 17.0665% -Rate for instruction 5367: 17.0684% -Rate for instruction 5368: 17.0702% -Rate for instruction 5369: 17.0699% -Rate for instruction 5370: 17.0689% -Rate for instruction 5371: 17.0671% -Rate for instruction 5372: 17.0697% -Rate for instruction 5373: 17.0708% -Rate for instruction 5374: 17.0698% -Rate for instruction 5375: 17.0702% -Rate for instruction 5376: 17.072% -Rate for instruction 5377: 17.0724% -Rate for instruction 5378: 17.0714% -Rate for instruction 5379: 17.0739% -Rate for instruction 5380: 17.0772% -Rate for instruction 5381: 17.0769% -Rate for instruction 5382: 17.0787% -Rate for instruction 5383: 17.0777% -Rate for instruction 5384: 17.0824% -Rate for instruction 5385: 17.0863% -Rate for instruction 5386: 17.0853% -Rate for instruction 5387: 17.085% -Rate for instruction 5388: 17.0825% -Rate for instruction 5389: 17.0808% -Rate for instruction 5390: 17.0812% -Rate for instruction 5391: 17.0787% -Rate for instruction 5392: 17.0813% -Rate for instruction 5393: 17.0845% -Rate for instruction 5394: 17.0863% -Rate for instruction 5395: 17.0896% -Rate for instruction 5396: 17.0914% -Rate for instruction 5397: 17.0939% -Rate for instruction 5398: 17.0922% -Rate for instruction 5399: 17.0905% -Rate for instruction 5400: 17.0973% -Rate for instruction 5401: 17.1026% -Rate for instruction 5402: 17.103% -Rate for instruction 5403: 17.102% -Rate for instruction 5404: 17.1024% -Rate for instruction 5405: 17.1007% -Rate for instruction 5406: 17.1046% -Rate for instruction 5407: 17.1078% -Rate for instruction 5408: 17.1104% -Rate for instruction 5409: 17.1101% -Rate for instruction 5410: 17.1104% -Rate for instruction 5411: 17.1123% -Rate for instruction 5412: 17.1126% -Rate for instruction 5413: 17.113% -Rate for instruction 5414: 17.1127% -Rate for instruction 5415: 17.1152% -Rate for instruction 5416: 17.1149% -Rate for instruction 5417: 17.1139% -Rate for instruction 5418: 17.115% -Rate for instruction 5419: 17.1133% -Rate for instruction 5420: 17.1136% -Rate for instruction 5421: 17.114% -Rate for instruction 5422: 17.1137% -Rate for instruction 5423: 17.1162% -Rate for instruction 5424: 17.118% -Rate for instruction 5425: 17.1156% -Rate for instruction 5426: 17.1146% -Rate for instruction 5427: 17.1121% -Rate for instruction 5428: 17.1104% -Rate for instruction 5429: 17.1079% -Rate for instruction 5430: 17.1083% -Rate for instruction 5431: 17.1059% -Rate for instruction 5432: 17.1049% -Rate for instruction 5433: 17.1024% -Rate for instruction 5434: 17.1014% -Rate for instruction 5435: 17.0997% -Rate for instruction 5436: 17.0972% -Rate for instruction 5437: 17.0955% -Rate for instruction 5438: 17.0931% -Rate for instruction 5439: 17.0956% -Rate for instruction 5440: 17.0946% -Rate for instruction 5441: 17.0921% -Rate for instruction 5442: 17.0897% -Rate for instruction 5443: 17.0922% -Rate for instruction 5444: 17.0898% -Rate for instruction 5445: 17.0902% -Rate for instruction 5446: 17.092% -Rate for instruction 5447: 17.0931% -Rate for instruction 5448: 17.0949% -Rate for instruction 5449: 17.0981% -Rate for instruction 5450: 17.0971% -Rate for instruction 5451: 17.0953% -Rate for instruction 5452: 17.0943% -Rate for instruction 5453: 17.094% -Rate for instruction 5454: 17.093% -Rate for instruction 5455: 17.0955% -Rate for instruction 5456: 17.0973% -Rate for instruction 5457: 17.0956% -Rate for instruction 5458: 17.0939% -Rate for instruction 5459: 17.0964% -Rate for instruction 5460: 17.0975% -Rate for instruction 5461: 17.0964% -Rate for instruction 5462: 17.094% -Rate for instruction 5463: 17.0916% -Rate for instruction 5464: 17.0892% -Rate for instruction 5465: 17.0889% -Rate for instruction 5466: 17.0878% -Rate for instruction 5467: 17.0861% -Rate for instruction 5468: 17.0879% -Rate for instruction 5469: 17.0883% -Rate for instruction 5470: 17.0873% -Rate for instruction 5471: 17.0849% -Rate for instruction 5472: 17.0853% -Rate for instruction 5473: 17.0871% -Rate for instruction 5474: 17.0861% -Rate for instruction 5475: 17.0843% -Rate for instruction 5476: 17.0861% -Rate for instruction 5477: 17.0907% -Rate for instruction 5478: 17.0953% -Rate for instruction 5479: 17.0978% -Rate for instruction 5480: 17.0961% -Rate for instruction 5481: 17.0986% -Rate for instruction 5482: 17.099% -Rate for instruction 5483: 17.0966% -Rate for instruction 5484: 17.0977% -Rate for instruction 5485: 17.0953% -Rate for instruction 5486: 17.0957% -Rate for instruction 5487: 17.1009% -Rate for instruction 5488: 17.0985% -Rate for instruction 5489: 17.0982% -Rate for instruction 5490: 17.1% -Rate for instruction 5491: 17.099% -Rate for instruction 5492: 17.1001% -Rate for instruction 5493: 17.1019% -Rate for instruction 5494: 17.1079% -Rate for instruction 5495: 17.1103% -Rate for instruction 5496: 17.1079% -Rate for instruction 5497: 17.1097% -Rate for instruction 5498: 17.1122% -Rate for instruction 5499: 17.1105% -Rate for instruction 5500: 17.113% -Rate for instruction 5501: 17.1134% -Rate for instruction 5502: 17.1165% -Rate for instruction 5503: 17.1169% -Rate for instruction 5504: 17.1173% -Rate for instruction 5505: 17.1184% -Rate for instruction 5506: 17.1181% -Rate for instruction 5507: 17.1171% -Rate for instruction 5508: 17.1153% -Rate for instruction 5509: 17.1143% -Rate for instruction 5510: 17.1126% -Rate for instruction 5511: 17.1109% -Rate for instruction 5512: 17.1099% -Rate for instruction 5513: 17.1089% -Rate for instruction 5514: 17.1093% -Rate for instruction 5515: 17.1083% -Rate for instruction 5516: 17.1087% -Rate for instruction 5517: 17.1063% -Rate for instruction 5518: 17.108% -Rate for instruction 5519: 17.1091% -Rate for instruction 5520: 17.1074% -Rate for instruction 5521: 17.1071% -Rate for instruction 5522: 17.1068% -Rate for instruction 5523: 17.1072% -Rate for instruction 5524: 17.1062% -Rate for instruction 5525: 17.1086% -Rate for instruction 5526: 17.1083% -Rate for instruction 5527: 17.1087% -Rate for instruction 5528: 17.1084% -Rate for instruction 5529: 17.106% -Rate for instruction 5530: 17.1064% -Rate for instruction 5531: 17.1061% -Rate for instruction 5532: 17.1051% -Rate for instruction 5533: 17.1027% -Rate for instruction 5534: 17.101% -Rate for instruction 5535: 17.0986% -Rate for instruction 5536: 17.0983% -Rate for instruction 5537: 17.0959% -Rate for instruction 5538: 17.0942% -Rate for instruction 5539: 17.098% -Rate for instruction 5540: 17.0984% -Rate for instruction 5541: 17.0981% -Rate for instruction 5542: 17.0957% -Rate for instruction 5543: 17.0933% -Rate for instruction 5544: 17.0909% -Rate for instruction 5545: 17.0892% -Rate for instruction 5546: 17.0889% -Rate for instruction 5547: 17.0872% -Rate for instruction 5548: 17.0855% -Rate for instruction 5549: 17.0852% -Rate for instruction 5550: 17.0842% -Rate for instruction 5551: 17.0853% -Rate for instruction 5552: 17.0843% -Rate for instruction 5553: 17.084% -Rate for instruction 5554: 17.083% -Rate for instruction 5555: 17.0806% -Rate for instruction 5556: 17.081% -Rate for instruction 5557: 17.08% -Rate for instruction 5558: 17.0797% -Rate for instruction 5559: 17.0808% -Rate for instruction 5560: 17.0798% -Rate for instruction 5561: 17.0774% -Rate for instruction 5562: 17.0757% -Rate for instruction 5563: 17.0747% -Rate for instruction 5564: 17.0744% -Rate for instruction 5565: 17.0734% -Rate for instruction 5566: 17.0724% -Rate for instruction 5567: 17.0715% -Rate for instruction 5568: 17.0705% -Rate for instruction 5569: 17.0722% -Rate for instruction 5570: 17.0699% -Rate for instruction 5571: 17.0696% -Rate for instruction 5572: 17.0686% -Rate for instruction 5573: 17.0662% -Rate for instruction 5574: 17.0659% -Rate for instruction 5575: 17.0649% -Rate for instruction 5576: 17.0653% -Rate for instruction 5577: 17.065% -Rate for instruction 5578: 17.0633% -Rate for instruction 5579: 17.0609% -Rate for instruction 5580: 17.0593% -Rate for instruction 5581: 17.0576% -Rate for instruction 5582: 17.0566% -Rate for instruction 5583: 17.0549% -Rate for instruction 5584: 17.0581% -Rate for instruction 5585: 17.0584% -Rate for instruction 5586: 17.0595% -Rate for instruction 5587: 17.0585% -Rate for instruction 5588: 17.0617% -Rate for instruction 5589: 17.0648% -Rate for instruction 5590: 17.0686% -Rate for instruction 5591: 17.0718% -Rate for instruction 5592: 17.0701% -Rate for instruction 5593: 17.0684% -Rate for instruction 5594: 17.0695% -Rate for instruction 5595: 17.0671% -Rate for instruction 5596: 17.0648% -Rate for instruction 5597: 17.0652% -Rate for instruction 5598: 17.0683% -Rate for instruction 5599: 17.0666% -Rate for instruction 5600: 17.0663% -Rate for instruction 5601: 17.0674% -Rate for instruction 5602: 17.0698% -Rate for instruction 5603: 17.0689% -Rate for instruction 5604: 17.072% -Rate for instruction 5605: 17.071% -Rate for instruction 5606: 17.0686% -Rate for instruction 5607: 17.0711% -Rate for instruction 5608: 17.0749% -Rate for instruction 5609: 17.0773% -Rate for instruction 5610: 17.0757% -Rate for instruction 5611: 17.0774% -Rate for instruction 5612: 17.0792% -Rate for instruction 5613: 17.0816% -Rate for instruction 5614: 17.0847% -Rate for instruction 5615: 17.0906% -Rate for instruction 5616: 17.0951% -Rate for instruction 5617: 17.0996% -Rate for instruction 5618: 17.0979% -Rate for instruction 5619: 17.0983% -Rate for instruction 5620: 17.0966% -Rate for instruction 5621: 17.0949% -Rate for instruction 5622: 17.0933% -Rate for instruction 5623: 17.0916% -Rate for instruction 5624: 17.0892% -Rate for instruction 5625: 17.0889% -Rate for instruction 5626: 17.0879% -Rate for instruction 5627: 17.087% -Rate for instruction 5628: 17.0853% -Rate for instruction 5629: 17.0843% -Rate for instruction 5630: 17.0833% -Rate for instruction 5631: 17.083% -Rate for instruction 5632: 17.0834% -Rate for instruction 5633: 17.0831% -Rate for instruction 5634: 17.0835% -Rate for instruction 5635: 17.0832% -Rate for instruction 5636: 17.0815% -Rate for instruction 5637: 17.086% -Rate for instruction 5638: 17.0843% -Rate for instruction 5639: 17.0854% -Rate for instruction 5640: 17.083% -Rate for instruction 5641: 17.0814% -Rate for instruction 5642: 17.0804% -Rate for instruction 5643: 17.078% -Rate for instruction 5644: 17.0784% -Rate for instruction 5645: 17.0761% -Rate for instruction 5646: 17.0778% -Rate for instruction 5647: 17.0768% -Rate for instruction 5648: 17.0793% -Rate for instruction 5649: 17.079% -Rate for instruction 5650: 17.078% -Rate for instruction 5651: 17.0777% -Rate for instruction 5652: 17.076% -Rate for instruction 5653: 17.0737% -Rate for instruction 5654: 17.0727% -Rate for instruction 5655: 17.0744% -Rate for instruction 5656: 17.0721% -Rate for instruction 5657: 17.0745% -Rate for instruction 5658: 17.0736% -Rate for instruction 5659: 17.0726% -Rate for instruction 5660: 17.0723% -Rate for instruction 5661: 17.0747% -Rate for instruction 5662: 17.0778% -Rate for instruction 5663: 17.0775% -Rate for instruction 5664: 17.0772% -Rate for instruction 5665: 17.0803% -Rate for instruction 5666: 17.0813% -Rate for instruction 5667: 17.081% -Rate for instruction 5668: 17.0801% -Rate for instruction 5669: 17.0798% -Rate for instruction 5670: 17.0808% -Rate for instruction 5671: 17.0785% -Rate for instruction 5672: 17.0809% -Rate for instruction 5673: 17.0806% -Rate for instruction 5674: 17.083% -Rate for instruction 5675: 17.0807% -Rate for instruction 5676: 17.0845% -Rate for instruction 5677: 17.0869% -Rate for instruction 5678: 17.0845% -Rate for instruction 5679: 17.0829% -Rate for instruction 5680: 17.0833% -Rate for instruction 5681: 17.0816% -Rate for instruction 5682: 17.082% -Rate for instruction 5683: 17.0803% -Rate for instruction 5684: 17.0814% -Rate for instruction 5685: 17.0797% -Rate for instruction 5686: 17.0781% -Rate for instruction 5687: 17.0785% -Rate for instruction 5688: 17.0782% -Rate for instruction 5689: 17.0792% -Rate for instruction 5690: 17.0769% -Rate for instruction 5691: 17.0759% -Rate for instruction 5692: 17.0763% -Rate for instruction 5693: 17.0774% -Rate for instruction 5694: 17.0764% -Rate for instruction 5695: 17.0754% -Rate for instruction 5696: 17.0731% -Rate for instruction 5697: 17.0741% -Rate for instruction 5698: 17.0772% -Rate for instruction 5699: 17.0749% -Rate for instruction 5700: 17.0733% -Rate for instruction 5701: 17.0723% -Rate for instruction 5702: 17.0747% -Rate for instruction 5703: 17.0724% -Rate for instruction 5704: 17.0734% -Rate for instruction 5705: 17.0711% -Rate for instruction 5706: 17.0715% -Rate for instruction 5707: 17.0692% -Rate for instruction 5708: 17.0702% -Rate for instruction 5709: 17.0699% -Rate for instruction 5710: 17.0689% -Rate for instruction 5711: 17.068% -Rate for instruction 5712: 17.0657% -Rate for instruction 5713: 17.0654% -Rate for instruction 5714: 17.0651% -Rate for instruction 5715: 17.0628% -Rate for instruction 5716: 17.0618% -Rate for instruction 5717: 17.0608% -Rate for instruction 5718: 17.0599% -Rate for instruction 5719: 17.0582% -Rate for instruction 5720: 17.0566% -Rate for instruction 5721: 17.057% -Rate for instruction 5722: 17.0553% -Rate for instruction 5723: 17.0544% -Rate for instruction 5724: 17.0527% -Rate for instruction 5725: 17.0538% -Rate for instruction 5726: 17.0548% -Rate for instruction 5727: 17.0545% -Rate for instruction 5728: 17.0556% -Rate for instruction 5729: 17.0533% -Rate for instruction 5730: 17.055% -Rate for instruction 5731: 17.0554% -Rate for instruction 5732: 17.0531% -Rate for instruction 5733: 17.0508% -Rate for instruction 5734: 17.0525% -Rate for instruction 5735: 17.0542% -Rate for instruction 5736: 17.06% -Rate for instruction 5737: 17.0583% -Rate for instruction 5738: 17.0607% -Rate for instruction 5739: 17.0645% -Rate for instruction 5740: 17.0682% -Rate for instruction 5741: 17.0739% -Rate for instruction 5742: 17.0797% -Rate for instruction 5743: 17.078% -Rate for instruction 5744: 17.0771% -Rate for instruction 5745: 17.0754% -Rate for instruction 5746: 17.0738% -Rate for instruction 5747: 17.0735% -Rate for instruction 5748: 17.0712% -Rate for instruction 5749: 17.0702% -Rate for instruction 5750: 17.0693% -Rate for instruction 5751: 17.069% -Rate for instruction 5752: 17.0673% -Rate for instruction 5753: 17.0671% -Rate for instruction 5754: 17.0654% -Rate for instruction 5755: 17.0631% -Rate for instruction 5756: 17.0628% -Rate for instruction 5757: 17.0612% -Rate for instruction 5758: 17.0603% -Rate for instruction 5759: 17.06% -Rate for instruction 5760: 17.0583% -Rate for instruction 5761: 17.0574% -Rate for instruction 5762: 17.0571% -Rate for instruction 5763: 17.0575% -Rate for instruction 5764: 17.0572% -Rate for instruction 5765: 17.0596% -Rate for instruction 5766: 17.0593% -Rate for instruction 5767: 17.057% -Rate for instruction 5768: 17.0567% -Rate for instruction 5769: 17.0551% -Rate for instruction 5770: 17.0568% -Rate for instruction 5771: 17.0551% -Rate for instruction 5772: 17.0555% -Rate for instruction 5773: 17.0559% -Rate for instruction 5774: 17.0589% -Rate for instruction 5775: 17.0606% -Rate for instruction 5776: 17.063% -Rate for instruction 5777: 17.0647% -Rate for instruction 5778: 17.0684% -Rate for instruction 5779: 17.0661% -Rate for instruction 5780: 17.0712% -Rate for instruction 5781: 17.0749% -Rate for instruction 5782: 17.0733% -Rate for instruction 5783: 17.0763% -Rate for instruction 5784: 17.0753% -Rate for instruction 5785: 17.0764% -Rate for instruction 5786: 17.0781% -Rate for instruction 5787: 17.0784% -Rate for instruction 5788: 17.0788% -Rate for instruction 5789: 17.0765% -Rate for instruction 5790: 17.0769% -Rate for instruction 5791: 17.0753% -Rate for instruction 5792: 17.073% -Rate for instruction 5793: 17.072% -Rate for instruction 5794: 17.0698% -Rate for instruction 5795: 17.0715% -Rate for instruction 5796: 17.0718% -Rate for instruction 5797: 17.0715% -Rate for instruction 5798: 17.0719% -Rate for instruction 5799: 17.0716% -Rate for instruction 5800: 17.072% -Rate for instruction 5801: 17.0704% -Rate for instruction 5802: 17.0714% -Rate for instruction 5803: 17.0705% -Rate for instruction 5804: 17.0688% -Rate for instruction 5805: 17.0672% -Rate for instruction 5806: 17.0683% -Rate for instruction 5807: 17.068% -Rate for instruction 5808: 17.069% -Rate for instruction 5809: 17.0694% -Rate for instruction 5810: 17.0671% -Rate for instruction 5811: 17.0655% -Rate for instruction 5812: 17.0645% -Rate for instruction 5813: 17.0636% -Rate for instruction 5814: 17.0633% -Rate for instruction 5815: 17.0637% -Rate for instruction 5816: 17.0634% -Rate for instruction 5817: 17.0631% -Rate for instruction 5818: 17.0635% -Rate for instruction 5819: 17.0638% -Rate for instruction 5820: 17.0649% -Rate for instruction 5821: 17.0659% -Rate for instruction 5822: 17.0656% -Rate for instruction 5823: 17.064% -Rate for instruction 5824: 17.0617% -Rate for instruction 5825: 17.0634% -Rate for instruction 5826: 17.0638% -Rate for instruction 5827: 17.0642% -Rate for instruction 5828: 17.0645% -Rate for instruction 5829: 17.0649% -Rate for instruction 5830: 17.064% -Rate for instruction 5831: 17.0657% -Rate for instruction 5832: 17.066% -Rate for instruction 5833: 17.0671% -Rate for instruction 5834: 17.0648% -Rate for instruction 5835: 17.0645% -Rate for instruction 5836: 17.0655% -Rate for instruction 5837: 17.0639% -Rate for instruction 5838: 17.0656% -Rate for instruction 5839: 17.068% -Rate for instruction 5840: 17.0683% -Rate for instruction 5841: 17.0674% -Rate for instruction 5842: 17.0671% -Rate for instruction 5843: 17.0662% -Rate for instruction 5844: 17.0692% -Rate for instruction 5845: 17.0702% -Rate for instruction 5846: 17.0732% -Rate for instruction 5847: 17.0768% -Rate for instruction 5848: 17.0752% -Rate for instruction 5849: 17.0743% -Rate for instruction 5850: 17.072% -Rate for instruction 5851: 17.0724% -Rate for instruction 5852: 17.0721% -Rate for instruction 5853: 17.0699% -Rate for instruction 5854: 17.0676% -Rate for instruction 5855: 17.068% -Rate for instruction 5856: 17.0683% -Rate for instruction 5857: 17.0667% -Rate for instruction 5858: 17.0658% -Rate for instruction 5859: 17.0642% -Rate for instruction 5860: 17.0646% -Rate for instruction 5861: 17.0643% -Rate for instruction 5862: 17.0653% -Rate for instruction 5863: 17.065% -Rate for instruction 5864: 17.0641% -Rate for instruction 5865: 17.0631% -Rate for instruction 5866: 17.0622% -Rate for instruction 5867: 17.0658% -Rate for instruction 5868: 17.0655% -Rate for instruction 5869: 17.0639% -Rate for instruction 5870: 17.063% -Rate for instruction 5871: 17.0627% -Rate for instruction 5872: 17.0644% -Rate for instruction 5873: 17.0654% -Rate for instruction 5874: 17.0671% -Rate for instruction 5875: 17.0655% -Rate for instruction 5876: 17.0665% -Rate for instruction 5877: 17.0682% -Rate for instruction 5878: 17.066% -Rate for instruction 5879: 17.0644% -Rate for instruction 5880: 17.0634% -Rate for instruction 5881: 17.0612% -Rate for instruction 5882: 17.0602% -Rate for instruction 5883: 17.0593% -Rate for instruction 5884: 17.059% -Rate for instruction 5885: 17.0581% -Rate for instruction 5886: 17.0558% -Rate for instruction 5887: 17.0542% -Rate for instruction 5888: 17.0546% -Rate for instruction 5889: 17.0576% -Rate for instruction 5890: 17.0593% -Rate for instruction 5891: 17.057% -Rate for instruction 5892: 17.0554% -Rate for instruction 5893: 17.0565% -Rate for instruction 5894: 17.0562% -Rate for instruction 5895: 17.0539% -Rate for instruction 5896: 17.0576% -Rate for instruction 5897: 17.0586% -Rate for instruction 5898: 17.059% -Rate for instruction 5899: 17.0619% -Rate for instruction 5900: 17.061% -Rate for instruction 5901: 17.0594% -Rate for instruction 5902: 17.0585% -Rate for instruction 5903: 17.0562% -Rate for instruction 5904: 17.0546% -Rate for instruction 5905: 17.0563% -Rate for instruction 5906: 17.0573% -Rate for instruction 5907: 17.0584% -Rate for instruction 5908: 17.0574% -Rate for instruction 5909: 17.0552% -Rate for instruction 5910: 17.0569% -Rate for instruction 5911: 17.0572% -Rate for instruction 5912: 17.055% -Rate for instruction 5913: 17.0573% -Rate for instruction 5914: 17.0609% -Rate for instruction 5915: 17.0593% -Rate for instruction 5916: 17.0597% -Rate for instruction 5917: 17.0646% -Rate for instruction 5918: 17.0643% -Rate for instruction 5919: 17.0673% -Rate for instruction 5920: 17.0651% -Rate for instruction 5921: 17.068% -Rate for instruction 5922: 17.0678% -Rate for instruction 5923: 17.0694% -Rate for instruction 5924: 17.0672% -Rate for instruction 5925: 17.0676% -Rate for instruction 5926: 17.0686% -Rate for instruction 5927: 17.0696% -Rate for instruction 5928: 17.0699% -Rate for instruction 5929: 17.0684% -Rate for instruction 5930: 17.0726% -Rate for instruction 5931: 17.0736% -Rate for instruction 5932: 17.0766% -Rate for instruction 5933: 17.0763% -Rate for instruction 5934: 17.0812% -Rate for instruction 5935: 17.0867% -Rate for instruction 5936: 17.0865% -Rate for instruction 5937: 17.0855% -Rate for instruction 5938: 17.0833% -Rate for instruction 5939: 17.083% -Rate for instruction 5940: 17.0821% -Rate for instruction 5941: 17.0805% -Rate for instruction 5942: 17.0783% -Rate for instruction 5943: 17.076% -Rate for instruction 5944: 17.0751% -Rate for instruction 5945: 17.0742% -Rate for instruction 5946: 17.0732% -Rate for instruction 5947: 17.073% -Rate for instruction 5948: 17.0714% -Rate for instruction 5949: 17.0692% -Rate for instruction 5950: 17.0682% -Rate for instruction 5951: 17.0686% -Rate for instruction 5952: 17.0664% -Rate for instruction 5953: 17.0655% -Rate for instruction 5954: 17.0632% -Rate for instruction 5955: 17.0623% -Rate for instruction 5956: 17.0601% -Rate for instruction 5957: 17.0617% -Rate for instruction 5958: 17.0608% -Rate for instruction 5959: 17.0631% -Rate for instruction 5960: 17.0635% -Rate for instruction 5961: 17.0645% -Rate for instruction 5962: 17.0655% -Rate for instruction 5963: 17.0639% -Rate for instruction 5964: 17.0643% -Rate for instruction 5965: 17.0621% -Rate for instruction 5966: 17.0637% -Rate for instruction 5967: 17.0615% -Rate for instruction 5968: 17.0619% -Rate for instruction 5969: 17.0616% -Rate for instruction 5970: 17.0607% -Rate for instruction 5971: 17.0591% -Rate for instruction 5972: 17.0569% -Rate for instruction 5973: 17.056% -Rate for instruction 5974: 17.0537% -Rate for instruction 5975: 17.0522% -Rate for instruction 5976: 17.05% -Rate for instruction 5977: 17.051% -Rate for instruction 5978: 17.0488% -Rate for instruction 5979: 17.0491% -Rate for instruction 5980: 17.0489% -Rate for instruction 5981: 17.0467% -Rate for instruction 5982: 17.047% -Rate for instruction 5983: 17.0461% -Rate for instruction 5984: 17.0452% -Rate for instruction 5985: 17.0443% -Rate for instruction 5986: 17.0427% -Rate for instruction 5987: 17.0424% -Rate for instruction 5988: 17.0428% -Rate for instruction 5989: 17.0431% -Rate for instruction 5990: 17.0435% -Rate for instruction 5991: 17.0445% -Rate for instruction 5992: 17.0442% -Rate for instruction 5993: 17.0459% -Rate for instruction 5994: 17.0456% -Rate for instruction 5995: 17.0441% -Rate for instruction 5996: 17.0438% -Rate for instruction 5997: 17.0429% -Rate for instruction 5998: 17.0413% -Rate for instruction 5999: 17.0429% -Rate for instruction 6000: 17.042% -Rate for instruction 6001: 17.0398% -Rate for instruction 6002: 17.0396% -Rate for instruction 6003: 17.0399% -Rate for instruction 6004: 17.0403% -Rate for instruction 6005: 17.0381% -Rate for instruction 6006: 17.0417% -Rate for instruction 6007: 17.0452% -Rate for instruction 6008: 17.0449% -Rate for instruction 6009: 17.0434% -Rate for instruction 6010: 17.0418% -Rate for instruction 6011: 17.0396% -Rate for instruction 6012: 17.0381% -Rate for instruction 6013: 17.0359% -Rate for instruction 6014: 17.0363% -Rate for instruction 6015: 17.0373% -Rate for instruction 6016: 17.0357% -Rate for instruction 6017: 17.0335% -Rate for instruction 6018: 17.0332% -Rate for instruction 6019: 17.0311% -Rate for instruction 6020: 17.0321% -Rate for instruction 6021: 17.0331% -Rate for instruction 6022: 17.036% -Rate for instruction 6023: 17.0376% -Rate for instruction 6024: 17.0399% -Rate for instruction 6025: 17.039% -Rate for instruction 6026: 17.0368% -Rate for instruction 6027: 17.0359% -Rate for instruction 6028: 17.0343% -Rate for instruction 6029: 17.0328% -Rate for instruction 6030: 17.0312% -Rate for instruction 6031: 17.0291% -Rate for instruction 6032: 17.0294% -Rate for instruction 6033: 17.0272% -Rate for instruction 6034: 17.0263% -Rate for instruction 6035: 17.0241% -Rate for instruction 6036: 17.0239% -Rate for instruction 6037: 17.0217% -Rate for instruction 6038: 17.0265% -Rate for instruction 6039: 17.0243% -Rate for instruction 6040: 17.0266% -Rate for instruction 6041: 17.0295% -Rate for instruction 6042: 17.028% -Rate for instruction 6043: 17.0296% -Rate for instruction 6044: 17.0319% -Rate for instruction 6045: 17.031% -Rate for instruction 6046: 17.0339% -Rate for instruction 6047: 17.0374% -Rate for instruction 6048: 17.0352% -Rate for instruction 6049: 17.0343% -Rate for instruction 6050: 17.0334% -Rate for instruction 6051: 17.0331% -Rate for instruction 6052: 17.031% -Rate for instruction 6053: 17.0301% -Rate for instruction 6054: 17.0279% -Rate for instruction 6055: 17.0263% -Rate for instruction 6056: 17.0248% -Rate for instruction 6057: 17.0264% -Rate for instruction 6058: 17.0262% -Rate for instruction 6059: 17.0246% -Rate for instruction 6060: 17.0231% -Rate for instruction 6061: 17.0228% -Rate for instruction 6062: 17.0225% -Rate for instruction 6063: 17.0223% -Rate for instruction 6064: 17.0226% -Rate for instruction 6065: 17.0224% -Rate for instruction 6066: 17.0208% -Rate for instruction 6067: 17.0187% -Rate for instruction 6068: 17.0203% -Rate for instruction 6069: 17.0188% -Rate for instruction 6070: 17.0204% -Rate for instruction 6071: 17.0214% -Rate for instruction 6072: 17.0243% -Rate for instruction 6073: 17.0259% -Rate for instruction 6074: 17.0275% -Rate for instruction 6075: 17.0273% -Rate for instruction 6076: 17.0283% -Rate for instruction 6077: 17.0293% -Rate for instruction 6078: 17.0271% -Rate for instruction 6079: 17.0281% -Rate for instruction 6080: 17.0259% -Rate for instruction 6081: 17.0275% -Rate for instruction 6082: 17.0285% -Rate for instruction 6083: 17.0264% -Rate for instruction 6084: 17.0248% -Rate for instruction 6085: 17.0239% -Rate for instruction 6086: 17.023% -Rate for instruction 6087: 17.0247% -Rate for instruction 6088: 17.0231% -Rate for instruction 6089: 17.0216% -Rate for instruction 6090: 17.0194% -Rate for instruction 6091: 17.0179% -Rate for instruction 6092: 17.0183% -Rate for instruction 6093: 17.0161% -Rate for instruction 6094: 17.0146% -Rate for instruction 6095: 17.0124% -Rate for instruction 6096: 17.0121% -Rate for instruction 6097: 17.0113% -Rate for instruction 6098: 17.0097% -Rate for instruction 6099: 17.0095% -Rate for instruction 6100: 17.0086% -Rate for instruction 6101: 17.007% -Rate for instruction 6102: 17.0049% -Rate for instruction 6103: 17.0052% -Rate for instruction 6104: 17.0062% -Rate for instruction 6105: 17.0053% -Rate for instruction 6106: 17.0044% -Rate for instruction 6107: 17.0029% -Rate for instruction 6108: 17.002% -Rate for instruction 6109: 17.003% -Rate for instruction 6110: 17.0046% -Rate for instruction 6111: 17.0044% -Rate for instruction 6112: 17.0047% -Rate for instruction 6113: 17.0038% -Rate for instruction 6114: 17.0023% -Rate for instruction 6115: 17.0014% -Rate for instruction 6116: 16.9993% -Rate for instruction 6117: 16.9996% -Rate for instruction 6118: 16.9981% -Rate for instruction 6119: 16.9966% -Rate for instruction 6120: 16.9945% -Rate for instruction 6121: 16.9942% -Rate for instruction 6122: 16.9939% -Rate for instruction 6123: 16.9918% -Rate for instruction 6124: 16.9922% -Rate for instruction 6125: 16.9913% -Rate for instruction 6126: 16.9904% -Rate for instruction 6127: 16.9895% -Rate for instruction 6128: 16.9892% -Rate for instruction 6129: 16.9877% -Rate for instruction 6130: 16.9868% -Rate for instruction 6131: 16.9866% -Rate for instruction 6132: 16.9857% -Rate for instruction 6133: 16.9835% -Rate for instruction 6134: 16.9858% -Rate for instruction 6135: 16.9861% -Rate for instruction 6136: 16.9852% -Rate for instruction 6137: 16.9869% -Rate for instruction 6138: 16.9885% -Rate for instruction 6139: 16.9863% -Rate for instruction 6140: 16.9873% -Rate for instruction 6141: 16.9858% -Rate for instruction 6142: 16.9862% -Rate for instruction 6143: 16.9884% -Rate for instruction 6144: 16.9882% -Rate for instruction 6145: 16.9892% -Rate for instruction 6146: 16.9902% -Rate for instruction 6147: 16.9899% -Rate for instruction 6148: 16.9884% -Rate for instruction 6149: 16.9887% -Rate for instruction 6150: 16.9872% -Rate for instruction 6151: 16.9851% -Rate for instruction 6152: 16.9855% -Rate for instruction 6153: 16.9846% -Rate for instruction 6154: 16.9837% -Rate for instruction 6155: 16.9847% -Rate for instruction 6156: 16.9844% -Rate for instruction 6157: 16.9842% -Rate for instruction 6158: 16.9827% -Rate for instruction 6159: 16.9818% -Rate for instruction 6160: 16.9803% -Rate for instruction 6161: 16.9794% -Rate for instruction 6162: 16.9791% -Rate for instruction 6163: 16.9776% -Rate for instruction 6164: 16.978% -Rate for instruction 6165: 16.9771% -Rate for instruction 6166: 16.9756% -Rate for instruction 6167: 16.9747% -Rate for instruction 6168: 16.9726% -Rate for instruction 6169: 16.9729% -Rate for instruction 6170: 16.9714% -Rate for instruction 6171: 16.9718% -Rate for instruction 6172: 16.9728% -Rate for instruction 6173: 16.9725% -Rate for instruction 6174: 16.9717% -Rate for instruction 6175: 16.9702% -Rate for instruction 6176: 16.968% -Rate for instruction 6177: 16.969% -Rate for instruction 6178: 16.9669% -Rate for instruction 6179: 16.9685% -Rate for instruction 6180: 16.9701% -Rate for instruction 6181: 16.9755% -Rate for instruction 6182: 16.9746% -Rate for instruction 6183: 16.9737% -Rate for instruction 6184: 16.9741% -Rate for instruction 6185: 16.9757% -Rate for instruction 6186: 16.9736% -Rate for instruction 6187: 16.9727% -Rate for instruction 6188: 16.9724% -Rate for instruction 6189: 16.9728% -Rate for instruction 6190: 16.9713% -Rate for instruction 6191: 16.9692% -Rate for instruction 6192: 16.9695% -Rate for instruction 6193: 16.9674% -Rate for instruction 6194: 16.9665% -Rate for instruction 6195: 16.9644% -Rate for instruction 6196: 16.9635% -Rate for instruction 6197: 16.9633% -Rate for instruction 6198: 16.9618% -Rate for instruction 6199: 16.9622% -Rate for instruction 6200: 16.9613% -Rate for instruction 6201: 16.9617% -Rate for instruction 6202: 16.9602% -Rate for instruction 6203: 16.9593% -Rate for instruction 6204: 16.9572% -Rate for instruction 6205: 16.9588% -Rate for instruction 6206: 16.9573% -Rate for instruction 6207: 16.962% -Rate for instruction 6208: 16.9599% -Rate for instruction 6209: 16.9658% -Rate for instruction 6210: 16.9687% -Rate for instruction 6211: 16.9709% -Rate for instruction 6212: 16.9725% -Rate for instruction 6213: 16.9722% -Rate for instruction 6214: 16.9751% -Rate for instruction 6215: 16.9729% -Rate for instruction 6216: 16.9764% -Rate for instruction 6217: 16.9786% -Rate for instruction 6218: 16.9777% -Rate for instruction 6219: 16.9763% -Rate for instruction 6220: 16.9754% -Rate for instruction 6221: 16.9739% -Rate for instruction 6222: 16.9718% -Rate for instruction 6223: 16.9734% -Rate for instruction 6224: 16.9744% -Rate for instruction 6225: 16.9778% -Rate for instruction 6226: 16.9757% -Rate for instruction 6227: 16.9736% -Rate for instruction 6228: 16.974% -Rate for instruction 6229: 16.9743% -Rate for instruction 6230: 16.9734% -Rate for instruction 6231: 16.9744% -Rate for instruction 6232: 16.9766% -Rate for instruction 6233: 16.9758% -Rate for instruction 6234: 16.9737% -Rate for instruction 6235: 16.974% -Rate for instruction 6236: 16.9762% -Rate for instruction 6237: 16.9766% -Rate for instruction 6238: 16.9745% -Rate for instruction 6239: 16.9742% -Rate for instruction 6240: 16.9721% -Rate for instruction 6241: 16.9706% -Rate for instruction 6242: 16.9722% -Rate for instruction 6243: 16.9726% -Rate for instruction 6244: 16.9723% -Rate for instruction 6245: 16.9746% -Rate for instruction 6246: 16.9731% -Rate for instruction 6247: 16.9759% -Rate for instruction 6248: 16.9763% -Rate for instruction 6249: 16.9754% -Rate for instruction 6250: 16.9745% -Rate for instruction 6251: 16.9724% -Rate for instruction 6252: 16.9734% -Rate for instruction 6253: 16.9744% -Rate for instruction 6254: 16.9723% -Rate for instruction 6255: 16.9726% -Rate for instruction 6256: 16.9705% -Rate for instruction 6257: 16.9697% -Rate for instruction 6258: 16.9694% -Rate for instruction 6259: 16.9679% -Rate for instruction 6260: 16.9671% -Rate for instruction 6261: 16.9656% -Rate for instruction 6262: 16.9709% -Rate for instruction 6263: 16.9688% -Rate for instruction 6264: 16.9728% -Rate for instruction 6265: 16.9713% -Rate for instruction 6266: 16.9705% -Rate for instruction 6267: 16.969% -Rate for instruction 6268: 16.9699% -Rate for instruction 6269: 16.9715% -Rate for instruction 6270: 16.9744% -Rate for instruction 6271: 16.9766% -Rate for instruction 6272: 16.9794% -Rate for instruction 6273: 16.9773% -Rate for instruction 6274: 16.9764% -Rate for instruction 6275: 16.9786% -Rate for instruction 6276: 16.982% -Rate for instruction 6277: 16.9818% -Rate for instruction 6278: 16.9858% -Rate for instruction 6279: 16.9843% -Rate for instruction 6280: 16.9822% -Rate for instruction 6281: 16.9832% -Rate for instruction 6282: 16.9854% -Rate for instruction 6283: 16.9851% -Rate for instruction 6284: 16.9879% -Rate for instruction 6285: 16.9883% -Rate for instruction 6286: 16.9911% -Rate for instruction 6287: 16.989% -Rate for instruction 6288: 16.9875% -Rate for instruction 6289: 16.9873% -Rate for instruction 6290: 16.9852% -Rate for instruction 6291: 16.9831% -Rate for instruction 6292: 16.9847% -Rate for instruction 6293: 16.9857% -Rate for instruction 6294: 16.9891% -Rate for instruction 6295: 16.9931% -Rate for instruction 6296: 16.9916% -Rate for instruction 6297: 16.9907% -Rate for instruction 6298: 16.9893% -Rate for instruction 6299: 16.9921% -Rate for instruction 6300: 16.99% -Rate for instruction 6301: 16.9928% -Rate for instruction 6302: 16.9919% -Rate for instruction 6303: 16.9953% -Rate for instruction 6304: 16.9987% -Rate for instruction 6305: 17.0009% -Rate for instruction 6306: 17.0043% -Rate for instruction 6307: 17.0034% -Rate for instruction 6308: 17.0026% -Rate for instruction 6309: 17.0017% -Rate for instruction 6310: 17.0002% -Rate for instruction 6311: 17.0018% -Rate for instruction 6312: 16.9997% -Rate for instruction 6313: 17.0001% -Rate for instruction 6314: 16.9986% -Rate for instruction 6315: 17.0002% -Rate for instruction 6316: 16.9981% -Rate for instruction 6317: 16.9972% -Rate for instruction 6318: 16.997% -Rate for instruction 6319: 16.9973% -Rate for instruction 6320: 16.9995% -Rate for instruction 6321: 16.9974% -Rate for instruction 6322: 16.9959% -Rate for instruction 6323: 16.9981% -Rate for instruction 6324: 17.0021% -Rate for instruction 6325: 17% -Rate for instruction 6326: 16.9998% -Rate for instruction 6327: 16.9995% -Rate for instruction 6328: 16.9975% -Rate for instruction 6329: 16.9984% -Rate for instruction 6330: 16.9994% -Rate for instruction 6331: 17.0016% -Rate for instruction 6332: 17.0056% -Rate for instruction 6333: 17.0071% -Rate for instruction 6334: 17.0081% -Rate for instruction 6335: 17.009% -Rate for instruction 6336: 17.0082% -Rate for instruction 6337: 17.0085% -Rate for instruction 6338: 17.0083% -Rate for instruction 6339: 17.0062% -Rate for instruction 6340: 17.0071% -Rate for instruction 6341: 17.0111% -Rate for instruction 6342: 17.0127% -Rate for instruction 6343: 17.0106% -Rate for instruction 6344: 17.0134% -Rate for instruction 6345: 17.0125% -Rate for instruction 6346: 17.0117% -Rate for instruction 6347: 17.0096% -Rate for instruction 6348: 17.0087% -Rate for instruction 6349: 17.0085% -Rate for instruction 6350: 17.007% -Rate for instruction 6351: 17.0049% -Rate for instruction 6352: 17.0089% -Rate for instruction 6353: 17.0123% -Rate for instruction 6354: 17.0114% -Rate for instruction 6355: 17.0154% -Rate for instruction 6356: 17.0146% -Rate for instruction 6357: 17.0167% -Rate for instruction 6358: 17.0146% -Rate for instruction 6359: 17.015% -Rate for instruction 6360: 17.0141% -Rate for instruction 6361: 17.0127% -Rate for instruction 6362: 17.013% -Rate for instruction 6363: 17.0122% -Rate for instruction 6364: 17.0137% -Rate for instruction 6365: 17.0165% -Rate for instruction 6366: 17.0168% -Rate for instruction 6367: 17.019% -Rate for instruction 6368: 17.0193% -Rate for instruction 6369: 17.0191% -Rate for instruction 6370: 17.017% -Rate for instruction 6371: 17.0155% -Rate for instruction 6372: 17.0135% -Rate for instruction 6373: 17.0126% -Rate for instruction 6374: 17.0106% -Rate for instruction 6375: 17.0091% -Rate for instruction 6376: 17.01% -Rate for instruction 6377: 17.0086% -Rate for instruction 6378: 17.0077% -Rate for instruction 6379: 17.0063% -Rate for instruction 6380: 17.0048% -Rate for instruction 6381: 17.0052% -Rate for instruction 6382: 17.0049% -Rate for instruction 6383: 17.0028% -Rate for instruction 6384: 17.0038% -Rate for instruction 6385: 17.0047% -Rate for instruction 6386: 17.0045% -Rate for instruction 6387: 17.0079% -Rate for instruction 6388: 17.0106% -Rate for instruction 6389: 17.0091% -Rate for instruction 6390: 17.0083% -Rate for instruction 6391: 17.0092% -Rate for instruction 6392: 17.0072% -Rate for instruction 6393: 17.0075% -Rate for instruction 6394: 17.0061% -Rate for instruction 6395: 17.007% -Rate for instruction 6396: 17.008% -Rate for instruction 6397: 17.0059% -Rate for instruction 6398: 17.0075% -Rate for instruction 6399: 17.0054% -Rate for instruction 6400: 17.0034% -Rate for instruction 6401: 17.0037% -Rate for instruction 6402: 17.0046% -Rate for instruction 6403: 17.0026% -Rate for instruction 6404: 17.0029% -Rate for instruction 6405: 17.0015% -Rate for instruction 6406: 17.0006% -Rate for instruction 6407: 16.9998% -Rate for instruction 6408: 16.9977% -Rate for instruction 6409: 16.9969% -Rate for instruction 6410: 16.999% -Rate for instruction 6411: 17.003% -Rate for instruction 6412: 17.0009% -Rate for instruction 6413: 17.0043% -Rate for instruction 6414: 17.0022% -Rate for instruction 6415: 17.0008% -Rate for instruction 6416: 16.9987% -Rate for instruction 6417: 16.9973% -Rate for instruction 6418: 16.9952% -Rate for instruction 6419: 16.9956% -Rate for instruction 6420: 16.9935% -Rate for instruction 6421: 16.9951% -Rate for instruction 6422: 16.996% -Rate for instruction 6423: 16.9964% -Rate for instruction 6424: 16.9967% -Rate for instruction 6425: 16.9959% -Rate for instruction 6426: 16.9938% -Rate for instruction 6427: 16.9942% -Rate for instruction 6428: 16.9927% -Rate for instruction 6429: 16.9919% -Rate for instruction 6430: 16.9934% -Rate for instruction 6431: 16.992% -Rate for instruction 6432: 16.9935% -Rate for instruction 6433: 16.9939% -Rate for instruction 6434: 16.9918% -Rate for instruction 6435: 16.9916% -Rate for instruction 6436: 16.9901% -Rate for instruction 6437: 16.994% -Rate for instruction 6438: 16.9974% -Rate for instruction 6439: 16.9989% -Rate for instruction 6440: 17.0011% -Rate for instruction 6441: 17.0014% -Rate for instruction 6442: 17.0006% -Rate for instruction 6443: 17.0027% -Rate for instruction 6444: 17.0048% -Rate for instruction 6445: 17.004% -Rate for instruction 6446: 17.0067% -Rate for instruction 6447: 17.0047% -Rate for instruction 6448: 17.0044% -Rate for instruction 6449: 17.003% -Rate for instruction 6450: 17.0021% -Rate for instruction 6451: 17.0007% -Rate for instruction 6452: 16.9992% -Rate for instruction 6453: 16.9984% -Rate for instruction 6454: 16.9982% -Rate for instruction 6455: 16.9967% -Rate for instruction 6456: 16.9965% -Rate for instruction 6457: 16.9968% -Rate for instruction 6458: 17.0007% -Rate for instruction 6459: 17.004% -Rate for instruction 6460: 17.0032% -Rate for instruction 6461: 17.0065% -Rate for instruction 6462: 17.0045% -Rate for instruction 6463: 17.0084% -Rate for instruction 6464: 17.0087% -Rate for instruction 6465: 17.0133% -Rate for instruction 6466: 17.0189% -Rate for instruction 6467: 17.0205% -Rate for instruction 6468: 17.025% -Rate for instruction 6469: 17.0283% -Rate for instruction 6470: 17.028% -Rate for instruction 6471: 17.0284% -Rate for instruction 6472: 17.0263% -Rate for instruction 6473: 17.0243% -Rate for instruction 6474: 17.0235% -Rate for instruction 6475: 17.0214% -Rate for instruction 6476: 17.02% -Rate for instruction 6477: 17.018% -Rate for instruction 6478: 17.0183% -Rate for instruction 6479: 17.0163% -Rate for instruction 6480: 17.0142% -Rate for instruction 6481: 17.0128% -Rate for instruction 6482: 17.0125% -Rate for instruction 6483: 17.0105% -Rate for instruction 6484: 17.0091% -Rate for instruction 6485: 17.007% -Rate for instruction 6486: 17.0062% -Rate for instruction 6487: 17.0048% -Rate for instruction 6488: 17.0039% -Rate for instruction 6489: 17.0031% -Rate for instruction 6490: 17.0011% -Rate for instruction 6491: 16.9996% -Rate for instruction 6492: 16.9976% -Rate for instruction 6493: 16.9968% -Rate for instruction 6494: 16.9977% -Rate for instruction 6495: 16.9957% -Rate for instruction 6496: 16.9936% -Rate for instruction 6497: 16.9934% -Rate for instruction 6498: 16.9926% -Rate for instruction 6499: 16.9911% -Rate for instruction 6500: 16.9897% -Rate for instruction 6501: 16.9912% -Rate for instruction 6502: 16.9898% -Rate for instruction 6503: 16.9895% -Rate for instruction 6504: 16.9881% -Rate for instruction 6505: 16.9867% -Rate for instruction 6506: 16.9864% -Rate for instruction 6507: 16.9868% -Rate for instruction 6508: 16.9848% -Rate for instruction 6509: 16.9839% -Rate for instruction 6510: 16.9837% -Rate for instruction 6511: 16.9823% -Rate for instruction 6512: 16.9856% -Rate for instruction 6513: 16.99% -Rate for instruction 6514: 16.9898% -Rate for instruction 6515: 16.9884% -Rate for instruction 6516: 16.9893% -Rate for instruction 6517: 16.9896% -Rate for instruction 6518: 16.9912% -Rate for instruction 6519: 16.9891% -Rate for instruction 6520: 16.9901% -Rate for instruction 6521: 16.9892% -Rate for instruction 6522: 16.9902% -Rate for instruction 6523: 16.9917% -Rate for instruction 6524: 16.9897% -Rate for instruction 6525: 16.9883% -Rate for instruction 6526: 16.9886% -Rate for instruction 6527: 16.9884% -Rate for instruction 6528: 16.9863% -Rate for instruction 6529: 16.9843% -Rate for instruction 6530: 16.9835% -Rate for instruction 6531: 16.9821% -Rate for instruction 6532: 16.9824% -Rate for instruction 6533: 16.9851% -Rate for instruction 6534: 16.9872% -Rate for instruction 6535: 16.9858% -Rate for instruction 6536: 16.985% -Rate for instruction 6537: 16.983% -Rate for instruction 6538: 16.9827% -Rate for instruction 6539: 16.9819% -Rate for instruction 6540: 16.9805% -Rate for instruction 6541: 16.9785% -Rate for instruction 6542: 16.977% -Rate for instruction 6543: 16.9762% -Rate for instruction 6544: 16.9754% -Rate for instruction 6545: 16.9751% -Rate for instruction 6546: 16.9749% -Rate for instruction 6547: 16.9729% -Rate for instruction 6548: 16.9715% -Rate for instruction 6549: 16.9706% -Rate for instruction 6550: 16.9698% -Rate for instruction 6551: 16.9684% -Rate for instruction 6552: 16.967% -Rate for instruction 6553: 16.9662% -Rate for instruction 6554: 16.9665% -Rate for instruction 6555: 16.9651% -Rate for instruction 6556: 16.9654% -Rate for instruction 6557: 16.9675% -Rate for instruction 6558: 16.9685% -Rate for instruction 6559: 16.967% -Rate for instruction 6560: 16.965% -Rate for instruction 6561: 16.9666% -Rate for instruction 6562: 16.9687% -Rate for instruction 6563: 16.9714% -Rate for instruction 6564: 16.9723% -Rate for instruction 6565: 16.9732% -Rate for instruction 6566: 16.9771% -Rate for instruction 6567: 16.9774% -Rate for instruction 6568: 16.9789% -Rate for instruction 6569: 16.9775% -Rate for instruction 6570: 16.9784% -Rate for instruction 6571: 16.9776% -Rate for instruction 6572: 16.9762% -Rate for instruction 6573: 16.976% -Rate for instruction 6574: 16.9746% -Rate for instruction 6575: 16.9726% -Rate for instruction 6576: 16.9706% -Rate for instruction 6577: 16.9697% -Rate for instruction 6578: 16.9689% -Rate for instruction 6579: 16.9739% -Rate for instruction 6580: 16.9731% -Rate for instruction 6581: 16.9781% -Rate for instruction 6582: 16.9785% -Rate for instruction 6583: 16.9788% -Rate for instruction 6584: 16.9827% -Rate for instruction 6585: 16.9853% -Rate for instruction 6586: 16.9892% -Rate for instruction 6587: 16.9883% -Rate for instruction 6588: 16.9869% -Rate for instruction 6589: 16.9908% -Rate for instruction 6590: 16.9894% -Rate for instruction 6591: 16.9891% -Rate for instruction 6592: 16.9912% -Rate for instruction 6593: 16.9933% -Rate for instruction 6594: 16.9913% -Rate for instruction 6595: 16.9899% -Rate for instruction 6596: 16.9879% -Rate for instruction 6597: 16.9888% -Rate for instruction 6598: 16.9868% -Rate for instruction 6599: 16.9854% -Rate for instruction 6600: 16.9846% -Rate for instruction 6601: 16.9838% -Rate for instruction 6602: 16.9824% -Rate for instruction 6603: 16.9804% -Rate for instruction 6604: 16.9796% -Rate for instruction 6605: 16.9776% -Rate for instruction 6606: 16.9802% -Rate for instruction 6607: 16.9835% -Rate for instruction 6608: 16.9827% -Rate for instruction 6609: 16.9824% -Rate for instruction 6610: 16.9828% -Rate for instruction 6611: 16.9814% -Rate for instruction 6612: 16.9811% -Rate for instruction 6613: 16.9803% -Rate for instruction 6614: 16.9789% -Rate for instruction 6615: 16.9804% -Rate for instruction 6616: 16.9813% -Rate for instruction 6617: 16.9834% -Rate for instruction 6618: 16.9843% -Rate for instruction 6619: 16.9858% -Rate for instruction 6620: 16.9856% -Rate for instruction 6621: 16.9842% -Rate for instruction 6622: 16.9851% -Rate for instruction 6623: 16.9866% -Rate for instruction 6624: 16.9869% -Rate for instruction 6625: 16.985% -Rate for instruction 6626: 16.9841% -Rate for instruction 6627: 16.9851% -Rate for instruction 6628: 16.9842% -Rate for instruction 6629: 16.9822% -Rate for instruction 6630: 16.9849% -Rate for instruction 6631: 16.9835% -Rate for instruction 6632: 16.985% -Rate for instruction 6633: 16.9842% -Rate for instruction 6634: 16.9834% -Rate for instruction 6635: 16.986% -Rate for instruction 6636: 16.9881% -Rate for instruction 6637: 16.9861% -Rate for instruction 6638: 16.9882% -Rate for instruction 6639: 16.9926% -Rate for instruction 6640: 16.9947% -Rate for instruction 6641: 16.995% -Rate for instruction 6642: 16.9959% -Rate for instruction 6643: 16.9951% -Rate for instruction 6644: 16.996% -Rate for instruction 6645: 16.9958% -Rate for instruction 6646: 16.9961% -Rate for instruction 6647: 16.9959% -Rate for instruction 6648: 16.9945% -Rate for instruction 6649: 16.9936% -Rate for instruction 6650: 16.9917% -Rate for instruction 6651: 16.9926% -Rate for instruction 6652: 16.9929% -Rate for instruction 6653: 16.9909% -Rate for instruction 6654: 16.9895% -Rate for instruction 6655: 16.991% -Rate for instruction 6656: 16.9902% -Rate for instruction 6657: 16.9882% -Rate for instruction 6658: 16.992% -Rate for instruction 6659: 16.9924% -Rate for instruction 6660: 16.9927% -Rate for instruction 6661: 16.9948% -Rate for instruction 6662: 16.9963% -Rate for instruction 6663: 16.9955% -Rate for instruction 6664: 16.9935% -Rate for instruction 6665: 16.9927% -Rate for instruction 6666: 16.9907% -Rate for instruction 6667: 16.9887% -Rate for instruction 6668: 16.9873% -Rate for instruction 6669: 16.9865% -Rate for instruction 6670: 16.9851% -Rate for instruction 6671: 16.9831% -Rate for instruction 6672: 16.9829% -Rate for instruction 6673: 16.9815% -Rate for instruction 6674: 16.9818% -Rate for instruction 6675: 16.981% -Rate for instruction 6676: 16.9814% -Rate for instruction 6677: 16.9834% -Rate for instruction 6678: 16.9855% -Rate for instruction 6679: 16.9881% -Rate for instruction 6680: 16.9896% -Rate for instruction 6681: 16.9888% -Rate for instruction 6682: 16.9914% -Rate for instruction 6683: 16.9935% -Rate for instruction 6684: 16.9915% -Rate for instruction 6685: 16.9902% -Rate for instruction 6686: 16.9888% -Rate for instruction 6687: 16.9868% -Rate for instruction 6688: 16.9866% -Rate for instruction 6689: 16.9846% -Rate for instruction 6690: 16.9844% -Rate for instruction 6691: 16.9824% -Rate for instruction 6692: 16.9816% -Rate for instruction 6693: 16.9802% -Rate for instruction 6694: 16.9788% -Rate for instruction 6695: 16.978% -Rate for instruction 6696: 16.9766% -Rate for instruction 6697: 16.9758% -Rate for instruction 6698: 16.9738% -Rate for instruction 6699: 16.9724% -Rate for instruction 6700: 16.9711% -Rate for instruction 6701: 16.9708% -Rate for instruction 6702: 16.9706% -Rate for instruction 6703: 16.9686% -Rate for instruction 6704: 16.9684% -Rate for instruction 6705: 16.967% -Rate for instruction 6706: 16.9651% -Rate for instruction 6707: 16.9665% -Rate for instruction 6708: 16.9657% -Rate for instruction 6709: 16.9638% -Rate for instruction 6710: 16.9624% -Rate for instruction 6711: 16.9622% -Rate for instruction 6712: 16.9619% -Rate for instruction 6713: 16.9611% -Rate for instruction 6714: 16.9592% -Rate for instruction 6715: 16.9584% -Rate for instruction 6716: 16.9587% -Rate for instruction 6717: 16.9573% -Rate for instruction 6718: 16.9582% -Rate for instruction 6719: 16.9568% -Rate for instruction 6720: 16.96% -Rate for instruction 6721: 16.9581% -Rate for instruction 6722: 16.9607% -Rate for instruction 6723: 16.9605% -Rate for instruction 6724: 16.9625% -Rate for instruction 6725: 16.9652% -Rate for instruction 6726: 16.9638% -Rate for instruction 6727: 16.9624% -Rate for instruction 6728: 16.9616% -Rate for instruction 6729: 16.9614% -Rate for instruction 6730: 16.9594% -Rate for instruction 6731: 16.958% -Rate for instruction 6732: 16.959% -Rate for instruction 6733: 16.9576% -Rate for instruction 6734: 16.9602% -Rate for instruction 6735: 16.9594% -Rate for instruction 6736: 16.958% -Rate for instruction 6737: 16.9589% -Rate for instruction 6738: 16.9587% -Rate for instruction 6739: 16.9607% -Rate for instruction 6740: 16.9611% -Rate for instruction 6741: 16.962% -Rate for instruction 6742: 16.9606% -Rate for instruction 6743: 16.9615% -Rate for instruction 6744: 16.9596% -Rate for instruction 6745: 16.9628% -Rate for instruction 6746: 16.962% -Rate for instruction 6747: 16.9663% -Rate for instruction 6748: 16.9695% -Rate for instruction 6749: 16.9698% -Rate for instruction 6750: 16.969% -Rate for instruction 6751: 16.9716% -Rate for instruction 6752: 16.9697% -Rate for instruction 6753: 16.9717% -Rate for instruction 6754: 16.9755% -Rate for instruction 6755: 16.9792% -Rate for instruction 6756: 16.9773% -Rate for instruction 6757: 16.977% -Rate for instruction 6758: 16.9762% -Rate for instruction 6759: 16.9754% -Rate for instruction 6760: 16.974% -Rate for instruction 6761: 16.9727% -Rate for instruction 6762: 16.9764% -Rate for instruction 6763: 16.9813% -Rate for instruction 6764: 16.9805% -Rate for instruction 6765: 16.9808% -Rate for instruction 6766: 16.9834% -Rate for instruction 6767: 16.9855% -Rate for instruction 6768: 16.9858% -Rate for instruction 6769: 16.9873% -Rate for instruction 6770: 16.9887% -Rate for instruction 6771: 16.9885% -Rate for instruction 6772: 16.9894% -Rate for instruction 6773: 16.9926% -Rate for instruction 6774: 16.9969% -Rate for instruction 6775: 16.9949% -Rate for instruction 6776: 16.9941% -Rate for instruction 6777: 16.9922% -Rate for instruction 6778: 16.9914% -Rate for instruction 6779: 16.9929% -Rate for instruction 6780: 16.992% -Rate for instruction 6781: 16.9935% -Rate for instruction 6782: 16.9927% -Rate for instruction 6783: 16.9947% -Rate for instruction 6784: 16.9928% -Rate for instruction 6785: 16.9914% -Rate for instruction 6786: 16.994% -Rate for instruction 6787: 16.9932% -Rate for instruction 6788: 16.9947% -Rate for instruction 6789: 16.9961% -Rate for instruction 6790: 16.9976% -Rate for instruction 6791: 16.9991% -Rate for instruction 6792: 17.0005% -Rate for instruction 6793: 17.0031% -Rate for instruction 6794: 17.0052% -Rate for instruction 6795: 17.0049% -Rate for instruction 6796: 17.0064% -Rate for instruction 6797: 17.0061% -Rate for instruction 6798: 17.0048% -Rate for instruction 6799: 17.0028% -Rate for instruction 6800: 17.0026% -Rate for instruction 6801: 17.0007% -Rate for instruction 6802: 17.0021% -Rate for instruction 6803: 17.0047% -Rate for instruction 6804: 17.0067% -Rate for instruction 6805: 17.0048% -Rate for instruction 6806: 17.0096% -Rate for instruction 6807: 17.0122% -Rate for instruction 6808: 17.0137% -Rate for instruction 6809: 17.0157% -Rate for instruction 6810: 17.0149% -Rate for instruction 6811: 17.0169% -Rate for instruction 6812: 17.0184% -Rate for instruction 6813: 17.0164% -Rate for instruction 6814: 17.0179% -Rate for instruction 6815: 17.0193% -Rate for instruction 6816: 17.0197% -Rate for instruction 6817: 17.0217% -Rate for instruction 6818: 17.0198% -Rate for instruction 6819: 17.0223% -Rate for instruction 6820: 17.0204% -Rate for instruction 6821: 17.019% -Rate for instruction 6822: 17.0171% -Rate for instruction 6823: 17.0163% -Rate for instruction 6824: 17.0172% -Rate for instruction 6825: 17.0153% -Rate for instruction 6826: 17.0167% -Rate for instruction 6827: 17.021% -Rate for instruction 6828: 17.023% -Rate for instruction 6829: 17.0256% -Rate for instruction 6830: 17.0242% -Rate for instruction 6831: 17.0279% -Rate for instruction 6832: 17.026% -Rate for instruction 6833: 17.0246% -Rate for instruction 6834: 17.0238% -Rate for instruction 6835: 17.023% -Rate for instruction 6836: 17.0244% -Rate for instruction 6837: 17.0242% -Rate for instruction 6838: 17.0228% -Rate for instruction 6839: 17.0226% -Rate for instruction 6840: 17.0218% -Rate for instruction 6841: 17.0204% -Rate for instruction 6842: 17.0236% -Rate for instruction 6843: 17.0256% -Rate for instruction 6844: 17.0242% -Rate for instruction 6845: 17.0234% -Rate for instruction 6846: 17.0215% -Rate for instruction 6847: 17.0201% -Rate for instruction 6848: 17.0188% -Rate for instruction 6849: 17.018% -Rate for instruction 6850: 17.0189% -Rate for instruction 6851: 17.0192% -Rate for instruction 6852: 17.0184% -Rate for instruction 6853: 17.0181% -Rate for instruction 6854: 17.0201% -Rate for instruction 6855: 17.0233% -Rate for instruction 6856: 17.0225% -Rate for instruction 6857: 17.0217% -Rate for instruction 6858: 17.022% -Rate for instruction 6859: 17.0201% -Rate for instruction 6860: 17.0187% -Rate for instruction 6861: 17.0168% -Rate for instruction 6862: 17.0166% -Rate for instruction 6863: 17.0158% -Rate for instruction 6864: 17.015% -Rate for instruction 6865: 17.0142% -Rate for instruction 6866: 17.0167% -Rate for instruction 6867: 17.0159% -Rate for instruction 6868: 17.019% -Rate for instruction 6869: 17.0199% -Rate for instruction 6870: 17.0236% -Rate for instruction 6871: 17.0217% -Rate for instruction 6872: 17.0198% -Rate for instruction 6873: 17.0195% -Rate for instruction 6874: 17.0193% -Rate for instruction 6875: 17.0191% -Rate for instruction 6876: 17.0188% -Rate for instruction 6877: 17.0203% -Rate for instruction 6878: 17.0217% -Rate for instruction 6879: 17.0203% -Rate for instruction 6880: 17.0207% -Rate for instruction 6881: 17.0216% -Rate for instruction 6882: 17.0213% -Rate for instruction 6883: 17.0211% -Rate for instruction 6884: 17.0214% -Rate for instruction 6885: 17.0212% -Rate for instruction 6886: 17.022% -Rate for instruction 6887: 17.0218% -Rate for instruction 6888: 17.0238% -Rate for instruction 6889: 17.0219% -Rate for instruction 6890: 17.0216% -Rate for instruction 6891: 17.0208% -Rate for instruction 6892: 17.0201% -Rate for instruction 6893: 17.0181% -Rate for instruction 6894: 17.0185% -Rate for instruction 6895: 17.0182% -Rate for instruction 6896: 17.0163% -Rate for instruction 6897: 17.0144% -Rate for instruction 6898: 17.0153% -Rate for instruction 6899: 17.0178% -Rate for instruction 6900: 17.0209% -Rate for instruction 6901: 17.0224% -Rate for instruction 6902: 17.0244% -Rate for instruction 6903: 17.0258% -Rate for instruction 6904: 17.0278% -Rate for instruction 6905: 17.0303% -Rate for instruction 6906: 17.0295% -Rate for instruction 6907: 17.0282% -Rate for instruction 6908: 17.028% -Rate for instruction 6909: 17.0294% -Rate for instruction 6910: 17.0286% -Rate for instruction 6911: 17.0306% -Rate for instruction 6912: 17.0326% -Rate for instruction 6913: 17.0334% -Rate for instruction 6914: 17.0315% -Rate for instruction 6915: 17.0352% -Rate for instruction 6916: 17.0344% -Rate for instruction 6917: 17.0381% -Rate for instruction 6918: 17.0406% -Rate for instruction 6919: 17.0454% -Rate for instruction 6920: 17.0451% -Rate for instruction 6921: 17.0493% -Rate for instruction 6922: 17.0513% -Rate for instruction 6923: 17.0494% -Rate for instruction 6924: 17.0497% -Rate for instruction 6925: 17.0489% -Rate for instruction 6926: 17.0476% -Rate for instruction 6927: 17.0457% -Rate for instruction 6928: 17.0443% -Rate for instruction 6929: 17.0441% -Rate for instruction 6930: 17.0438% -Rate for instruction 6931: 17.0425% -Rate for instruction 6932: 17.0428% -Rate for instruction 6933: 17.0431% -Rate for instruction 6934: 17.0434% -Rate for instruction 6935: 17.0415% -Rate for instruction 6936: 17.0396% -Rate for instruction 6937: 17.0399% -Rate for instruction 6938: 17.0391% -Rate for instruction 6939: 17.0389% -Rate for instruction 6940: 17.037% -Rate for instruction 6941: 17.0379% -Rate for instruction 6942: 17.0371% -Rate for instruction 6943: 17.0368% -Rate for instruction 6944: 17.0372% -Rate for instruction 6945: 17.0364% -Rate for instruction 6946: 17.0378% -Rate for instruction 6947: 17.0414% -Rate for instruction 6948: 17.0395% -Rate for instruction 6949: 17.0376% -Rate for instruction 6950: 17.0407% -Rate for instruction 6951: 17.0421% -Rate for instruction 6952: 17.0441% -Rate for instruction 6953: 17.0466% -Rate for instruction 6954: 17.0492% -Rate for instruction 6955: 17.0522% -Rate for instruction 6956: 17.0559% -Rate for instruction 6957: 17.0551% -Rate for instruction 6958: 17.0548% -Rate for instruction 6959: 17.0546% -Rate for instruction 6960: 17.0571% -Rate for instruction 6961: 17.0574% -Rate for instruction 6962: 17.0594% -Rate for instruction 6963: 17.0575% -Rate for instruction 6964: 17.0567% -Rate for instruction 6965: 17.0548% -Rate for instruction 6966: 17.0535% -Rate for instruction 6967: 17.0516% -Rate for instruction 6968: 17.0513% -Rate for instruction 6969: 17.0494% -Rate for instruction 6970: 17.0503% -Rate for instruction 6971: 17.0506% -Rate for instruction 6972: 17.0487% -Rate for instruction 6973: 17.049% -Rate for instruction 6974: 17.0471% -Rate for instruction 6975: 17.0464% -Rate for instruction 6976: 17.0478% -Rate for instruction 6977: 17.0492% -Rate for instruction 6978: 17.0473% -Rate for instruction 6979: 17.0471% -Rate for instruction 6980: 17.0468% -Rate for instruction 6981: 17.0449% -Rate for instruction 6982: 17.0447% -Rate for instruction 6983: 17.0439% -Rate for instruction 6984: 17.0453% -Rate for instruction 6985: 17.0489% -Rate for instruction 6986: 17.0476% -Rate for instruction 6987: 17.0468% -Rate for instruction 6988: 17.0455% -Rate for instruction 6989: 17.0463% -Rate for instruction 6990: 17.0461% -Rate for instruction 6991: 17.0464% -Rate for instruction 6992: 17.0456% -Rate for instruction 6993: 17.0454% -Rate for instruction 6994: 17.044% -Rate for instruction 6995: 17.0427% -Rate for instruction 6996: 17.0458% -Rate for instruction 6997: 17.0472% -Rate for instruction 6998: 17.0453% -Rate for instruction 6999: 17.0467% -Rate for instruction 7000: 17.0448% -Rate for instruction 7001: 17.0429% -Rate for instruction 7002: 17.0416% -Rate for instruction 7003: 17.0425% -Rate for instruction 7004: 17.0411% -Rate for instruction 7005: 17.0442% -Rate for instruction 7006: 17.0456% -Rate for instruction 7007: 17.0459% -Rate for instruction 7008: 17.0468% -Rate for instruction 7009: 17.0487% -Rate for instruction 7010: 17.0474% -Rate for instruction 7011: 17.0455% -Rate for instruction 7012: 17.0475% -Rate for instruction 7013: 17.0489% -Rate for instruction 7014: 17.0481% -Rate for instruction 7015: 17.0522% -Rate for instruction 7016: 17.0553% -Rate for instruction 7017: 17.0561% -Rate for instruction 7018: 17.0581% -Rate for instruction 7019: 17.0584% -Rate for instruction 7020: 17.062% -Rate for instruction 7021: 17.0661% -Rate for instruction 7022: 17.0686% -Rate for instruction 7023: 17.07% -Rate for instruction 7024: 17.0731% -Rate for instruction 7025: 17.0767% -Rate for instruction 7026: 17.0786% -Rate for instruction 7027: 17.0795% -Rate for instruction 7028: 17.0787% -Rate for instruction 7029: 17.0801% -Rate for instruction 7030: 17.082% -Rate for instruction 7031: 17.0807% -Rate for instruction 7032: 17.0827% -Rate for instruction 7033: 17.083% -Rate for instruction 7034: 17.0816% -Rate for instruction 7035: 17.0841% -Rate for instruction 7036: 17.0822% -Rate for instruction 7037: 17.082% -Rate for instruction 7038: 17.0812% -Rate for instruction 7039: 17.0799% -Rate for instruction 7040: 17.084% -Rate for instruction 7041: 17.0843% -Rate for instruction 7042: 17.0824% -Rate for instruction 7043: 17.0827% -Rate for instruction 7044: 17.0814% -Rate for instruction 7045: 17.0806% -Rate for instruction 7046: 17.0836% -Rate for instruction 7047: 17.0823% -Rate for instruction 7048: 17.0843% -Rate for instruction 7049: 17.0873% -Rate for instruction 7050: 17.0876% -Rate for instruction 7051: 17.0895% -Rate for instruction 7052: 17.0887% -Rate for instruction 7053: 17.0874% -Rate for instruction 7054: 17.0904% -Rate for instruction 7055: 17.0886% -Rate for instruction 7056: 17.0921% -Rate for instruction 7057: 17.0935% -Rate for instruction 7058: 17.0917% -Rate for instruction 7059: 17.0914% -Rate for instruction 7060: 17.0923% -Rate for instruction 7061: 17.0937% -Rate for instruction 7062: 17.095% -Rate for instruction 7063: 17.0953% -Rate for instruction 7064: 17.094% -Rate for instruction 7065: 17.0932% -Rate for instruction 7066: 17.0914% -Rate for instruction 7067: 17.0917% -Rate for instruction 7068: 17.0936% -Rate for instruction 7069: 17.0944% -Rate for instruction 7070: 17.0964% -Rate for instruction 7071: 17.0989% -Rate for instruction 7072: 17.0981% -Rate for instruction 7073: 17.0973% -Rate for instruction 7074: 17.0959% -Rate for instruction 7075: 17.0952% -Rate for instruction 7076: 17.0938% -Rate for instruction 7077: 17.0925% -Rate for instruction 7078: 17.0928% -Rate for instruction 7079: 17.0926% -Rate for instruction 7080: 17.0918% -Rate for instruction 7081: 17.091% -Rate for instruction 7082: 17.0902% -Rate for instruction 7083: 17.09% -Rate for instruction 7084: 17.0897% -Rate for instruction 7085: 17.0933% -Rate for instruction 7086: 17.0952% -Rate for instruction 7087: 17.0955% -Rate for instruction 7088: 17.0964% -Rate for instruction 7089: 17.0988% -Rate for instruction 7090: 17.1008% -Rate for instruction 7091: 17.0994% -Rate for instruction 7092: 17.0992% -Rate for instruction 7093: 17.0973% -Rate for instruction 7094: 17.0971% -Rate for instruction 7095: 17.099% -Rate for instruction 7096: 17.0971% -Rate for instruction 7097: 17.0985% -Rate for instruction 7098: 17.0972% -Rate for instruction 7099: 17.1008% -Rate for instruction 7100: 17.1054% -Rate for instruction 7101: 17.1084% -Rate for instruction 7102: 17.1109% -Rate for instruction 7103: 17.109% -Rate for instruction 7104: 17.1115% -Rate for instruction 7105: 17.115% -Rate for instruction 7106: 17.1137% -Rate for instruction 7107: 17.1118% -Rate for instruction 7108: 17.1099% -Rate for instruction 7109: 17.1086% -Rate for instruction 7110: 17.1068% -Rate for instruction 7111: 17.1054% -Rate for instruction 7112: 17.1036% -Rate for instruction 7113: 17.1044% -Rate for instruction 7114: 17.1063% -Rate for instruction 7115: 17.105% -Rate for instruction 7116: 17.1058% -Rate for instruction 7117: 17.104% -Rate for instruction 7118: 17.1037% -Rate for instruction 7119: 17.103% -Rate for instruction 7120: 17.1011% -Rate for instruction 7121: 17.0992% -Rate for instruction 7122: 17.1001% -Rate for instruction 7123: 17.0993% -Rate for instruction 7124: 17.0996% -Rate for instruction 7125: 17.0994% -Rate for instruction 7126: 17.0997% -Rate for instruction 7127: 17.1016% -Rate for instruction 7128: 17.0997% -Rate for instruction 7129: 17.1% -Rate for instruction 7130: 17.0992% -Rate for instruction 7131: 17.1001% -Rate for instruction 7132: 17.1009% -Rate for instruction 7133: 17.1017% -Rate for instruction 7134: 17.1026% -Rate for instruction 7135: 17.1034% -Rate for instruction 7136: 17.1037% -Rate for instruction 7137: 17.1029% -Rate for instruction 7138: 17.1027% -Rate for instruction 7139: 17.1014% -Rate for instruction 7140: 17.1011% -Rate for instruction 7141: 17.0993% -Rate for instruction 7142: 17.099% -Rate for instruction 7143: 17.0999% -Rate for instruction 7144: 17.1018% -Rate for instruction 7145: 17.1005% -Rate for instruction 7146: 17.1019% -Rate for instruction 7147: 17.1005% -Rate for instruction 7148: 17.1014% -Rate for instruction 7149: 17.1027% -Rate for instruction 7150: 17.1014% -Rate for instruction 7151: 17.1006% -Rate for instruction 7152: 17.0993% -Rate for instruction 7153: 17.1007% -Rate for instruction 7154: 17.101% -Rate for instruction 7155: 17.1018% -Rate for instruction 7156: 17.1011% -Rate for instruction 7157: 17.1008% -Rate for instruction 7158: 17.1017% -Rate for instruction 7159: 17.1025% -Rate for instruction 7160: 17.1023% -Rate for instruction 7161: 17.1025% -Rate for instruction 7162: 17.1023% -Rate for instruction 7163: 17.1021% -Rate for instruction 7164: 17.1018% -Rate for instruction 7165: 17.1011% -Rate for instruction 7166: 17.1003% -Rate for instruction 7167: 17.0984% -Rate for instruction 7168: 17.0998% -Rate for instruction 7169: 17.098% -Rate for instruction 7170: 17.0993% -Rate for instruction 7171: 17.0975% -Rate for instruction 7172: 17.0999% -Rate for instruction 7173: 17.0981% -Rate for instruction 7174: 17.0968% -Rate for instruction 7175: 17.096% -Rate for instruction 7176: 17.0995% -Rate for instruction 7177: 17.0993% -Rate for instruction 7178: 17.0979% -Rate for instruction 7179: 17.0982% -Rate for instruction 7180: 17.0991% -Rate for instruction 7181: 17.101% -Rate for instruction 7182: 17.1018% -Rate for instruction 7183: 17.1% -Rate for instruction 7184: 17.1003% -Rate for instruction 7185: 17.1011% -Rate for instruction 7186: 17.1035% -Rate for instruction 7187: 17.1065% -Rate for instruction 7188: 17.1052% -Rate for instruction 7189: 17.1039% -Rate for instruction 7190: 17.1069% -Rate for instruction 7191: 17.1098% -Rate for instruction 7192: 17.1096% -Rate for instruction 7193: 17.1083% -Rate for instruction 7194: 17.1075% -Rate for instruction 7195: 17.1073% -Rate for instruction 7196: 17.1081% -Rate for instruction 7197: 17.1079% -Rate for instruction 7198: 17.1065% -Rate for instruction 7199: 17.1058% -Rate for instruction 7200: 17.1077% -Rate for instruction 7201: 17.1085% -Rate for instruction 7202: 17.1067% -Rate for instruction 7203: 17.1048% -Rate for instruction 7204: 17.1051% -Rate for instruction 7205: 17.1065% -Rate for instruction 7206: 17.111% -Rate for instruction 7207: 17.1119% -Rate for instruction 7208: 17.1143% -Rate for instruction 7209: 17.1167% -Rate for instruction 7210: 17.1154% -Rate for instruction 7211: 17.1141% -Rate for instruction 7212: 17.1133% -Rate for instruction 7213: 17.1168% -Rate for instruction 7214: 17.115% -Rate for instruction 7215: 17.1174% -Rate for instruction 7216: 17.1177% -Rate for instruction 7217: 17.1164% -Rate for instruction 7218: 17.1183% -Rate for instruction 7219: 17.1175% -Rate for instruction 7220: 17.1199% -Rate for instruction 7221: 17.1197% -Rate for instruction 7222: 17.1189% -Rate for instruction 7223: 17.1182% -Rate for instruction 7224: 17.1179% -Rate for instruction 7225: 17.1171% -Rate for instruction 7226: 17.1158% -Rate for instruction 7227: 17.1145% -Rate for instruction 7228: 17.1164% -Rate for instruction 7229: 17.1178% -Rate for instruction 7230: 17.1186% -Rate for instruction 7231: 17.1189% -Rate for instruction 7232: 17.1187% -Rate for instruction 7233: 17.1205% -Rate for instruction 7234: 17.1208% -Rate for instruction 7235: 17.1195% -Rate for instruction 7236: 17.1214% -Rate for instruction 7237: 17.1201% -Rate for instruction 7238: 17.122% -Rate for instruction 7239: 17.1234% -Rate for instruction 7240: 17.1215% -Rate for instruction 7241: 17.1213% -Rate for instruction 7242: 17.1221% -Rate for instruction 7243: 17.1229% -Rate for instruction 7244: 17.1259% -Rate for instruction 7245: 17.1288% -Rate for instruction 7246: 17.1275% -Rate for instruction 7247: 17.1289% -Rate for instruction 7248: 17.1276% -Rate for instruction 7249: 17.1289% -Rate for instruction 7250: 17.1308% -Rate for instruction 7251: 17.129% -Rate for instruction 7252: 17.1277% -Rate for instruction 7253: 17.1306% -Rate for instruction 7254: 17.1298% -Rate for instruction 7255: 17.128% -Rate for instruction 7256: 17.1267% -Rate for instruction 7257: 17.1249% -Rate for instruction 7258: 17.1241% -Rate for instruction 7259: 17.1239% -Rate for instruction 7260: 17.1242% -Rate for instruction 7261: 17.1229% -Rate for instruction 7262: 17.1216% -Rate for instruction 7263: 17.1213% -Rate for instruction 7264: 17.1205% -Rate for instruction 7265: 17.1192% -Rate for instruction 7266: 17.118% -Rate for instruction 7267: 17.1188% -Rate for instruction 7268: 17.1201% -Rate for instruction 7269: 17.1199% -Rate for instruction 7270: 17.1228% -Rate for instruction 7271: 17.1258% -Rate for instruction 7272: 17.1255% -Rate for instruction 7273: 17.1242% -Rate for instruction 7274: 17.1234% -Rate for instruction 7275: 17.1232% -Rate for instruction 7276: 17.1219% -Rate for instruction 7277: 17.1227% -Rate for instruction 7278: 17.122% -Rate for instruction 7279: 17.1223% -Rate for instruction 7280: 17.121% -Rate for instruction 7281: 17.1202% -Rate for instruction 7282: 17.1184% -Rate for instruction 7283: 17.1171% -Rate for instruction 7284: 17.1184% -Rate for instruction 7285: 17.1166% -Rate for instruction 7286: 17.1158% -Rate for instruction 7287: 17.114% -Rate for instruction 7288: 17.1154% -Rate for instruction 7289: 17.1141% -Rate for instruction 7290: 17.1128% -Rate for instruction 7291: 17.1115% -Rate for instruction 7292: 17.1134% -Rate for instruction 7293: 17.1115% -Rate for instruction 7294: 17.1139% -Rate for instruction 7295: 17.1148% -Rate for instruction 7296: 17.1135% -Rate for instruction 7297: 17.1127% -Rate for instruction 7298: 17.1146% -Rate for instruction 7299: 17.1138% -Rate for instruction 7300: 17.1141% -Rate for instruction 7301: 17.1128% -Rate for instruction 7302: 17.1147% -Rate for instruction 7303: 17.1165% -Rate for instruction 7304: 17.1158% -Rate for instruction 7305: 17.114% -Rate for instruction 7306: 17.1121% -Rate for instruction 7307: 17.1119% -Rate for instruction 7308: 17.1138% -Rate for instruction 7309: 17.113% -Rate for instruction 7310: 17.1138% -Rate for instruction 7311: 17.1131% -Rate for instruction 7312: 17.1128% -Rate for instruction 7313: 17.1126% -Rate for instruction 7314: 17.1134% -Rate for instruction 7315: 17.1142% -Rate for instruction 7316: 17.1135% -Rate for instruction 7317: 17.1174% -Rate for instruction 7318: 17.1198% -Rate for instruction 7319: 17.1201% -Rate for instruction 7320: 17.1199% -Rate for instruction 7321: 17.1196% -Rate for instruction 7322: 17.1178% -Rate for instruction 7323: 17.1181% -Rate for instruction 7324: 17.1163% -Rate for instruction 7325: 17.1161% -Rate for instruction 7326: 17.1148% -Rate for instruction 7327: 17.1135% -Rate for instruction 7328: 17.1143% -Rate for instruction 7329: 17.1146% -Rate for instruction 7330: 17.1159% -Rate for instruction 7331: 17.1141% -Rate for instruction 7332: 17.1128% -Rate for instruction 7333: 17.1131% -Rate for instruction 7334: 17.1113% -Rate for instruction 7335: 17.11% -Rate for instruction 7336: 17.114% -Rate for instruction 7337: 17.1159% -Rate for instruction 7338: 17.1167% -Rate for instruction 7339: 17.1149% -Rate for instruction 7340: 17.1188% -Rate for instruction 7341: 17.1217% -Rate for instruction 7342: 17.1231% -Rate for instruction 7343: 17.1228% -Rate for instruction 7344: 17.1236% -Rate for instruction 7345: 17.1244% -Rate for instruction 7346: 17.1232% -Rate for instruction 7347: 17.1224% -Rate for instruction 7348: 17.1206% -Rate for instruction 7349: 17.1224% -Rate for instruction 7350: 17.1233% -Rate for instruction 7351: 17.1215% -Rate for instruction 7352: 17.1196% -Rate for instruction 7353: 17.1199% -Rate for instruction 7354: 17.1213% -Rate for instruction 7355: 17.1231% -Rate for instruction 7356: 17.1224% -Rate for instruction 7357: 17.1242% -Rate for instruction 7358: 17.1229% -Rate for instruction 7359: 17.1227% -Rate for instruction 7360: 17.1225% -Rate for instruction 7361: 17.1233% -Rate for instruction 7362: 17.1215% -Rate for instruction 7363: 17.1249% -Rate for instruction 7364: 17.1247% -Rate for instruction 7365: 17.127% -Rate for instruction 7366: 17.1268% -Rate for instruction 7367: 17.1255% -Rate for instruction 7368: 17.1237% -Rate for instruction 7369: 17.123% -Rate for instruction 7370: 17.1212% -Rate for instruction 7371: 17.1199% -Rate for instruction 7372: 17.1181% -Rate for instruction 7373: 17.1173% -Rate for instruction 7374: 17.1171% -Rate for instruction 7375: 17.1163% -Rate for instruction 7376: 17.1161% -Rate for instruction 7377: 17.1153% -Rate for instruction 7378: 17.1141% -Rate for instruction 7379: 17.1154% -Rate for instruction 7380: 17.1152% -Rate for instruction 7381: 17.1154% -Rate for instruction 7382: 17.1152% -Rate for instruction 7383: 17.1155% -Rate for instruction 7384: 17.1147% -Rate for instruction 7385: 17.115% -Rate for instruction 7386: 17.1148% -Rate for instruction 7387: 17.1161% -Rate for instruction 7388: 17.1169% -Rate for instruction 7389: 17.1167% -Rate for instruction 7390: 17.1159% -Rate for instruction 7391: 17.1147% -Rate for instruction 7392: 17.1149% -Rate for instruction 7393: 17.1152% -Rate for instruction 7394: 17.1145% -Rate for instruction 7395: 17.1132% -Rate for instruction 7396: 17.1114% -Rate for instruction 7397: 17.1117% -Rate for instruction 7398: 17.1099% -Rate for instruction 7399: 17.1091% -Rate for instruction 7400: 17.11% -Rate for instruction 7401: 17.1082% -Rate for instruction 7402: 17.1074% -Rate for instruction 7403: 17.1072% -Rate for instruction 7404: 17.1054% -Rate for instruction 7405: 17.1046% -Rate for instruction 7406: 17.1028% -Rate for instruction 7407: 17.1021% -Rate for instruction 7408: 17.1013% -Rate for instruction 7409: 17.1042% -Rate for instruction 7410: 17.1061% -Rate for instruction 7411: 17.1064% -Rate for instruction 7412: 17.1056% -Rate for instruction 7413: 17.1049% -Rate for instruction 7414: 17.1031% -Rate for instruction 7415: 17.1028% -Rate for instruction 7416: 17.1042% -Rate for instruction 7417: 17.107% -Rate for instruction 7418: 17.1104% -Rate for instruction 7419: 17.1102% -Rate for instruction 7420: 17.11% -Rate for instruction 7421: 17.1082% -Rate for instruction 7422: 17.1079% -Rate for instruction 7423: 17.1067% -Rate for instruction 7424: 17.1075% -Rate for instruction 7425: 17.1078% -Rate for instruction 7426: 17.107% -Rate for instruction 7427: 17.1063% -Rate for instruction 7428: 17.105% -Rate for instruction 7429: 17.1053% -Rate for instruction 7430: 17.1066% -Rate for instruction 7431: 17.1084% -Rate for instruction 7432: 17.1077% -Rate for instruction 7433: 17.109% -Rate for instruction 7434: 17.1078% -Rate for instruction 7435: 17.108% -Rate for instruction 7436: 17.1078% -Rate for instruction 7437: 17.106% -Rate for instruction 7438: 17.1063% -Rate for instruction 7439: 17.1092% -Rate for instruction 7440: 17.1121% -Rate for instruction 7441: 17.1123% -Rate for instruction 7442: 17.1142% -Rate for instruction 7443: 17.116% -Rate for instruction 7444: 17.1173% -Rate for instruction 7445: 17.1155% -Rate for instruction 7446: 17.1189% -Rate for instruction 7447: 17.1218% -Rate for instruction 7448: 17.1205% -Rate for instruction 7449: 17.1198% -Rate for instruction 7450: 17.119% -Rate for instruction 7451: 17.1178% -Rate for instruction 7452: 17.116% -Rate for instruction 7453: 17.1142% -Rate for instruction 7454: 17.1129% -Rate for instruction 7455: 17.1122% -Rate for instruction 7456: 17.1145% -Rate for instruction 7457: 17.1153% -Rate for instruction 7458: 17.1141% -Rate for instruction 7459: 17.1144% -Rate for instruction 7460: 17.1141% -Rate for instruction 7461: 17.1134% -Rate for instruction 7462: 17.1147% -Rate for instruction 7463: 17.115% -Rate for instruction 7464: 17.1168% -Rate for instruction 7465: 17.1197% -Rate for instruction 7466: 17.1179% -Rate for instruction 7467: 17.1166% -Rate for instruction 7468: 17.1174% -Rate for instruction 7469: 17.1203% -Rate for instruction 7470: 17.1211% -Rate for instruction 7471: 17.1198% -Rate for instruction 7472: 17.1206% -Rate for instruction 7473: 17.124% -Rate for instruction 7474: 17.1222% -Rate for instruction 7475: 17.1204% -Rate for instruction 7476: 17.1187% -Rate for instruction 7477: 17.1184% -Rate for instruction 7478: 17.1166% -Rate for instruction 7479: 17.1154% -Rate for instruction 7480: 17.1136% -Rate for instruction 7481: 17.1154% -Rate for instruction 7482: 17.1137% -Rate for instruction 7483: 17.117% -Rate for instruction 7484: 17.1194% -Rate for instruction 7485: 17.1181% -Rate for instruction 7486: 17.1179% -Rate for instruction 7487: 17.1166% -Rate for instruction 7488: 17.1148% -Rate for instruction 7489: 17.1146% -Rate for instruction 7490: 17.1128% -Rate for instruction 7491: 17.1131% -Rate for instruction 7492: 17.116% -Rate for instruction 7493: 17.1188% -Rate for instruction 7494: 17.1196% -Rate for instruction 7495: 17.1225% -Rate for instruction 7496: 17.1207% -Rate for instruction 7497: 17.1199% -Rate for instruction 7498: 17.1182% -Rate for instruction 7499: 17.1169% -Rate for instruction 7500: 17.1167% -Rate for instruction 7501: 17.1201% -Rate for instruction 7502: 17.1183% -Rate for instruction 7503: 17.117% -Rate for instruction 7504: 17.1173% -Rate for instruction 7505: 17.1176% -Rate for instruction 7506: 17.1204% -Rate for instruction 7507: 17.1197% -Rate for instruction 7508: 17.123% -Rate for instruction 7509: 17.1223% -Rate for instruction 7510: 17.121% -Rate for instruction 7511: 17.1198% -Rate for instruction 7512: 17.119% -Rate for instruction 7513: 17.1183% -Rate for instruction 7514: 17.117% -Rate for instruction 7515: 17.1178% -Rate for instruction 7516: 17.1171% -Rate for instruction 7517: 17.1169% -Rate for instruction 7518: 17.1151% -Rate for instruction 7519: 17.1144% -Rate for instruction 7520: 17.1141% -Rate for instruction 7521: 17.1129% -Rate for instruction 7522: 17.1126% -Rate for instruction 7523: 17.1119% -Rate for instruction 7524: 17.1107% -Rate for instruction 7525: 17.1135% -Rate for instruction 7526: 17.1122% -Rate for instruction 7527: 17.1115% -Rate for instruction 7528: 17.1103% -Rate for instruction 7529: 17.109% -Rate for instruction 7530: 17.1077% -Rate for instruction 7531: 17.108% -Rate for instruction 7532: 17.1063% -Rate for instruction 7533: 17.1081% -Rate for instruction 7534: 17.1063% -Rate for instruction 7535: 17.1066% -Rate for instruction 7536: 17.1048% -Rate for instruction 7537: 17.1077% -Rate for instruction 7538: 17.1069% -Rate for instruction 7539: 17.1098% -Rate for instruction 7540: 17.1095% -Rate for instruction 7541: 17.1088% -Rate for instruction 7542: 17.107% -Rate for instruction 7543: 17.1063% -Rate for instruction 7544: 17.1051% -Rate for instruction 7545: 17.1048% -Rate for instruction 7546: 17.1046% -Rate for instruction 7547: 17.1064% -Rate for instruction 7548: 17.1057% -Rate for instruction 7549: 17.1049% -Rate for instruction 7550: 17.1042% -Rate for instruction 7551: 17.103% -Rate for instruction 7552: 17.1058% -Rate for instruction 7553: 17.1081% -Rate for instruction 7554: 17.1074% -Rate for instruction 7555: 17.1071% -Rate for instruction 7556: 17.1084% -Rate for instruction 7557: 17.1077% -Rate for instruction 7558: 17.1059% -Rate for instruction 7559: 17.1057% -Rate for instruction 7560: 17.1055% -Rate for instruction 7561: 17.1037% -Rate for instruction 7562: 17.1025% -Rate for instruction 7563: 17.1018% -Rate for instruction 7564: 17.102% -Rate for instruction 7565: 17.1003% -Rate for instruction 7566: 17.1016% -Rate for instruction 7567: 17.1019% -Rate for instruction 7568: 17.1027% -Rate for instruction 7569: 17.106% -Rate for instruction 7570: 17.1073% -Rate for instruction 7571: 17.1081% -Rate for instruction 7572: 17.1089% -Rate for instruction 7573: 17.1096% -Rate for instruction 7574: 17.1114% -Rate for instruction 7575: 17.1127% -Rate for instruction 7576: 17.113% -Rate for instruction 7577: 17.1153% -Rate for instruction 7578: 17.1171% -Rate for instruction 7579: 17.12% -Rate for instruction 7580: 17.1192% -Rate for instruction 7581: 17.121% -Rate for instruction 7582: 17.1193% -Rate for instruction 7583: 17.1221% -Rate for instruction 7584: 17.1203% -Rate for instruction 7585: 17.1191% -Rate for instruction 7586: 17.1184% -Rate for instruction 7587: 17.1207% -Rate for instruction 7588: 17.1189% -Rate for instruction 7589: 17.1217% -Rate for instruction 7590: 17.1245% -Rate for instruction 7591: 17.1238% -Rate for instruction 7592: 17.1261% -Rate for instruction 7593: 17.1254% -Rate for instruction 7594: 17.1272% -Rate for instruction 7595: 17.1259% -Rate for instruction 7596: 17.1257% -Rate for instruction 7597: 17.129% -Rate for instruction 7598: 17.1283% -Rate for instruction 7599: 17.127% -Rate for instruction 7600: 17.1288% -Rate for instruction 7601: 17.1291% -Rate for instruction 7602: 17.1294% -Rate for instruction 7603: 17.1291% -Rate for instruction 7604: 17.1274% -Rate for instruction 7605: 17.1277% -Rate for instruction 7606: 17.1279% -Rate for instruction 7607: 17.1267% -Rate for instruction 7608: 17.1255% -Rate for instruction 7609: 17.1237% -Rate for instruction 7610: 17.126% -Rate for instruction 7611: 17.1263% -Rate for instruction 7612: 17.1246% -Rate for instruction 7613: 17.1233% -Rate for instruction 7614: 17.1216% -Rate for instruction 7615: 17.1208% -Rate for instruction 7616: 17.1191% -Rate for instruction 7617: 17.1179% -Rate for instruction 7618: 17.1181% -Rate for instruction 7619: 17.1169% -Rate for instruction 7620: 17.1177% -Rate for instruction 7621: 17.1164% -Rate for instruction 7622: 17.1167% -Rate for instruction 7623: 17.116% -Rate for instruction 7624: 17.1168% -Rate for instruction 7625: 17.117% -Rate for instruction 7626: 17.1168% -Rate for instruction 7627: 17.1151% -Rate for instruction 7628: 17.1154% -Rate for instruction 7629: 17.1151% -Rate for instruction 7630: 17.1139% -Rate for instruction 7631: 17.1142% -Rate for instruction 7632: 17.1134% -Rate for instruction 7633: 17.1122% -Rate for instruction 7634: 17.1105% -Rate for instruction 7635: 17.1113% -Rate for instruction 7636: 17.1125% -Rate for instruction 7637: 17.1113% -Rate for instruction 7638: 17.1111% -Rate for instruction 7639: 17.1098% -Rate for instruction 7640: 17.1081% -Rate for instruction 7641: 17.1069% -Rate for instruction 7642: 17.1067% -Rate for instruction 7643: 17.1054% -Rate for instruction 7644: 17.1057% -Rate for instruction 7645: 17.1055% -Rate for instruction 7646: 17.1058% -Rate for instruction 7647: 17.105% -Rate for instruction 7648: 17.1048% -Rate for instruction 7649: 17.1036% -Rate for instruction 7650: 17.1018% -Rate for instruction 7651: 17.1016% -Rate for instruction 7652: 17.1014% -Rate for instruction 7653: 17.1022% -Rate for instruction 7654: 17.1029% -Rate for instruction 7655: 17.1032% -Rate for instruction 7656: 17.1015% -Rate for instruction 7657: 17.1003% -Rate for instruction 7658: 17.0985% -Rate for instruction 7659: 17.0978% -Rate for instruction 7660: 17.0971% -Rate for instruction 7661: 17.0974% -Rate for instruction 7662: 17.0966% -Rate for instruction 7663: 17.0964% -Rate for instruction 7664: 17.0957% -Rate for instruction 7665: 17.0965% -Rate for instruction 7666: 17.0947% -Rate for instruction 7667: 17.095% -Rate for instruction 7668: 17.0948% -Rate for instruction 7669: 17.0951% -Rate for instruction 7670: 17.0933% -Rate for instruction 7671: 17.0931% -Rate for instruction 7672: 17.0929% -Rate for instruction 7673: 17.0932% -Rate for instruction 7674: 17.093% -Rate for instruction 7675: 17.0917% -Rate for instruction 7676: 17.09% -Rate for instruction 7677: 17.0898% -Rate for instruction 7678: 17.0891% -Rate for instruction 7679: 17.0873% -Rate for instruction 7680: 17.0861% -Rate for instruction 7681: 17.0844% -Rate for instruction 7682: 17.0842% -Rate for instruction 7683: 17.084% -Rate for instruction 7684: 17.0827% -Rate for instruction 7685: 17.081% -Rate for instruction 7686: 17.0803% -Rate for instruction 7687: 17.0796% -Rate for instruction 7688: 17.0783% -Rate for instruction 7689: 17.0796% -Rate for instruction 7690: 17.0779% -Rate for instruction 7691: 17.0802% -Rate for instruction 7692: 17.082% -Rate for instruction 7693: 17.0852% -Rate for instruction 7694: 17.0875% -Rate for instruction 7695: 17.0893% -Rate for instruction 7696: 17.0906% -Rate for instruction 7697: 17.0914% -Rate for instruction 7698: 17.0926% -Rate for instruction 7699: 17.0944% -Rate for instruction 7700: 17.0957% -Rate for instruction 7701: 17.096% -Rate for instruction 7702: 17.0942% -Rate for instruction 7703: 17.094% -Rate for instruction 7704: 17.0953% -Rate for instruction 7705: 17.0971% -Rate for instruction 7706: 17.0963% -Rate for instruction 7707: 17.0946% -Rate for instruction 7708: 17.0939% -Rate for instruction 7709: 17.0957% -Rate for instruction 7710: 17.097% -Rate for instruction 7711: 17.1007% -Rate for instruction 7712: 17.1035% -Rate for instruction 7713: 17.1053% -Rate for instruction 7714: 17.106% -Rate for instruction 7715: 17.1078% -Rate for instruction 7716: 17.1091% -Rate for instruction 7717: 17.1079% -Rate for instruction 7718: 17.1061% -Rate for instruction 7719: 17.1049% -Rate for instruction 7720: 17.1047% -Rate for instruction 7721: 17.103% -Rate for instruction 7722: 17.1018% -Rate for instruction 7723: 17.104% -Rate for instruction 7724: 17.1028% -Rate for instruction 7725: 17.1026% -Rate for instruction 7726: 17.1019% -Rate for instruction 7727: 17.1016% -Rate for instruction 7728: 17.1009% -Rate for instruction 7729: 17.1017% -Rate for instruction 7730: 17.1015% -Rate for instruction 7731: 17.1013% -Rate for instruction 7732: 17.1015% -Rate for instruction 7733: 17.0998% -Rate for instruction 7734: 17.0996% -Rate for instruction 7735: 17.0999% -Rate for instruction 7736: 17.0982% -Rate for instruction 7737: 17.0984% -Rate for instruction 7738: 17.0977% -Rate for instruction 7739: 17.096% -Rate for instruction 7740: 17.0943% -Rate for instruction 7741: 17.0936% -Rate for instruction 7742: 17.0939% -Rate for instruction 7743: 17.0941% -Rate for instruction 7744: 17.0929% -Rate for instruction 7745: 17.0917% -Rate for instruction 7746: 17.0905% -Rate for instruction 7747: 17.0908% -Rate for instruction 7748: 17.09% -Rate for instruction 7749: 17.0903% -Rate for instruction 7750: 17.0906% -Rate for instruction 7751: 17.0909% -Rate for instruction 7752: 17.0916% -Rate for instruction 7753: 17.0934% -Rate for instruction 7754: 17.0937% -Rate for instruction 7755: 17.093% -Rate for instruction 7756: 17.0913% -Rate for instruction 7757: 17.0901% -Rate for instruction 7758: 17.0918% -Rate for instruction 7759: 17.0911% -Rate for instruction 7760: 17.0899% -Rate for instruction 7761: 17.0897% -Rate for instruction 7762: 17.0885% -Rate for instruction 7763: 17.0912% -Rate for instruction 7764: 17.0945% -Rate for instruction 7765: 17.0942% -Rate for instruction 7766: 17.0945% -Rate for instruction 7767: 17.0973% -Rate for instruction 7768: 17.1% -Rate for instruction 7769: 17.0998% -Rate for instruction 7770: 17.0996% -Rate for instruction 7771: 17.0998% -Rate for instruction 7772: 17.0986% -Rate for instruction 7773: 17.0994% -Rate for instruction 7774: 17.0997% -Rate for instruction 7775: 17.098% -Rate for instruction 7776: 17.0992% -Rate for instruction 7777: 17.1005% -Rate for instruction 7778: 17.1028% -Rate for instruction 7779: 17.104% -Rate for instruction 7780: 17.1068% -Rate for instruction 7781: 17.109% -Rate for instruction 7782: 17.1113% -Rate for instruction 7783: 17.112% -Rate for instruction 7784: 17.1108% -Rate for instruction 7785: 17.1121% -Rate for instruction 7786: 17.1114% -Rate for instruction 7787: 17.1101% -Rate for instruction 7788: 17.1094% -Rate for instruction 7789: 17.1082% -Rate for instruction 7790: 17.108% -Rate for instruction 7791: 17.1063% -Rate for instruction 7792: 17.1056% -Rate for instruction 7793: 17.1049% -Rate for instruction 7794: 17.1047% -Rate for instruction 7795: 17.1059% -Rate for instruction 7796: 17.1072% -Rate for instruction 7797: 17.1055% -Rate for instruction 7798: 17.1067% -Rate for instruction 7799: 17.1055% -Rate for instruction 7800: 17.1053% -Rate for instruction 7801: 17.1061% -Rate for instruction 7802: 17.1044% -Rate for instruction 7803: 17.1046% -Rate for instruction 7804: 17.1074% -Rate for instruction 7805: 17.1096% -Rate for instruction 7806: 17.1084% -Rate for instruction 7807: 17.1067% -Rate for instruction 7808: 17.1099% -Rate for instruction 7809: 17.1127% -Rate for instruction 7810: 17.1159% -Rate for instruction 7811: 17.1176% -Rate for instruction 7812: 17.1164% -Rate for instruction 7813: 17.1192% -Rate for instruction 7814: 17.1175% -Rate for instruction 7815: 17.1163% -Rate for instruction 7816: 17.1175% -Rate for instruction 7817: 17.1163% -Rate for instruction 7818: 17.12% -Rate for instruction 7819: 17.1208% -Rate for instruction 7820: 17.1216% -Rate for instruction 7821: 17.1228% -Rate for instruction 7822: 17.1221% -Rate for instruction 7823: 17.1214% -Rate for instruction 7824: 17.1197% -Rate for instruction 7825: 17.119% -Rate for instruction 7826: 17.1173% -Rate for instruction 7827: 17.1161% -Rate for instruction 7828: 17.1178% -Rate for instruction 7829: 17.1166% -Rate for instruction 7830: 17.1169% -Rate for instruction 7831: 17.1186% -Rate for instruction 7832: 17.1174% -Rate for instruction 7833: 17.1172% -Rate for instruction 7834: 17.116% -Rate for instruction 7835: 17.1143% -Rate for instruction 7836: 17.1131% -Rate for instruction 7837: 17.1129% -Rate for instruction 7838: 17.1127% -Rate for instruction 7839: 17.1129% -Rate for instruction 7840: 17.1122% -Rate for instruction 7841: 17.1115% -Rate for instruction 7842: 17.1123% -Rate for instruction 7843: 17.1111% -Rate for instruction 7844: 17.1123% -Rate for instruction 7845: 17.1136% -Rate for instruction 7846: 17.1148% -Rate for instruction 7847: 17.1156% -Rate for instruction 7848: 17.1144% -Rate for instruction 7849: 17.1142% -Rate for instruction 7850: 17.1144% -Rate for instruction 7851: 17.1127% -Rate for instruction 7852: 17.1115% -Rate for instruction 7853: 17.1123% -Rate for instruction 7854: 17.1116% -Rate for instruction 7855: 17.1104% -Rate for instruction 7856: 17.1112% -Rate for instruction 7857: 17.1109% -Rate for instruction 7858: 17.1107% -Rate for instruction 7859: 17.11% -Rate for instruction 7860: 17.1088% -Rate for instruction 7861: 17.1071% -Rate for instruction 7862: 17.1064% -Rate for instruction 7863: 17.1047% -Rate for instruction 7864: 17.1045% -Rate for instruction 7865: 17.1028% -Rate for instruction 7866: 17.1036% -Rate for instruction 7867: 17.1034% -Rate for instruction 7868: 17.1027% -Rate for instruction 7869: 17.1029% -Rate for instruction 7870: 17.1012% -Rate for instruction 7871: 17.1015% -Rate for instruction 7872: 17.1023% -Rate for instruction 7873: 17.1016% -Rate for instruction 7874: 17.1009% -Rate for instruction 7875: 17.1006% -Rate for instruction 7876: 17.0999% -Rate for instruction 7877: 17.0997% -Rate for instruction 7878: 17.0985% -Rate for instruction 7879: 17.0968% -Rate for instruction 7880: 17.0952% -Rate for instruction 7881: 17.0935% -Rate for instruction 7882: 17.0952% -Rate for instruction 7883: 17.0969% -Rate for instruction 7884: 17.0958% -Rate for instruction 7885: 17.096% -Rate for instruction 7886: 17.0948% -Rate for instruction 7887: 17.0946% -Rate for instruction 7888: 17.0934% -Rate for instruction 7889: 17.0932% -Rate for instruction 7890: 17.0925% -Rate for instruction 7891: 17.0913% -Rate for instruction 7892: 17.093% -Rate for instruction 7893: 17.0914% -Rate for instruction 7894: 17.0907% -Rate for instruction 7895: 17.089% -Rate for instruction 7896: 17.0907% -Rate for instruction 7897: 17.092% -Rate for instruction 7898: 17.0913% -Rate for instruction 7899: 17.0896% -Rate for instruction 7900: 17.0879% -Rate for instruction 7901: 17.0872% -Rate for instruction 7902: 17.088% -Rate for instruction 7903: 17.0863% -Rate for instruction 7904: 17.0856% -Rate for instruction 7905: 17.0839% -Rate for instruction 7906: 17.0837% -Rate for instruction 7907: 17.0845% -Rate for instruction 7908: 17.0847% -Rate for instruction 7909: 17.0855% -Rate for instruction 7910: 17.0858% -Rate for instruction 7911: 17.0851% -Rate for instruction 7912: 17.0873% -Rate for instruction 7913: 17.0895% -Rate for instruction 7914: 17.0878% -Rate for instruction 7915: 17.0881% -Rate for instruction 7916: 17.0888% -Rate for instruction 7917: 17.0881% -Rate for instruction 7918: 17.0899% -Rate for instruction 7919: 17.0926% -Rate for instruction 7920: 17.0943% -Rate for instruction 7921: 17.098% -Rate for instruction 7922: 17.1021% -Rate for instruction 7923: 17.1043% -Rate for instruction 7924: 17.1065% -Rate for instruction 7925: 17.1083% -Rate for instruction 7926: 17.1075% -Rate for instruction 7927: 17.1068% -Rate for instruction 7928: 17.1086% -Rate for instruction 7929: 17.1074% -Rate for instruction 7930: 17.1072% -Rate for instruction 7931: 17.1094% -Rate for instruction 7932: 17.1101% -Rate for instruction 7933: 17.1118% -Rate for instruction 7934: 17.1102% -Rate for instruction 7935: 17.1109% -Rate for instruction 7936: 17.1122% -Rate for instruction 7937: 17.111% -Rate for instruction 7938: 17.1103% -Rate for instruction 7939: 17.1101% -Rate for instruction 7940: 17.1089% -Rate for instruction 7941: 17.1082% -Rate for instruction 7942: 17.1099% -Rate for instruction 7943: 17.1097% -Rate for instruction 7944: 17.108% -Rate for instruction 7945: 17.1092% -Rate for instruction 7946: 17.109% -Rate for instruction 7947: 17.1088% -Rate for instruction 7948: 17.1096% -Rate for instruction 7949: 17.1079% -Rate for instruction 7950: 17.1082% -Rate for instruction 7951: 17.1089% -Rate for instruction 7952: 17.1072% -Rate for instruction 7953: 17.1065% -Rate for instruction 7954: 17.1083% -Rate for instruction 7955: 17.1071% -Rate for instruction 7956: 17.1059% -Rate for instruction 7957: 17.1062% -Rate for instruction 7958: 17.1045% -Rate for instruction 7959: 17.1057% -Rate for instruction 7960: 17.106% -Rate for instruction 7961: 17.1048% -Rate for instruction 7962: 17.1065% -Rate for instruction 7963: 17.1049% -Rate for instruction 7964: 17.1037% -Rate for instruction 7965: 17.1025% -Rate for instruction 7966: 17.1008% -Rate for instruction 7967: 17.1011% -Rate for instruction 7968: 17.0994% -Rate for instruction 7969: 17.1002% -Rate for instruction 7970: 17.0995% -Rate for instruction 7971: 17.0978% -Rate for instruction 7972: 17.0966% -Rate for instruction 7973: 17.0959% -Rate for instruction 7974: 17.0948% -Rate for instruction 7975: 17.0941% -Rate for instruction 7976: 17.0943% -Rate for instruction 7977: 17.0951% -Rate for instruction 7978: 17.0944% -Rate for instruction 7979: 17.0937% -Rate for instruction 7980: 17.0925% -Rate for instruction 7981: 17.0913% -Rate for instruction 7982: 17.0906% -Rate for instruction 7983: 17.0895% -Rate for instruction 7984: 17.0883% -Rate for instruction 7985: 17.0881% -Rate for instruction 7986: 17.0874% -Rate for instruction 7987: 17.0872% -Rate for instruction 7988: 17.0855% -Rate for instruction 7989: 17.0858% -Rate for instruction 7990: 17.0846% -Rate for instruction 7991: 17.0829% -Rate for instruction 7992: 17.0847% -Rate for instruction 7993: 17.083% -Rate for instruction 7994: 17.0828% -Rate for instruction 7995: 17.0816% -Rate for instruction 7996: 17.08% -Rate for instruction 7997: 17.0798% -Rate for instruction 7998: 17.0795% -Rate for instruction 7999: 17.0798% -Rate for instruction 8000: 17.0786% -Rate for instruction 8001: 17.0808% -Rate for instruction 8002: 17.0806% -Rate for instruction 8003: 17.079% -Rate for instruction 8004: 17.0778% -Rate for instruction 8005: 17.0766% -Rate for instruction 8006: 17.0764% -Rate for instruction 8007: 17.0752% -Rate for instruction 8008: 17.0765% -Rate for instruction 8009: 17.0791% -Rate for instruction 8010: 17.0818% -Rate for instruction 8011: 17.0801% -Rate for instruction 8012: 17.079% -Rate for instruction 8013: 17.0773% -Rate for instruction 8014: 17.0771% -Rate for instruction 8015: 17.0779% -Rate for instruction 8016: 17.0791% -Rate for instruction 8017: 17.0803% -Rate for instruction 8018: 17.0791% -Rate for instruction 8019: 17.0775% -Rate for instruction 8020: 17.0763% -Rate for instruction 8021: 17.0766% -Rate for instruction 8022: 17.0759% -Rate for instruction 8023: 17.0757% -Rate for instruction 8024: 17.075% -Rate for instruction 8025: 17.0762% -Rate for instruction 8026: 17.0746% -Rate for instruction 8027: 17.0734% -Rate for instruction 8028: 17.0732% -Rate for instruction 8029: 17.0735% -Rate for instruction 8030: 17.0723% -Rate for instruction 8031: 17.0726% -Rate for instruction 8032: 17.0714% -Rate for instruction 8033: 17.0722% -Rate for instruction 8034: 17.071% -Rate for instruction 8035: 17.0717% -Rate for instruction 8036: 17.0706% -Rate for instruction 8037: 17.0728% -Rate for instruction 8038: 17.0749% -Rate for instruction 8039: 17.0771% -Rate for instruction 8040: 17.0755% -Rate for instruction 8041: 17.0786% -Rate for instruction 8042: 17.077% -Rate for instruction 8043: 17.0777% -Rate for instruction 8044: 17.0804% -Rate for instruction 8045: 17.0787% -Rate for instruction 8046: 17.0804% -Rate for instruction 8047: 17.0826% -Rate for instruction 8048: 17.0819% -Rate for instruction 8049: 17.0807% -Rate for instruction 8050: 17.0801% -Rate for instruction 8051: 17.0789% -Rate for instruction 8052: 17.0777% -Rate for instruction 8053: 17.077% -Rate for instruction 8054: 17.0768% -Rate for instruction 8055: 17.0752% -Rate for instruction 8056: 17.074% -Rate for instruction 8057: 17.0733% -Rate for instruction 8058: 17.0731% -Rate for instruction 8059: 17.0729% -Rate for instruction 8060: 17.0727% -Rate for instruction 8061: 17.0711% -Rate for instruction 8062: 17.0704% -Rate for instruction 8063: 17.0692% -Rate for instruction 8064: 17.069% -Rate for instruction 8065: 17.0678% -Rate for instruction 8066: 17.0667% -Rate for instruction 8067: 17.066% -Rate for instruction 8068: 17.0672% -Rate for instruction 8069: 17.0675% -Rate for instruction 8070: 17.0682% -Rate for instruction 8071: 17.069% -Rate for instruction 8072: 17.0688% -Rate for instruction 8073: 17.069% -Rate for instruction 8074: 17.0683% -Rate for instruction 8075: 17.0691% -Rate for instruction 8076: 17.0694% -Rate for instruction 8077: 17.0682% -Rate for instruction 8078: 17.0694% -Rate for instruction 8079: 17.073% -Rate for instruction 8080: 17.0761% -Rate for instruction 8081: 17.0769% -Rate for instruction 8082: 17.0772% -Rate for instruction 8083: 17.0788% -Rate for instruction 8084: 17.081% -Rate for instruction 8085: 17.0813% -Rate for instruction 8086: 17.0796% -Rate for instruction 8087: 17.0794% -Rate for instruction 8088: 17.0778% -Rate for instruction 8089: 17.0766% -Rate for instruction 8090: 17.075% -Rate for instruction 8091: 17.0743% -Rate for instruction 8092: 17.076% -Rate for instruction 8093: 17.0763% -Rate for instruction 8094: 17.0761% -Rate for instruction 8095: 17.0749% -Rate for instruction 8096: 17.0738% -Rate for instruction 8097: 17.0721% -Rate for instruction 8098: 17.071% -Rate for instruction 8099: 17.0703% -Rate for instruction 8100: 17.0691% -Rate for instruction 8101: 17.0689% -Rate for instruction 8102: 17.0687% -Rate for instruction 8103: 17.0675% -Rate for instruction 8104: 17.0673% -Rate for instruction 8105: 17.0676% -Rate for instruction 8106: 17.0669% -Rate for instruction 8107: 17.0667% -Rate for instruction 8108: 17.0665% -Rate for instruction 8109: 17.0682% -Rate for instruction 8110: 17.067% -Rate for instruction 8111: 17.0668% -Rate for instruction 8112: 17.0657% -Rate for instruction 8113: 17.0655% -Rate for instruction 8114: 17.0638% -Rate for instruction 8115: 17.0627% -Rate for instruction 8116: 17.0634% -Rate for instruction 8117: 17.0646% -Rate for instruction 8118: 17.0654% -Rate for instruction 8119: 17.0666% -Rate for instruction 8120: 17.0669% -Rate for instruction 8121: 17.0652% -Rate for instruction 8122: 17.0636% -Rate for instruction 8123: 17.0639% -Rate for instruction 8124: 17.0627% -Rate for instruction 8125: 17.0625% -Rate for instruction 8126: 17.0618% -Rate for instruction 8127: 17.0626% -Rate for instruction 8128: 17.0638% -Rate for instruction 8129: 17.0645% -Rate for instruction 8130: 17.0653% -Rate for instruction 8131: 17.067% -Rate for instruction 8132: 17.0667% -Rate for instruction 8133: 17.0694% -Rate for instruction 8134: 17.0715% -Rate for instruction 8135: 17.0699% -Rate for instruction 8136: 17.0692% -Rate for instruction 8137: 17.07% -Rate for instruction 8138: 17.0707% -Rate for instruction 8139: 17.0691% -Rate for instruction 8140: 17.0684% -Rate for instruction 8141: 17.0677% -Rate for instruction 8142: 17.0675% -Rate for instruction 8143: 17.0659% -Rate for instruction 8144: 17.0662% -Rate for instruction 8145: 17.0664% -Rate for instruction 8146: 17.0648% -Rate for instruction 8147: 17.0636% -Rate for instruction 8148: 17.0634% -Rate for instruction 8149: 17.0618% -Rate for instruction 8150: 17.0602% -Rate for instruction 8151: 17.06% -Rate for instruction 8152: 17.0593% -Rate for instruction 8153: 17.0582% -Rate for instruction 8154: 17.0594% -Rate for instruction 8155: 17.0601% -Rate for instruction 8156: 17.0618% -Rate for instruction 8157: 17.0602% -Rate for instruction 8158: 17.0604% -Rate for instruction 8159: 17.0593% -Rate for instruction 8160: 17.0614% -Rate for instruction 8161: 17.0636% -Rate for instruction 8162: 17.0639% -Rate for instruction 8163: 17.0646% -Rate for instruction 8164: 17.0635% -Rate for instruction 8165: 17.0632% -Rate for instruction 8166: 17.063% -Rate for instruction 8167: 17.0619% -Rate for instruction 8168: 17.0612% -Rate for instruction 8169: 17.0652% -Rate for instruction 8170: 17.0655% -Rate for instruction 8171: 17.0658% -Rate for instruction 8172: 17.0679% -Rate for instruction 8173: 17.071% -Rate for instruction 8174: 17.0694% -Rate for instruction 8175: 17.0692% -Rate for instruction 8176: 17.0676% -Rate for instruction 8177: 17.0707% -Rate for instruction 8178: 17.0705% -Rate for instruction 8179: 17.0721% -Rate for instruction 8180: 17.0757% -Rate for instruction 8181: 17.0741% -Rate for instruction 8182: 17.0743% -Rate for instruction 8183: 17.0755% -Rate for instruction 8184: 17.0753% -Rate for instruction 8185: 17.0737% -Rate for instruction 8186: 17.0754% -Rate for instruction 8187: 17.0747% -Rate for instruction 8188: 17.0754% -Rate for instruction 8189: 17.0766% -Rate for instruction 8190: 17.0778% -Rate for instruction 8191: 17.0786% -Rate for instruction 8192: 17.0821% -Rate for instruction 8193: 17.0814% -Rate for instruction 8194: 17.0826% -Rate for instruction 8195: 17.0834% -Rate for instruction 8196: 17.0827% -Rate for instruction 8197: 17.082% -Rate for instruction 8198: 17.0818% -Rate for instruction 8199: 17.0816% -Rate for instruction 8200: 17.08% -Rate for instruction 8201: 17.0793% -Rate for instruction 8202: 17.0782% -Rate for instruction 8203: 17.0766% -Rate for instruction 8204: 17.0764% -Rate for instruction 8205: 17.0762% -Rate for instruction 8206: 17.0755% -Rate for instruction 8207: 17.0753% -Rate for instruction 8208: 17.0769% -Rate for instruction 8209: 17.0781% -Rate for instruction 8210: 17.0765% -Rate for instruction 8211: 17.0777% -Rate for instruction 8212: 17.0771% -Rate for instruction 8213: 17.0783% -Rate for instruction 8214: 17.0771% -Rate for instruction 8215: 17.0769% -Rate for instruction 8216: 17.0753% -Rate for instruction 8217: 17.0756% -Rate for instruction 8218: 17.0739% -Rate for instruction 8219: 17.0761% -Rate for instruction 8220: 17.0773% -Rate for instruction 8221: 17.0757% -Rate for instruction 8222: 17.0769% -Rate for instruction 8223: 17.079% -Rate for instruction 8224: 17.0802% -Rate for instruction 8225: 17.0828% -Rate for instruction 8226: 17.0826% -Rate for instruction 8227: 17.0861% -Rate for instruction 8228: 17.0873% -Rate for instruction 8229: 17.0894% -Rate for instruction 8230: 17.0902% -Rate for instruction 8231: 17.0895% -Rate for instruction 8232: 17.0912% -Rate for instruction 8233: 17.0924% -Rate for instruction 8234: 17.0917% -Rate for instruction 8235: 17.091% -Rate for instruction 8236: 17.0894% -Rate for instruction 8237: 17.0887% -Rate for instruction 8238: 17.0871% -Rate for instruction 8239: 17.0864% -Rate for instruction 8240: 17.0862% -Rate for instruction 8241: 17.0851% -Rate for instruction 8242: 17.0835% -Rate for instruction 8243: 17.0828% -Rate for instruction 8244: 17.0821% -Rate for instruction 8245: 17.081% -Rate for instruction 8246: 17.0803% -Rate for instruction 8247: 17.0787% -Rate for instruction 8248: 17.0781% -Rate for instruction 8249: 17.0774% -Rate for instruction 8250: 17.0772% -Rate for instruction 8251: 17.0765% -Rate for instruction 8252: 17.0749% -Rate for instruction 8253: 17.0761% -Rate for instruction 8254: 17.0754% -Rate for instruction 8255: 17.0771% -Rate for instruction 8256: 17.0811% -Rate for instruction 8257: 17.0841% -Rate for instruction 8258: 17.0853% -Rate for instruction 8259: 17.0837% -Rate for instruction 8260: 17.0854% -Rate for instruction 8261: 17.0852% -Rate for instruction 8262: 17.0864% -Rate for instruction 8263: 17.0876% -Rate for instruction 8264: 17.0892% -Rate for instruction 8265: 17.0876% -Rate for instruction 8266: 17.0874% -Rate for instruction 8267: 17.0858% -Rate for instruction 8268: 17.0847% -Rate for instruction 8269: 17.0831% -Rate for instruction 8270: 17.0824% -Rate for instruction 8271: 17.0808% -Rate for instruction 8272: 17.0824% -Rate for instruction 8273: 17.0813% -Rate for instruction 8274: 17.082% -Rate for instruction 8275: 17.0814% -Rate for instruction 8276: 17.0802% -Rate for instruction 8277: 17.0796% -Rate for instruction 8278: 17.0784% -Rate for instruction 8279: 17.0792% -Rate for instruction 8280: 17.0808% -Rate for instruction 8281: 17.0797% -Rate for instruction 8282: 17.079% -Rate for instruction 8283: 17.0807% -Rate for instruction 8284: 17.0814% -Rate for instruction 8285: 17.0821% -Rate for instruction 8286: 17.0838% -Rate for instruction 8287: 17.0849% -Rate for instruction 8288: 17.0857% -Rate for instruction 8289: 17.0859% -Rate for instruction 8290: 17.0843% -Rate for instruction 8291: 17.0855% -Rate for instruction 8292: 17.0867% -Rate for instruction 8293: 17.0851% -Rate for instruction 8294: 17.0844% -Rate for instruction 8295: 17.0828% -Rate for instruction 8296: 17.0822% -Rate for instruction 8297: 17.082% -Rate for instruction 8298: 17.0827% -Rate for instruction 8299: 17.0825% -Rate for instruction 8300: 17.0818% -Rate for instruction 8301: 17.0835% -Rate for instruction 8302: 17.0846% -Rate for instruction 8303: 17.0858% -Rate for instruction 8304: 17.0875% -Rate for instruction 8305: 17.0891% -Rate for instruction 8306: 17.088% -Rate for instruction 8307: 17.0864% -Rate for instruction 8308: 17.0876% -Rate for instruction 8309: 17.0883% -Rate for instruction 8310: 17.0895% -Rate for instruction 8311: 17.0888% -Rate for instruction 8312: 17.0877% -Rate for instruction 8313: 17.087% -Rate for instruction 8314: 17.0868% -Rate for instruction 8315: 17.0852% -Rate for instruction 8316: 17.0855% -Rate for instruction 8317: 17.0844% -Rate for instruction 8318: 17.0846% -Rate for instruction 8319: 17.083% -Rate for instruction 8320: 17.0833% -Rate for instruction 8321: 17.0817% -Rate for instruction 8322: 17.081% -Rate for instruction 8323: 17.0817% -Rate for instruction 8324: 17.0857% -Rate for instruction 8325: 17.0887% -Rate for instruction 8326: 17.0913% -Rate for instruction 8327: 17.0943% -Rate for instruction 8328: 17.0983% -Rate for instruction 8329: 17.1004% -Rate for instruction 8330: 17.1025% -Rate for instruction 8331: 17.1023% -Rate for instruction 8332: 17.1016% -Rate for instruction 8333: 17.1014% -Rate for instruction 8334: 17.0998% -Rate for instruction 8335: 17.0991% -Rate for instruction 8336: 17.1012% -Rate for instruction 8337: 17.1033% -Rate for instruction 8338: 17.1036% -Rate for instruction 8339: 17.1057% -Rate for instruction 8340: 17.1083% -Rate for instruction 8341: 17.1076% -Rate for instruction 8342: 17.106% -Rate for instruction 8343: 17.1053% -Rate for instruction 8344: 17.1037% -Rate for instruction 8345: 17.1058% -Rate for instruction 8346: 17.1047% -Rate for instruction 8347: 17.105% -Rate for instruction 8348: 17.1043% -Rate for instruction 8349: 17.1046% -Rate for instruction 8350: 17.1076% -Rate for instruction 8351: 17.1092% -Rate for instruction 8352: 17.1095% -Rate for instruction 8353: 17.1093% -Rate for instruction 8354: 17.1114% -Rate for instruction 8355: 17.1111% -Rate for instruction 8356: 17.1114% -Rate for instruction 8357: 17.1126% -Rate for instruction 8358: 17.111% -Rate for instruction 8359: 17.1112% -Rate for instruction 8360: 17.1101% -Rate for instruction 8361: 17.1104% -Rate for instruction 8362: 17.1106% -Rate for instruction 8363: 17.11% -Rate for instruction 8364: 17.1125% -Rate for instruction 8365: 17.1137% -Rate for instruction 8366: 17.1144% -Rate for instruction 8367: 17.1174% -Rate for instruction 8368: 17.1181% -Rate for instruction 8369: 17.1225% -Rate for instruction 8370: 17.1269% -Rate for instruction 8371: 17.1258% -Rate for instruction 8372: 17.1246% -Rate for instruction 8373: 17.1249% -Rate for instruction 8374: 17.1242% -Rate for instruction 8375: 17.1236% -Rate for instruction 8376: 17.1238% -Rate for instruction 8377: 17.1222% -Rate for instruction 8378: 17.122% -Rate for instruction 8379: 17.1218% -Rate for instruction 8380: 17.1207% -Rate for instruction 8381: 17.12% -Rate for instruction 8382: 17.1184% -Rate for instruction 8383: 17.1187% -Rate for instruction 8384: 17.1176% -Rate for instruction 8385: 17.1169% -Rate for instruction 8386: 17.1153% -Rate for instruction 8387: 17.1151% -Rate for instruction 8388: 17.114% -Rate for instruction 8389: 17.1133% -Rate for instruction 8390: 17.1127% -Rate for instruction 8391: 17.1115% -Rate for instruction 8392: 17.1118% -Rate for instruction 8393: 17.1148% -Rate for instruction 8394: 17.1132% -Rate for instruction 8395: 17.1153% -Rate for instruction 8396: 17.1174% -Rate for instruction 8397: 17.1195% -Rate for instruction 8398: 17.1215% -Rate for instruction 8399: 17.1227% -Rate for instruction 8400: 17.1243% -Rate for instruction 8401: 17.1246% -Rate for instruction 8402: 17.1262% -Rate for instruction 8403: 17.1265% -Rate for instruction 8404: 17.1249% -Rate for instruction 8405: 17.1238% -Rate for instruction 8406: 17.1226% -Rate for instruction 8407: 17.1211% -Rate for instruction 8408: 17.1199% -Rate for instruction 8409: 17.1184% -Rate for instruction 8410: 17.1182% -Rate for instruction 8411: 17.1175% -Rate for instruction 8412: 17.1159% -Rate for instruction 8413: 17.1143% -Rate for instruction 8414: 17.1137% -Rate for instruction 8415: 17.1153% -Rate for instruction 8416: 17.1169% -Rate for instruction 8417: 17.1153% -Rate for instruction 8418: 17.1142% -Rate for instruction 8419: 17.1136% -Rate for instruction 8420: 17.1124% -Rate for instruction 8421: 17.1127% -Rate for instruction 8422: 17.1116% -Rate for instruction 8423: 17.1127% -Rate for instruction 8424: 17.1121% -Rate for instruction 8425: 17.1123% -Rate for instruction 8426: 17.1117% -Rate for instruction 8427: 17.1115% -Rate for instruction 8428: 17.1117% -Rate for instruction 8429: 17.1111% -Rate for instruction 8430: 17.1099% -Rate for instruction 8431: 17.1088% -Rate for instruction 8432: 17.1072% -Rate for instruction 8433: 17.107% -Rate for instruction 8434: 17.1055% -Rate for instruction 8435: 17.1044% -Rate for instruction 8436: 17.1032% -Rate for instruction 8437: 17.1021% -Rate for instruction 8438: 17.1037% -Rate for instruction 8439: 17.1063% -Rate for instruction 8440: 17.1079% -Rate for instruction 8441: 17.1068% -Rate for instruction 8442: 17.1066% -Rate for instruction 8443: 17.1059% -Rate for instruction 8444: 17.1048% -Rate for instruction 8445: 17.1046% -Rate for instruction 8446: 17.1048% -Rate for instruction 8447: 17.1065% -Rate for instruction 8448: 17.1049% -Rate for instruction 8449: 17.1033% -Rate for instruction 8450: 17.1022% -Rate for instruction 8451: 17.102% -Rate for instruction 8452: 17.1013% -Rate for instruction 8453: 17.1002% -Rate for instruction 8454: 17.1028% -Rate for instruction 8455: 17.1012% -Rate for instruction 8456: 17.1042% -Rate for instruction 8457: 17.1031% -Rate for instruction 8458: 17.1051% -Rate for instruction 8459: 17.1077% -Rate for instruction 8460: 17.1088% -Rate for instruction 8461: 17.1095% -Rate for instruction 8462: 17.1098% -Rate for instruction 8463: 17.11% -Rate for instruction 8464: 17.1112% -Rate for instruction 8465: 17.1137% -Rate for instruction 8466: 17.1167% -Rate for instruction 8467: 17.1151% -Rate for instruction 8468: 17.1149% -Rate for instruction 8469: 17.1156% -Rate for instruction 8470: 17.1145% -Rate for instruction 8471: 17.1161% -Rate for instruction 8472: 17.1145% -Rate for instruction 8473: 17.1152% -Rate for instruction 8474: 17.116% -Rate for instruction 8475: 17.1144% -Rate for instruction 8476: 17.1155% -Rate for instruction 8477: 17.114% -Rate for instruction 8478: 17.1138% -Rate for instruction 8479: 17.1158% -Rate for instruction 8480: 17.1165% -Rate for instruction 8481: 17.115% -Rate for instruction 8482: 17.1143% -Rate for instruction 8483: 17.1146% -Rate for instruction 8484: 17.1135% -Rate for instruction 8485: 17.1119% -Rate for instruction 8486: 17.1153% -Rate for instruction 8487: 17.1192% -Rate for instruction 8488: 17.1213% -Rate for instruction 8489: 17.1224% -Rate for instruction 8490: 17.124% -Rate for instruction 8491: 17.1243% -Rate for instruction 8492: 17.1245% -Rate for instruction 8493: 17.1248% -Rate for instruction 8494: 17.1232% -Rate for instruction 8495: 17.123% -Rate for instruction 8496: 17.1228% -Rate for instruction 8497: 17.1212% -Rate for instruction 8498: 17.121% -Rate for instruction 8499: 17.1204% -Rate for instruction 8500: 17.1188% -Rate for instruction 8501: 17.1172% -Rate for instruction 8502: 17.1175% -Rate for instruction 8503: 17.1177% -Rate for instruction 8504: 17.1166% -Rate for instruction 8505: 17.1169% -Rate for instruction 8506: 17.1176% -Rate for instruction 8507: 17.1165% -Rate for instruction 8508: 17.1154% -Rate for instruction 8509: 17.1143% -Rate for instruction 8510: 17.1136% -Rate for instruction 8511: 17.1125% -Rate for instruction 8512: 17.1114% -Rate for instruction 8513: 17.1121% -Rate for instruction 8514: 17.1128% -Rate for instruction 8515: 17.1135% -Rate for instruction 8516: 17.1124% -Rate for instruction 8517: 17.1149% -Rate for instruction 8518: 17.1183% -Rate for instruction 8519: 17.1217% -Rate for instruction 8520: 17.1224% -Rate for instruction 8521: 17.1254% -Rate for instruction 8522: 17.1252% -Rate for instruction 8523: 17.124% -Rate for instruction 8524: 17.1247% -Rate for instruction 8525: 17.1268% -Rate for instruction 8526: 17.1279% -Rate for instruction 8527: 17.1264% -Rate for instruction 8528: 17.1298% -Rate for instruction 8529: 17.1305% -Rate for instruction 8530: 17.1294% -Rate for instruction 8531: 17.1278% -Rate for instruction 8532: 17.1272% -Rate for instruction 8533: 17.1256% -Rate for instruction 8534: 17.1245% -Rate for instruction 8535: 17.123% -Rate for instruction 8536: 17.1228% -Rate for instruction 8537: 17.1225% -Rate for instruction 8538: 17.121% -Rate for instruction 8539: 17.1203% -Rate for instruction 8540: 17.1201% -Rate for instruction 8541: 17.1195% -Rate for instruction 8542: 17.1179% -Rate for instruction 8543: 17.1164% -Rate for instruction 8544: 17.1171% -Rate for instruction 8545: 17.1178% -Rate for instruction 8546: 17.1171% -Rate for instruction 8547: 17.1174% -Rate for instruction 8548: 17.1167% -Rate for instruction 8549: 17.1161% -Rate for instruction 8550: 17.1154% -Rate for instruction 8551: 17.1152% -Rate for instruction 8552: 17.1146% -Rate for instruction 8553: 17.1139% -Rate for instruction 8554: 17.1141% -Rate for instruction 8555: 17.1126% -Rate for instruction 8556: 17.111% -Rate for instruction 8557: 17.1108% -Rate for instruction 8558: 17.1106% -Rate for instruction 8559: 17.1104% -Rate for instruction 8560: 17.1102% -Rate for instruction 8561: 17.1105% -Rate for instruction 8562: 17.1094% -Rate for instruction 8563: 17.1083% -Rate for instruction 8564: 17.1076% -Rate for instruction 8565: 17.1065% -Rate for instruction 8566: 17.1054% -Rate for instruction 8567: 17.1039% -Rate for instruction 8568: 17.1037% -Rate for instruction 8569: 17.1035% -Rate for instruction 8570: 17.1042% -Rate for instruction 8571: 17.1026% -Rate for instruction 8572: 17.1051% -Rate for instruction 8573: 17.1076% -Rate for instruction 8574: 17.1065% -Rate for instruction 8575: 17.1054% -Rate for instruction 8576: 17.107% -Rate for instruction 8577: 17.1073% -Rate for instruction 8578: 17.1089% -Rate for instruction 8579: 17.1073% -Rate for instruction 8580: 17.1085% -Rate for instruction 8581: 17.1092% -Rate for instruction 8582: 17.1076% -Rate for instruction 8583: 17.1061% -Rate for instruction 8584: 17.1054% -Rate for instruction 8585: 17.1057% -Rate for instruction 8586: 17.1046% -Rate for instruction 8587: 17.1062% -Rate for instruction 8588: 17.1073% -Rate for instruction 8589: 17.1062% -Rate for instruction 8590: 17.1051% -Rate for instruction 8591: 17.104% -Rate for instruction 8592: 17.1029% -Rate for instruction 8593: 17.1027% -Rate for instruction 8594: 17.1012% -Rate for instruction 8595: 17.1005% -Rate for instruction 8596: 17.099% -Rate for instruction 8597: 17.0997% -Rate for instruction 8598: 17.0986% -Rate for instruction 8599: 17.0984% -Rate for instruction 8600: 17.0968% -Rate for instruction 8601: 17.0962% -Rate for instruction 8602: 17.0978% -Rate for instruction 8603: 17.0963% -Rate for instruction 8604: 17.0978% -Rate for instruction 8605: 17.1003% -Rate for instruction 8606: 17.1024% -Rate for instruction 8607: 17.1062% -Rate for instruction 8608: 17.11% -Rate for instruction 8609: 17.1111% -Rate for instruction 8610: 17.1118% -Rate for instruction 8611: 17.1116% -Rate for instruction 8612: 17.1123% -Rate for instruction 8613: 17.1117% -Rate for instruction 8614: 17.111% -Rate for instruction 8615: 17.1099% -Rate for instruction 8616: 17.1084% -Rate for instruction 8617: 17.1095% -Rate for instruction 8618: 17.1107% -Rate for instruction 8619: 17.1114% -Rate for instruction 8620: 17.1116% -Rate for instruction 8621: 17.1123% -Rate for instruction 8622: 17.1143% -Rate for instruction 8623: 17.1168% -Rate for instruction 8624: 17.1193% -Rate for instruction 8625: 17.1222% -Rate for instruction 8626: 17.1242% -Rate for instruction 8627: 17.1254% -Rate for instruction 8628: 17.1287% -Rate for instruction 8629: 17.1276% -Rate for instruction 8630: 17.1288% -Rate for instruction 8631: 17.1308% -Rate for instruction 8632: 17.1315% -Rate for instruction 8633: 17.1313% -Rate for instruction 8634: 17.132% -Rate for instruction 8635: 17.1309% -Rate for instruction 8636: 17.1293% -Rate for instruction 8637: 17.1309% -Rate for instruction 8638: 17.1325% -Rate for instruction 8639: 17.1341% -Rate for instruction 8640: 17.1365% -Rate for instruction 8641: 17.1368% -Rate for instruction 8642: 17.1375% -Rate for instruction 8643: 17.1382% -Rate for instruction 8644: 17.1402% -Rate for instruction 8645: 17.14% -Rate for instruction 8646: 17.1411% -Rate for instruction 8647: 17.1418% -Rate for instruction 8648: 17.1403% -Rate for instruction 8649: 17.1418% -Rate for instruction 8650: 17.1439% -Rate for instruction 8651: 17.1441% -Rate for instruction 8652: 17.1448% -Rate for instruction 8653: 17.1455% -Rate for instruction 8654: 17.1444% -Rate for instruction 8655: 17.1464% -Rate for instruction 8656: 17.1462% -Rate for instruction 8657: 17.1482% -Rate for instruction 8658: 17.1502% -Rate for instruction 8659: 17.1536% -Rate for instruction 8660: 17.1552% -Rate for instruction 8661: 17.1541% -Rate for instruction 8662: 17.1552% -Rate for instruction 8663: 17.1568% -Rate for instruction 8664: 17.1566% -Rate for instruction 8665: 17.1563% -Rate for instruction 8666: 17.1548% -Rate for instruction 8667: 17.1537% -Rate for instruction 8668: 17.1522% -Rate for instruction 8669: 17.1529% -Rate for instruction 8670: 17.1513% -Rate for instruction 8671: 17.1502% -Rate for instruction 8672: 17.1487% -Rate for instruction 8673: 17.1485% -Rate for instruction 8674: 17.1487% -Rate for instruction 8675: 17.1477% -Rate for instruction 8676: 17.147% -Rate for instruction 8677: 17.1459% -Rate for instruction 8678: 17.1448% -Rate for instruction 8679: 17.1433% -Rate for instruction 8680: 17.1422% -Rate for instruction 8681: 17.1425% -Rate for instruction 8682: 17.1418% -Rate for instruction 8683: 17.1407% -Rate for instruction 8684: 17.1418% -Rate for instruction 8685: 17.1439% -Rate for instruction 8686: 17.1441% -Rate for instruction 8687: 17.1448% -Rate for instruction 8688: 17.1446% -Rate for instruction 8689: 17.1448% -Rate for instruction 8690: 17.1433% -Rate for instruction 8691: 17.1422% -Rate for instruction 8692: 17.1424% -Rate for instruction 8693: 17.1409% -Rate for instruction 8694: 17.1394% -Rate for instruction 8695: 17.1392% -Rate for instruction 8696: 17.1381% -Rate for instruction 8697: 17.1383% -Rate for instruction 8698: 17.1408% -Rate for instruction 8699: 17.1424% -Rate for instruction 8700: 17.1417% -Rate for instruction 8701: 17.1424% -Rate for instruction 8702: 17.1409% -Rate for instruction 8703: 17.142% -Rate for instruction 8704: 17.1431% -Rate for instruction 8705: 17.1438% -Rate for instruction 8706: 17.1445% -Rate for instruction 8707: 17.1429% -Rate for instruction 8708: 17.1419% -Rate for instruction 8709: 17.1403% -Rate for instruction 8710: 17.1406% -Rate for instruction 8711: 17.1417% -Rate for instruction 8712: 17.1424% -Rate for instruction 8713: 17.1422% -Rate for instruction 8714: 17.1429% -Rate for instruction 8715: 17.144% -Rate for instruction 8716: 17.1451% -Rate for instruction 8717: 17.1436% -Rate for instruction 8718: 17.1434% -Rate for instruction 8719: 17.1467% -Rate for instruction 8720: 17.1483% -Rate for instruction 8721: 17.1481% -Rate for instruction 8722: 17.1474% -Rate for instruction 8723: 17.1485% -Rate for instruction 8724: 17.1475% -Rate for instruction 8725: 17.1473% -Rate for instruction 8726: 17.1493% -Rate for instruction 8727: 17.1526% -Rate for instruction 8728: 17.1511% -Rate for instruction 8729: 17.15% -Rate for instruction 8730: 17.1498% -Rate for instruction 8731: 17.15% -Rate for instruction 8732: 17.1498% -Rate for instruction 8733: 17.1522% -Rate for instruction 8734: 17.1534% -Rate for instruction 8735: 17.1549% -Rate for instruction 8736: 17.1574% -Rate for instruction 8737: 17.1589% -Rate for instruction 8738: 17.1609% -Rate for instruction 8739: 17.1603% -Rate for instruction 8740: 17.1587% -Rate for instruction 8741: 17.1603% -Rate for instruction 8742: 17.1619% -Rate for instruction 8743: 17.1603% -Rate for instruction 8744: 17.161% -Rate for instruction 8745: 17.1621% -Rate for instruction 8746: 17.1606% -Rate for instruction 8747: 17.1626% -Rate for instruction 8748: 17.1672% -Rate for instruction 8749: 17.1701% -Rate for instruction 8750: 17.1721% -Rate for instruction 8751: 17.1706% -Rate for instruction 8752: 17.1699% -Rate for instruction 8753: 17.1684% -Rate for instruction 8754: 17.1678% -Rate for instruction 8755: 17.1671% -Rate for instruction 8756: 17.1656% -Rate for instruction 8757: 17.1641% -Rate for instruction 8758: 17.163% -Rate for instruction 8759: 17.1619% -Rate for instruction 8760: 17.163% -Rate for instruction 8761: 17.162% -Rate for instruction 8762: 17.1618% -Rate for instruction 8763: 17.1616% -Rate for instruction 8764: 17.1609% -Rate for instruction 8765: 17.1594% -Rate for instruction 8766: 17.1592% -Rate for instruction 8767: 17.1581% -Rate for instruction 8768: 17.1597% -Rate for instruction 8769: 17.1586% -Rate for instruction 8770: 17.1614% -Rate for instruction 8771: 17.163% -Rate for instruction 8772: 17.1628% -Rate for instruction 8773: 17.1661% -Rate for instruction 8774: 17.1681% -Rate for instruction 8775: 17.171% -Rate for instruction 8776: 17.1708% -Rate for instruction 8777: 17.1697% -Rate for instruction 8778: 17.1699% -Rate for instruction 8779: 17.171% -Rate for instruction 8780: 17.1695% -Rate for instruction 8781: 17.168% -Rate for instruction 8782: 17.1691% -Rate for instruction 8783: 17.1676% -Rate for instruction 8784: 17.1665% -Rate for instruction 8785: 17.165% -Rate for instruction 8786: 17.1657% -Rate for instruction 8787: 17.1646% -Rate for instruction 8788: 17.1648% -Rate for instruction 8789: 17.1659% -Rate for instruction 8790: 17.1653% -Rate for instruction 8791: 17.166% -Rate for instruction 8792: 17.1649% -Rate for instruction 8793: 17.1655% -Rate for instruction 8794: 17.1645% -Rate for instruction 8795: 17.163% -Rate for instruction 8796: 17.1628% -Rate for instruction 8797: 17.1617% -Rate for instruction 8798: 17.1602% -Rate for instruction 8799: 17.1591% -Rate for instruction 8800: 17.1589% -Rate for instruction 8801: 17.1578% -Rate for instruction 8802: 17.1563% -Rate for instruction 8803: 17.1561% -Rate for instruction 8804: 17.1568% -Rate for instruction 8805: 17.157% -Rate for instruction 8806: 17.1572% -Rate for instruction 8807: 17.1557% -Rate for instruction 8808: 17.156% -Rate for instruction 8809: 17.1553% -Rate for instruction 8810: 17.1543% -Rate for instruction 8811: 17.1536% -Rate for instruction 8812: 17.153% -Rate for instruction 8813: 17.1537% -Rate for instruction 8814: 17.1535% -Rate for instruction 8815: 17.1537% -Rate for instruction 8816: 17.1522% -Rate for instruction 8817: 17.152% -Rate for instruction 8818: 17.1505% -Rate for instruction 8819: 17.1507% -Rate for instruction 8820: 17.1505% -Rate for instruction 8821: 17.1512% -Rate for instruction 8822: 17.1497% -Rate for instruction 8823: 17.1495% -Rate for instruction 8824: 17.1484% -Rate for instruction 8825: 17.1473% -Rate for instruction 8826: 17.1463% -Rate for instruction 8827: 17.1465% -Rate for instruction 8828: 17.1454% -Rate for instruction 8829: 17.1444% -Rate for instruction 8830: 17.1437% -Rate for instruction 8831: 17.1466% -Rate for instruction 8832: 17.149% -Rate for instruction 8833: 17.1501% -Rate for instruction 8834: 17.1486% -Rate for instruction 8835: 17.1479% -Rate for instruction 8836: 17.1482% -Rate for instruction 8837: 17.1515% -Rate for instruction 8838: 17.1521% -Rate for instruction 8839: 17.1541% -Rate for instruction 8840: 17.1556% -Rate for instruction 8841: 17.1554% -Rate for instruction 8842: 17.1587% -Rate for instruction 8843: 17.1577% -Rate for instruction 8844: 17.1583% -Rate for instruction 8845: 17.1573% -Rate for instruction 8846: 17.1562% -Rate for instruction 8847: 17.1551% -Rate for instruction 8848: 17.1545% -Rate for instruction 8849: 17.153% -Rate for instruction 8850: 17.1532% -Rate for instruction 8851: 17.1521% -Rate for instruction 8852: 17.1511% -Rate for instruction 8853: 17.153% -Rate for instruction 8854: 17.1533% -Rate for instruction 8855: 17.1526% -Rate for instruction 8856: 17.1524% -Rate for instruction 8857: 17.1527% -Rate for instruction 8858: 17.1516% -Rate for instruction 8859: 17.1505% -Rate for instruction 8860: 17.149% -Rate for instruction 8861: 17.148% -Rate for instruction 8862: 17.1465% -Rate for instruction 8863: 17.1467% -Rate for instruction 8864: 17.1474% -Rate for instruction 8865: 17.1459% -Rate for instruction 8866: 17.1483% -Rate for instruction 8867: 17.1468% -Rate for instruction 8868: 17.1488% -Rate for instruction 8869: 17.1507% -Rate for instruction 8870: 17.1514% -Rate for instruction 8871: 17.1534% -Rate for instruction 8872: 17.1558% -Rate for instruction 8873: 17.1547% -Rate for instruction 8874: 17.1567% -Rate for instruction 8875: 17.1552% -Rate for instruction 8876: 17.1554% -Rate for instruction 8877: 17.1543% -Rate for instruction 8878: 17.1537% -Rate for instruction 8879: 17.1522% -Rate for instruction 8880: 17.152% -Rate for instruction 8881: 17.1514% -Rate for instruction 8882: 17.1512% -Rate for instruction 8883: 17.1501% -Rate for instruction 8884: 17.149% -Rate for instruction 8885: 17.1488% -Rate for instruction 8886: 17.1482% -Rate for instruction 8887: 17.1484% -Rate for instruction 8888: 17.1487% -Rate for instruction 8889: 17.148% -Rate for instruction 8890: 17.1474% -Rate for instruction 8891: 17.1464% -Rate for instruction 8892: 17.1475% -Rate for instruction 8893: 17.146% -Rate for instruction 8894: 17.1471% -Rate for instruction 8895: 17.1486% -Rate for instruction 8896: 17.1488% -Rate for instruction 8897: 17.1473% -Rate for instruction 8898: 17.1476% -Rate for instruction 8899: 17.1491% -Rate for instruction 8900: 17.1493% -Rate for instruction 8901: 17.1517% -Rate for instruction 8902: 17.1507% -Rate for instruction 8903: 17.1535% -Rate for instruction 8904: 17.1537% -Rate for instruction 8905: 17.1539% -Rate for instruction 8906: 17.155% -Rate for instruction 8907: 17.1561% -Rate for instruction 8908: 17.1568% -Rate for instruction 8909: 17.1557% -Rate for instruction 8910: 17.1543% -Rate for instruction 8911: 17.1532% -Rate for instruction 8912: 17.1526% -Rate for instruction 8913: 17.1511% -Rate for instruction 8914: 17.15% -Rate for instruction 8915: 17.1502% -Rate for instruction 8916: 17.15% -Rate for instruction 8917: 17.1503% -Rate for instruction 8918: 17.1496% -Rate for instruction 8919: 17.1494% -Rate for instruction 8920: 17.1493% -Rate for instruction 8921: 17.1482% -Rate for instruction 8922: 17.1484% -Rate for instruction 8923: 17.1487% -Rate for instruction 8924: 17.1472% -Rate for instruction 8925: 17.1478% -Rate for instruction 8926: 17.1472% -Rate for instruction 8927: 17.1457% -Rate for instruction 8928: 17.1455% -Rate for instruction 8929: 17.144% -Rate for instruction 8930: 17.1473% -Rate for instruction 8931: 17.1462% -Rate for instruction 8932: 17.1447% -Rate for instruction 8933: 17.1475% -Rate for instruction 8934: 17.1465% -Rate for instruction 8935: 17.1489% -Rate for instruction 8936: 17.1474% -Rate for instruction 8937: 17.1468% -Rate for instruction 8938: 17.1457% -Rate for instruction 8939: 17.1481% -Rate for instruction 8940: 17.1479% -Rate for instruction 8941: 17.1468% -Rate for instruction 8942: 17.1488% -Rate for instruction 8943: 17.152% -Rate for instruction 8944: 17.151% -Rate for instruction 8945: 17.1503% -Rate for instruction 8946: 17.1493% -Rate for instruction 8947: 17.1487% -Rate for instruction 8948: 17.1476% -Rate for instruction 8949: 17.1478% -Rate for instruction 8950: 17.1463% -Rate for instruction 8951: 17.1474% -Rate for instruction 8952: 17.1485% -Rate for instruction 8953: 17.147% -Rate for instruction 8954: 17.146% -Rate for instruction 8955: 17.1449% -Rate for instruction 8956: 17.1456% -Rate for instruction 8957: 17.1463% -Rate for instruction 8958: 17.1478% -Rate for instruction 8959: 17.1484% -Rate for instruction 8960: 17.147% -Rate for instruction 8961: 17.1455% -Rate for instruction 8962: 17.144% -Rate for instruction 8963: 17.1438% -Rate for instruction 8964: 17.1423% -Rate for instruction 8965: 17.1421% -Rate for instruction 8966: 17.1419% -Rate for instruction 8967: 17.1417% -Rate for instruction 8968: 17.1407% -Rate for instruction 8969: 17.14% -Rate for instruction 8970: 17.139% -Rate for instruction 8971: 17.1405% -Rate for instruction 8972: 17.1437% -Rate for instruction 8973: 17.1461% -Rate for instruction 8974: 17.1468% -Rate for instruction 8975: 17.1453% -Rate for instruction 8976: 17.1442% -Rate for instruction 8977: 17.1453% -Rate for instruction 8978: 17.1456% -Rate for instruction 8979: 17.1458% -Rate for instruction 8980: 17.146% -Rate for instruction 8981: 17.1488% -Rate for instruction 8982: 17.1482% -Rate for instruction 8983: 17.148% -Rate for instruction 8984: 17.1495% -Rate for instruction 8985: 17.1506% -Rate for instruction 8986: 17.1526% -Rate for instruction 8987: 17.1549% -Rate for instruction 8988: 17.156% -Rate for instruction 8989: 17.1558% -Rate for instruction 8990: 17.1548% -Rate for instruction 8991: 17.1541% -Rate for instruction 8992: 17.1531% -Rate for instruction 8993: 17.1516% -Rate for instruction 8994: 17.1531% -Rate for instruction 8995: 17.1521% -Rate for instruction 8996: 17.154% -Rate for instruction 8997: 17.1534% -Rate for instruction 8998: 17.1549% -Rate for instruction 8999: 17.1556% -Rate for instruction 9000: 17.1549% -Rate for instruction 9001: 17.1556% -Rate for instruction 9002: 17.1567% -Rate for instruction 9003: 17.1556% -Rate for instruction 9004: 17.1546% -Rate for instruction 9005: 17.1561% -Rate for instruction 9006: 17.155% -Rate for instruction 9007: 17.1574% -Rate for instruction 9008: 17.1563% -Rate for instruction 9009: 17.1583% -Rate for instruction 9010: 17.1568% -Rate for instruction 9011: 17.1583% -Rate for instruction 9012: 17.1568% -Rate for instruction 9013: 17.1579% -Rate for instruction 9014: 17.1569% -Rate for instruction 9015: 17.1597% -Rate for instruction 9016: 17.1616% -Rate for instruction 9017: 17.1601% -Rate for instruction 9018: 17.1591% -Rate for instruction 9019: 17.1576% -Rate for instruction 9020: 17.1578% -Rate for instruction 9021: 17.1589% -Rate for instruction 9022: 17.1591% -Rate for instruction 9023: 17.1602% -Rate for instruction 9024: 17.1613% -Rate for instruction 9025: 17.162% -Rate for instruction 9026: 17.1635% -Rate for instruction 9027: 17.1641% -Rate for instruction 9028: 17.1631% -Rate for instruction 9029: 17.1642% -Rate for instruction 9030: 17.1631% -Rate for instruction 9031: 17.165% -Rate for instruction 9032: 17.1678% -Rate for instruction 9033: 17.1663% -Rate for instruction 9034: 17.1653% -Rate for instruction 9035: 17.1638% -Rate for instruction 9036: 17.1653% -Rate for instruction 9037: 17.1673% -Rate for instruction 9038: 17.1658% -Rate for instruction 9039: 17.1669% -Rate for instruction 9040: 17.1696% -Rate for instruction 9041: 17.169% -Rate for instruction 9042: 17.1688% -Rate for instruction 9043: 17.1686% -Rate for instruction 9044: 17.1684% -Rate for instruction 9045: 17.1678% -Rate for instruction 9046: 17.1706% -Rate for instruction 9047: 17.1721% -Rate for instruction 9048: 17.171% -Rate for instruction 9049: 17.1696% -Rate for instruction 9050: 17.1694% -Rate for instruction 9051: 17.1679% -Rate for instruction 9052: 17.1669% -Rate for instruction 9053: 17.1654% -Rate for instruction 9054: 17.1639% -Rate for instruction 9055: 17.1624% -Rate for instruction 9056: 17.1622% -Rate for instruction 9057: 17.1612% -Rate for instruction 9058: 17.1602% -Rate for instruction 9059: 17.1621% -Rate for instruction 9060: 17.164% -Rate for instruction 9061: 17.1668% -Rate for instruction 9062: 17.1674% -Rate for instruction 9063: 17.1685% -Rate for instruction 9064: 17.1692% -Rate for instruction 9065: 17.1685% -Rate for instruction 9066: 17.1688% -Rate for instruction 9067: 17.1681% -Rate for instruction 9068: 17.168% -Rate for instruction 9069: 17.1686% -Rate for instruction 9070: 17.1671% -Rate for instruction 9071: 17.1674% -Rate for instruction 9072: 17.1667% -Rate for instruction 9073: 17.1674% -Rate for instruction 9074: 17.1663% -Rate for instruction 9075: 17.1649% -Rate for instruction 9076: 17.1655% -Rate for instruction 9077: 17.1666% -Rate for instruction 9078: 17.1681% -Rate for instruction 9079: 17.1683% -Rate for instruction 9080: 17.1698% -Rate for instruction 9081: 17.1692% -Rate for instruction 9082: 17.1682% -Rate for instruction 9083: 17.1684% -Rate for instruction 9084: 17.1678% -Rate for instruction 9085: 17.1676% -Rate for instruction 9086: 17.1678% -Rate for instruction 9087: 17.168% -Rate for instruction 9088: 17.1683% -Rate for instruction 9089: 17.1676% -Rate for instruction 9090: 17.1683% -Rate for instruction 9091: 17.1698% -Rate for instruction 9092: 17.1704% -Rate for instruction 9093: 17.1702% -Rate for instruction 9094: 17.1696% -Rate for instruction 9095: 17.1686% -Rate for instruction 9096: 17.1701% -Rate for instruction 9097: 17.1707% -Rate for instruction 9098: 17.1697% -Rate for instruction 9099: 17.1703% -Rate for instruction 9100: 17.1689% -Rate for instruction 9101: 17.1695% -Rate for instruction 9102: 17.1702% -Rate for instruction 9103: 17.1687% -Rate for instruction 9104: 17.1689% -Rate for instruction 9105: 17.1675% -Rate for instruction 9106: 17.1664% -Rate for instruction 9107: 17.165% -Rate for instruction 9108: 17.1635% -Rate for instruction 9109: 17.1625% -Rate for instruction 9110: 17.161% -Rate for instruction 9111: 17.1625% -Rate for instruction 9112: 17.1652% -Rate for instruction 9113: 17.1642% -Rate for instruction 9114: 17.1627% -Rate for instruction 9115: 17.1621% -Rate for instruction 9116: 17.1607% -Rate for instruction 9117: 17.1592% -Rate for instruction 9118: 17.1615% -Rate for instruction 9119: 17.1605% -Rate for instruction 9120: 17.1595% -Rate for instruction 9121: 17.158% -Rate for instruction 9122: 17.1578% -Rate for instruction 9123: 17.1572% -Rate for instruction 9124: 17.1566% -Rate for instruction 9125: 17.1581% -Rate for instruction 9126: 17.1579% -Rate for instruction 9127: 17.1577% -Rate for instruction 9128: 17.1588% -Rate for instruction 9129: 17.1581% -Rate for instruction 9130: 17.1579% -Rate for instruction 9131: 17.1569% -Rate for instruction 9132: 17.1555% -Rate for instruction 9133: 17.1574% -Rate for instruction 9134: 17.1589% -Rate for instruction 9135: 17.1595% -Rate for instruction 9136: 17.1597% -Rate for instruction 9137: 17.1583% -Rate for instruction 9138: 17.1568% -Rate for instruction 9139: 17.1562% -Rate for instruction 9140: 17.1577% -Rate for instruction 9141: 17.1567% -Rate for instruction 9142: 17.1573% -Rate for instruction 9143: 17.1563% -Rate for instruction 9144: 17.1573% -Rate for instruction 9145: 17.1559% -Rate for instruction 9146: 17.1548% -Rate for instruction 9147: 17.1542% -Rate for instruction 9148: 17.154% -Rate for instruction 9149: 17.1543% -Rate for instruction 9150: 17.1553% -Rate for instruction 9151: 17.1564% -Rate for instruction 9152: 17.1562% -Rate for instruction 9153: 17.1569% -Rate for instruction 9154: 17.1583% -Rate for instruction 9155: 17.1577% -Rate for instruction 9156: 17.1571% -Rate for instruction 9157: 17.159% -Rate for instruction 9158: 17.1609% -Rate for instruction 9159: 17.162% -Rate for instruction 9160: 17.1618% -Rate for instruction 9161: 17.1633% -Rate for instruction 9162: 17.1627% -Rate for instruction 9163: 17.1625% -Rate for instruction 9164: 17.164% -Rate for instruction 9165: 17.1659% -Rate for instruction 9166: 17.1686% -Rate for instruction 9167: 17.1676% -Rate for instruction 9168: 17.1686% -Rate for instruction 9169: 17.1689% -Rate for instruction 9170: 17.1674% -Rate for instruction 9171: 17.1689% -Rate for instruction 9172: 17.1712% -Rate for instruction 9173: 17.1698% -Rate for instruction 9174: 17.1687% -Rate for instruction 9175: 17.1706% -Rate for instruction 9176: 17.1713% -Rate for instruction 9177: 17.1711% -Rate for instruction 9178: 17.1734% -Rate for instruction 9179: 17.1736% -Rate for instruction 9180: 17.1722% -Rate for instruction 9181: 17.1724% -Rate for instruction 9182: 17.173% -Rate for instruction 9183: 17.1733% -Rate for instruction 9184: 17.1735% -Rate for instruction 9185: 17.175% -Rate for instruction 9186: 17.1773% -Rate for instruction 9187: 17.1775% -Rate for instruction 9188: 17.1773% -Rate for instruction 9189: 17.1763% -Rate for instruction 9190: 17.1752% -Rate for instruction 9191: 17.1742% -Rate for instruction 9192: 17.1736% -Rate for instruction 9193: 17.1742% -Rate for instruction 9194: 17.174% -Rate for instruction 9195: 17.173% -Rate for instruction 9196: 17.1732% -Rate for instruction 9197: 17.1718% -Rate for instruction 9198: 17.1712% -Rate for instruction 9199: 17.1702% -Rate for instruction 9200: 17.1716% -Rate for instruction 9201: 17.1723% -Rate for instruction 9202: 17.1725% -Rate for instruction 9203: 17.1736% -Rate for instruction 9204: 17.1746% -Rate for instruction 9205: 17.1744% -Rate for instruction 9206: 17.1763% -Rate for instruction 9207: 17.1774% -Rate for instruction 9208: 17.178% -Rate for instruction 9209: 17.1778% -Rate for instruction 9210: 17.178% -Rate for instruction 9211: 17.1804% -Rate for instruction 9212: 17.1818% -Rate for instruction 9213: 17.1812% -Rate for instruction 9214: 17.1798% -Rate for instruction 9215: 17.1808% -Rate for instruction 9216: 17.181% -Rate for instruction 9217: 17.1809% -Rate for instruction 9218: 17.1815% -Rate for instruction 9219: 17.1825% -Rate for instruction 9220: 17.1832% -Rate for instruction 9221: 17.1817% -Rate for instruction 9222: 17.1828% -Rate for instruction 9223: 17.1843% -Rate for instruction 9224: 17.1841% -Rate for instruction 9225: 17.1855% -Rate for instruction 9226: 17.1849% -Rate for instruction 9227: 17.1843% -Rate for instruction 9228: 17.1833% -Rate for instruction 9229: 17.1843% -Rate for instruction 9230: 17.185% -Rate for instruction 9231: 17.1848% -Rate for instruction 9232: 17.1838% -Rate for instruction 9233: 17.1827% -Rate for instruction 9234: 17.1842% -Rate for instruction 9235: 17.1832% -Rate for instruction 9236: 17.1822% -Rate for instruction 9237: 17.1832% -Rate for instruction 9238: 17.1855% -Rate for instruction 9239: 17.1861% -Rate for instruction 9240: 17.1847% -Rate for instruction 9241: 17.1845% -Rate for instruction 9242: 17.1835% -Rate for instruction 9243: 17.1841% -Rate for instruction 9244: 17.1856% -Rate for instruction 9245: 17.1841% -Rate for instruction 9246: 17.1856% -Rate for instruction 9247: 17.1842% -Rate for instruction 9248: 17.1852% -Rate for instruction 9249: 17.1871% -Rate for instruction 9250: 17.1886% -Rate for instruction 9251: 17.1905% -Rate for instruction 9252: 17.1923% -Rate for instruction 9253: 17.1917% -Rate for instruction 9254: 17.1936% -Rate for instruction 9255: 17.1947% -Rate for instruction 9256: 17.1932% -Rate for instruction 9257: 17.193% -Rate for instruction 9258: 17.1937% -Rate for instruction 9259: 17.1922% -Rate for instruction 9260: 17.1949% -Rate for instruction 9261: 17.196% -Rate for instruction 9262: 17.1954% -Rate for instruction 9263: 17.1981% -Rate for instruction 9264: 17.2004% -Rate for instruction 9265: 17.1994% -Rate for instruction 9266: 17.1992% -Rate for instruction 9267: 17.199% -Rate for instruction 9268: 17.1988% -Rate for instruction 9269: 17.1994% -Rate for instruction 9270: 17.2009% -Rate for instruction 9271: 17.2003% -Rate for instruction 9272: 17.1988% -Rate for instruction 9273: 17.1978% -Rate for instruction 9274: 17.1964% -Rate for instruction 9275: 17.1953% -Rate for instruction 9276: 17.1964% -Rate for instruction 9277: 17.1954% -Rate for instruction 9278: 17.1939% -Rate for instruction 9279: 17.1929% -Rate for instruction 9280: 17.1914% -Rate for instruction 9281: 17.1904% -Rate for instruction 9282: 17.1919% -Rate for instruction 9283: 17.1929% -Rate for instruction 9284: 17.1915% -Rate for instruction 9285: 17.1921% -Rate for instruction 9286: 17.1936% -Rate for instruction 9287: 17.1934% -Rate for instruction 9288: 17.1924% -Rate for instruction 9289: 17.1909% -Rate for instruction 9290: 17.192% -Rate for instruction 9291: 17.1922% -Rate for instruction 9292: 17.1928% -Rate for instruction 9293: 17.1922% -Rate for instruction 9294: 17.1912% -Rate for instruction 9295: 17.1935% -Rate for instruction 9296: 17.1954% -Rate for instruction 9297: 17.1939% -Rate for instruction 9298: 17.1937% -Rate for instruction 9299: 17.1948% -Rate for instruction 9300: 17.1942% -Rate for instruction 9301: 17.194% -Rate for instruction 9302: 17.1954% -Rate for instruction 9303: 17.1973% -Rate for instruction 9304: 17.1967% -Rate for instruction 9305: 17.1965% -Rate for instruction 9306: 17.1971% -Rate for instruction 9307: 17.1994% -Rate for instruction 9308: 17.1996% -Rate for instruction 9309: 17.1995% -Rate for instruction 9310: 17.1988% -Rate for instruction 9311: 17.1982% -Rate for instruction 9312: 17.1985% -Rate for instruction 9313: 17.1991% -Rate for instruction 9314: 17.201% -Rate for instruction 9315: 17.2032% -Rate for instruction 9316: 17.2055% -Rate for instruction 9317: 17.2045% -Rate for instruction 9318: 17.2035% -Rate for instruction 9319: 17.2037% -Rate for instruction 9320: 17.2023% -Rate for instruction 9321: 17.2021% -Rate for instruction 9322: 17.2019% -Rate for instruction 9323: 17.2017% -Rate for instruction 9324: 17.2002% -Rate for instruction 9325: 17.2021% -Rate for instruction 9326: 17.2015% -Rate for instruction 9327: 17.2034% -Rate for instruction 9328: 17.2048% -Rate for instruction 9329: 17.2034% -Rate for instruction 9330: 17.2049% -Rate for instruction 9331: 17.2038% -Rate for instruction 9332: 17.2045% -Rate for instruction 9333: 17.2047% -Rate for instruction 9334: 17.2061% -Rate for instruction 9335: 17.2047% -Rate for instruction 9336: 17.2037% -Rate for instruction 9337: 17.2023% -Rate for instruction 9338: 17.2037% -Rate for instruction 9339: 17.2027% -Rate for instruction 9340: 17.2045% -Rate for instruction 9341: 17.2081% -Rate for instruction 9342: 17.2083% -Rate for instruction 9343: 17.2093% -Rate for instruction 9344: 17.2108% -Rate for instruction 9345: 17.211% -Rate for instruction 9346: 17.2124% -Rate for instruction 9347: 17.2118% -Rate for instruction 9348: 17.212% -Rate for instruction 9349: 17.2131% -Rate for instruction 9350: 17.2133% -Rate for instruction 9351: 17.2123% -Rate for instruction 9352: 17.2129% -Rate for instruction 9353: 17.2131% -Rate for instruction 9354: 17.2129% -Rate for instruction 9355: 17.2148% -Rate for instruction 9356: 17.2154% -Rate for instruction 9357: 17.216% -Rate for instruction 9358: 17.2154% -Rate for instruction 9359: 17.2161% -Rate for instruction 9360: 17.2183% -Rate for instruction 9361: 17.219% -Rate for instruction 9362: 17.2179% -Rate for instruction 9363: 17.2165% -Rate for instruction 9364: 17.2167% -Rate for instruction 9365: 17.2157% -Rate for instruction 9366: 17.2151% -Rate for instruction 9367: 17.217% -Rate for instruction 9368: 17.218% -Rate for instruction 9369: 17.2178% -Rate for instruction 9370: 17.2197% -Rate for instruction 9371: 17.2223% -Rate for instruction 9372: 17.2246% -Rate for instruction 9373: 17.2256% -Rate for instruction 9374: 17.2254% -Rate for instruction 9375: 17.2265% -Rate for instruction 9376: 17.2255% -Rate for instruction 9377: 17.2248% -Rate for instruction 9378: 17.2255% -Rate for instruction 9379: 17.2261% -Rate for instruction 9380: 17.2259% -Rate for instruction 9381: 17.2286% -Rate for instruction 9382: 17.2304% -Rate for instruction 9383: 17.2331% -Rate for instruction 9384: 17.2333% -Rate for instruction 9385: 17.2319% -Rate for instruction 9386: 17.2329% -Rate for instruction 9387: 17.2315% -Rate for instruction 9388: 17.2305% -Rate for instruction 9389: 17.229% -Rate for instruction 9390: 17.2301% -Rate for instruction 9391: 17.2303% -Rate for instruction 9392: 17.2313% -Rate for instruction 9393: 17.2311% -Rate for instruction 9394: 17.233% -Rate for instruction 9395: 17.2344% -Rate for instruction 9396: 17.2375% -Rate for instruction 9397: 17.2377% -Rate for instruction 9398: 17.2383% -Rate for instruction 9399: 17.2394% -Rate for instruction 9400: 17.2392% -Rate for instruction 9401: 17.2386% -Rate for instruction 9402: 17.2404% -Rate for instruction 9403: 17.241% -Rate for instruction 9404: 17.2408% -Rate for instruction 9405: 17.2402% -Rate for instruction 9406: 17.24% -Rate for instruction 9407: 17.2402% -Rate for instruction 9408: 17.24% -Rate for instruction 9409: 17.2407% -Rate for instruction 9410: 17.2417% -Rate for instruction 9411: 17.2407% -Rate for instruction 9412: 17.2393% -Rate for instruction 9413: 17.2391% -Rate for instruction 9414: 17.2389% -Rate for instruction 9415: 17.2383% -Rate for instruction 9416: 17.2397% -Rate for instruction 9417: 17.2403% -Rate for instruction 9418: 17.2442% -Rate for instruction 9419: 17.2456% -Rate for instruction 9420: 17.2467% -Rate for instruction 9421: 17.2452% -Rate for instruction 9422: 17.2463% -Rate for instruction 9423: 17.2481% -Rate for instruction 9424: 17.2487% -Rate for instruction 9425: 17.2502% -Rate for instruction 9426: 17.2504% -Rate for instruction 9427: 17.2494% -Rate for instruction 9428: 17.2479% -Rate for instruction 9429: 17.2498% -Rate for instruction 9430: 17.2512% -Rate for instruction 9431: 17.251% -Rate for instruction 9432: 17.2496% -Rate for instruction 9433: 17.249% -Rate for instruction 9434: 17.2496% -Rate for instruction 9435: 17.2506% -Rate for instruction 9436: 17.2508% -Rate for instruction 9437: 17.2515% -Rate for instruction 9438: 17.2513% -Rate for instruction 9439: 17.2527% -Rate for instruction 9440: 17.2553% -Rate for instruction 9441: 17.2556% -Rate for instruction 9442: 17.2558% -Rate for instruction 9443: 17.2576% -Rate for instruction 9444: 17.2582% -Rate for instruction 9445: 17.2588% -Rate for instruction 9446: 17.259% -Rate for instruction 9447: 17.2584% -Rate for instruction 9448: 17.2595% -Rate for instruction 9449: 17.2597% -Rate for instruction 9450: 17.2603% -Rate for instruction 9451: 17.2589% -Rate for instruction 9452: 17.2607% -Rate for instruction 9453: 17.2597% -Rate for instruction 9454: 17.2591% -Rate for instruction 9455: 17.2597% -Rate for instruction 9456: 17.2595% -Rate for instruction 9457: 17.2605% -Rate for instruction 9458: 17.2591% -Rate for instruction 9459: 17.2613% -Rate for instruction 9460: 17.2624% -Rate for instruction 9461: 17.263% -Rate for instruction 9462: 17.2628% -Rate for instruction 9463: 17.2614% -Rate for instruction 9464: 17.2616% -Rate for instruction 9465: 17.2602% -Rate for instruction 9466: 17.2624% -Rate for instruction 9467: 17.261% -Rate for instruction 9468: 17.2608% -Rate for instruction 9469: 17.2598% -Rate for instruction 9470: 17.2596% -Rate for instruction 9471: 17.2598% -Rate for instruction 9472: 17.2608% -Rate for instruction 9473: 17.2618% -Rate for instruction 9474: 17.262% -Rate for instruction 9475: 17.2622% -Rate for instruction 9476: 17.2628% -Rate for instruction 9477: 17.2635% -Rate for instruction 9478: 17.2661% -Rate for instruction 9479: 17.2675% -Rate for instruction 9480: 17.2681% -Rate for instruction 9481: 17.2692% -Rate for instruction 9482: 17.269% -Rate for instruction 9483: 17.27% -Rate for instruction 9484: 17.2714% -Rate for instruction 9485: 17.2724% -Rate for instruction 9486: 17.2742% -Rate for instruction 9487: 17.2749% -Rate for instruction 9488: 17.2734% -Rate for instruction 9489: 17.2741% -Rate for instruction 9490: 17.2734% -Rate for instruction 9491: 17.2745% -Rate for instruction 9492: 17.2755% -Rate for instruction 9493: 17.2769% -Rate for instruction 9494: 17.2779% -Rate for instruction 9495: 17.2777% -Rate for instruction 9496: 17.2775% -Rate for instruction 9497: 17.2761% -Rate for instruction 9498: 17.2779% -Rate for instruction 9499: 17.2802% -Rate for instruction 9500: 17.2824% -Rate for instruction 9501: 17.2842% -Rate for instruction 9502: 17.2828% -Rate for instruction 9503: 17.285% -Rate for instruction 9504: 17.2856% -Rate for instruction 9505: 17.2871% -Rate for instruction 9506: 17.2865% -Rate for instruction 9507: 17.2867% -Rate for instruction 9508: 17.2873% -Rate for instruction 9509: 17.2879% -Rate for instruction 9510: 17.2893% -Rate for instruction 9511: 17.2903% -Rate for instruction 9512: 17.2937% -Rate for instruction 9513: 17.2956% -Rate for instruction 9514: 17.2986% -Rate for instruction 9515: 17.298% -Rate for instruction 9516: 17.3002% -Rate for instruction 9517: 17.3028% -Rate for instruction 9518: 17.3018% -Rate for instruction 9519: 17.3012% -Rate for instruction 9520: 17.3026% -Rate for instruction 9521: 17.3016% -Rate for instruction 9522: 17.3014% -Rate for instruction 9523: 17.3008% -Rate for instruction 9524: 17.2994% -Rate for instruction 9525: 17.3004% -Rate for instruction 9526: 17.3026% -Rate for instruction 9527: 17.3037% -Rate for instruction 9528: 17.3043% -Rate for instruction 9529: 17.3033% -Rate for instruction 9530: 17.3055% -Rate for instruction 9531: 17.3069% -Rate for instruction 9532: 17.3099% -Rate for instruction 9533: 17.3105% -Rate for instruction 9534: 17.3127% -Rate for instruction 9535: 17.3117% -Rate for instruction 9536: 17.3107% -Rate for instruction 9537: 17.3113% -Rate for instruction 9538: 17.3119% -Rate for instruction 9539: 17.3125% -Rate for instruction 9540: 17.3115% -Rate for instruction 9541: 17.3113% -Rate for instruction 9542: 17.3119% -Rate for instruction 9543: 17.3141% -Rate for instruction 9544: 17.3131% -Rate for instruction 9545: 17.3117% -Rate for instruction 9546: 17.3111% -Rate for instruction 9547: 17.3121% -Rate for instruction 9548: 17.3147% -Rate for instruction 9549: 17.3153% -Rate for instruction 9550: 17.3164% -Rate for instruction 9551: 17.3174% -Rate for instruction 9552: 17.3184% -Rate for instruction 9553: 17.3198% -Rate for instruction 9554: 17.3208% -Rate for instruction 9555: 17.3222% -Rate for instruction 9556: 17.3216% -Rate for instruction 9557: 17.3218% -Rate for instruction 9558: 17.3212% -Rate for instruction 9559: 17.3222% -Rate for instruction 9560: 17.3212% -Rate for instruction 9561: 17.321% -Rate for instruction 9562: 17.3204% -Rate for instruction 9563: 17.3222% -Rate for instruction 9564: 17.3248% -Rate for instruction 9565: 17.3242% -Rate for instruction 9566: 17.3232% -Rate for instruction 9567: 17.3238% -Rate for instruction 9568: 17.3252% -Rate for instruction 9569: 17.3238% -Rate for instruction 9570: 17.3228% -Rate for instruction 9571: 17.3234% -Rate for instruction 9572: 17.3252% -Rate for instruction 9573: 17.3238% -Rate for instruction 9574: 17.3244% -Rate for instruction 9575: 17.3234% -Rate for instruction 9576: 17.3256% -Rate for instruction 9577: 17.3242% -Rate for instruction 9578: 17.3236% -Rate for instruction 9579: 17.3225% -Rate for instruction 9580: 17.3244% -Rate for instruction 9581: 17.3246% -Rate for instruction 9582: 17.326% -Rate for instruction 9583: 17.3258% -Rate for instruction 9584: 17.3264% -Rate for instruction 9585: 17.3274% -Rate for instruction 9586: 17.3288% -Rate for instruction 9587: 17.329% -Rate for instruction 9588: 17.3292% -Rate for instruction 9589: 17.3281% -Rate for instruction 9590: 17.3283% -Rate for instruction 9591: 17.3273% -Rate for instruction 9592: 17.3279% -Rate for instruction 9593: 17.3273% -Rate for instruction 9594: 17.3271% -Rate for instruction 9595: 17.3265% -Rate for instruction 9596: 17.3275% -Rate for instruction 9597: 17.3285% -Rate for instruction 9598: 17.3291% -Rate for instruction 9599: 17.3313% -Rate for instruction 9600: 17.3323% -Rate for instruction 9601: 17.3337% -Rate for instruction 9602: 17.3343% -Rate for instruction 9603: 17.3345% -Rate for instruction 9604: 17.3355% -Rate for instruction 9605: 17.3365% -Rate for instruction 9606: 17.3359% -Rate for instruction 9607: 17.3377% -Rate for instruction 9608: 17.3387% -Rate for instruction 9609: 17.3405% -Rate for instruction 9610: 17.3395% -Rate for instruction 9611: 17.3401% -Rate for instruction 9612: 17.3395% -Rate for instruction 9613: 17.3385% -Rate for instruction 9614: 17.3383% -Rate for instruction 9615: 17.3381% -Rate for instruction 9616: 17.3379% -Rate for instruction 9617: 17.3373% -Rate for instruction 9618: 17.3375% -Rate for instruction 9619: 17.3381% -Rate for instruction 9620: 17.3399% -Rate for instruction 9621: 17.3389% -Rate for instruction 9622: 17.3403% -Rate for instruction 9623: 17.3429% -Rate for instruction 9624: 17.3415% -Rate for instruction 9625: 17.3433% -Rate for instruction 9626: 17.3438% -Rate for instruction 9627: 17.3436% -Rate for instruction 9628: 17.3422% -Rate for instruction 9629: 17.3432% -Rate for instruction 9630: 17.343% -Rate for instruction 9631: 17.3416% -Rate for instruction 9632: 17.3426% -Rate for instruction 9633: 17.3448% -Rate for instruction 9634: 17.3434% -Rate for instruction 9635: 17.3448% -Rate for instruction 9636: 17.3438% -Rate for instruction 9637: 17.3452% -Rate for instruction 9638: 17.3466% -Rate for instruction 9639: 17.3472% -Rate for instruction 9640: 17.349% -Rate for instruction 9641: 17.3508% -Rate for instruction 9642: 17.3526% -Rate for instruction 9643: 17.3528% -Rate for instruction 9644: 17.3534% -Rate for instruction 9645: 17.3531% -Rate for instruction 9646: 17.3521% -Rate for instruction 9647: 17.3535% -Rate for instruction 9648: 17.3545% -Rate for instruction 9649: 17.3547% -Rate for instruction 9650: 17.3553% -Rate for instruction 9651: 17.3563% -Rate for instruction 9652: 17.3553% -Rate for instruction 9653: 17.3559% -Rate for instruction 9654: 17.3545% -Rate for instruction 9655: 17.3543% -Rate for instruction 9656: 17.3541% -Rate for instruction 9657: 17.3543% -Rate for instruction 9658: 17.3529% -Rate for instruction 9659: 17.3519% -Rate for instruction 9660: 17.3505% -Rate for instruction 9661: 17.3503% -Rate for instruction 9662: 17.3513% -Rate for instruction 9663: 17.3527% -Rate for instruction 9664: 17.3552% -Rate for instruction 9665: 17.3542% -Rate for instruction 9666: 17.3544% -Rate for instruction 9667: 17.353% -Rate for instruction 9668: 17.352% -Rate for instruction 9669: 17.3522% -Rate for instruction 9670: 17.3512% -Rate for instruction 9671: 17.3526% -Rate for instruction 9672: 17.3524% -Rate for instruction 9673: 17.355% -Rate for instruction 9674: 17.3576% -Rate for instruction 9675: 17.3582% -Rate for instruction 9676: 17.3568% -Rate for instruction 9677: 17.357% -Rate for instruction 9678: 17.3572% -Rate for instruction 9679: 17.3562% -Rate for instruction 9680: 17.3568% -Rate for instruction 9681: 17.3577% -Rate for instruction 9682: 17.3587% -Rate for instruction 9683: 17.3601% -Rate for instruction 9684: 17.3595% -Rate for instruction 9685: 17.3589% -Rate for instruction 9686: 17.3583% -Rate for instruction 9687: 17.3589% -Rate for instruction 9688: 17.3611% -Rate for instruction 9689: 17.3625% -Rate for instruction 9690: 17.3611% -Rate for instruction 9691: 17.3625% -Rate for instruction 9692: 17.365% -Rate for instruction 9693: 17.3668% -Rate for instruction 9694: 17.3674% -Rate for instruction 9695: 17.3704% -Rate for instruction 9696: 17.3714% -Rate for instruction 9697: 17.3727% -Rate for instruction 9698: 17.3753% -Rate for instruction 9699: 17.3767% -Rate for instruction 9700: 17.3773% -Rate for instruction 9701: 17.3759% -Rate for instruction 9702: 17.3777% -Rate for instruction 9703: 17.3774% -Rate for instruction 9704: 17.3776% -Rate for instruction 9705: 17.377% -Rate for instruction 9706: 17.3756% -Rate for instruction 9707: 17.377% -Rate for instruction 9708: 17.3796% -Rate for instruction 9709: 17.3798% -Rate for instruction 9710: 17.3796% -Rate for instruction 9711: 17.3794% -Rate for instruction 9712: 17.3811% -Rate for instruction 9713: 17.3833% -Rate for instruction 9714: 17.3847% -Rate for instruction 9715: 17.3841% -Rate for instruction 9716: 17.3839% -Rate for instruction 9717: 17.3849% -Rate for instruction 9718: 17.3847% -Rate for instruction 9719: 17.3845% -Rate for instruction 9720: 17.385% -Rate for instruction 9721: 17.3837% -Rate for instruction 9722: 17.3834% -Rate for instruction 9723: 17.3832% -Rate for instruction 9724: 17.3846% -Rate for instruction 9725: 17.386% -Rate for instruction 9726: 17.3874% -Rate for instruction 9727: 17.3864% -Rate for instruction 9728: 17.3862% -Rate for instruction 9729: 17.3867% -Rate for instruction 9730: 17.3869% -Rate for instruction 9731: 17.3859% -Rate for instruction 9732: 17.3869% -Rate for instruction 9733: 17.3863% -Rate for instruction 9734: 17.3869% -Rate for instruction 9735: 17.3867% -Rate for instruction 9736: 17.3881% -Rate for instruction 9737: 17.3887% -Rate for instruction 9738: 17.3892% -Rate for instruction 9739: 17.3922% -Rate for instruction 9740: 17.3948% -Rate for instruction 9741: 17.3945% -Rate for instruction 9742: 17.3963% -Rate for instruction 9743: 17.3981% -Rate for instruction 9744: 17.3991% -Rate for instruction 9745: 17.3981% -Rate for instruction 9746: 17.3986% -Rate for instruction 9747: 17.3992% -Rate for instruction 9748: 17.4002% -Rate for instruction 9749: 17.3996% -Rate for instruction 9750: 17.3998% -Rate for instruction 9751: 17.3992% -Rate for instruction 9752: 17.4021% -Rate for instruction 9753: 17.4008% -Rate for instruction 9754: 17.4033% -Rate for instruction 9755: 17.4023% -Rate for instruction 9756: 17.4009% -Rate for instruction 9757: 17.3999% -Rate for instruction 9758: 17.3997% -Rate for instruction 9759: 17.3987% -Rate for instruction 9760: 17.3997% -Rate for instruction 9761: 17.4011% -Rate for instruction 9762: 17.4016% -Rate for instruction 9763: 17.401% -Rate for instruction 9764: 17.4016% -Rate for instruction 9765: 17.4006% -Rate for instruction 9766: 17.4016% -Rate for instruction 9767: 17.403% -Rate for instruction 9768: 17.4024% -Rate for instruction 9769: 17.4041% -Rate for instruction 9770: 17.4051% -Rate for instruction 9771: 17.4061% -Rate for instruction 9772: 17.4063% -Rate for instruction 9773: 17.4073% -Rate for instruction 9774: 17.4078% -Rate for instruction 9775: 17.4076% -Rate for instruction 9776: 17.4098% -Rate for instruction 9777: 17.4084% -Rate for instruction 9778: 17.4086% -Rate for instruction 9779: 17.4095% -Rate for instruction 9780: 17.4113% -Rate for instruction 9781: 17.4107% -Rate for instruction 9782: 17.4125% -Rate for instruction 9783: 17.4142% -Rate for instruction 9784: 17.4128% -Rate for instruction 9785: 17.413% -Rate for instruction 9786: 17.4116% -Rate for instruction 9787: 17.4126% -Rate for instruction 9788: 17.4132% -Rate for instruction 9789: 17.4146% -Rate for instruction 9790: 17.4163% -Rate for instruction 9791: 17.4173% -Rate for instruction 9792: 17.4183% -Rate for instruction 9793: 17.4188% -Rate for instruction 9794: 17.419% -Rate for instruction 9795: 17.418% -Rate for instruction 9796: 17.4178% -Rate for instruction 9797: 17.4204% -Rate for instruction 9798: 17.4194% -Rate for instruction 9799: 17.418% -Rate for instruction 9800: 17.4178% -Rate for instruction 9801: 17.4187% -Rate for instruction 9802: 17.4213% -Rate for instruction 9803: 17.4226% -Rate for instruction 9804: 17.424% -Rate for instruction 9805: 17.425% -Rate for instruction 9806: 17.4275% -Rate for instruction 9807: 17.4296% -Rate for instruction 9808: 17.429% -Rate for instruction 9809: 17.43% -Rate for instruction 9810: 17.4306% -Rate for instruction 9811: 17.432% -Rate for instruction 9812: 17.4317% -Rate for instruction 9813: 17.4327% -Rate for instruction 9814: 17.4333% -Rate for instruction 9815: 17.4331% -Rate for instruction 9816: 17.4317% -Rate for instruction 9817: 17.4331% -Rate for instruction 9818: 17.4325% -Rate for instruction 9819: 17.4346% -Rate for instruction 9820: 17.4332% -Rate for instruction 9821: 17.4357% -Rate for instruction 9822: 17.4355% -Rate for instruction 9823: 17.4345% -Rate for instruction 9824: 17.4371% -Rate for instruction 9825: 17.438% -Rate for instruction 9826: 17.4386% -Rate for instruction 9827: 17.4384% -Rate for instruction 9828: 17.4401% -Rate for instruction 9829: 17.4392% -Rate for instruction 9830: 17.4413% -Rate for instruction 9831: 17.4434% -Rate for instruction 9832: 17.4424% -Rate for instruction 9833: 17.4446% -Rate for instruction 9834: 17.4432% -Rate for instruction 9835: 17.4446% -Rate for instruction 9836: 17.4467% -Rate for instruction 9837: 17.4461% -Rate for instruction 9838: 17.4447% -Rate for instruction 9839: 17.4468% -Rate for instruction 9840: 17.4455% -Rate for instruction 9841: 17.4476% -Rate for instruction 9842: 17.4497% -Rate for instruction 9843: 17.4519% -Rate for instruction 9844: 17.4544% -Rate for instruction 9845: 17.4554% -Rate for instruction 9846: 17.454% -Rate for instruction 9847: 17.4534% -Rate for instruction 9848: 17.4535% -Rate for instruction 9849: 17.4541% -Rate for instruction 9850: 17.4527% -Rate for instruction 9851: 17.4517% -Rate for instruction 9852: 17.4504% -Rate for instruction 9853: 17.4521% -Rate for instruction 9854: 17.4511% -Rate for instruction 9855: 17.454% -Rate for instruction 9856: 17.4546% -Rate for instruction 9857: 17.4536% -Rate for instruction 9858: 17.4542% -Rate for instruction 9859: 17.4536% -Rate for instruction 9860: 17.4545% -Rate for instruction 9861: 17.4559% -Rate for instruction 9862: 17.4549% -Rate for instruction 9863: 17.4559% -Rate for instruction 9864: 17.4549% -Rate for instruction 9865: 17.4558% -Rate for instruction 9866: 17.4552% -Rate for instruction 9867: 17.455% -Rate for instruction 9868: 17.4548% -Rate for instruction 9869: 17.4546% -Rate for instruction 9870: 17.4532% -Rate for instruction 9871: 17.4534% -Rate for instruction 9872: 17.454% -Rate for instruction 9873: 17.4538% -Rate for instruction 9874: 17.4536% -Rate for instruction 9875: 17.4537% -Rate for instruction 9876: 17.4543% -Rate for instruction 9877: 17.4529% -Rate for instruction 9878: 17.4535% -Rate for instruction 9879: 17.4533% -Rate for instruction 9880: 17.455% -Rate for instruction 9881: 17.4571% -Rate for instruction 9882: 17.4565% -Rate for instruction 9883: 17.456% -Rate for instruction 9884: 17.4557% -Rate for instruction 9885: 17.4579% -Rate for instruction 9886: 17.4588% -Rate for instruction 9887: 17.4582% -Rate for instruction 9888: 17.4596% -Rate for instruction 9889: 17.4586% -Rate for instruction 9890: 17.4595% -Rate for instruction 9891: 17.4582% -Rate for instruction 9892: 17.4599% -Rate for instruction 9893: 17.4589% -Rate for instruction 9894: 17.4606% -Rate for instruction 9895: 17.4608% -Rate for instruction 9896: 17.4622% -Rate for instruction 9897: 17.4612% -Rate for instruction 9898: 17.4617% -Rate for instruction 9899: 17.4627% -Rate for instruction 9900: 17.4629% -Rate for instruction 9901: 17.4631% -Rate for instruction 9902: 17.4629% -Rate for instruction 9903: 17.4626% -Rate for instruction 9904: 17.462% -Rate for instruction 9905: 17.4618% -Rate for instruction 9906: 17.462% -Rate for instruction 9907: 17.4614% -Rate for instruction 9908: 17.4624% -Rate for instruction 9909: 17.4622% -Rate for instruction 9910: 17.4627% -Rate for instruction 9911: 17.4621% -Rate for instruction 9912: 17.4608% -Rate for instruction 9913: 17.4617% -Rate for instruction 9914: 17.4607% -Rate for instruction 9915: 17.4632% -Rate for instruction 9916: 17.4642% -Rate for instruction 9917: 17.4636% -Rate for instruction 9918: 17.4638% -Rate for instruction 9919: 17.4647% -Rate for instruction 9920: 17.4657% -Rate for instruction 9921: 17.4651% -Rate for instruction 9922: 17.4668% -Rate for instruction 9923: 17.467% -Rate for instruction 9924: 17.4668% -Rate for instruction 9925: 17.4685% -Rate for instruction 9926: 17.4698% -Rate for instruction 9927: 17.472% -Rate for instruction 9928: 17.4717% -Rate for instruction 9929: 17.4719% -Rate for instruction 9930: 17.4713% -Rate for instruction 9931: 17.4727% -Rate for instruction 9932: 17.4744% -Rate for instruction 9933: 17.4765% -Rate for instruction 9934: 17.4782% -Rate for instruction 9935: 17.4796% -Rate for instruction 9936: 17.4805% -Rate for instruction 9937: 17.4799% -Rate for instruction 9938: 17.4801% -Rate for instruction 9939: 17.4795% -Rate for instruction 9940: 17.4804% -Rate for instruction 9941: 17.4818% -Rate for instruction 9942: 17.4827% -Rate for instruction 9943: 17.4817% -Rate for instruction 9944: 17.4827% -Rate for instruction 9945: 17.4825% -Rate for instruction 9946: 17.485% -Rate for instruction 9947: 17.4855% -Rate for instruction 9948: 17.4876% -Rate for instruction 9949: 17.4886% -Rate for instruction 9950: 17.4903% -Rate for instruction 9951: 17.4924% -Rate for instruction 9952: 17.4914% -Rate for instruction 9953: 17.4932% -Rate for instruction 9954: 17.4953% -Rate for instruction 9955: 17.4939% -Rate for instruction 9956: 17.4952% -Rate for instruction 9957: 17.4939% -Rate for instruction 9958: 17.4952% -Rate for instruction 9959: 17.4958% -Rate for instruction 9960: 17.4982% -Rate for instruction 9961: 17.5% -Rate for instruction 9962: 17.5013% -Rate for instruction 9963: 17.5022% -Rate for instruction 9964: 17.504% -Rate for instruction 9965: 17.5034% -Rate for instruction 9966: 17.5028% -Rate for instruction 9967: 17.5014% -Rate for instruction 9968: 17.5016% -Rate for instruction 9969: 17.5029% -Rate for instruction 9970: 17.5023% -Rate for instruction 9971: 17.5036% -Rate for instruction 9972: 17.5038% -Rate for instruction 9973: 17.5055% -Rate for instruction 9974: 17.5057% -Rate for instruction 9975: 17.5066% -Rate for instruction 9976: 17.5056% -Rate for instruction 9977: 17.505% -Rate for instruction 9978: 17.5048% -Rate for instruction 9979: 17.5039% -Rate for instruction 9980: 17.5036% -Rate for instruction 9981: 17.5023% -Rate for instruction 9982: 17.5013% -Rate for instruction 9983: 17.503% -Rate for instruction 9984: 17.5024% -Rate for instruction 9985: 17.5026% -Rate for instruction 9986: 17.5039% -Rate for instruction 9987: 17.5025% -Rate for instruction 9988: 17.5054% -Rate for instruction 9989: 17.5044% -Rate for instruction 9990: 17.5069% -Rate for instruction 9991: 17.5098% -Rate for instruction 9992: 17.5123% -Rate for instruction 9993: 17.5136% -Rate for instruction 9994: 17.5149% -Rate for instruction 9995: 17.5147% -Rate for instruction 9996: 17.5133% -Rate for instruction 9997: 17.5158% -Rate for instruction 9998: 17.5156% -Rate for instruction 9999: 17.5142% -Rate for instruction 10000: 17.5167% -Rate for instruction 10001: 17.5165% -Rate for instruction 10002: 17.5159% -Rate for instruction 10003: 17.5149% -Rate for instruction 10004: 17.5139% -Rate for instruction 10005: 17.513% -Rate for instruction 10006: 17.5127% -Rate for instruction 10007: 17.5152% -Rate for instruction 10008: 17.5169% -Rate for instruction 10009: 17.5183% -Rate for instruction 10010: 17.518% -Rate for instruction 10011: 17.5205% -Rate for instruction 10012: 17.5222% -Rate for instruction 10013: 17.5212% -Rate for instruction 10014: 17.5226% -Rate for instruction 10015: 17.5235% -Rate for instruction 10016: 17.5237% -Rate for instruction 10017: 17.5231% -Rate for instruction 10018: 17.524% -Rate for instruction 10019: 17.5226% -Rate for instruction 10020: 17.5232% -Rate for instruction 10021: 17.5234% -Rate for instruction 10022: 17.522% -Rate for instruction 10023: 17.5233% -Rate for instruction 10024: 17.5223% -Rate for instruction 10025: 17.5221% -Rate for instruction 10026: 17.5212% -Rate for instruction 10027: 17.5213% -Rate for instruction 10028: 17.5215% -Rate for instruction 10029: 17.5205% -Rate for instruction 10030: 17.5241% -Rate for instruction 10031: 17.5251% -Rate for instruction 10032: 17.5237% -Rate for instruction 10033: 17.5243% -Rate for instruction 10034: 17.5244% -Rate for instruction 10035: 17.5231% -Rate for instruction 10036: 17.5236% -Rate for instruction 10037: 17.5257% -Rate for instruction 10038: 17.5243% -Rate for instruction 10039: 17.5238% -Rate for instruction 10040: 17.5232% -Rate for instruction 10041: 17.5226% -Rate for instruction 10042: 17.522% -Rate for instruction 10043: 17.5233% -Rate for instruction 10044: 17.525% -Rate for instruction 10045: 17.5236% -Rate for instruction 10046: 17.5223% -Rate for instruction 10047: 17.5236% -Rate for instruction 10048: 17.5222% -Rate for instruction 10049: 17.5243% -Rate for instruction 10050: 17.5229% -Rate for instruction 10051: 17.5243% -Rate for instruction 10052: 17.526% -Rate for instruction 10053: 17.5273% -Rate for instruction 10054: 17.5278% -Rate for instruction 10055: 17.5295% -Rate for instruction 10056: 17.5297% -Rate for instruction 10057: 17.5299% -Rate for instruction 10058: 17.5308% -Rate for instruction 10059: 17.5294% -Rate for instruction 10060: 17.5281% -Rate for instruction 10061: 17.5267% -Rate for instruction 10062: 17.5257% -Rate for instruction 10063: 17.5255% -Rate for instruction 10064: 17.5268% -Rate for instruction 10065: 17.5274% -Rate for instruction 10066: 17.5299% -Rate for instruction 10067: 17.5304% -Rate for instruction 10068: 17.5313% -Rate for instruction 10069: 17.5304% -Rate for instruction 10070: 17.5321% -Rate for instruction 10071: 17.5326% -Rate for instruction 10072: 17.5313% -Rate for instruction 10073: 17.5307% -Rate for instruction 10074: 17.5304% -Rate for instruction 10075: 17.5314% -Rate for instruction 10076: 17.5323% -Rate for instruction 10077: 17.5332% -Rate for instruction 10078: 17.5319% -Rate for instruction 10079: 17.5309% -Rate for instruction 10080: 17.5303% -Rate for instruction 10081: 17.5309% -Rate for instruction 10082: 17.5318% -Rate for instruction 10083: 17.5327% -Rate for instruction 10084: 17.534% -Rate for instruction 10085: 17.5334% -Rate for instruction 10086: 17.5344% -Rate for instruction 10087: 17.5368% -Rate for instruction 10088: 17.5359% -Rate for instruction 10089: 17.5383% -Rate for instruction 10090: 17.5381% -Rate for instruction 10091: 17.539% -Rate for instruction 10092: 17.5407% -Rate for instruction 10093: 17.5416% -Rate for instruction 10094: 17.5426% -Rate for instruction 10095: 17.545% -Rate for instruction 10096: 17.5471% -Rate for instruction 10097: 17.5465% -Rate for instruction 10098: 17.5463% -Rate for instruction 10099: 17.548% -Rate for instruction 10100: 17.547% -Rate for instruction 10101: 17.5472% -Rate for instruction 10102: 17.547% -Rate for instruction 10103: 17.549% -Rate for instruction 10104: 17.5511% -Rate for instruction 10105: 17.5532% -Rate for instruction 10106: 17.5518% -Rate for instruction 10107: 17.5539% -Rate for instruction 10108: 17.5563% -Rate for instruction 10109: 17.5557% -Rate for instruction 10110: 17.5544% -Rate for instruction 10111: 17.5572% -Rate for instruction 10112: 17.5589% -Rate for instruction 10113: 17.5575% -Rate for instruction 10114: 17.5592% -Rate for instruction 10115: 17.5605% -Rate for instruction 10116: 17.5618% -Rate for instruction 10117: 17.5609% -Rate for instruction 10118: 17.5599% -Rate for instruction 10119: 17.5589% -Rate for instruction 10120: 17.5587% -Rate for instruction 10121: 17.5573% -Rate for instruction 10122: 17.5579% -Rate for instruction 10123: 17.5588% -Rate for instruction 10124: 17.5586% -Rate for instruction 10125: 17.5603% -Rate for instruction 10126: 17.562% -Rate for instruction 10127: 17.561% -Rate for instruction 10128: 17.5627% -Rate for instruction 10129: 17.5617% -Rate for instruction 10130: 17.5611% -Rate for instruction 10131: 17.562% -Rate for instruction 10132: 17.5614% -Rate for instruction 10133: 17.5639% -Rate for instruction 10134: 17.5663% -Rate for instruction 10135: 17.5653% -Rate for instruction 10136: 17.5655% -Rate for instruction 10137: 17.5661% -Rate for instruction 10138: 17.5655% -Rate for instruction 10139: 17.5641% -Rate for instruction 10140: 17.5627% -Rate for instruction 10141: 17.5633% -Rate for instruction 10142: 17.5635% -Rate for instruction 10143: 17.5625% -Rate for instruction 10144: 17.5619% -Rate for instruction 10145: 17.5621% -Rate for instruction 10146: 17.5607% -Rate for instruction 10147: 17.5612% -Rate for instruction 10148: 17.5622% -Rate for instruction 10149: 17.5612% -Rate for instruction 10150: 17.5598% -Rate for instruction 10151: 17.5589% -Rate for instruction 10152: 17.5579% -Rate for instruction 10153: 17.5569% -Rate for instruction 10154: 17.5571% -Rate for instruction 10155: 17.5569% -Rate for instruction 10156: 17.5582% -Rate for instruction 10157: 17.558% -Rate for instruction 10158: 17.5585% -Rate for instruction 10159: 17.5575% -Rate for instruction 10160: 17.5569% -Rate for instruction 10161: 17.5564% -Rate for instruction 10162: 17.5558% -Rate for instruction 10163: 17.5563% -Rate for instruction 10164: 17.5553% -Rate for instruction 10165: 17.5559% -Rate for instruction 10166: 17.5576% -Rate for instruction 10167: 17.5585% -Rate for instruction 10168: 17.5575% -Rate for instruction 10169: 17.5569% -Rate for instruction 10170: 17.5582% -Rate for instruction 10171: 17.5595% -Rate for instruction 10172: 17.5616% -Rate for instruction 10173: 17.5629% -Rate for instruction 10174: 17.5653% -Rate for instruction 10175: 17.5643% -Rate for instruction 10176: 17.5641% -Rate for instruction 10177: 17.565% -Rate for instruction 10178: 17.5656% -Rate for instruction 10179: 17.565% -Rate for instruction 10180: 17.5644% -Rate for instruction 10181: 17.5653% -Rate for instruction 10182: 17.564% -Rate for instruction 10183: 17.5638% -Rate for instruction 10184: 17.5624% -Rate for instruction 10185: 17.5611% -Rate for instruction 10186: 17.5605% -Rate for instruction 10187: 17.5591% -Rate for instruction 10188: 17.5582% -Rate for instruction 10189: 17.5587% -Rate for instruction 10190: 17.5573% -Rate for instruction 10191: 17.5564% -Rate for instruction 10192: 17.555% -Rate for instruction 10193: 17.5544% -Rate for instruction 10194: 17.5531% -Rate for instruction 10195: 17.5521% -Rate for instruction 10196: 17.5508% -Rate for instruction 10197: 17.5506% -Rate for instruction 10198: 17.5492% -Rate for instruction 10199: 17.5479% -Rate for instruction 10200: 17.5473% -Rate for instruction 10201: 17.5467% -Rate for instruction 10202: 17.5454% -Rate for instruction 10203: 17.5448% -Rate for instruction 10204: 17.5453% -Rate for instruction 10205: 17.5447% -Rate for instruction 10206: 17.5445% -Rate for instruction 10207: 17.5432% -Rate for instruction 10208: 17.5445% -Rate for instruction 10209: 17.5443% -Rate for instruction 10210: 17.5444% -Rate for instruction 10211: 17.5431% -Rate for instruction 10212: 17.5421% -Rate for instruction 10213: 17.5412% -Rate for instruction 10214: 17.5421% -Rate for instruction 10215: 17.5441% -Rate for instruction 10216: 17.5458% -Rate for instruction 10217: 17.5448% -Rate for instruction 10218: 17.5454% -Rate for instruction 10219: 17.5467% -Rate for instruction 10220: 17.5476% -Rate for instruction 10221: 17.5496% -Rate for instruction 10222: 17.5505% -Rate for instruction 10223: 17.5515% -Rate for instruction 10224: 17.5528% -Rate for instruction 10225: 17.5552% -Rate for instruction 10226: 17.5538% -Rate for instruction 10227: 17.5529% -Rate for instruction 10228: 17.5519% -Rate for instruction 10229: 17.5528% -Rate for instruction 10230: 17.5541% -Rate for instruction 10231: 17.555% -Rate for instruction 10232: 17.5559% -Rate for instruction 10233: 17.5565% -Rate for instruction 10234: 17.5574% -Rate for instruction 10235: 17.5598% -Rate for instruction 10236: 17.56% -Rate for instruction 10237: 17.5586% -Rate for instruction 10238: 17.5573% -Rate for instruction 10239: 17.5582% -Rate for instruction 10240: 17.5591% -Rate for instruction 10241: 17.5582% -Rate for instruction 10242: 17.5595% -Rate for instruction 10243: 17.5596% -Rate for instruction 10244: 17.5602% -Rate for instruction 10245: 17.5603% -Rate for instruction 10246: 17.5605% -Rate for instruction 10247: 17.5606% -Rate for instruction 10248: 17.5608% -Rate for instruction 10249: 17.5621% -Rate for instruction 10250: 17.5626% -Rate for instruction 10251: 17.5613% -Rate for instruction 10252: 17.5603% -Rate for instruction 10253: 17.5624% -Rate for instruction 10254: 17.5618% -Rate for instruction 10255: 17.5631% -Rate for instruction 10256: 17.5632% -Rate for instruction 10257: 17.5623% -Rate for instruction 10258: 17.5628% -Rate for instruction 10259: 17.5626% -Rate for instruction 10260: 17.5635% -Rate for instruction 10261: 17.5629% -Rate for instruction 10262: 17.5631% -Rate for instruction 10263: 17.5636% -Rate for instruction 10264: 17.5645% -Rate for instruction 10265: 17.5677% -Rate for instruction 10266: 17.5705% -Rate for instruction 10267: 17.5691% -Rate for instruction 10268: 17.5682% -Rate for instruction 10269: 17.568% -Rate for instruction 10270: 17.5674% -Rate for instruction 10271: 17.566% -Rate for instruction 10272: 17.5647% -Rate for instruction 10273: 17.5667% -Rate for instruction 10274: 17.5677% -Rate for instruction 10275: 17.5663% -Rate for instruction 10276: 17.5654% -Rate for instruction 10277: 17.5666% -Rate for instruction 10278: 17.5683% -Rate for instruction 10279: 17.57% -Rate for instruction 10280: 17.5727% -Rate for instruction 10281: 17.5718% -Rate for instruction 10282: 17.5712% -Rate for instruction 10283: 17.5706% -Rate for instruction 10284: 17.5696% -Rate for instruction 10285: 17.5694% -Rate for instruction 10286: 17.5689% -Rate for instruction 10287: 17.569% -Rate for instruction 10288: 17.5695% -Rate for instruction 10289: 17.5693% -Rate for instruction 10290: 17.5684% -Rate for instruction 10291: 17.5689% -Rate for instruction 10292: 17.5691% -Rate for instruction 10293: 17.5681% -Rate for instruction 10294: 17.5672% -Rate for instruction 10295: 17.5662% -Rate for instruction 10296: 17.566% -Rate for instruction 10297: 17.5654% -Rate for instruction 10298: 17.5656% -Rate for instruction 10299: 17.565% -Rate for instruction 10300: 17.5655% -Rate for instruction 10301: 17.566% -Rate for instruction 10302: 17.567% -Rate for instruction 10303: 17.5667% -Rate for instruction 10304: 17.5676% -Rate for instruction 10305: 17.5674% -Rate for instruction 10306: 17.5661% -Rate for instruction 10307: 17.5648% -Rate for instruction 10308: 17.5687% -Rate for instruction 10309: 17.5703% -Rate for instruction 10310: 17.5697% -Rate for instruction 10311: 17.5684% -Rate for instruction 10312: 17.5674% -Rate for instruction 10313: 17.5661% -Rate for instruction 10314: 17.5663% -Rate for instruction 10315: 17.5657% -Rate for instruction 10316: 17.5673% -Rate for instruction 10317: 17.5694% -Rate for instruction 10318: 17.5684% -Rate for instruction 10319: 17.5671% -Rate for instruction 10320: 17.5669% -Rate for instruction 10321: 17.57% -Rate for instruction 10322: 17.5717% -Rate for instruction 10323: 17.5707% -Rate for instruction 10324: 17.5694% -Rate for instruction 10325: 17.5688% -Rate for instruction 10326: 17.5675% -Rate for instruction 10327: 17.5661% -Rate for instruction 10328: 17.5663% -Rate for instruction 10329: 17.565% -Rate for instruction 10330: 17.5644% -Rate for instruction 10331: 17.5653% -Rate for instruction 10332: 17.564% -Rate for instruction 10333: 17.5626% -Rate for instruction 10334: 17.5643% -Rate for instruction 10335: 17.5656% -Rate for instruction 10336: 17.5642% -Rate for instruction 10337: 17.5633% -Rate for instruction 10338: 17.562% -Rate for instruction 10339: 17.5617% -Rate for instruction 10340: 17.5604% -Rate for instruction 10341: 17.5595% -Rate for instruction 10342: 17.5581% -Rate for instruction 10343: 17.5576% -Rate for instruction 10344: 17.557% -Rate for instruction 10345: 17.5568% -Rate for instruction 10346: 17.5558% -Rate for instruction 10347: 17.5549% -Rate for instruction 10348: 17.5539% -Rate for instruction 10349: 17.5526% -Rate for instruction 10350: 17.5524% -Rate for instruction 10351: 17.5522% -Rate for instruction 10352: 17.5508% -Rate for instruction 10353: 17.5529% -Rate for instruction 10354: 17.5541% -Rate for instruction 10355: 17.5536% -Rate for instruction 10356: 17.5533% -Rate for instruction 10357: 17.5524% -Rate for instruction 10358: 17.5511% -Rate for instruction 10359: 17.5505% -Rate for instruction 10360: 17.5529% -Rate for instruction 10361: 17.5556% -Rate for instruction 10362: 17.558% -Rate for instruction 10363: 17.5582% -Rate for instruction 10364: 17.558% -Rate for instruction 10365: 17.557% -Rate for instruction 10366: 17.5561% -Rate for instruction 10367: 17.5548% -Rate for instruction 10368: 17.5549% -Rate for instruction 10369: 17.554% -Rate for instruction 10370: 17.553% -Rate for instruction 10371: 17.5535% -Rate for instruction 10372: 17.5556% -Rate for instruction 10373: 17.5542% -Rate for instruction 10374: 17.5551% -Rate for instruction 10375: 17.556% -Rate for instruction 10376: 17.5595% -Rate for instruction 10377: 17.559% -Rate for instruction 10378: 17.5576% -Rate for instruction 10379: 17.5604% -Rate for instruction 10380: 17.5613% -Rate for instruction 10381: 17.56% -Rate for instruction 10382: 17.559% -Rate for instruction 10383: 17.5592% -Rate for instruction 10384: 17.5601% -Rate for instruction 10385: 17.5606% -Rate for instruction 10386: 17.5604% -Rate for instruction 10387: 17.5598% -Rate for instruction 10388: 17.5589% -Rate for instruction 10389: 17.559% -Rate for instruction 10390: 17.5585% -Rate for instruction 10391: 17.5583% -Rate for instruction 10392: 17.5577% -Rate for instruction 10393: 17.5571% -Rate for instruction 10394: 17.5569% -Rate for instruction 10395: 17.5563% -Rate for instruction 10396: 17.5561% -Rate for instruction 10397: 17.5559% -Rate for instruction 10398: 17.5546% -Rate for instruction 10399: 17.5536% -Rate for instruction 10400: 17.5523% -Rate for instruction 10401: 17.5517% -Rate for instruction 10402: 17.5523% -Rate for instruction 10403: 17.5521% -Rate for instruction 10404: 17.5518% -Rate for instruction 10405: 17.5527% -Rate for instruction 10406: 17.5529% -Rate for instruction 10407: 17.5534% -Rate for instruction 10408: 17.554% -Rate for instruction 10409: 17.5526% -Rate for instruction 10410: 17.5517% -Rate for instruction 10411: 17.5508% -Rate for instruction 10412: 17.5509% -Rate for instruction 10413: 17.5514% -Rate for instruction 10414: 17.5505% -Rate for instruction 10415: 17.5507% -Rate for instruction 10416: 17.5493% -Rate for instruction 10417: 17.548% -Rate for instruction 10418: 17.5475% -Rate for instruction 10419: 17.5465% -Rate for instruction 10420: 17.5463% -Rate for instruction 10421: 17.5457% -Rate for instruction 10422: 17.5455% -Rate for instruction 10423: 17.5446% -Rate for instruction 10424: 17.5473% -Rate for instruction 10425: 17.5497% -Rate for instruction 10426: 17.5487% -Rate for instruction 10427: 17.5482% -Rate for instruction 10428: 17.5469% -Rate for instruction 10429: 17.5459% -Rate for instruction 10430: 17.545% -Rate for instruction 10431: 17.5444% -Rate for instruction 10432: 17.5434% -Rate for instruction 10433: 17.5429% -Rate for instruction 10434: 17.5419% -Rate for instruction 10435: 17.5417% -Rate for instruction 10436: 17.5404% -Rate for instruction 10437: 17.5406% -Rate for instruction 10438: 17.5407% -Rate for instruction 10439: 17.5402% -Rate for instruction 10440: 17.5396% -Rate for instruction 10441: 17.5397% -Rate for instruction 10442: 17.5392% -Rate for instruction 10443: 17.5397% -Rate for instruction 10444: 17.5388% -Rate for instruction 10445: 17.5378% -Rate for instruction 10446: 17.5372% -Rate for instruction 10447: 17.5367% -Rate for instruction 10448: 17.5357% -Rate for instruction 10449: 17.5366% -Rate for instruction 10450: 17.5375% -Rate for instruction 10451: 17.5362% -Rate for instruction 10452: 17.5353% -Rate for instruction 10453: 17.5358% -Rate for instruction 10454: 17.5349% -Rate for instruction 10455: 17.5335% -Rate for instruction 10456: 17.5341% -Rate for instruction 10457: 17.535% -Rate for instruction 10458: 17.5348% -Rate for instruction 10459: 17.5368% -Rate for instruction 10460: 17.538% -Rate for instruction 10461: 17.5367% -Rate for instruction 10462: 17.5365% -Rate for instruction 10463: 17.5393% -Rate for instruction 10464: 17.5379% -Rate for instruction 10465: 17.5381% -Rate for instruction 10466: 17.5397% -Rate for instruction 10467: 17.5417% -Rate for instruction 10468: 17.5441% -Rate for instruction 10469: 17.5443% -Rate for instruction 10470: 17.5441% -Rate for instruction 10471: 17.5428% -Rate for instruction 10472: 17.5436% -Rate for instruction 10473: 17.5423% -Rate for instruction 10474: 17.5425% -Rate for instruction 10475: 17.5441% -Rate for instruction 10476: 17.5447% -Rate for instruction 10477: 17.5456% -Rate for instruction 10478: 17.5464% -Rate for instruction 10479: 17.547% -Rate for instruction 10480: 17.5475% -Rate for instruction 10481: 17.5484% -Rate for instruction 10482: 17.5508% -Rate for instruction 10483: 17.5506% -Rate for instruction 10484: 17.5511% -Rate for instruction 10485: 17.552% -Rate for instruction 10486: 17.5536% -Rate for instruction 10487: 17.553% -Rate for instruction 10488: 17.5525% -Rate for instruction 10489: 17.5537% -Rate for instruction 10490: 17.5542% -Rate for instruction 10491: 17.5559% -Rate for instruction 10492: 17.5568% -Rate for instruction 10493: 17.5577% -Rate for instruction 10494: 17.5596% -Rate for instruction 10495: 17.5605% -Rate for instruction 10496: 17.5614% -Rate for instruction 10497: 17.5638% -Rate for instruction 10498: 17.565% -Rate for instruction 10499: 17.5648% -Rate for instruction 10500: 17.5665% -Rate for instruction 10501: 17.5663% -Rate for instruction 10502: 17.5679% -Rate for instruction 10503: 17.5673% -Rate for instruction 10504: 17.5682% -Rate for instruction 10505: 17.5687% -Rate for instruction 10506: 17.5692% -Rate for instruction 10507: 17.5679% -Rate for instruction 10508: 17.5677% -Rate for instruction 10509: 17.5686% -Rate for instruction 10510: 17.5691% -Rate for instruction 10511: 17.5708% -Rate for instruction 10512: 17.5717% -Rate for instruction 10513: 17.5729% -Rate for instruction 10514: 17.5742% -Rate for instruction 10515: 17.5754% -Rate for instruction 10516: 17.5763% -Rate for instruction 10517: 17.5768% -Rate for instruction 10518: 17.5774% -Rate for instruction 10519: 17.5782% -Rate for instruction 10520: 17.5799% -Rate for instruction 10521: 17.5793% -Rate for instruction 10522: 17.578% -Rate for instruction 10523: 17.58% -Rate for instruction 10524: 17.5805% -Rate for instruction 10525: 17.5799% -Rate for instruction 10526: 17.579% -Rate for instruction 10527: 17.5802% -Rate for instruction 10528: 17.5789% -Rate for instruction 10529: 17.5791% -Rate for instruction 10530: 17.5785% -Rate for instruction 10531: 17.5783% -Rate for instruction 10532: 17.5799% -Rate for instruction 10533: 17.5804% -Rate for instruction 10534: 17.581% -Rate for instruction 10535: 17.5807% -Rate for instruction 10536: 17.5813% -Rate for instruction 10537: 17.5822% -Rate for instruction 10538: 17.5812% -Rate for instruction 10539: 17.5806% -Rate for instruction 10540: 17.5804% -Rate for instruction 10541: 17.5799% -Rate for instruction 10542: 17.5793% -Rate for instruction 10543: 17.578% -Rate for instruction 10544: 17.5767% -Rate for instruction 10545: 17.5761% -Rate for instruction 10546: 17.5752% -Rate for instruction 10547: 17.5746% -Rate for instruction 10548: 17.5766% -Rate for instruction 10549: 17.5753% -Rate for instruction 10550: 17.5743% -Rate for instruction 10551: 17.5749% -Rate for instruction 10552: 17.5743% -Rate for instruction 10553: 17.5741% -Rate for instruction 10554: 17.5746% -Rate for instruction 10555: 17.5748% -Rate for instruction 10556: 17.5738% -Rate for instruction 10557: 17.5725% -Rate for instruction 10558: 17.572% -Rate for instruction 10559: 17.5718% -Rate for instruction 10560: 17.5715% -Rate for instruction 10561: 17.5702% -Rate for instruction 10562: 17.5693% -Rate for instruction 10563: 17.568% -Rate for instruction 10564: 17.5682% -Rate for instruction 10565: 17.5672% -Rate for instruction 10566: 17.5674% -Rate for instruction 10567: 17.5672% -Rate for instruction 10568: 17.5659% -Rate for instruction 10569: 17.5653% -Rate for instruction 10570: 17.5644% -Rate for instruction 10571: 17.5664% -Rate for instruction 10572: 17.5683% -Rate for instruction 10573: 17.5681% -Rate for instruction 10574: 17.5672% -Rate for instruction 10575: 17.5666% -Rate for instruction 10576: 17.5664% -Rate for instruction 10577: 17.5662% -Rate for instruction 10578: 17.5653% -Rate for instruction 10579: 17.5669% -Rate for instruction 10580: 17.5689% -Rate for instruction 10581: 17.5701% -Rate for instruction 10582: 17.5695% -Rate for instruction 10583: 17.5715% -Rate for instruction 10584: 17.5713% -Rate for instruction 10585: 17.5718% -Rate for instruction 10586: 17.5742% -Rate for instruction 10587: 17.5761% -Rate for instruction 10588: 17.5774% -Rate for instruction 10589: 17.5783% -Rate for instruction 10590: 17.5777% -Rate for instruction 10591: 17.5771% -Rate for instruction 10592: 17.5773% -Rate for instruction 10593: 17.5767% -Rate for instruction 10594: 17.5758% -Rate for instruction 10595: 17.5756% -Rate for instruction 10596: 17.5761% -Rate for instruction 10597: 17.5752% -Rate for instruction 10598: 17.5757% -Rate for instruction 10599: 17.5747% -Rate for instruction 10600: 17.5749% -Rate for instruction 10601: 17.5747% -Rate for instruction 10602: 17.5767% -Rate for instruction 10603: 17.5779% -Rate for instruction 10604: 17.5766% -Rate for instruction 10605: 17.576% -Rate for instruction 10606: 17.5773% -Rate for instruction 10607: 17.5785% -Rate for instruction 10608: 17.5794% -Rate for instruction 10609: 17.5807% -Rate for instruction 10610: 17.583% -Rate for instruction 10611: 17.5842% -Rate for instruction 10612: 17.5829% -Rate for instruction 10613: 17.5831% -Rate for instruction 10614: 17.584% -Rate for instruction 10615: 17.5867% -Rate for instruction 10616: 17.5854% -Rate for instruction 10617: 17.5859% -Rate for instruction 10618: 17.5846% -Rate for instruction 10619: 17.5837% -Rate for instruction 10620: 17.5827% -Rate for instruction 10621: 17.5814% -Rate for instruction 10622: 17.5805% -Rate for instruction 10623: 17.5825% -Rate for instruction 10624: 17.5819% -Rate for instruction 10625: 17.5821% -Rate for instruction 10626: 17.5826% -Rate for instruction 10627: 17.5835% -Rate for instruction 10628: 17.5829% -Rate for instruction 10629: 17.5838% -Rate for instruction 10630: 17.5846% -Rate for instruction 10631: 17.5866% -Rate for instruction 10632: 17.5886% -Rate for instruction 10633: 17.5898% -Rate for instruction 10634: 17.5885% -Rate for instruction 10635: 17.5876% -Rate for instruction 10636: 17.5863% -Rate for instruction 10637: 17.5875% -Rate for instruction 10638: 17.588% -Rate for instruction 10639: 17.5868% -Rate for instruction 10640: 17.5858% -Rate for instruction 10641: 17.5845% -Rate for instruction 10642: 17.5872% -Rate for instruction 10643: 17.5885% -Rate for instruction 10644: 17.5897% -Rate for instruction 10645: 17.592% -Rate for instruction 10646: 17.5936% -Rate for instruction 10647: 17.5927% -Rate for instruction 10648: 17.5957% -Rate for instruction 10649: 17.5948% -Rate for instruction 10650: 17.5968% -Rate for instruction 10651: 17.5958% -Rate for instruction 10652: 17.5981% -Rate for instruction 10653: 17.599% -Rate for instruction 10654: 17.6006% -Rate for instruction 10655: 17.5993% -Rate for instruction 10656: 17.5988% -Rate for instruction 10657: 17.5978% -Rate for instruction 10658: 17.5976% -Rate for instruction 10659: 17.5963% -Rate for instruction 10660: 17.5954% -Rate for instruction 10661: 17.5948% -Rate for instruction 10662: 17.5964% -Rate for instruction 10663: 17.5951% -Rate for instruction 10664: 17.5967% -Rate for instruction 10665: 17.5987% -Rate for instruction 10666: 17.5974% -Rate for instruction 10667: 17.5979% -Rate for instruction 10668: 17.5988% -Rate for instruction 10669: 17.5993% -Rate for instruction 10670: 17.5987% -Rate for instruction 10671: 17.5975% -Rate for instruction 10672: 17.5976% -Rate for instruction 10673: 17.597% -Rate for instruction 10674: 17.5957% -Rate for instruction 10675: 17.5948% -Rate for instruction 10676: 17.5961% -Rate for instruction 10677: 17.598% -Rate for instruction 10678: 17.5996% -Rate for instruction 10679: 17.6008% -Rate for instruction 10680: 17.6028% -Rate for instruction 10681: 17.6015% -Rate for instruction 10682: 17.6009% -Rate for instruction 10683: 17.5996% -Rate for instruction 10684: 17.5994% -Rate for instruction 10685: 17.5992% -Rate for instruction 10686: 17.6005% -Rate for instruction 10687: 17.6024% -Rate for instruction 10688: 17.6029% -Rate for instruction 10689: 17.6038% -Rate for instruction 10690: 17.6047% -Rate for instruction 10691: 17.6037% -Rate for instruction 10692: 17.6039% -Rate for instruction 10693: 17.6058% -Rate for instruction 10694: 17.6071% -Rate for instruction 10695: 17.6083% -Rate for instruction 10696: 17.6092% -Rate for instruction 10697: 17.61% -Rate for instruction 10698: 17.6098% -Rate for instruction 10699: 17.6111% -Rate for instruction 10700: 17.613% -Rate for instruction 10701: 17.6125% -Rate for instruction 10702: 17.613% -Rate for instruction 10703: 17.6142% -Rate for instruction 10704: 17.6147% -Rate for instruction 10705: 17.6141% -Rate for instruction 10706: 17.6139% -Rate for instruction 10707: 17.6155% -Rate for instruction 10708: 17.6142% -Rate for instruction 10709: 17.6137% -Rate for instruction 10710: 17.6131% -Rate for instruction 10711: 17.6147% -Rate for instruction 10712: 17.6159% -Rate for instruction 10713: 17.615% -Rate for instruction 10714: 17.618% -Rate for instruction 10715: 17.6189% -Rate for instruction 10716: 17.6187% -Rate for instruction 10717: 17.621% -Rate for instruction 10718: 17.6197% -Rate for instruction 10719: 17.6223% -Rate for instruction 10720: 17.6243% -Rate for instruction 10721: 17.623% -Rate for instruction 10722: 17.6224% -Rate for instruction 10723: 17.6244% -Rate for instruction 10724: 17.6235% -Rate for instruction 10725: 17.6222% -Rate for instruction 10726: 17.6234% -Rate for instruction 10727: 17.6232% -Rate for instruction 10728: 17.6219% -Rate for instruction 10729: 17.6228% -Rate for instruction 10730: 17.6226% -Rate for instruction 10731: 17.6227% -Rate for instruction 10732: 17.6221% -Rate for instruction 10733: 17.6227% -Rate for instruction 10734: 17.6221% -Rate for instruction 10735: 17.6244% -Rate for instruction 10736: 17.6256% -Rate for instruction 10737: 17.6265% -Rate for instruction 10738: 17.6259% -Rate for instruction 10739: 17.6257% -Rate for instruction 10740: 17.6273% -Rate for instruction 10741: 17.6289% -Rate for instruction 10742: 17.6304% -Rate for instruction 10743: 17.6306% -Rate for instruction 10744: 17.6322% -Rate for instruction 10745: 17.6338% -Rate for instruction 10746: 17.6325% -Rate for instruction 10747: 17.6326% -Rate for instruction 10748: 17.6321% -Rate for instruction 10749: 17.6322% -Rate for instruction 10750: 17.632% -Rate for instruction 10751: 17.6311% -Rate for instruction 10752: 17.6309% -Rate for instruction 10753: 17.6296% -Rate for instruction 10754: 17.6304% -Rate for instruction 10755: 17.632% -Rate for instruction 10756: 17.6311% -Rate for instruction 10757: 17.633% -Rate for instruction 10758: 17.635% -Rate for instruction 10759: 17.6351% -Rate for instruction 10760: 17.6363% -Rate for instruction 10761: 17.6379% -Rate for instruction 10762: 17.6366% -Rate for instruction 10763: 17.6382% -Rate for instruction 10764: 17.6384% -Rate for instruction 10765: 17.6371% -Rate for instruction 10766: 17.6376% -Rate for instruction 10767: 17.6367% -Rate for instruction 10768: 17.6354% -Rate for instruction 10769: 17.6345% -Rate for instruction 10770: 17.635% -Rate for instruction 10771: 17.6348% -Rate for instruction 10772: 17.6335% -Rate for instruction 10773: 17.6329% -Rate for instruction 10774: 17.6345% -Rate for instruction 10775: 17.6336% -Rate for instruction 10776: 17.6326% -Rate for instruction 10777: 17.6346% -Rate for instruction 10778: 17.6344% -Rate for instruction 10779: 17.6356% -Rate for instruction 10780: 17.6364% -Rate for instruction 10781: 17.6373% -Rate for instruction 10782: 17.6371% -Rate for instruction 10783: 17.6358% -Rate for instruction 10784: 17.6349% -Rate for instruction 10785: 17.6368% -Rate for instruction 10786: 17.637% -Rate for instruction 10787: 17.6378% -Rate for instruction 10788: 17.6394% -Rate for instruction 10789: 17.6392% -Rate for instruction 10790: 17.639% -Rate for instruction 10791: 17.6388% -Rate for instruction 10792: 17.6396% -Rate for instruction 10793: 17.6416% -Rate for instruction 10794: 17.6406% -Rate for instruction 10795: 17.6401% -Rate for instruction 10796: 17.6388% -Rate for instruction 10797: 17.6375% -Rate for instruction 10798: 17.6366% -Rate for instruction 10799: 17.6385% -Rate for instruction 10800: 17.6383% -Rate for instruction 10801: 17.6388% -Rate for instruction 10802: 17.6379% -Rate for instruction 10803: 17.6405% -Rate for instruction 10804: 17.6403% -Rate for instruction 10805: 17.6419% -Rate for instruction 10806: 17.6435% -Rate for instruction 10807: 17.6447% -Rate for instruction 10808: 17.6463% -Rate for instruction 10809: 17.6482% -Rate for instruction 10810: 17.649% -Rate for instruction 10811: 17.6481% -Rate for instruction 10812: 17.6468% -Rate for instruction 10813: 17.6484% -Rate for instruction 10814: 17.65% -Rate for instruction 10815: 17.6516% -Rate for instruction 10816: 17.6517% -Rate for instruction 10817: 17.6529% -Rate for instruction 10818: 17.6523% -Rate for instruction 10819: 17.6543% -Rate for instruction 10820: 17.6537% -Rate for instruction 10821: 17.6553% -Rate for instruction 10822: 17.654% -Rate for instruction 10823: 17.6563% -Rate for instruction 10824: 17.6578% -Rate for instruction 10825: 17.6569% -Rate for instruction 10826: 17.6588% -Rate for instruction 10827: 17.6579% -Rate for instruction 10828: 17.6602% -Rate for instruction 10829: 17.6596% -Rate for instruction 10830: 17.6587% -Rate for instruction 10831: 17.6585% -Rate for instruction 10832: 17.6601% -Rate for instruction 10833: 17.6591% -Rate for instruction 10834: 17.6579% -Rate for instruction 10835: 17.6591% -Rate for instruction 10836: 17.6592% -Rate for instruction 10837: 17.6583% -Rate for instruction 10838: 17.657% -Rate for instruction 10839: 17.6579% -Rate for instruction 10840: 17.6587% -Rate for instruction 10841: 17.6592% -Rate for instruction 10842: 17.6601% -Rate for instruction 10843: 17.6588% -Rate for instruction 10844: 17.6579% -Rate for instruction 10845: 17.6566% -Rate for instruction 10846: 17.6561% -Rate for instruction 10847: 17.6548% -Rate for instruction 10848: 17.6539% -Rate for instruction 10849: 17.6551% -Rate for instruction 10850: 17.6556% -Rate for instruction 10851: 17.6554% -Rate for instruction 10852: 17.6569% -Rate for instruction 10853: 17.656% -Rate for instruction 10854: 17.6551% -Rate for instruction 10855: 17.6538% -Rate for instruction 10856: 17.6543% -Rate for instruction 10857: 17.6531% -Rate for instruction 10858: 17.6532% -Rate for instruction 10859: 17.6523% -Rate for instruction 10860: 17.651% -Rate for instruction 10861: 17.6512% -Rate for instruction 10862: 17.6506% -Rate for instruction 10863: 17.6493% -Rate for instruction 10864: 17.6488% -Rate for instruction 10865: 17.6482% -Rate for instruction 10866: 17.648% -Rate for instruction 10867: 17.6474% -Rate for instruction 10868: 17.6483% -Rate for instruction 10869: 17.6474% -Rate for instruction 10870: 17.6465% -Rate for instruction 10871: 17.6459% -Rate for instruction 10872: 17.645% -Rate for instruction 10873: 17.6437% -Rate for instruction 10874: 17.6428% -Rate for instruction 10875: 17.6415% -Rate for instruction 10876: 17.642% -Rate for instruction 10877: 17.6418% -Rate for instruction 10878: 17.6413% -Rate for instruction 10879: 17.64% -Rate for instruction 10880: 17.6398% -Rate for instruction 10881: 17.6389% -Rate for instruction 10882: 17.6401% -Rate for instruction 10883: 17.6388% -Rate for instruction 10884: 17.6379% -Rate for instruction 10885: 17.6395% -Rate for instruction 10886: 17.641% -Rate for instruction 10887: 17.6405% -Rate for instruction 10888: 17.6413% -Rate for instruction 10889: 17.6404% -Rate for instruction 10890: 17.6402% -Rate for instruction 10891: 17.6393% -Rate for instruction 10892: 17.6412% -Rate for instruction 10893: 17.6399% -Rate for instruction 10894: 17.6397% -Rate for instruction 10895: 17.6402% -Rate for instruction 10896: 17.6393% -Rate for instruction 10897: 17.6391% -Rate for instruction 10898: 17.6406% -Rate for instruction 10899: 17.6418% -Rate for instruction 10900: 17.6409% -Rate for instruction 10901: 17.6421% -Rate for instruction 10902: 17.6412% -Rate for instruction 10903: 17.6431% -Rate for instruction 10904: 17.6422% -Rate for instruction 10905: 17.6417% -Rate for instruction 10906: 17.6404% -Rate for instruction 10907: 17.6391% -Rate for instruction 10908: 17.6389% -Rate for instruction 10909: 17.6394% -Rate for instruction 10910: 17.6406% -Rate for instruction 10911: 17.6418% -Rate for instruction 10912: 17.6416% -Rate for instruction 10913: 17.6407% -Rate for instruction 10914: 17.6402% -Rate for instruction 10915: 17.6392% -Rate for instruction 10916: 17.639% -Rate for instruction 10917: 17.6392% -Rate for instruction 10918: 17.6407% -Rate for instruction 10919: 17.6409% -Rate for instruction 10920: 17.641% -Rate for instruction 10921: 17.6405% -Rate for instruction 10922: 17.6424% -Rate for instruction 10923: 17.6411% -Rate for instruction 10924: 17.6406% -Rate for instruction 10925: 17.64% -Rate for instruction 10926: 17.6401% -Rate for instruction 10927: 17.6399% -Rate for instruction 10928: 17.6394% -Rate for instruction 10929: 17.6385% -Rate for instruction 10930: 17.6383% -Rate for instruction 10931: 17.6398% -Rate for instruction 10932: 17.64% -Rate for instruction 10933: 17.6394% -Rate for instruction 10934: 17.6388% -Rate for instruction 10935: 17.6383% -Rate for instruction 10936: 17.6377% -Rate for instruction 10937: 17.6396% -Rate for instruction 10938: 17.6415% -Rate for instruction 10939: 17.6406% -Rate for instruction 10940: 17.6404% -Rate for instruction 10941: 17.6399% -Rate for instruction 10942: 17.64% -Rate for instruction 10943: 17.6391% -Rate for instruction 10944: 17.6382% -Rate for instruction 10945: 17.6383% -Rate for instruction 10946: 17.6374% -Rate for instruction 10947: 17.6362% -Rate for instruction 10948: 17.6381% -Rate for instruction 10949: 17.6389% -Rate for instruction 10950: 17.6405% -Rate for instruction 10951: 17.6399% -Rate for instruction 10952: 17.6404% -Rate for instruction 10953: 17.6409% -Rate for instruction 10954: 17.6428% -Rate for instruction 10955: 17.6447% -Rate for instruction 10956: 17.6463% -Rate for instruction 10957: 17.645% -Rate for instruction 10958: 17.6458% -Rate for instruction 10959: 17.6488% -Rate for instruction 10960: 17.6493% -Rate for instruction 10961: 17.648% -Rate for instruction 10962: 17.6475% -Rate for instruction 10963: 17.6462% -Rate for instruction 10964: 17.645% -Rate for instruction 10965: 17.6447% -Rate for instruction 10966: 17.6456% -Rate for instruction 10967: 17.645% -Rate for instruction 10968: 17.6438% -Rate for instruction 10969: 17.6429% -Rate for instruction 10970: 17.643% -Rate for instruction 10971: 17.6418% -Rate for instruction 10972: 17.6409% -Rate for instruction 10973: 17.6417% -Rate for instruction 10974: 17.6422% -Rate for instruction 10975: 17.6409% -Rate for instruction 10976: 17.6428% -Rate for instruction 10977: 17.6437% -Rate for instruction 10978: 17.6424% -Rate for instruction 10979: 17.6419% -Rate for instruction 10980: 17.6413% -Rate for instruction 10981: 17.6429% -Rate for instruction 10982: 17.6423% -Rate for instruction 10983: 17.6438% -Rate for instruction 10984: 17.6464% -Rate for instruction 10985: 17.648% -Rate for instruction 10986: 17.6495% -Rate for instruction 10987: 17.6497% -Rate for instruction 10988: 17.6516% -Rate for instruction 10989: 17.6503% -Rate for instruction 10990: 17.6522% -Rate for instruction 10991: 17.652% -Rate for instruction 10992: 17.6514% -Rate for instruction 10993: 17.6512% -Rate for instruction 10994: 17.65% -Rate for instruction 10995: 17.6494% -Rate for instruction 10996: 17.6482% -Rate for instruction 10997: 17.6473% -Rate for instruction 10998: 17.6488% -Rate for instruction 10999: 17.649% -Rate for instruction 11000: 17.6505% -Rate for instruction 11001: 17.6499% -Rate for instruction 11002: 17.6511% -Rate for instruction 11003: 17.6499% -Rate for instruction 11004: 17.65% -Rate for instruction 11005: 17.6495% -Rate for instruction 11006: 17.6507% -Rate for instruction 11007: 17.6515% -Rate for instruction 11008: 17.652% -Rate for instruction 11009: 17.6535% -Rate for instruction 11010: 17.6523% -Rate for instruction 11011: 17.6517% -Rate for instruction 11012: 17.6505% -Rate for instruction 11013: 17.6496% -Rate for instruction 11014: 17.6483% -Rate for instruction 11015: 17.6481% -Rate for instruction 11016: 17.6469% -Rate for instruction 11017: 17.647% -Rate for instruction 11018: 17.6464% -Rate for instruction 11019: 17.6455% -Rate for instruction 11020: 17.6446% -Rate for instruction 11021: 17.6437% -Rate for instruction 11022: 17.6435% -Rate for instruction 11023: 17.643% -Rate for instruction 11024: 17.6417% -Rate for instruction 11025: 17.6419% -Rate for instruction 11026: 17.6431% -Rate for instruction 11027: 17.6432% -Rate for instruction 11028: 17.6426% -Rate for instruction 11029: 17.6428% -Rate for instruction 11030: 17.6429% -Rate for instruction 11031: 17.6427% -Rate for instruction 11032: 17.6436% -Rate for instruction 11033: 17.6434% -Rate for instruction 11034: 17.6432% -Rate for instruction 11035: 17.6437% -Rate for instruction 11036: 17.6424% -Rate for instruction 11037: 17.6429% -Rate for instruction 11038: 17.642% -Rate for instruction 11039: 17.6421% -Rate for instruction 11040: 17.6426% -Rate for instruction 11041: 17.6428% -Rate for instruction 11042: 17.6422% -Rate for instruction 11043: 17.642% -Rate for instruction 11044: 17.6408% -Rate for instruction 11045: 17.6402% -Rate for instruction 11046: 17.6411% -Rate for instruction 11047: 17.6398% -Rate for instruction 11048: 17.6424% -Rate for instruction 11049: 17.6415% -Rate for instruction 11050: 17.6441% -Rate for instruction 11051: 17.6446% -Rate for instruction 11052: 17.6437% -Rate for instruction 11053: 17.6438% -Rate for instruction 11054: 17.6429% -Rate for instruction 11055: 17.6434% -Rate for instruction 11056: 17.6435% -Rate for instruction 11057: 17.6454% -Rate for instruction 11058: 17.6445% -Rate for instruction 11059: 17.6461% -Rate for instruction 11060: 17.6479% -Rate for instruction 11061: 17.6488% -Rate for instruction 11062: 17.6482% -Rate for instruction 11063: 17.6484% -Rate for instruction 11064: 17.6485% -Rate for instruction 11065: 17.6483% -Rate for instruction 11066: 17.6502% -Rate for instruction 11067: 17.6507% -Rate for instruction 11068: 17.6515% -Rate for instruction 11069: 17.6506% -Rate for instruction 11070: 17.6518% -Rate for instruction 11071: 17.6537% -Rate for instruction 11072: 17.6528% -Rate for instruction 11073: 17.6533% -Rate for instruction 11074: 17.6541% -Rate for instruction 11075: 17.6529% -Rate for instruction 11076: 17.6523% -Rate for instruction 11077: 17.6538% -Rate for instruction 11078: 17.6533% -Rate for instruction 11079: 17.6545% -Rate for instruction 11080: 17.6546% -Rate for instruction 11081: 17.6544% -Rate for instruction 11082: 17.6546% -Rate for instruction 11083: 17.6557% -Rate for instruction 11084: 17.6569% -Rate for instruction 11085: 17.6574% -Rate for instruction 11086: 17.6575% -Rate for instruction 11087: 17.6573% -Rate for instruction 11088: 17.6592% -Rate for instruction 11089: 17.6611% -Rate for instruction 11090: 17.6626% -Rate for instruction 11091: 17.6635% -Rate for instruction 11092: 17.6646% -Rate for instruction 11093: 17.6655% -Rate for instruction 11094: 17.6642% -Rate for instruction 11095: 17.6661% -Rate for instruction 11096: 17.6662% -Rate for instruction 11097: 17.6667% -Rate for instruction 11098: 17.6686% -Rate for instruction 11099: 17.6687% -Rate for instruction 11100: 17.6699% -Rate for instruction 11101: 17.6704% -Rate for instruction 11102: 17.6706% -Rate for instruction 11103: 17.67% -Rate for instruction 11104: 17.6712% -Rate for instruction 11105: 17.6699% -Rate for instruction 11106: 17.6711% -Rate for instruction 11107: 17.6702% -Rate for instruction 11108: 17.6721% -Rate for instruction 11109: 17.6715% -Rate for instruction 11110: 17.6734% -Rate for instruction 11111: 17.6725% -Rate for instruction 11112: 17.672% -Rate for instruction 11113: 17.6718% -Rate for instruction 11114: 17.6715% -Rate for instruction 11115: 17.6731% -Rate for instruction 11116: 17.6729% -Rate for instruction 11117: 17.6737% -Rate for instruction 11118: 17.6731% -Rate for instruction 11119: 17.674% -Rate for instruction 11120: 17.6765% -Rate for instruction 11121: 17.6774% -Rate for instruction 11122: 17.6779% -Rate for instruction 11123: 17.6787% -Rate for instruction 11124: 17.6802% -Rate for instruction 11125: 17.681% -Rate for instruction 11126: 17.6801% -Rate for instruction 11127: 17.681% -Rate for instruction 11128: 17.6832% -Rate for instruction 11129: 17.6847% -Rate for instruction 11130: 17.6859% -Rate for instruction 11131: 17.6867% -Rate for instruction 11132: 17.6872% -Rate for instruction 11133: 17.6863% -Rate for instruction 11134: 17.6871% -Rate for instruction 11135: 17.6876% -Rate for instruction 11136: 17.6881% -Rate for instruction 11137: 17.6886% -Rate for instruction 11138: 17.6898% -Rate for instruction 11139: 17.6906% -Rate for instruction 11140: 17.69% -Rate for instruction 11141: 17.6888% -Rate for instruction 11142: 17.69% -Rate for instruction 11143: 17.6908% -Rate for instruction 11144: 17.692% -Rate for instruction 11145: 17.6928% -Rate for instruction 11146: 17.6933% -Rate for instruction 11147: 17.6941% -Rate for instruction 11148: 17.6956% -Rate for instruction 11149: 17.6964% -Rate for instruction 11150: 17.6955% -Rate for instruction 11151: 17.6953% -Rate for instruction 11152: 17.6944% -Rate for instruction 11153: 17.6949% -Rate for instruction 11154: 17.6961% -Rate for instruction 11155: 17.6955% -Rate for instruction 11156: 17.6953% -Rate for instruction 11157: 17.6962% -Rate for instruction 11158: 17.6956% -Rate for instruction 11159: 17.6958% -Rate for instruction 11160: 17.6969% -Rate for instruction 11161: 17.6974% -Rate for instruction 11162: 17.7006% -Rate for instruction 11163: 17.7028% -Rate for instruction 11164: 17.7026% -Rate for instruction 11165: 17.7014% -Rate for instruction 11166: 17.7008% -Rate for instruction 11167: 17.7024% -Rate for instruction 11168: 17.7035% -Rate for instruction 11169: 17.7037% -Rate for instruction 11170: 17.7038% -Rate for instruction 11171: 17.7043% -Rate for instruction 11172: 17.703% -Rate for instruction 11173: 17.7022% -Rate for instruction 11174: 17.7016% -Rate for instruction 11175: 17.7028% -Rate for instruction 11176: 17.7033% -Rate for instruction 11177: 17.7024% -Rate for instruction 11178: 17.7032% -Rate for instruction 11179: 17.7023% -Rate for instruction 11180: 17.7024% -Rate for instruction 11181: 17.7012% -Rate for instruction 11182: 17.7013% -Rate for instruction 11183: 17.7008% -Rate for instruction 11184: 17.7006% -Rate for instruction 11185: 17.701% -Rate for instruction 11186: 17.7022% -Rate for instruction 11187: 17.702% -Rate for instruction 11188: 17.7032% -Rate for instruction 11189: 17.7061% -Rate for instruction 11190: 17.7058% -Rate for instruction 11191: 17.7046% -Rate for instruction 11192: 17.7054% -Rate for instruction 11193: 17.7042% -Rate for instruction 11194: 17.7054% -Rate for instruction 11195: 17.7041% -Rate for instruction 11196: 17.7036% -Rate for instruction 11197: 17.7044% -Rate for instruction 11198: 17.7052% -Rate for instruction 11199: 17.706% -Rate for instruction 11200: 17.7048% -Rate for instruction 11201: 17.7063% -Rate for instruction 11202: 17.7051% -Rate for instruction 11203: 17.7038% -Rate for instruction 11204: 17.704% -Rate for instruction 11205: 17.7034% -Rate for instruction 11206: 17.7049% -Rate for instruction 11207: 17.7061% -Rate for instruction 11208: 17.7059% -Rate for instruction 11209: 17.7064% -Rate for instruction 11210: 17.7072% -Rate for instruction 11211: 17.7084% -Rate for instruction 11212: 17.7106% -Rate for instruction 11213: 17.7124% -Rate for instruction 11214: 17.7136% -Rate for instruction 11215: 17.7161% -Rate for instruction 11216: 17.7169% -Rate for instruction 11217: 17.7177% -Rate for instruction 11218: 17.7169% -Rate for instruction 11219: 17.716% -Rate for instruction 11220: 17.7158% -Rate for instruction 11221: 17.7152% -Rate for instruction 11222: 17.7143% -Rate for instruction 11223: 17.7131% -Rate for instruction 11224: 17.7129% -Rate for instruction 11225: 17.7123% -Rate for instruction 11226: 17.7114% -Rate for instruction 11227: 17.7122% -Rate for instruction 11228: 17.7137% -Rate for instruction 11229: 17.7125% -Rate for instruction 11230: 17.714% -Rate for instruction 11231: 17.7148% -Rate for instruction 11232: 17.7143% -Rate for instruction 11233: 17.7137% -Rate for instruction 11234: 17.7139% -Rate for instruction 11235: 17.7144% -Rate for instruction 11236: 17.7135% -Rate for instruction 11237: 17.7156% -Rate for instruction 11238: 17.7148% -Rate for instruction 11239: 17.7159% -Rate for instruction 11240: 17.7178% -Rate for instruction 11241: 17.7193% -Rate for instruction 11242: 17.7197% -Rate for instruction 11243: 17.7216% -Rate for instruction 11244: 17.7234% -Rate for instruction 11245: 17.7249% -Rate for instruction 11246: 17.7264% -Rate for instruction 11247: 17.7259% -Rate for instruction 11248: 17.7267% -Rate for instruction 11249: 17.7255% -Rate for instruction 11250: 17.7246% -Rate for instruction 11251: 17.7237% -Rate for instruction 11252: 17.7225% -Rate for instruction 11253: 17.7222% -Rate for instruction 11254: 17.721% -Rate for instruction 11255: 17.7201% -Rate for instruction 11256: 17.7216% -Rate for instruction 11257: 17.7224% -Rate for instruction 11258: 17.725% -Rate for instruction 11259: 17.7241% -Rate for instruction 11260: 17.7232% -Rate for instruction 11261: 17.7223% -Rate for instruction 11262: 17.7231% -Rate for instruction 11263: 17.7236% -Rate for instruction 11264: 17.7227% -Rate for instruction 11265: 17.7228% -Rate for instruction 11266: 17.7216% -Rate for instruction 11267: 17.7214% -Rate for instruction 11268: 17.7205% -Rate for instruction 11269: 17.7213% -Rate for instruction 11270: 17.7232% -Rate for instruction 11271: 17.7219% -Rate for instruction 11272: 17.721% -Rate for instruction 11273: 17.7198% -Rate for instruction 11274: 17.7206% -Rate for instruction 11275: 17.7194% -Rate for instruction 11276: 17.7185% -Rate for instruction 11277: 17.718% -Rate for instruction 11278: 17.7167% -Rate for instruction 11279: 17.7155% -Rate for instruction 11280: 17.7156% -Rate for instruction 11281: 17.7144% -Rate for instruction 11282: 17.7156% -Rate for instruction 11283: 17.716% -Rate for instruction 11284: 17.7148% -Rate for instruction 11285: 17.7146% -Rate for instruction 11286: 17.7137% -Rate for instruction 11287: 17.7142% -Rate for instruction 11288: 17.7147% -Rate for instruction 11289: 17.7155% -Rate for instruction 11290: 17.7156% -Rate for instruction 11291: 17.7151% -Rate for instruction 11292: 17.7162% -Rate for instruction 11293: 17.7164% -Rate for instruction 11294: 17.7151% -Rate for instruction 11295: 17.7153% -Rate for instruction 11296: 17.714% -Rate for instruction 11297: 17.7152% -Rate for instruction 11298: 17.715% -Rate for instruction 11299: 17.7158% -Rate for instruction 11300: 17.7166% -Rate for instruction 11301: 17.7164% -Rate for instruction 11302: 17.7152% -Rate for instruction 11303: 17.7146% -Rate for instruction 11304: 17.7141% -Rate for instruction 11305: 17.7142% -Rate for instruction 11306: 17.714% -Rate for instruction 11307: 17.7128% -Rate for instruction 11308: 17.7126% -Rate for instruction 11309: 17.7114% -Rate for instruction 11310: 17.7118% -Rate for instruction 11311: 17.7133% -Rate for instruction 11312: 17.7121% -Rate for instruction 11313: 17.7115% -Rate for instruction 11314: 17.712% -Rate for instruction 11315: 17.7115% -Rate for instruction 11316: 17.7103% -Rate for instruction 11317: 17.7094% -Rate for instruction 11318: 17.7102% -Rate for instruction 11319: 17.7103% -Rate for instruction 11320: 17.7108% -Rate for instruction 11321: 17.7116% -Rate for instruction 11322: 17.7104% -Rate for instruction 11323: 17.7098% -Rate for instruction 11324: 17.7086% -Rate for instruction 11325: 17.7077% -Rate for instruction 11326: 17.7075% -Rate for instruction 11327: 17.7066% -Rate for instruction 11328: 17.7068% -Rate for instruction 11329: 17.7079% -Rate for instruction 11330: 17.7094% -Rate for instruction 11331: 17.7106% -Rate for instruction 11332: 17.71% -Rate for instruction 11333: 17.7091% -Rate for instruction 11334: 17.7089% -Rate for instruction 11335: 17.7077% -Rate for instruction 11336: 17.7068% -Rate for instruction 11337: 17.7056% -Rate for instruction 11338: 17.7057% -Rate for instruction 11339: 17.7055% -Rate for instruction 11340: 17.706% -Rate for instruction 11341: 17.7051% -Rate for instruction 11342: 17.7053% -Rate for instruction 11343: 17.7044% -Rate for instruction 11344: 17.7035% -Rate for instruction 11345: 17.7046% -Rate for instruction 11346: 17.7038% -Rate for instruction 11347: 17.7025% -Rate for instruction 11348: 17.7027% -Rate for instruction 11349: 17.7015% -Rate for instruction 11350: 17.7026% -Rate for instruction 11351: 17.7038% -Rate for instruction 11352: 17.7049% -Rate for instruction 11353: 17.7057% -Rate for instruction 11354: 17.7072% -Rate for instruction 11355: 17.707% -Rate for instruction 11356: 17.7061% -Rate for instruction 11357: 17.708% -Rate for instruction 11358: 17.7084% -Rate for instruction 11359: 17.7079% -Rate for instruction 11360: 17.7073% -Rate for instruction 11361: 17.7061% -Rate for instruction 11362: 17.7059% -Rate for instruction 11363: 17.7047% -Rate for instruction 11364: 17.7042% -Rate for instruction 11365: 17.7039% -Rate for instruction 11366: 17.7034% -Rate for instruction 11367: 17.7032% -Rate for instruction 11368: 17.7023% -Rate for instruction 11369: 17.7014% -Rate for instruction 11370: 17.7009% -Rate for instruction 11371: 17.7007% -Rate for instruction 11372: 17.6995% -Rate for instruction 11373: 17.6986% -Rate for instruction 11374: 17.6984% -Rate for instruction 11375: 17.6979% -Rate for instruction 11376: 17.697% -Rate for instruction 11377: 17.6971% -Rate for instruction 11378: 17.6966% -Rate for instruction 11379: 17.697% -Rate for instruction 11380: 17.6972% -Rate for instruction 11381: 17.6976% -Rate for instruction 11382: 17.6988% -Rate for instruction 11383: 17.6983% -Rate for instruction 11384: 17.697% -Rate for instruction 11385: 17.6972% -Rate for instruction 11386: 17.696% -Rate for instruction 11387: 17.6961% -Rate for instruction 11388: 17.6962% -Rate for instruction 11389: 17.6967% -Rate for instruction 11390: 17.6989% -Rate for instruction 11391: 17.6987% -Rate for instruction 11392: 17.6974% -Rate for instruction 11393: 17.7003% -Rate for instruction 11394: 17.7004% -Rate for instruction 11395: 17.7016% -Rate for instruction 11396: 17.7027% -Rate for instruction 11397: 17.7038% -Rate for instruction 11398: 17.7036% -Rate for instruction 11399: 17.7031% -Rate for instruction 11400: 17.7019% -Rate for instruction 11401: 17.701% -Rate for instruction 11402: 17.6998% -Rate for instruction 11403: 17.6996% -Rate for instruction 11404: 17.6984% -Rate for instruction 11405: 17.6975% -Rate for instruction 11406: 17.6976% -Rate for instruction 11407: 17.6971% -Rate for instruction 11408: 17.6959% -Rate for instruction 11409: 17.695% -Rate for instruction 11410: 17.6965% -Rate for instruction 11411: 17.6956% -Rate for instruction 11412: 17.6968% -Rate for instruction 11413: 17.6969% -Rate for instruction 11414: 17.6974% -Rate for instruction 11415: 17.6965% -Rate for instruction 11416: 17.6963% -Rate for instruction 11417: 17.6974% -Rate for instruction 11418: 17.6976% -Rate for instruction 11419: 17.698% -Rate for instruction 11420: 17.6978% -Rate for instruction 11421: 17.698% -Rate for instruction 11422: 17.6968% -Rate for instruction 11423: 17.6962% -Rate for instruction 11424: 17.6957% -Rate for instruction 11425: 17.6948% -Rate for instruction 11426: 17.6943% -Rate for instruction 11427: 17.6951% -Rate for instruction 11428: 17.6945% -Rate for instruction 11429: 17.6943% -Rate for instruction 11430: 17.6951% -Rate for instruction 11431: 17.6959% -Rate for instruction 11432: 17.6961% -Rate for instruction 11433: 17.6965% -Rate for instruction 11434: 17.697% -Rate for instruction 11435: 17.6972% -Rate for instruction 11436: 17.6959% -Rate for instruction 11437: 17.6954% -Rate for instruction 11438: 17.6952% -Rate for instruction 11439: 17.6947% -Rate for instruction 11440: 17.6948% -Rate for instruction 11441: 17.6946% -Rate for instruction 11442: 17.6941% -Rate for instruction 11443: 17.6932% -Rate for instruction 11444: 17.693% -Rate for instruction 11445: 17.6924% -Rate for instruction 11446: 17.6916% -Rate for instruction 11447: 17.6914% -Rate for instruction 11448: 17.6908% -Rate for instruction 11449: 17.69% -Rate for instruction 11450: 17.6894% -Rate for instruction 11451: 17.6889% -Rate for instruction 11452: 17.6897% -Rate for instruction 11453: 17.6905% -Rate for instruction 11454: 17.6903% -Rate for instruction 11455: 17.6901% -Rate for instruction 11456: 17.6896% -Rate for instruction 11457: 17.6894% -Rate for instruction 11458: 17.6905% -Rate for instruction 11459: 17.6896% -Rate for instruction 11460: 17.6884% -Rate for instruction 11461: 17.6872% -Rate for instruction 11462: 17.686% -Rate for instruction 11463: 17.6865% -Rate for instruction 11464: 17.6856% -Rate for instruction 11465: 17.6851% -Rate for instruction 11466: 17.6849% -Rate for instruction 11467: 17.685% -Rate for instruction 11468: 17.6848% -Rate for instruction 11469: 17.6849% -Rate for instruction 11470: 17.6847% -Rate for instruction 11471: 17.6849% -Rate for instruction 11472: 17.6843% -Rate for instruction 11473: 17.6841% -Rate for instruction 11474: 17.6836% -Rate for instruction 11475: 17.6837% -Rate for instruction 11476: 17.6825% -Rate for instruction 11477: 17.682% -Rate for instruction 11478: 17.6825% -Rate for instruction 11479: 17.6819% -Rate for instruction 11480: 17.6817% -Rate for instruction 11481: 17.6835% -Rate for instruction 11482: 17.6837% -Rate for instruction 11483: 17.6868% -Rate for instruction 11484: 17.6873% -Rate for instruction 11485: 17.6878% -Rate for instruction 11486: 17.6872% -Rate for instruction 11487: 17.6887% -Rate for instruction 11488: 17.6902% -Rate for instruction 11489: 17.691% -Rate for instruction 11490: 17.6898% -Rate for instruction 11491: 17.6909% -Rate for instruction 11492: 17.6897% -Rate for instruction 11493: 17.6888% -Rate for instruction 11494: 17.69% -Rate for instruction 11495: 17.6888% -Rate for instruction 11496: 17.6896% -Rate for instruction 11497: 17.6884% -Rate for instruction 11498: 17.6875% -Rate for instruction 11499: 17.6893% -Rate for instruction 11500: 17.6918% -Rate for instruction 11501: 17.6936% -Rate for instruction 11502: 17.693% -Rate for instruction 11503: 17.6942% -Rate for instruction 11504: 17.6933% -Rate for instruction 11505: 17.6944% -Rate for instruction 11506: 17.6946% -Rate for instruction 11507: 17.6954% -Rate for instruction 11508: 17.6982% -Rate for instruction 11509: 17.6973% -Rate for instruction 11510: 17.7001% -Rate for instruction 11511: 17.7026% -Rate for instruction 11512: 17.7021% -Rate for instruction 11513: 17.7022% -Rate for instruction 11514: 17.7027% -Rate for instruction 11515: 17.7015% -Rate for instruction 11516: 17.7003% -Rate for instruction 11517: 17.7004% -Rate for instruction 11518: 17.6999% -Rate for instruction 11519: 17.699% -Rate for instruction 11520: 17.6985% -Rate for instruction 11521: 17.6979% -Rate for instruction 11522: 17.6967% -Rate for instruction 11523: 17.6968% -Rate for instruction 11524: 17.6963% -Rate for instruction 11525: 17.6974% -Rate for instruction 11526: 17.6989% -Rate for instruction 11527: 17.6977% -Rate for instruction 11528: 17.6972% -Rate for instruction 11529: 17.697% -Rate for instruction 11530: 17.6978% -Rate for instruction 11531: 17.7006% -Rate for instruction 11532: 17.7% -Rate for instruction 11533: 17.7018% -Rate for instruction 11534: 17.702% -Rate for instruction 11535: 17.7011% -Rate for instruction 11536: 17.7012% -Rate for instruction 11537: 17.702% -Rate for instruction 11538: 17.7025% -Rate for instruction 11539: 17.7033% -Rate for instruction 11540: 17.7044% -Rate for instruction 11541: 17.7032% -Rate for instruction 11542: 17.7027% -Rate for instruction 11543: 17.7035% -Rate for instruction 11544: 17.7043% -Rate for instruction 11545: 17.7031% -Rate for instruction 11546: 17.7032% -Rate for instruction 11547: 17.702% -Rate for instruction 11548: 17.7012% -Rate for instruction 11549: 17.7% -Rate for instruction 11550: 17.6994% -Rate for instruction 11551: 17.6982% -Rate for instruction 11552: 17.6974% -Rate for instruction 11553: 17.6972% -Rate for instruction 11554: 17.696% -Rate for instruction 11555: 17.6951% -Rate for instruction 11556: 17.6939% -Rate for instruction 11557: 17.6944% -Rate for instruction 11558: 17.6938% -Rate for instruction 11559: 17.695% -Rate for instruction 11560: 17.6951% -Rate for instruction 11561: 17.6962% -Rate for instruction 11562: 17.6954% -Rate for instruction 11563: 17.6962% -Rate for instruction 11564: 17.6973% -Rate for instruction 11565: 17.6974% -Rate for instruction 11566: 17.6976% -Rate for instruction 11567: 17.6977% -Rate for instruction 11568: 17.6975% -Rate for instruction 11569: 17.6973% -Rate for instruction 11570: 17.6964% -Rate for instruction 11571: 17.6959% -Rate for instruction 11572: 17.6954% -Rate for instruction 11573: 17.6952% -Rate for instruction 11574: 17.6943% -Rate for instruction 11575: 17.6931% -Rate for instruction 11576: 17.6926% -Rate for instruction 11577: 17.6914% -Rate for instruction 11578: 17.6908% -Rate for instruction 11579: 17.69% -Rate for instruction 11580: 17.6908% -Rate for instruction 11581: 17.6906% -Rate for instruction 11582: 17.6904% -Rate for instruction 11583: 17.6908% -Rate for instruction 11584: 17.693% -Rate for instruction 11585: 17.6944% -Rate for instruction 11586: 17.6962% -Rate for instruction 11587: 17.6977% -Rate for instruction 11588: 17.6965% -Rate for instruction 11589: 17.6956% -Rate for instruction 11590: 17.6944% -Rate for instruction 11591: 17.6946% -Rate for instruction 11592: 17.6937% -Rate for instruction 11593: 17.6938% -Rate for instruction 11594: 17.6926% -Rate for instruction 11595: 17.6918% -Rate for instruction 11596: 17.6912% -Rate for instruction 11597: 17.692% -Rate for instruction 11598: 17.6915% -Rate for instruction 11599: 17.6913% -Rate for instruction 11600: 17.6908% -Rate for instruction 11601: 17.6926% -Rate for instruction 11602: 17.6934% -Rate for instruction 11603: 17.6935% -Rate for instruction 11604: 17.6943% -Rate for instruction 11605: 17.6931% -Rate for instruction 11606: 17.6936% -Rate for instruction 11607: 17.694% -Rate for instruction 11608: 17.6952% -Rate for instruction 11609: 17.6953% -Rate for instruction 11610: 17.6958% -Rate for instruction 11611: 17.6965% -Rate for instruction 11612: 17.6957% -Rate for instruction 11613: 17.6952% -Rate for instruction 11614: 17.694% -Rate for instruction 11615: 17.6944% -Rate for instruction 11616: 17.6936% -Rate for instruction 11617: 17.693% -Rate for instruction 11618: 17.6922% -Rate for instruction 11619: 17.6913% -Rate for instruction 11620: 17.6918% -Rate for instruction 11621: 17.6912% -Rate for instruction 11622: 17.6901% -Rate for instruction 11623: 17.6902% -Rate for instruction 11624: 17.6893% -Rate for instruction 11625: 17.6881% -Rate for instruction 11626: 17.6873% -Rate for instruction 11627: 17.6864% -Rate for instruction 11628: 17.6882% -Rate for instruction 11629: 17.687% -Rate for instruction 11630: 17.6868% -Rate for instruction 11631: 17.6876% -Rate for instruction 11632: 17.6864% -Rate for instruction 11633: 17.6879% -Rate for instruction 11634: 17.6893% -Rate for instruction 11635: 17.6911% -Rate for instruction 11636: 17.6909% -Rate for instruction 11637: 17.693% -Rate for instruction 11638: 17.6945% -Rate for instruction 11639: 17.6946% -Rate for instruction 11640: 17.6944% -Rate for instruction 11641: 17.6936% -Rate for instruction 11642: 17.6934% -Rate for instruction 11643: 17.6932% -Rate for instruction 11644: 17.6933% -Rate for instruction 11645: 17.6931% -Rate for instruction 11646: 17.6926% -Rate for instruction 11647: 17.6914% -Rate for instruction 11648: 17.6902% -Rate for instruction 11649: 17.6897% -Rate for instruction 11650: 17.6885% -Rate for instruction 11651: 17.6876% -Rate for instruction 11652: 17.6881% -Rate for instruction 11653: 17.6876% -Rate for instruction 11654: 17.6893% -Rate for instruction 11655: 17.6882% -Rate for instruction 11656: 17.6903% -Rate for instruction 11657: 17.6897% -Rate for instruction 11658: 17.6885% -Rate for instruction 11659: 17.6903% -Rate for instruction 11660: 17.6921% -Rate for instruction 11661: 17.6942% -Rate for instruction 11662: 17.6937% -Rate for instruction 11663: 17.6942% -Rate for instruction 11664: 17.6959% -Rate for instruction 11665: 17.6984% -Rate for instruction 11666: 17.7002% -Rate for instruction 11667: 17.7009% -Rate for instruction 11668: 17.7004% -Rate for instruction 11669: 17.7025% -Rate for instruction 11670: 17.7033% -Rate for instruction 11671: 17.7031% -Rate for instruction 11672: 17.7049% -Rate for instruction 11673: 17.7057% -Rate for instruction 11674: 17.7058% -Rate for instruction 11675: 17.705% -Rate for instruction 11676: 17.7044% -Rate for instruction 11677: 17.7046% -Rate for instruction 11678: 17.7034% -Rate for instruction 11679: 17.7025% -Rate for instruction 11680: 17.7013% -Rate for instruction 11681: 17.7008% -Rate for instruction 11682: 17.6996% -Rate for instruction 11683: 17.6997% -Rate for instruction 11684: 17.6992% -Rate for instruction 11685: 17.699% -Rate for instruction 11686: 17.6985% -Rate for instruction 11687: 17.6973% -Rate for instruction 11688: 17.6965% -Rate for instruction 11689: 17.6963% -Rate for instruction 11690: 17.6951% -Rate for instruction 11691: 17.6955% -Rate for instruction 11692: 17.6973% -Rate for instruction 11693: 17.6991% -Rate for instruction 11694: 17.7002% -Rate for instruction 11695: 17.699% -Rate for instruction 11696: 17.6988% -Rate for instruction 11697: 17.6996% -Rate for instruction 11698: 17.7004% -Rate for instruction 11699: 17.6992% -Rate for instruction 11700: 17.7003% -Rate for instruction 11701: 17.7001% -Rate for instruction 11702: 17.6993% -Rate for instruction 11703: 17.7004% -Rate for instruction 11704: 17.6995% -Rate for instruction 11705: 17.7007% -Rate for instruction 11706: 17.7021% -Rate for instruction 11707: 17.7032% -Rate for instruction 11708: 17.7043% -Rate for instruction 11709: 17.7041% -Rate for instruction 11710: 17.7039% -Rate for instruction 11711: 17.7034% -Rate for instruction 11712: 17.7022% -Rate for instruction 11713: 17.702% -Rate for instruction 11714: 17.7012% -Rate for instruction 11715: 17.7006% -Rate for instruction 11716: 17.7004% -Rate for instruction 11717: 17.6996% -Rate for instruction 11718: 17.6987% -Rate for instruction 11719: 17.6982% -Rate for instruction 11720: 17.6993% -Rate for instruction 11721: 17.6981% -Rate for instruction 11722: 17.6996% -Rate for instruction 11723: 17.6994% -Rate for instruction 11724: 17.6992% -Rate for instruction 11725: 17.7003% -Rate for instruction 11726: 17.7024% -Rate for instruction 11727: 17.7048% -Rate for instruction 11728: 17.7043% -Rate for instruction 11729: 17.7038% -Rate for instruction 11730: 17.7052% -Rate for instruction 11731: 17.707% -Rate for instruction 11732: 17.7061% -Rate for instruction 11733: 17.7073% -Rate for instruction 11734: 17.7061% -Rate for instruction 11735: 17.7052% -Rate for instruction 11736: 17.704% -Rate for instruction 11737: 17.7048% -Rate for instruction 11738: 17.7063% -Rate for instruction 11739: 17.7051% -Rate for instruction 11740: 17.7046% -Rate for instruction 11741: 17.7037% -Rate for instruction 11742: 17.7051% -Rate for instruction 11743: 17.7063% -Rate for instruction 11744: 17.7051% -Rate for instruction 11745: 17.7059% -Rate for instruction 11746: 17.7047% -Rate for instruction 11747: 17.7058% -Rate for instruction 11748: 17.7049% -Rate for instruction 11749: 17.7047% -Rate for instruction 11750: 17.7042% -Rate for instruction 11751: 17.7044% -Rate for instruction 11752: 17.7032% -Rate for instruction 11753: 17.7026% -Rate for instruction 11754: 17.7018% -Rate for instruction 11755: 17.7013% -Rate for instruction 11756: 17.7004% -Rate for instruction 11757: 17.7009% -Rate for instruction 11758: 17.702% -Rate for instruction 11759: 17.7011% -Rate for instruction 11760: 17.7032% -Rate for instruction 11761: 17.7021% -Rate for instruction 11762: 17.7015% -Rate for instruction 11763: 17.702% -Rate for instruction 11764: 17.7008% -Rate for instruction 11765: 17.7022% -Rate for instruction 11766: 17.7037% -Rate for instruction 11767: 17.7054% -Rate for instruction 11768: 17.7052% -Rate for instruction 11769: 17.7073% -Rate for instruction 11770: 17.7062% -Rate for instruction 11771: 17.7086% -Rate for instruction 11772: 17.7097% -Rate for instruction 11773: 17.7105% -Rate for instruction 11774: 17.7096% -Rate for instruction 11775: 17.7107% -Rate for instruction 11776: 17.7122% -Rate for instruction 11777: 17.7139% -Rate for instruction 11778: 17.7131% -Rate for instruction 11779: 17.7119% -Rate for instruction 11780: 17.7133% -Rate for instruction 11781: 17.7135% -Rate for instruction 11782: 17.7136% -Rate for instruction 11783: 17.7147% -Rate for instruction 11784: 17.7138% -Rate for instruction 11785: 17.7159% -Rate for instruction 11786: 17.7157% -Rate for instruction 11787: 17.7152% -Rate for instruction 11788: 17.714% -Rate for instruction 11789: 17.7135% -Rate for instruction 11790: 17.7127% -Rate for instruction 11791: 17.7128% -Rate for instruction 11792: 17.7126% -Rate for instruction 11793: 17.7114% -Rate for instruction 11794: 17.7106% -Rate for instruction 11795: 17.71% -Rate for instruction 11796: 17.7092% -Rate for instruction 11797: 17.7083% -Rate for instruction 11798: 17.7072% -Rate for instruction 11799: 17.707% -Rate for instruction 11800: 17.7081% -Rate for instruction 11801: 17.7102% -Rate for instruction 11802: 17.709% -Rate for instruction 11803: 17.7085% -Rate for instruction 11804: 17.7086% -Rate for instruction 11805: 17.7087% -Rate for instruction 11806: 17.7079% -Rate for instruction 11807: 17.7074% -Rate for instruction 11808: 17.7091% -Rate for instruction 11809: 17.7079% -Rate for instruction 11810: 17.7087% -Rate for instruction 11811: 17.7075% -Rate for instruction 11812: 17.707% -Rate for instruction 11813: 17.7088% -Rate for instruction 11814: 17.7102% -Rate for instruction 11815: 17.7094% -Rate for instruction 11816: 17.7082% -Rate for instruction 11817: 17.709% -Rate for instruction 11818: 17.7081% -Rate for instruction 11819: 17.7083% -Rate for instruction 11820: 17.7081% -Rate for instruction 11821: 17.7082% -Rate for instruction 11822: 17.7073% -Rate for instruction 11823: 17.7062% -Rate for instruction 11824: 17.7056% -Rate for instruction 11825: 17.7058% -Rate for instruction 11826: 17.7056% -Rate for instruction 11827: 17.7057% -Rate for instruction 11828: 17.7058% -Rate for instruction 11829: 17.7056% -Rate for instruction 11830: 17.7045% -Rate for instruction 11831: 17.7033% -Rate for instruction 11832: 17.7034% -Rate for instruction 11833: 17.7026% -Rate for instruction 11834: 17.7034% -Rate for instruction 11835: 17.7038% -Rate for instruction 11836: 17.7039% -Rate for instruction 11837: 17.7031% -Rate for instruction 11838: 17.7039% -Rate for instruction 11839: 17.7034% -Rate for instruction 11840: 17.7045% -Rate for instruction 11841: 17.7056% -Rate for instruction 11842: 17.706% -Rate for instruction 11843: 17.7061% -Rate for instruction 11844: 17.7059% -Rate for instruction 11845: 17.7054% -Rate for instruction 11846: 17.7056% -Rate for instruction 11847: 17.7044% -Rate for instruction 11848: 17.7039% -Rate for instruction 11849: 17.7027% -Rate for instruction 11850: 17.7025% -Rate for instruction 11851: 17.7013% -Rate for instruction 11852: 17.7005% -Rate for instruction 11853: 17.7022% -Rate for instruction 11854: 17.7043% -Rate for instruction 11855: 17.7051% -Rate for instruction 11856: 17.7062% -Rate for instruction 11857: 17.707% -Rate for instruction 11858: 17.7068% -Rate for instruction 11859: 17.7072% -Rate for instruction 11860: 17.7067% -Rate for instruction 11861: 17.7068% -Rate for instruction 11862: 17.7066% -Rate for instruction 11863: 17.7064% -Rate for instruction 11864: 17.7066% -Rate for instruction 11865: 17.7064% -Rate for instruction 11866: 17.7062% -Rate for instruction 11867: 17.707% -Rate for instruction 11868: 17.7061% -Rate for instruction 11869: 17.7056% -Rate for instruction 11870: 17.7054% -Rate for instruction 11871: 17.7042% -Rate for instruction 11872: 17.7031% -Rate for instruction 11873: 17.7042% -Rate for instruction 11874: 17.7036% -Rate for instruction 11875: 17.7034% -Rate for instruction 11876: 17.7052% -Rate for instruction 11877: 17.7044% -Rate for instruction 11878: 17.7058% -Rate for instruction 11879: 17.7053% -Rate for instruction 11880: 17.7041% -Rate for instruction 11881: 17.7029% -Rate for instruction 11882: 17.7024% -Rate for instruction 11883: 17.7042% -Rate for instruction 11884: 17.7033% -Rate for instruction 11885: 17.7041% -Rate for instruction 11886: 17.7052% -Rate for instruction 11887: 17.705% -Rate for instruction 11888: 17.7038% -Rate for instruction 11889: 17.7056% -Rate for instruction 11890: 17.7063% -Rate for instruction 11891: 17.7068% -Rate for instruction 11892: 17.7082% -Rate for instruction 11893: 17.7071% -Rate for instruction 11894: 17.7065% -Rate for instruction 11895: 17.7057% -Rate for instruction 11896: 17.7045% -Rate for instruction 11897: 17.704% -Rate for instruction 11898: 17.7028% -Rate for instruction 11899: 17.7036% -Rate for instruction 11900: 17.7044% -Rate for instruction 11901: 17.7045% -Rate for instruction 11902: 17.7047% -Rate for instruction 11903: 17.7048% -Rate for instruction 11904: 17.7043% -Rate for instruction 11905: 17.7044% -Rate for instruction 11906: 17.7055% -Rate for instruction 11907: 17.7046% -Rate for instruction 11908: 17.7061% -Rate for instruction 11909: 17.7081% -Rate for instruction 11910: 17.7083% -Rate for instruction 11911: 17.7081% -Rate for instruction 11912: 17.7079% -Rate for instruction 11913: 17.708% -Rate for instruction 11914: 17.7072% -Rate for instruction 11915: 17.707% -Rate for instruction 11916: 17.7074% -Rate for instruction 11917: 17.7075% -Rate for instruction 11918: 17.707% -Rate for instruction 11919: 17.7062% -Rate for instruction 11920: 17.7057% -Rate for instruction 11921: 17.7048% -Rate for instruction 11922: 17.7037% -Rate for instruction 11923: 17.7038% -Rate for instruction 11924: 17.7049% -Rate for instruction 11925: 17.705% -Rate for instruction 11926: 17.7048% -Rate for instruction 11927: 17.7037% -Rate for instruction 11928: 17.7035% -Rate for instruction 11929: 17.7036% -Rate for instruction 11930: 17.7028% -Rate for instruction 11931: 17.7026% -Rate for instruction 11932: 17.703% -Rate for instruction 11933: 17.7028% -Rate for instruction 11934: 17.7026% -Rate for instruction 11935: 17.7027% -Rate for instruction 11936: 17.7026% -Rate for instruction 11937: 17.7014% -Rate for instruction 11938: 17.7028% -Rate for instruction 11939: 17.7026% -Rate for instruction 11940: 17.7024% -Rate for instruction 11941: 17.7022% -Rate for instruction 11942: 17.7011% -Rate for instruction 11943: 17.7009% -Rate for instruction 11944: 17.7004% -Rate for instruction 11945: 17.7002% -Rate for instruction 11946: 17.6996% -Rate for instruction 11947: 17.6991% -Rate for instruction 11948: 17.6986% -Rate for instruction 11949: 17.6975% -Rate for instruction 11950: 17.6969% -Rate for instruction 11951: 17.6974% -Rate for instruction 11952: 17.6982% -Rate for instruction 11953: 17.6993% -Rate for instruction 11954: 17.7% -Rate for instruction 11955: 17.6995% -Rate for instruction 11956: 17.6984% -Rate for instruction 11957: 17.6978% -Rate for instruction 11958: 17.6976% -Rate for instruction 11959: 17.6968% -Rate for instruction 11960: 17.6966% -Rate for instruction 11961: 17.6967% -Rate for instruction 11962: 17.6969% -Rate for instruction 11963: 17.6967% -Rate for instruction 11964: 17.6965% -Rate for instruction 11965: 17.6953% -Rate for instruction 11966: 17.6958% -Rate for instruction 11967: 17.6949% -Rate for instruction 11968: 17.6954% -Rate for instruction 11969: 17.6942% -Rate for instruction 11970: 17.6931% -Rate for instruction 11971: 17.6932% -Rate for instruction 11972: 17.6927% -Rate for instruction 11973: 17.6919% -Rate for instruction 11974: 17.6907% -Rate for instruction 11975: 17.6895% -Rate for instruction 11976: 17.69% -Rate for instruction 11977: 17.6898% -Rate for instruction 11978: 17.6886% -Rate for instruction 11979: 17.6888% -Rate for instruction 11980: 17.6886% -Rate for instruction 11981: 17.6881% -Rate for instruction 11982: 17.6892% -Rate for instruction 11983: 17.6899% -Rate for instruction 11984: 17.6907% -Rate for instruction 11985: 17.6902% -Rate for instruction 11986: 17.69% -Rate for instruction 11987: 17.6892% -Rate for instruction 11988: 17.6893% -Rate for instruction 11989: 17.6888% -Rate for instruction 11990: 17.6902% -Rate for instruction 11991: 17.6913% -Rate for instruction 11992: 17.6901% -Rate for instruction 11993: 17.6893% -Rate for instruction 11994: 17.6894% -Rate for instruction 11995: 17.6905% -Rate for instruction 11996: 17.6897% -Rate for instruction 11997: 17.6898% -Rate for instruction 11998: 17.6896% -Rate for instruction 11999: 17.6897% -Rate for instruction 12000: 17.6902% -Rate for instruction 12001: 17.69% -Rate for instruction 12002: 17.6898% -Rate for instruction 12003: 17.6896% -Rate for instruction 12004: 17.6904% -Rate for instruction 12005: 17.6902% -Rate for instruction 12006: 17.6913% -Rate for instruction 12007: 17.6921% -Rate for instruction 12008: 17.6912% -Rate for instruction 12009: 17.6913% -Rate for instruction 12010: 17.6908% -Rate for instruction 12011: 17.6903% -Rate for instruction 12012: 17.6895% -Rate for instruction 12013: 17.6887% -Rate for instruction 12014: 17.6875% -Rate for instruction 12015: 17.6873% -Rate for instruction 12016: 17.6871% -Rate for instruction 12017: 17.6879% -Rate for instruction 12018: 17.6877% -Rate for instruction 12019: 17.6878% -Rate for instruction 12020: 17.6873% -Rate for instruction 12021: 17.6881% -Rate for instruction 12022: 17.6879% -Rate for instruction 12023: 17.688% -Rate for instruction 12024: 17.6881% -Rate for instruction 12025: 17.6873% -Rate for instruction 12026: 17.6871% -Rate for instruction 12027: 17.6866% -Rate for instruction 12028: 17.6858% -Rate for instruction 12029: 17.6853% -Rate for instruction 12030: 17.6851% -Rate for instruction 12031: 17.6852% -Rate for instruction 12032: 17.6847% -Rate for instruction 12033: 17.6845% -Rate for instruction 12034: 17.6846% -Rate for instruction 12035: 17.6851% -Rate for instruction 12036: 17.6846% -Rate for instruction 12037: 17.6844% -Rate for instruction 12038: 17.6842% -Rate for instruction 12039: 17.6843% -Rate for instruction 12040: 17.6848% -Rate for instruction 12041: 17.6843% -Rate for instruction 12042: 17.6847% -Rate for instruction 12043: 17.6858% -Rate for instruction 12044: 17.6869% -Rate for instruction 12045: 17.6883% -Rate for instruction 12046: 17.69% -Rate for instruction 12047: 17.6895% -Rate for instruction 12048: 17.689% -Rate for instruction 12049: 17.6898% -Rate for instruction 12050: 17.6912% -Rate for instruction 12051: 17.6916% -Rate for instruction 12052: 17.693% -Rate for instruction 12053: 17.6938% -Rate for instruction 12054: 17.6942% -Rate for instruction 12055: 17.695% -Rate for instruction 12056: 17.6942% -Rate for instruction 12057: 17.6962% -Rate for instruction 12058: 17.6976% -Rate for instruction 12059: 17.698% -Rate for instruction 12060: 17.6995% -Rate for instruction 12061: 17.6986% -Rate for instruction 12062: 17.6975% -Rate for instruction 12063: 17.6976% -Rate for instruction 12064: 17.6965% -Rate for instruction 12065: 17.6966% -Rate for instruction 12066: 17.6958% -Rate for instruction 12067: 17.6946% -Rate for instruction 12068: 17.6941% -Rate for instruction 12069: 17.6933% -Rate for instruction 12070: 17.6928% -Rate for instruction 12071: 17.6929% -Rate for instruction 12072: 17.6924% -Rate for instruction 12073: 17.6935% -Rate for instruction 12074: 17.6923% -Rate for instruction 12075: 17.6921% -Rate for instruction 12076: 17.6913% -Rate for instruction 12077: 17.6911% -Rate for instruction 12078: 17.6906% -Rate for instruction 12079: 17.6901% -Rate for instruction 12080: 17.6893% -Rate for instruction 12081: 17.6897% -Rate for instruction 12082: 17.6898% -Rate for instruction 12083: 17.6903% -Rate for instruction 12084: 17.6901% -Rate for instruction 12085: 17.6899% -Rate for instruction 12086: 17.6894% -Rate for instruction 12087: 17.6886% -Rate for instruction 12088: 17.6893% -Rate for instruction 12089: 17.6885% -Rate for instruction 12090: 17.688% -Rate for instruction 12091: 17.6881% -Rate for instruction 12092: 17.6876% -Rate for instruction 12093: 17.6874% -Rate for instruction 12094: 17.6901% -Rate for instruction 12095: 17.6908% -Rate for instruction 12096: 17.6907% -Rate for instruction 12097: 17.6898% -Rate for instruction 12098: 17.6887% -Rate for instruction 12099: 17.6885% -Rate for instruction 12100: 17.6873% -Rate for instruction 12101: 17.6865% -Rate for instruction 12102: 17.6854% -Rate for instruction 12103: 17.6871% -Rate for instruction 12104: 17.6875% -Rate for instruction 12105: 17.6877% -Rate for instruction 12106: 17.6872% -Rate for instruction 12107: 17.6863% -Rate for instruction 12108: 17.6852% -Rate for instruction 12109: 17.6856% -Rate for instruction 12110: 17.6845% -Rate for instruction 12111: 17.6846% -Rate for instruction 12112: 17.6844% -Rate for instruction 12113: 17.6833% -Rate for instruction 12114: 17.6825% -Rate for instruction 12115: 17.6826% -Rate for instruction 12116: 17.683% -Rate for instruction 12117: 17.6822% -Rate for instruction 12118: 17.683% -Rate for instruction 12119: 17.6822% -Rate for instruction 12120: 17.682% -Rate for instruction 12121: 17.6818% -Rate for instruction 12122: 17.6809% -Rate for instruction 12123: 17.6811% -Rate for instruction 12124: 17.6799% -Rate for instruction 12125: 17.6794% -Rate for instruction 12126: 17.6786% -Rate for instruction 12127: 17.6778% -Rate for instruction 12128: 17.6773% -Rate for instruction 12129: 17.6771% -Rate for instruction 12130: 17.6759% -Rate for instruction 12131: 17.6754% -Rate for instruction 12132: 17.6756% -Rate for instruction 12133: 17.6751% -Rate for instruction 12134: 17.6752% -Rate for instruction 12135: 17.6747% -Rate for instruction 12136: 17.6742% -Rate for instruction 12137: 17.674% -Rate for instruction 12138: 17.6767% -Rate for instruction 12139: 17.6765% -Rate for instruction 12140: 17.6763% -Rate for instruction 12141: 17.6751% -Rate for instruction 12142: 17.6772% -Rate for instruction 12143: 17.6795% -Rate for instruction 12144: 17.68% -Rate for instruction 12145: 17.682% -Rate for instruction 12146: 17.6812% -Rate for instruction 12147: 17.6803% -Rate for instruction 12148: 17.6805% -Rate for instruction 12149: 17.6796% -Rate for instruction 12150: 17.6795% -Rate for instruction 12151: 17.6799% -Rate for instruction 12152: 17.6791% -Rate for instruction 12153: 17.6802% -Rate for instruction 12154: 17.6793% -Rate for instruction 12155: 17.6795% -Rate for instruction 12156: 17.6805% -Rate for instruction 12157: 17.6829% -Rate for instruction 12158: 17.6817% -Rate for instruction 12159: 17.6809% -Rate for instruction 12160: 17.6801% -Rate for instruction 12161: 17.6809% -Rate for instruction 12162: 17.6819% -Rate for instruction 12163: 17.6811% -Rate for instruction 12164: 17.6806% -Rate for instruction 12165: 17.6798% -Rate for instruction 12166: 17.679% -Rate for instruction 12167: 17.6785% -Rate for instruction 12168: 17.678% -Rate for instruction 12169: 17.6781% -Rate for instruction 12170: 17.6773% -Rate for instruction 12171: 17.6764% -Rate for instruction 12172: 17.6756% -Rate for instruction 12173: 17.678% -Rate for instruction 12174: 17.6778% -Rate for instruction 12175: 17.6804% -Rate for instruction 12176: 17.6799% -Rate for instruction 12177: 17.6823% -Rate for instruction 12178: 17.6811% -Rate for instruction 12179: 17.6835% -Rate for instruction 12180: 17.683% -Rate for instruction 12181: 17.6818% -Rate for instruction 12182: 17.6845% -Rate for instruction 12183: 17.6874% -Rate for instruction 12184: 17.6866% -Rate for instruction 12185: 17.6868% -Rate for instruction 12186: 17.6881% -Rate for instruction 12187: 17.6873% -Rate for instruction 12188: 17.6868% -Rate for instruction 12189: 17.6876% -Rate for instruction 12190: 17.6871% -Rate for instruction 12191: 17.6888% -Rate for instruction 12192: 17.6895% -Rate for instruction 12193: 17.6884% -Rate for instruction 12194: 17.6895% -Rate for instruction 12195: 17.6909% -Rate for instruction 12196: 17.6926% -Rate for instruction 12197: 17.6933% -Rate for instruction 12198: 17.6944% -Rate for instruction 12199: 17.6933% -Rate for instruction 12200: 17.695% -Rate for instruction 12201: 17.6963% -Rate for instruction 12202: 17.698% -Rate for instruction 12203: 17.6994% -Rate for instruction 12204: 17.6986% -Rate for instruction 12205: 17.6978% -Rate for instruction 12206: 17.697% -Rate for instruction 12207: 17.6962% -Rate for instruction 12208: 17.6956% -Rate for instruction 12209: 17.6951% -Rate for instruction 12210: 17.6946% -Rate for instruction 12211: 17.6941% -Rate for instruction 12212: 17.6936% -Rate for instruction 12213: 17.6934% -Rate for instruction 12214: 17.6933% -Rate for instruction 12215: 17.6931% -Rate for instruction 12216: 17.6929% -Rate for instruction 12217: 17.6917% -Rate for instruction 12218: 17.6916% -Rate for instruction 12219: 17.6917% -Rate for instruction 12220: 17.6912% -Rate for instruction 12221: 17.6907% -Rate for instruction 12222: 17.6899% -Rate for instruction 12223: 17.6894% -Rate for instruction 12224: 17.6892% -Rate for instruction 12225: 17.6887% -Rate for instruction 12226: 17.69% -Rate for instruction 12227: 17.6908% -Rate for instruction 12228: 17.6934% -Rate for instruction 12229: 17.6939% -Rate for instruction 12230: 17.6956% -Rate for instruction 12231: 17.6976% -Rate for instruction 12232: 17.6999% -Rate for instruction 12233: 17.6988% -Rate for instruction 12234: 17.7002% -Rate for instruction 12235: 17.7028% -Rate for instruction 12236: 17.7032% -Rate for instruction 12237: 17.7046% -Rate for instruction 12238: 17.706% -Rate for instruction 12239: 17.7077% -Rate for instruction 12240: 17.7088% -Rate for instruction 12241: 17.7083% -Rate for instruction 12242: 17.7074% -Rate for instruction 12243: 17.7069% -Rate for instruction 12244: 17.7061% -Rate for instruction 12245: 17.705% -Rate for instruction 12246: 17.7051% -Rate for instruction 12247: 17.7056% -Rate for instruction 12248: 17.7047% -Rate for instruction 12249: 17.7042% -Rate for instruction 12250: 17.7059% -Rate for instruction 12251: 17.7048% -Rate for instruction 12252: 17.7043% -Rate for instruction 12253: 17.7063% -Rate for instruction 12254: 17.7074% -Rate for instruction 12255: 17.7081% -Rate for instruction 12256: 17.7079% -Rate for instruction 12257: 17.709% -Rate for instruction 12258: 17.7098% -Rate for instruction 12259: 17.7086% -Rate for instruction 12260: 17.7109% -Rate for instruction 12261: 17.7133% -Rate for instruction 12262: 17.7128% -Rate for instruction 12263: 17.7132% -Rate for instruction 12264: 17.7155% -Rate for instruction 12265: 17.715% -Rate for instruction 12266: 17.7173% -Rate for instruction 12267: 17.7209% -Rate for instruction 12268: 17.7198% -Rate for instruction 12269: 17.7193% -Rate for instruction 12270: 17.7184% -Rate for instruction 12271: 17.7211% -Rate for instruction 12272: 17.7228% -Rate for instruction 12273: 17.7223% -Rate for instruction 12274: 17.7236% -Rate for instruction 12275: 17.7231% -Rate for instruction 12276: 17.722% -Rate for instruction 12277: 17.7218% -Rate for instruction 12278: 17.7207% -Rate for instruction 12279: 17.7199% -Rate for instruction 12280: 17.7187% -Rate for instruction 12281: 17.7182% -Rate for instruction 12282: 17.7174% -Rate for instruction 12283: 17.7182% -Rate for instruction 12284: 17.718% -Rate for instruction 12285: 17.7181% -Rate for instruction 12286: 17.7179% -Rate for instruction 12287: 17.7183% -Rate for instruction 12288: 17.7185% -Rate for instruction 12289: 17.7189% -Rate for instruction 12290: 17.7218% -Rate for instruction 12291: 17.7232% -Rate for instruction 12292: 17.7221% -Rate for instruction 12293: 17.7241% -Rate for instruction 12294: 17.7236% -Rate for instruction 12295: 17.7234% -Rate for instruction 12296: 17.7229% -Rate for instruction 12297: 17.7218% -Rate for instruction 12298: 17.7206% -Rate for instruction 12299: 17.7208% -Rate for instruction 12300: 17.7221% -Rate for instruction 12301: 17.7238% -Rate for instruction 12302: 17.7236% -Rate for instruction 12303: 17.7263% -Rate for instruction 12304: 17.7273% -Rate for instruction 12305: 17.729% -Rate for instruction 12306: 17.7319% -Rate for instruction 12307: 17.7342% -Rate for instruction 12308: 17.7334% -Rate for instruction 12309: 17.7329% -Rate for instruction 12310: 17.7362% -Rate for instruction 12311: 17.736% -Rate for instruction 12312: 17.7377% -Rate for instruction 12313: 17.7384% -Rate for instruction 12314: 17.7376% -Rate for instruction 12315: 17.7368% -Rate for instruction 12316: 17.7356% -Rate for instruction 12317: 17.7376% -Rate for instruction 12318: 17.7368% -Rate for instruction 12319: 17.736% -Rate for instruction 12320: 17.7349% -Rate for instruction 12321: 17.7347% -Rate for instruction 12322: 17.7351% -Rate for instruction 12323: 17.7346% -Rate for instruction 12324: 17.7341% -Rate for instruction 12325: 17.7333% -Rate for instruction 12326: 17.7334% -Rate for instruction 12327: 17.7336% -Rate for instruction 12328: 17.7334% -Rate for instruction 12329: 17.7347% -Rate for instruction 12330: 17.7373% -Rate for instruction 12331: 17.7372% -Rate for instruction 12332: 17.7376% -Rate for instruction 12333: 17.7383% -Rate for instruction 12334: 17.7381% -Rate for instruction 12335: 17.7401% -Rate for instruction 12336: 17.7399% -Rate for instruction 12337: 17.7429% -Rate for instruction 12338: 17.7417% -Rate for instruction 12339: 17.7428% -Rate for instruction 12340: 17.7439% -Rate for instruction 12341: 17.7462% -Rate for instruction 12342: 17.7466% -Rate for instruction 12343: 17.7476% -Rate for instruction 12344: 17.7471% -Rate for instruction 12345: 17.746% -Rate for instruction 12346: 17.7464% -Rate for instruction 12347: 17.7475% -Rate for instruction 12348: 17.7479% -Rate for instruction 12349: 17.7481% -Rate for instruction 12350: 17.7485% -Rate for instruction 12351: 17.7489% -Rate for instruction 12352: 17.7487% -Rate for instruction 12353: 17.7479% -Rate for instruction 12354: 17.7483% -Rate for instruction 12355: 17.7472% -Rate for instruction 12356: 17.7461% -Rate for instruction 12357: 17.7453% -Rate for instruction 12358: 17.7442% -Rate for instruction 12359: 17.7443% -Rate for instruction 12360: 17.745% -Rate for instruction 12361: 17.7448% -Rate for instruction 12362: 17.7456% -Rate for instruction 12363: 17.7454% -Rate for instruction 12364: 17.7452% -Rate for instruction 12365: 17.7441% -Rate for instruction 12366: 17.7439% -Rate for instruction 12367: 17.7431% -Rate for instruction 12368: 17.7426% -Rate for instruction 12369: 17.7445% -Rate for instruction 12370: 17.7472% -Rate for instruction 12371: 17.7463% -Rate for instruction 12372: 17.7471% -Rate for instruction 12373: 17.746% -Rate for instruction 12374: 17.7448% -Rate for instruction 12375: 17.7456% -Rate for instruction 12376: 17.7448% -Rate for instruction 12377: 17.7436% -Rate for instruction 12378: 17.7444% -Rate for instruction 12379: 17.7457% -Rate for instruction 12380: 17.7474% -Rate for instruction 12381: 17.7494% -Rate for instruction 12382: 17.7489% -Rate for instruction 12383: 17.7506% -Rate for instruction 12384: 17.7522% -Rate for instruction 12385: 17.7524% -Rate for instruction 12386: 17.7512% -Rate for instruction 12387: 17.751% -Rate for instruction 12388: 17.7499% -Rate for instruction 12389: 17.7494% -Rate for instruction 12390: 17.7489% -Rate for instruction 12391: 17.7487% -Rate for instruction 12392: 17.7476% -Rate for instruction 12393: 17.7465% -Rate for instruction 12394: 17.746% -Rate for instruction 12395: 17.7452% -Rate for instruction 12396: 17.7444% -Rate for instruction 12397: 17.7439% -Rate for instruction 12398: 17.7434% -Rate for instruction 12399: 17.7432% -Rate for instruction 12400: 17.7427% -Rate for instruction 12401: 17.7425% -Rate for instruction 12402: 17.7423% -Rate for instruction 12403: 17.7424% -Rate for instruction 12404: 17.7425% -Rate for instruction 12405: 17.7454% -Rate for instruction 12406: 17.7477% -Rate for instruction 12407: 17.7482% -Rate for instruction 12408: 17.7486% -Rate for instruction 12409: 17.7478% -Rate for instruction 12410: 17.7501% -Rate for instruction 12411: 17.7493% -Rate for instruction 12412: 17.7485% -Rate for instruction 12413: 17.7483% -Rate for instruction 12414: 17.7505% -Rate for instruction 12415: 17.75% -Rate for instruction 12416: 17.7492% -Rate for instruction 12417: 17.7512% -Rate for instruction 12418: 17.7526% -Rate for instruction 12419: 17.7539% -Rate for instruction 12420: 17.7541% -Rate for instruction 12421: 17.7545% -Rate for instruction 12422: 17.7537% -Rate for instruction 12423: 17.7556% -Rate for instruction 12424: 17.7576% -Rate for instruction 12425: 17.7581% -Rate for instruction 12426: 17.76% -Rate for instruction 12427: 17.7605% -Rate for instruction 12428: 17.7612% -Rate for instruction 12429: 17.7619% -Rate for instruction 12430: 17.7636% -Rate for instruction 12431: 17.7628% -Rate for instruction 12432: 17.7617% -Rate for instruction 12433: 17.7609% -Rate for instruction 12434: 17.7604% -Rate for instruction 12435: 17.7592% -Rate for instruction 12436: 17.7584% -Rate for instruction 12437: 17.7573% -Rate for instruction 12438: 17.7568% -Rate for instruction 12439: 17.756% -Rate for instruction 12440: 17.7558% -Rate for instruction 12441: 17.7556% -Rate for instruction 12442: 17.7554% -Rate for instruction 12443: 17.7549% -Rate for instruction 12444: 17.7544% -Rate for instruction 12445: 17.7539% -Rate for instruction 12446: 17.7537% -Rate for instruction 12447: 17.7529% -Rate for instruction 12448: 17.7546% -Rate for instruction 12449: 17.7563% -Rate for instruction 12450: 17.7554% -Rate for instruction 12451: 17.7553% -Rate for instruction 12452: 17.7551% -Rate for instruction 12453: 17.7543% -Rate for instruction 12454: 17.7531% -Rate for instruction 12455: 17.7523% -Rate for instruction 12456: 17.7515% -Rate for instruction 12457: 17.7507% -Rate for instruction 12458: 17.7502% -Rate for instruction 12459: 17.7494% -Rate for instruction 12460: 17.7489% -Rate for instruction 12461: 17.7481% -Rate for instruction 12462: 17.7476% -Rate for instruction 12463: 17.7496% -Rate for instruction 12464: 17.7503% -Rate for instruction 12465: 17.7498% -Rate for instruction 12466: 17.7493% -Rate for instruction 12467: 17.7485% -Rate for instruction 12468: 17.7486% -Rate for instruction 12469: 17.7475% -Rate for instruction 12470: 17.7492% -Rate for instruction 12471: 17.749% -Rate for instruction 12472: 17.7485% -Rate for instruction 12473: 17.7486% -Rate for instruction 12474: 17.7484% -Rate for instruction 12475: 17.7479% -Rate for instruction 12476: 17.7483% -Rate for instruction 12477: 17.7479% -Rate for instruction 12478: 17.7474% -Rate for instruction 12479: 17.7462% -Rate for instruction 12480: 17.7464% -Rate for instruction 12481: 17.7468% -Rate for instruction 12482: 17.7475% -Rate for instruction 12483: 17.7476% -Rate for instruction 12484: 17.749% -Rate for instruction 12485: 17.75% -Rate for instruction 12486: 17.7514% -Rate for instruction 12487: 17.7515% -Rate for instruction 12488: 17.7535% -Rate for instruction 12489: 17.7548% -Rate for instruction 12490: 17.7562% -Rate for instruction 12491: 17.7557% -Rate for instruction 12492: 17.7549% -Rate for instruction 12493: 17.755% -Rate for instruction 12494: 17.7569% -Rate for instruction 12495: 17.758% -Rate for instruction 12496: 17.7596% -Rate for instruction 12497: 17.7613% -Rate for instruction 12498: 17.7627% -Rate for instruction 12499: 17.7628% -Rate for instruction 12500: 17.7647% -Rate for instruction 12501: 17.7679% -Rate for instruction 12502: 17.7671% -Rate for instruction 12503: 17.7666% -Rate for instruction 12504: 17.7661% -Rate for instruction 12505: 17.7672% -Rate for instruction 12506: 17.7682% -Rate for instruction 12507: 17.7702% -Rate for instruction 12508: 17.7724% -Rate for instruction 12509: 17.7729% -Rate for instruction 12510: 17.7724% -Rate for instruction 12511: 17.7719% -Rate for instruction 12512: 17.7707% -Rate for instruction 12513: 17.7718% -Rate for instruction 12514: 17.7707% -Rate for instruction 12515: 17.7717% -Rate for instruction 12516: 17.7712% -Rate for instruction 12517: 17.7719% -Rate for instruction 12518: 17.7711% -Rate for instruction 12519: 17.7722% -Rate for instruction 12520: 17.7711% -Rate for instruction 12521: 17.7724% -Rate for instruction 12522: 17.7716% -Rate for instruction 12523: 17.7748% -Rate for instruction 12524: 17.7755% -Rate for instruction 12525: 17.775% -Rate for instruction 12526: 17.7748% -Rate for instruction 12527: 17.774% -Rate for instruction 12528: 17.7738% -Rate for instruction 12529: 17.774% -Rate for instruction 12530: 17.7728% -Rate for instruction 12531: 17.7739% -Rate for instruction 12532: 17.7746% -Rate for instruction 12533: 17.7763% -Rate for instruction 12534: 17.7779% -Rate for instruction 12535: 17.7777% -Rate for instruction 12536: 17.7766% -Rate for instruction 12537: 17.7761% -Rate for instruction 12538: 17.7756% -Rate for instruction 12539: 17.7751% -Rate for instruction 12540: 17.7746% -Rate for instruction 12541: 17.775% -Rate for instruction 12542: 17.7745% -Rate for instruction 12543: 17.7744% -Rate for instruction 12544: 17.7742% -Rate for instruction 12545: 17.7731% -Rate for instruction 12546: 17.7735% -Rate for instruction 12547: 17.7733% -Rate for instruction 12548: 17.7728% -Rate for instruction 12549: 17.7738% -Rate for instruction 12550: 17.7733% -Rate for instruction 12551: 17.7722% -Rate for instruction 12552: 17.7711% -Rate for instruction 12553: 17.7703% -Rate for instruction 12554: 17.7695% -Rate for instruction 12555: 17.7712% -Rate for instruction 12556: 17.771% -Rate for instruction 12557: 17.7702% -Rate for instruction 12558: 17.7709% -Rate for instruction 12559: 17.7698% -Rate for instruction 12560: 17.7699% -Rate for instruction 12561: 17.7688% -Rate for instruction 12562: 17.7695% -Rate for instruction 12563: 17.7715% -Rate for instruction 12564: 17.7704% -Rate for instruction 12565: 17.7717% -Rate for instruction 12566: 17.7706% -Rate for instruction 12567: 17.7722% -Rate for instruction 12568: 17.7721% -Rate for instruction 12569: 17.7719% -Rate for instruction 12570: 17.7723% -Rate for instruction 12571: 17.7715% -Rate for instruction 12572: 17.771% -Rate for instruction 12573: 17.7699% -Rate for instruction 12574: 17.7694% -Rate for instruction 12575: 17.7719% -Rate for instruction 12576: 17.7715% -Rate for instruction 12577: 17.7722% -Rate for instruction 12578: 17.7735% -Rate for instruction 12579: 17.773% -Rate for instruction 12580: 17.7734% -Rate for instruction 12581: 17.7726% -Rate for instruction 12582: 17.7728% -Rate for instruction 12583: 17.7717% -Rate for instruction 12584: 17.7712% -Rate for instruction 12585: 17.771% -Rate for instruction 12586: 17.7702% -Rate for instruction 12587: 17.7694% -Rate for instruction 12588: 17.7692% -Rate for instruction 12589: 17.7681% -Rate for instruction 12590: 17.7676% -Rate for instruction 12591: 17.7665% -Rate for instruction 12592: 17.7654% -Rate for instruction 12593: 17.7646% -Rate for instruction 12594: 17.7641% -Rate for instruction 12595: 17.766% -Rate for instruction 12596: 17.7655% -Rate for instruction 12597: 17.7672% -Rate for instruction 12598: 17.7673% -Rate for instruction 12599: 17.7677% -Rate for instruction 12600: 17.7693% -Rate for instruction 12601: 17.7701% -Rate for instruction 12602: 17.7696% -Rate for instruction 12603: 17.7685% -Rate for instruction 12604: 17.7698% -Rate for instruction 12605: 17.7715% -Rate for instruction 12606: 17.7707% -Rate for instruction 12607: 17.772% -Rate for instruction 12608: 17.7721% -Rate for instruction 12609: 17.7722% -Rate for instruction 12610: 17.7711% -Rate for instruction 12611: 17.7709% -Rate for instruction 12612: 17.7738% -Rate for instruction 12613: 17.773% -Rate for instruction 12614: 17.774% -Rate for instruction 12615: 17.7729% -Rate for instruction 12616: 17.7742% -Rate for instruction 12617: 17.7756% -Rate for instruction 12618: 17.7772% -Rate for instruction 12619: 17.7786% -Rate for instruction 12620: 17.7796% -Rate for instruction 12621: 17.7785% -Rate for instruction 12622: 17.7801% -Rate for instruction 12623: 17.7824% -Rate for instruction 12624: 17.7819% -Rate for instruction 12625: 17.7838% -Rate for instruction 12626: 17.7827% -Rate for instruction 12627: 17.7822% -Rate for instruction 12628: 17.7811% -Rate for instruction 12629: 17.7806% -Rate for instruction 12630: 17.7801% -Rate for instruction 12631: 17.779% -Rate for instruction 12632: 17.7782% -Rate for instruction 12633: 17.7771% -Rate for instruction 12634: 17.7769% -Rate for instruction 12635: 17.7789% -Rate for instruction 12636: 17.7805% -Rate for instruction 12637: 17.78% -Rate for instruction 12638: 17.782% -Rate for instruction 12639: 17.7836% -Rate for instruction 12640: 17.7849% -Rate for instruction 12641: 17.7863% -Rate for instruction 12642: 17.7852% -Rate for instruction 12643: 17.7871% -Rate for instruction 12644: 17.7896% -Rate for instruction 12645: 17.7919% -Rate for instruction 12646: 17.7944% -Rate for instruction 12647: 17.7973% -Rate for instruction 12648: 17.7962% -Rate for instruction 12649: 17.7954% -Rate for instruction 12650: 17.7967% -Rate for instruction 12651: 17.798% -Rate for instruction 12652: 17.7982% -Rate for instruction 12653: 17.7974% -Rate for instruction 12654: 17.799% -Rate for instruction 12655: 17.8006% -Rate for instruction 12656: 17.8016% -Rate for instruction 12657: 17.8033% -Rate for instruction 12658: 17.8034% -Rate for instruction 12659: 17.8032% -Rate for instruction 12660: 17.8033% -Rate for instruction 12661: 17.8031% -Rate for instruction 12662: 17.8035% -Rate for instruction 12663: 17.804% -Rate for instruction 12664: 17.8032% -Rate for instruction 12665: 17.8039% -Rate for instruction 12666: 17.8043% -Rate for instruction 12667: 17.8035% -Rate for instruction 12668: 17.8024% -Rate for instruction 12669: 17.8022% -Rate for instruction 12670: 17.8011% -Rate for instruction 12671: 17.8003% -Rate for instruction 12672: 17.7992% -Rate for instruction 12673: 17.7987% -Rate for instruction 12674: 17.7991% -Rate for instruction 12675: 17.7983% -Rate for instruction 12676: 17.7975% -Rate for instruction 12677: 17.7976% -Rate for instruction 12678: 17.7968% -Rate for instruction 12679: 17.796% -Rate for instruction 12680: 17.7956% -Rate for instruction 12681: 17.7948% -Rate for instruction 12682: 17.7949% -Rate for instruction 12683: 17.795% -Rate for instruction 12684: 17.7945% -Rate for instruction 12685: 17.7937% -Rate for instruction 12686: 17.7938% -Rate for instruction 12687: 17.7939% -Rate for instruction 12688: 17.7934% -Rate for instruction 12689: 17.7923% -Rate for instruction 12690: 17.7921% -Rate for instruction 12691: 17.7926% -Rate for instruction 12692: 17.7924% -Rate for instruction 12693: 17.7919% -Rate for instruction 12694: 17.7911% -Rate for instruction 12695: 17.7903% -Rate for instruction 12696: 17.791% -Rate for instruction 12697: 17.7917% -Rate for instruction 12698: 17.7909% -Rate for instruction 12699: 17.7907% -Rate for instruction 12700: 17.7899% -Rate for instruction 12701: 17.7904% -Rate for instruction 12702: 17.7893% -Rate for instruction 12703: 17.7888% -Rate for instruction 12704: 17.788% -Rate for instruction 12705: 17.7872% -Rate for instruction 12706: 17.7873% -Rate for instruction 12707: 17.7862% -Rate for instruction 12708: 17.7857% -Rate for instruction 12709: 17.7855% -Rate for instruction 12710: 17.785% -Rate for instruction 12711: 17.7848% -Rate for instruction 12712: 17.7843% -Rate for instruction 12713: 17.786% -Rate for instruction 12714: 17.7873% -Rate for instruction 12715: 17.7889% -Rate for instruction 12716: 17.7908% -Rate for instruction 12717: 17.7919% -Rate for instruction 12718: 17.7914% -Rate for instruction 12719: 17.7906% -Rate for instruction 12720: 17.791% -Rate for instruction 12721: 17.7911% -Rate for instruction 12722: 17.7915% -Rate for instruction 12723: 17.791% -Rate for instruction 12724: 17.7908% -Rate for instruction 12725: 17.7916% -Rate for instruction 12726: 17.7911% -Rate for instruction 12727: 17.79% -Rate for instruction 12728: 17.7907% -Rate for instruction 12729: 17.7911% -Rate for instruction 12730: 17.7921% -Rate for instruction 12731: 17.7922% -Rate for instruction 12732: 17.793% -Rate for instruction 12733: 17.7943% -Rate for instruction 12734: 17.7941% -Rate for instruction 12735: 17.793% -Rate for instruction 12736: 17.7934% -Rate for instruction 12737: 17.7941% -Rate for instruction 12738: 17.7942% -Rate for instruction 12739: 17.7931% -Rate for instruction 12740: 17.7936% -Rate for instruction 12741: 17.7931% -Rate for instruction 12742: 17.7941% -Rate for instruction 12743: 17.7954% -Rate for instruction 12744: 17.7976% -Rate for instruction 12745: 17.7999% -Rate for instruction 12746: 17.7994% -Rate for instruction 12747: 17.7998% -Rate for instruction 12748: 17.799% -Rate for instruction 12749: 17.7982% -Rate for instruction 12750: 17.7992% -Rate for instruction 12751: 17.8005% -Rate for instruction 12752: 17.8021% -Rate for instruction 12753: 17.8023% -Rate for instruction 12754: 17.8015% -Rate for instruction 12755: 17.8004% -Rate for instruction 12756: 17.8014% -Rate for instruction 12757: 17.8003% -Rate for instruction 12758: 17.8016% -Rate for instruction 12759: 17.8029% -Rate for instruction 12760: 17.8039% -Rate for instruction 12761: 17.8053% -Rate for instruction 12762: 17.8066% -Rate for instruction 12763: 17.8073% -Rate for instruction 12764: 17.8092% -Rate for instruction 12765: 17.8087% -Rate for instruction 12766: 17.8082% -Rate for instruction 12767: 17.8071% -Rate for instruction 12768: 17.8069% -Rate for instruction 12769: 17.8065% -Rate for instruction 12770: 17.8057% -Rate for instruction 12771: 17.8049% -Rate for instruction 12772: 17.8044% -Rate for instruction 12773: 17.8036% -Rate for instruction 12774: 17.8034% -Rate for instruction 12775: 17.8023% -Rate for instruction 12776: 17.8015% -Rate for instruction 12777: 17.8037% -Rate for instruction 12778: 17.8041% -Rate for instruction 12779: 17.8061% -Rate for instruction 12780: 17.8083% -Rate for instruction 12781: 17.8087% -Rate for instruction 12782: 17.8076% -Rate for instruction 12783: 17.8083% -Rate for instruction 12784: 17.8087% -Rate for instruction 12785: 17.81% -Rate for instruction 12786: 17.8105% -Rate for instruction 12787: 17.8109% -Rate for instruction 12788: 17.8098% -Rate for instruction 12789: 17.8099% -Rate for instruction 12790: 17.8088% -Rate for instruction 12791: 17.8086% -Rate for instruction 12792: 17.8078% -Rate for instruction 12793: 17.8067% -Rate for instruction 12794: 17.8062% -Rate for instruction 12795: 17.8051% -Rate for instruction 12796: 17.8044% -Rate for instruction 12797: 17.8033% -Rate for instruction 12798: 17.8034% -Rate for instruction 12799: 17.8023% -Rate for instruction 12800: 17.803% -Rate for instruction 12801: 17.804% -Rate for instruction 12802: 17.8047% -Rate for instruction 12803: 17.8042% -Rate for instruction 12804: 17.8034% -Rate for instruction 12805: 17.803% -Rate for instruction 12806: 17.8019% -Rate for instruction 12807: 17.8017% -Rate for instruction 12808: 17.8006% -Rate for instruction 12809: 17.7998% -Rate for instruction 12810: 17.8008% -Rate for instruction 12811: 17.8015% -Rate for instruction 12812: 17.8004% -Rate for instruction 12813: 17.7996% -Rate for instruction 12814: 17.8004% -Rate for instruction 12815: 17.8011% -Rate for instruction 12816: 17.8009% -Rate for instruction 12817: 17.7998% -Rate for instruction 12818: 17.8002% -Rate for instruction 12819: 17.8006% -Rate for instruction 12820: 17.801% -Rate for instruction 12821: 17.8005% -Rate for instruction 12822: 17.7994% -Rate for instruction 12823: 17.7996% -Rate for instruction 12824: 17.7994% -Rate for instruction 12825: 17.8001% -Rate for instruction 12826: 17.7996% -Rate for instruction 12827: 17.7988% -Rate for instruction 12828: 17.7986% -Rate for instruction 12829: 17.7975% -Rate for instruction 12830: 17.7973% -Rate for instruction 12831: 17.7975% -Rate for instruction 12832: 17.7964% -Rate for instruction 12833: 17.7956% -Rate for instruction 12834: 17.7954% -Rate for instruction 12835: 17.7943% -Rate for instruction 12836: 17.7935% -Rate for instruction 12837: 17.7924% -Rate for instruction 12838: 17.7919% -Rate for instruction 12839: 17.7912% -Rate for instruction 12840: 17.7913% -Rate for instruction 12841: 17.7917% -Rate for instruction 12842: 17.7909% -Rate for instruction 12843: 17.7904% -Rate for instruction 12844: 17.7902% -Rate for instruction 12845: 17.79% -Rate for instruction 12846: 17.7895% -Rate for instruction 12847: 17.7894% -Rate for instruction 12848: 17.7892% -Rate for instruction 12849: 17.7896% -Rate for instruction 12850: 17.7891% -Rate for instruction 12851: 17.7907% -Rate for instruction 12852: 17.7917% -Rate for instruction 12853: 17.7915% -Rate for instruction 12854: 17.7913% -Rate for instruction 12855: 17.7935% -Rate for instruction 12856: 17.7934% -Rate for instruction 12857: 17.7926% -Rate for instruction 12858: 17.7921% -Rate for instruction 12859: 17.7913% -Rate for instruction 12860: 17.7923% -Rate for instruction 12861: 17.7915% -Rate for instruction 12862: 17.791% -Rate for instruction 12863: 17.7906% -Rate for instruction 12864: 17.7895% -Rate for instruction 12865: 17.789% -Rate for instruction 12866: 17.7891% -Rate for instruction 12867: 17.7886% -Rate for instruction 12868: 17.7887% -Rate for instruction 12869: 17.7891% -Rate for instruction 12870: 17.7881% -Rate for instruction 12871: 17.7882% -Rate for instruction 12872: 17.7871% -Rate for instruction 12873: 17.7866% -Rate for instruction 12874: 17.7861% -Rate for instruction 12875: 17.7853% -Rate for instruction 12876: 17.7854% -Rate for instruction 12877: 17.7864% -Rate for instruction 12878: 17.7863% -Rate for instruction 12879: 17.7867% -Rate for instruction 12880: 17.7877% -Rate for instruction 12881: 17.7875% -Rate for instruction 12882: 17.7873% -Rate for instruction 12883: 17.7868% -Rate for instruction 12884: 17.7866% -Rate for instruction 12885: 17.7885% -Rate for instruction 12886: 17.7898% -Rate for instruction 12887: 17.79% -Rate for instruction 12888: 17.7904% -Rate for instruction 12889: 17.7899% -Rate for instruction 12890: 17.7906% -Rate for instruction 12891: 17.791% -Rate for instruction 12892: 17.7911% -Rate for instruction 12893: 17.79% -Rate for instruction 12894: 17.7898% -Rate for instruction 12895: 17.7888% -Rate for instruction 12896: 17.7886% -Rate for instruction 12897: 17.7884% -Rate for instruction 12898: 17.7891% -Rate for instruction 12899: 17.7889% -Rate for instruction 12900: 17.7881% -Rate for instruction 12901: 17.7891% -Rate for instruction 12902: 17.7901% -Rate for instruction 12903: 17.7891% -Rate for instruction 12904: 17.7883% -Rate for instruction 12905: 17.7902% -Rate for instruction 12906: 17.7894% -Rate for instruction 12907: 17.791% -Rate for instruction 12908: 17.7929% -Rate for instruction 12909: 17.7942% -Rate for instruction 12910: 17.7955% -Rate for instruction 12911: 17.7971% -Rate for instruction 12912: 17.796% -Rate for instruction 12913: 17.7967% -Rate for instruction 12914: 17.7956% -Rate for instruction 12915: 17.7952% -Rate for instruction 12916: 17.7974% -Rate for instruction 12917: 17.7996% -Rate for instruction 12918: 17.8006% -Rate for instruction 12919: 17.8016% -Rate for instruction 12920: 17.8029% -Rate for instruction 12921: 17.8021% -Rate for instruction 12922: 17.8034% -Rate for instruction 12923: 17.8026% -Rate for instruction 12924: 17.8018% -Rate for instruction 12925: 17.801% -Rate for instruction 12926: 17.8005% -Rate for instruction 12927: 17.7998% -Rate for instruction 12928: 17.8014% -Rate for instruction 12929: 17.803% -Rate for instruction 12930: 17.8022% -Rate for instruction 12931: 17.8038% -Rate for instruction 12932: 17.8027% -Rate for instruction 12933: 17.8037% -Rate for instruction 12934: 17.8053% -Rate for instruction 12935: 17.8048% -Rate for instruction 12936: 17.8061% -Rate for instruction 12937: 17.8071% -Rate for instruction 12938: 17.8075% -Rate for instruction 12939: 17.8064% -Rate for instruction 12940: 17.8057% -Rate for instruction 12941: 17.8081% -Rate for instruction 12942: 17.8083% -Rate for instruction 12943: 17.8084% -Rate for instruction 12944: 17.8106% -Rate for instruction 12945: 17.8113% -Rate for instruction 12946: 17.8117% -Rate for instruction 12947: 17.8109% -Rate for instruction 12948: 17.8098% -Rate for instruction 12949: 17.8093% -Rate for instruction 12950: 17.8082% -Rate for instruction 12951: 17.8075% -Rate for instruction 12952: 17.8064% -Rate for instruction 12953: 17.8068% -Rate for instruction 12954: 17.806% -Rate for instruction 12955: 17.8052% -Rate for instruction 12956: 17.805% -Rate for instruction 12957: 17.8046% -Rate for instruction 12958: 17.8047% -Rate for instruction 12959: 17.8048% -Rate for instruction 12960: 17.8052% -Rate for instruction 12961: 17.8044% -Rate for instruction 12962: 17.8036% -Rate for instruction 12963: 17.804% -Rate for instruction 12964: 17.8039% -Rate for instruction 12965: 17.8037% -Rate for instruction 12966: 17.8041% -Rate for instruction 12967: 17.8042% -Rate for instruction 12968: 17.8031% -Rate for instruction 12969: 17.8023% -Rate for instruction 12970: 17.8015% -Rate for instruction 12971: 17.8008% -Rate for instruction 12972: 17.8006% -Rate for instruction 12973: 17.7998% -Rate for instruction 12974: 17.799% -Rate for instruction 12975: 17.7985% -Rate for instruction 12976: 17.7975% -Rate for instruction 12977: 17.7967% -Rate for instruction 12978: 17.7962% -Rate for instruction 12979: 17.796% -Rate for instruction 12980: 17.797% -Rate for instruction 12981: 17.7965% -Rate for instruction 12982: 17.7961% -Rate for instruction 12983: 17.7968% -Rate for instruction 12984: 17.7975% -Rate for instruction 12985: 17.7964% -Rate for instruction 12986: 17.7959% -Rate for instruction 12987: 17.7948% -Rate for instruction 12988: 17.7952% -Rate for instruction 12989: 17.7942% -Rate for instruction 12990: 17.7934% -Rate for instruction 12991: 17.7932% -Rate for instruction 12992: 17.796% -Rate for instruction 12993: 17.7982% -Rate for instruction 12994: 17.7977% -Rate for instruction 12995: 17.7969% -Rate for instruction 12996: 17.7958% -Rate for instruction 12997: 17.7962% -Rate for instruction 12998: 17.7987% -Rate for instruction 12999: 17.7982% -Rate for instruction 13000: 17.7983% -Rate for instruction 13001: 17.7973% -Rate for instruction 13002: 17.7994% -Rate for instruction 13003: 17.7987% -Rate for instruction 13004: 17.7991% -Rate for instruction 13005: 17.7995% -Rate for instruction 13006: 17.7996% -Rate for instruction 13007: 17.7994% -Rate for instruction 13008: 17.7992% -Rate for instruction 13009: 17.7984% -Rate for instruction 13010: 17.7983% -Rate for instruction 13011: 17.7981% -Rate for instruction 13012: 17.7979% -Rate for instruction 13013: 17.7971% -Rate for instruction 13014: 17.7981% -Rate for instruction 13015: 17.7985% -Rate for instruction 13016: 17.7974% -Rate for instruction 13017: 17.7973% -Rate for instruction 13018: 17.7968% -Rate for instruction 13019: 17.7957% -Rate for instruction 13020: 17.7952% -Rate for instruction 13021: 17.7947% -Rate for instruction 13022: 17.7943% -Rate for instruction 13023: 17.7941% -Rate for instruction 13024: 17.7936% -Rate for instruction 13025: 17.7937% -Rate for instruction 13026: 17.795% -Rate for instruction 13027: 17.796% -Rate for instruction 13028: 17.7988% -Rate for instruction 13029: 17.7986% -Rate for instruction 13030: 17.799% -Rate for instruction 13031: 17.7997% -Rate for instruction 13032: 17.8013% -Rate for instruction 13033: 17.8002% -Rate for instruction 13034: 17.8012% -Rate for instruction 13035: 17.8001% -Rate for instruction 13036: 17.7996% -Rate for instruction 13037: 17.8012% -Rate for instruction 13038: 17.8001% -Rate for instruction 13039: 17.802% -Rate for instruction 13040: 17.8027% -Rate for instruction 13041: 17.8034% -Rate for instruction 13042: 17.8044% -Rate for instruction 13043: 17.8057% -Rate for instruction 13044: 17.8076% -Rate for instruction 13045: 17.8089% -Rate for instruction 13046: 17.8105% -Rate for instruction 13047: 17.8097% -Rate for instruction 13048: 17.8089% -Rate for instruction 13049: 17.8078% -Rate for instruction 13050: 17.8074% -Rate for instruction 13051: 17.8072% -Rate for instruction 13052: 17.8067% -Rate for instruction 13053: 17.8056% -Rate for instruction 13054: 17.8072% -Rate for instruction 13055: 17.8088% -Rate for instruction 13056: 17.8086% -Rate for instruction 13057: 17.8093% -Rate for instruction 13058: 17.8085% -Rate for instruction 13059: 17.8095% -Rate for instruction 13060: 17.8111% -Rate for instruction 13061: 17.8112% -Rate for instruction 13062: 17.8128% -Rate for instruction 13063: 17.8138% -Rate for instruction 13064: 17.8154% -Rate for instruction 13065: 17.8149% -Rate for instruction 13066: 17.8156% -Rate for instruction 13067: 17.8166% -Rate for instruction 13068: 17.8158% -Rate for instruction 13069: 17.8162% -Rate for instruction 13070: 17.8163% -Rate for instruction 13071: 17.8152% -Rate for instruction 13072: 17.8153% -Rate for instruction 13073: 17.8146% -Rate for instruction 13074: 17.8141% -Rate for instruction 13075: 17.813% -Rate for instruction 13076: 17.812% -Rate for instruction 13077: 17.8132% -Rate for instruction 13078: 17.8122% -Rate for instruction 13079: 17.8114% -Rate for instruction 13080: 17.8118% -Rate for instruction 13081: 17.811% -Rate for instruction 13082: 17.8105% -Rate for instruction 13083: 17.8107% -Rate for instruction 13084: 17.8108% -Rate for instruction 13085: 17.81% -Rate for instruction 13086: 17.8098% -Rate for instruction 13087: 17.8096% -Rate for instruction 13088: 17.8097% -Rate for instruction 13089: 17.8101% -Rate for instruction 13090: 17.8094% -Rate for instruction 13091: 17.8089% -Rate for instruction 13092: 17.8087% -Rate for instruction 13093: 17.8082% -Rate for instruction 13094: 17.808% -Rate for instruction 13095: 17.8078% -Rate for instruction 13096: 17.8085% -Rate for instruction 13097: 17.8084% -Rate for instruction 13098: 17.8079% -Rate for instruction 13099: 17.8071% -Rate for instruction 13100: 17.806% -Rate for instruction 13101: 17.8064% -Rate for instruction 13102: 17.8074% -Rate for instruction 13103: 17.8064% -Rate for instruction 13104: 17.8068% -Rate for instruction 13105: 17.8063% -Rate for instruction 13106: 17.8067% -Rate for instruction 13107: 17.8062% -Rate for instruction 13108: 17.806% -Rate for instruction 13109: 17.805% -Rate for instruction 13110: 17.8048% -Rate for instruction 13111: 17.8037% -Rate for instruction 13112: 17.8047% -Rate for instruction 13113: 17.8036% -Rate for instruction 13114: 17.8029% -Rate for instruction 13115: 17.8041% -Rate for instruction 13116: 17.804% -Rate for instruction 13117: 17.8041% -Rate for instruction 13118: 17.8036% -Rate for instruction 13119: 17.8031% -Rate for instruction 13120: 17.8029% -Rate for instruction 13121: 17.8028% -Rate for instruction 13122: 17.8029% -Rate for instruction 13123: 17.803% -Rate for instruction 13124: 17.8022% -Rate for instruction 13125: 17.8011% -Rate for instruction 13126: 17.8007% -Rate for instruction 13127: 17.7999% -Rate for instruction 13128: 17.8% -Rate for instruction 13129: 17.8007% -Rate for instruction 13130: 17.8008% -Rate for instruction 13131: 17.8012% -Rate for instruction 13132: 17.8016% -Rate for instruction 13133: 17.8023% -Rate for instruction 13134: 17.8012% -Rate for instruction 13135: 17.8031% -Rate for instruction 13136: 17.8047% -Rate for instruction 13137: 17.8057% -Rate for instruction 13138: 17.8064% -Rate for instruction 13139: 17.8082% -Rate for instruction 13140: 17.8072% -Rate for instruction 13141: 17.8087% -Rate for instruction 13142: 17.8103% -Rate for instruction 13143: 17.8098% -Rate for instruction 13144: 17.8105% -Rate for instruction 13145: 17.8097% -Rate for instruction 13146: 17.8096% -Rate for instruction 13147: 17.8085% -Rate for instruction 13148: 17.8086% -Rate for instruction 13149: 17.809% -Rate for instruction 13150: 17.8091% -Rate for instruction 13151: 17.8089% -Rate for instruction 13152: 17.8087% -Rate for instruction 13153: 17.8086% -Rate for instruction 13154: 17.8078% -Rate for instruction 13155: 17.8073% -Rate for instruction 13156: 17.8071% -Rate for instruction 13157: 17.8072% -Rate for instruction 13158: 17.8068% -Rate for instruction 13159: 17.8075% -Rate for instruction 13160: 17.8073% -Rate for instruction 13161: 17.8077% -Rate for instruction 13162: 17.8078% -Rate for instruction 13163: 17.8067% -Rate for instruction 13164: 17.8068% -Rate for instruction 13165: 17.8061% -Rate for instruction 13166: 17.807% -Rate for instruction 13167: 17.8069% -Rate for instruction 13168: 17.8081% -Rate for instruction 13169: 17.8091% -Rate for instruction 13170: 17.8104% -Rate for instruction 13171: 17.8096% -Rate for instruction 13172: 17.81% -Rate for instruction 13173: 17.809% -Rate for instruction 13174: 17.8108% -Rate for instruction 13175: 17.8109% -Rate for instruction 13176: 17.8108% -Rate for instruction 13177: 17.8117% -Rate for instruction 13178: 17.8124% -Rate for instruction 13179: 17.8114% -Rate for instruction 13180: 17.8118% -Rate for instruction 13181: 17.811% -Rate for instruction 13182: 17.8105% -Rate for instruction 13183: 17.8095% -Rate for instruction 13184: 17.8096% -Rate for instruction 13185: 17.8091% -Rate for instruction 13186: 17.8086% -Rate for instruction 13187: 17.809% -Rate for instruction 13188: 17.8085% -Rate for instruction 13189: 17.8089% -Rate for instruction 13190: 17.8088% -Rate for instruction 13191: 17.8089% -Rate for instruction 13192: 17.8081% -Rate for instruction 13193: 17.8073% -Rate for instruction 13194: 17.8086% -Rate for instruction 13195: 17.8078% -Rate for instruction 13196: 17.8085% -Rate for instruction 13197: 17.8086% -Rate for instruction 13198: 17.8085% -Rate for instruction 13199: 17.8077% -Rate for instruction 13200: 17.8084% -Rate for instruction 13201: 17.8094% -Rate for instruction 13202: 17.8086% -Rate for instruction 13203: 17.8081% -Rate for instruction 13204: 17.8094% -Rate for instruction 13205: 17.8101% -Rate for instruction 13206: 17.8105% -Rate for instruction 13207: 17.8112% -Rate for instruction 13208: 17.8104% -Rate for instruction 13209: 17.8105% -Rate for instruction 13210: 17.8121% -Rate for instruction 13211: 17.8119% -Rate for instruction 13212: 17.8129% -Rate for instruction 13213: 17.8127% -Rate for instruction 13214: 17.8119% -Rate for instruction 13215: 17.8117% -Rate for instruction 13216: 17.8107% -Rate for instruction 13217: 17.8099% -Rate for instruction 13218: 17.8089% -Rate for instruction 13219: 17.8084% -Rate for instruction 13220: 17.8073% -Rate for instruction 13221: 17.8074% -Rate for instruction 13222: 17.807% -Rate for instruction 13223: 17.8059% -Rate for instruction 13224: 17.8057% -Rate for instruction 13225: 17.8055% -Rate for instruction 13226: 17.8059% -Rate for instruction 13227: 17.8063% -Rate for instruction 13228: 17.8065% -Rate for instruction 13229: 17.8068% -Rate for instruction 13230: 17.8072% -Rate for instruction 13231: 17.8076% -Rate for instruction 13232: 17.8089% -Rate for instruction 13233: 17.8102% -Rate for instruction 13234: 17.8112% -Rate for instruction 13235: 17.8104% -Rate for instruction 13236: 17.812% -Rate for instruction 13237: 17.8118% -Rate for instruction 13238: 17.8116% -Rate for instruction 13239: 17.8117% -Rate for instruction 13240: 17.8121% -Rate for instruction 13241: 17.8116% -Rate for instruction 13242: 17.812% -Rate for instruction 13243: 17.8121% -Rate for instruction 13244: 17.8111% -Rate for instruction 13245: 17.8106% -Rate for instruction 13246: 17.8104% -Rate for instruction 13247: 17.8099% -Rate for instruction 13248: 17.8103% -Rate for instruction 13249: 17.8099% -Rate for instruction 13250: 17.8106% -Rate for instruction 13251: 17.8104% -Rate for instruction 13252: 17.8099% -Rate for instruction 13253: 17.81% -Rate for instruction 13254: 17.809% -Rate for instruction 13255: 17.8079% -Rate for instruction 13256: 17.8071% -Rate for instruction 13257: 17.807% -Rate for instruction 13258: 17.8068% -Rate for instruction 13259: 17.8075% -Rate for instruction 13260: 17.807% -Rate for instruction 13261: 17.8074% -Rate for instruction 13262: 17.8066% -Rate for instruction 13263: 17.8064% -Rate for instruction 13264: 17.8057% -Rate for instruction 13265: 17.8055% -Rate for instruction 13266: 17.8044% -Rate for instruction 13267: 17.804% -Rate for instruction 13268: 17.8029% -Rate for instruction 13269: 17.8024% -Rate for instruction 13270: 17.8031% -Rate for instruction 13271: 17.8038% -Rate for instruction 13272: 17.8028% -Rate for instruction 13273: 17.8029% -Rate for instruction 13274: 17.8027% -Rate for instruction 13275: 17.8031% -Rate for instruction 13276: 17.8029% -Rate for instruction 13277: 17.8019% -Rate for instruction 13278: 17.8011% -Rate for instruction 13279: 17.8027% -Rate for instruction 13280: 17.8036% -Rate for instruction 13281: 17.8055% -Rate for instruction 13282: 17.8044% -Rate for instruction 13283: 17.8054% -Rate for instruction 13284: 17.8072% -Rate for instruction 13285: 17.8062% -Rate for instruction 13286: 17.8072% -Rate for instruction 13287: 17.8064% -Rate for instruction 13288: 17.8062% -Rate for instruction 13289: 17.8055% -Rate for instruction 13290: 17.8044% -Rate for instruction 13291: 17.8039% -Rate for instruction 13292: 17.8035% -Rate for instruction 13293: 17.8039% -Rate for instruction 13294: 17.8028% -Rate for instruction 13295: 17.8026% -Rate for instruction 13296: 17.8022% -Rate for instruction 13297: 17.8023% -Rate for instruction 13298: 17.8027% -Rate for instruction 13299: 17.8022% -Rate for instruction 13300: 17.8014% -Rate for instruction 13301: 17.8024% -Rate for instruction 13302: 17.8025% -Rate for instruction 13303: 17.802% -Rate for instruction 13304: 17.8024% -Rate for instruction 13305: 17.8028% -Rate for instruction 13306: 17.8018% -Rate for instruction 13307: 17.8022% -Rate for instruction 13308: 17.8014% -Rate for instruction 13309: 17.8012% -Rate for instruction 13310: 17.8002% -Rate for instruction 13311: 17.7994% -Rate for instruction 13312: 17.7993% -Rate for instruction 13313: 17.7991% -Rate for instruction 13314: 17.7992% -Rate for instruction 13315: 17.8002% -Rate for instruction 13316: 17.8006% -Rate for instruction 13317: 17.7995% -Rate for instruction 13318: 17.8002% -Rate for instruction 13319: 17.7997% -Rate for instruction 13320: 17.799% -Rate for instruction 13321: 17.7999% -Rate for instruction 13322: 17.8% -Rate for instruction 13323: 17.8013% -Rate for instruction 13324: 17.8023% -Rate for instruction 13325: 17.8027% -Rate for instruction 13326: 17.8025% -Rate for instruction 13327: 17.8023% -Rate for instruction 13328: 17.8024% -Rate for instruction 13329: 17.8028% -Rate for instruction 13330: 17.8023% -Rate for instruction 13331: 17.8019% -Rate for instruction 13332: 17.802% -Rate for instruction 13333: 17.8015% -Rate for instruction 13334: 17.8008% -Rate for instruction 13335: 17.8003% -Rate for instruction 13336: 17.7998% -Rate for instruction 13337: 17.7999% -Rate for instruction 13338: 17.8003% -Rate for instruction 13339: 17.7999% -Rate for instruction 13340: 17.7991% -Rate for instruction 13341: 17.798% -Rate for instruction 13342: 17.797% -Rate for instruction 13343: 17.7971% -Rate for instruction 13344: 17.7972% -Rate for instruction 13345: 17.7965% -Rate for instruction 13346: 17.796% -Rate for instruction 13347: 17.7958% -Rate for instruction 13348: 17.7971% -Rate for instruction 13349: 17.7975% -Rate for instruction 13350: 17.7973% -Rate for instruction 13351: 17.7977% -Rate for instruction 13352: 17.7972% -Rate for instruction 13353: 17.7982% -Rate for instruction 13354: 17.7977% -Rate for instruction 13355: 17.7984% -Rate for instruction 13356: 17.7976% -Rate for instruction 13357: 17.7983% -Rate for instruction 13358: 17.7976% -Rate for instruction 13359: 17.798% -Rate for instruction 13360: 17.7986% -Rate for instruction 13361: 17.7996% -Rate for instruction 13362: 17.8006% -Rate for instruction 13363: 17.8013% -Rate for instruction 13364: 17.8002% -Rate for instruction 13365: 17.8015% -Rate for instruction 13366: 17.8027% -Rate for instruction 13367: 17.8023% -Rate for instruction 13368: 17.8041% -Rate for instruction 13369: 17.8042% -Rate for instruction 13370: 17.8035% -Rate for instruction 13371: 17.8024% -Rate for instruction 13372: 17.8031% -Rate for instruction 13373: 17.8038% -Rate for instruction 13374: 17.8039% -Rate for instruction 13375: 17.8028% -Rate for instruction 13376: 17.8021% -Rate for instruction 13377: 17.801% -Rate for instruction 13378: 17.8009% -Rate for instruction 13379: 17.7998% -Rate for instruction 13380: 17.7991% -Rate for instruction 13381: 17.8% -Rate for instruction 13382: 17.799% -Rate for instruction 13383: 17.7994% -Rate for instruction 13384: 17.7986% -Rate for instruction 13385: 17.7979% -Rate for instruction 13386: 17.7977% -Rate for instruction 13387: 17.7978% -Rate for instruction 13388: 17.7979% -Rate for instruction 13389: 17.798% -Rate for instruction 13390: 17.7973% -Rate for instruction 13391: 17.7968% -Rate for instruction 13392: 17.796% -Rate for instruction 13393: 17.7953% -Rate for instruction 13394: 17.7948% -Rate for instruction 13395: 17.7943% -Rate for instruction 13396: 17.7945% -Rate for instruction 13397: 17.7934% -Rate for instruction 13398: 17.7938% -Rate for instruction 13399: 17.7936% -Rate for instruction 13400: 17.794% -Rate for instruction 13401: 17.7933% -Rate for instruction 13402: 17.7925% -Rate for instruction 13403: 17.7929% -Rate for instruction 13404: 17.793% -Rate for instruction 13405: 17.7937% -Rate for instruction 13406: 17.7938% -Rate for instruction 13407: 17.7933% -Rate for instruction 13408: 17.7934% -Rate for instruction 13409: 17.7938% -Rate for instruction 13410: 17.7939% -Rate for instruction 13411: 17.7935% -Rate for instruction 13412: 17.7936% -Rate for instruction 13413: 17.7937% -Rate for instruction 13414: 17.7929% -Rate for instruction 13415: 17.7919% -Rate for instruction 13416: 17.7929% -Rate for instruction 13417: 17.7924% -Rate for instruction 13418: 17.7922% -Rate for instruction 13419: 17.7923% -Rate for instruction 13420: 17.793% -Rate for instruction 13421: 17.7923% -Rate for instruction 13422: 17.7927% -Rate for instruction 13423: 17.7936% -Rate for instruction 13424: 17.794% -Rate for instruction 13425: 17.7935% -Rate for instruction 13426: 17.7934% -Rate for instruction 13427: 17.7932% -Rate for instruction 13428: 17.7942% -Rate for instruction 13429: 17.794% -Rate for instruction 13430: 17.7949% -Rate for instruction 13431: 17.7945% -Rate for instruction 13432: 17.7943% -Rate for instruction 13433: 17.7935% -Rate for instruction 13434: 17.7934% -Rate for instruction 13435: 17.7935% -Rate for instruction 13436: 17.7936% -Rate for instruction 13437: 17.7928% -Rate for instruction 13438: 17.7932% -Rate for instruction 13439: 17.7933% -Rate for instruction 13440: 17.7946% -Rate for instruction 13441: 17.7941% -Rate for instruction 13442: 17.7948% -Rate for instruction 13443: 17.7938% -Rate for instruction 13444: 17.7936% -Rate for instruction 13445: 17.7931% -Rate for instruction 13446: 17.7932% -Rate for instruction 13447: 17.793% -Rate for instruction 13448: 17.7934% -Rate for instruction 13449: 17.7933% -Rate for instruction 13450: 17.7948% -Rate for instruction 13451: 17.7949% -Rate for instruction 13452: 17.7939% -Rate for instruction 13453: 17.7937% -Rate for instruction 13454: 17.7944% -Rate for instruction 13455: 17.7945% -Rate for instruction 13456: 17.7951% -Rate for instruction 13457: 17.7961% -Rate for instruction 13458: 17.7974% -Rate for instruction 13459: 17.7986% -Rate for instruction 13460: 17.7981% -Rate for instruction 13461: 17.7985% -Rate for instruction 13462: 17.7984% -Rate for instruction 13463: 17.799% -Rate for instruction 13464: 17.7991% -Rate for instruction 13465: 17.7987% -Rate for instruction 13466: 17.7985% -Rate for instruction 13467: 17.7975% -Rate for instruction 13468: 17.7967% -Rate for instruction 13469: 17.7965% -Rate for instruction 13470: 17.7975% -Rate for instruction 13471: 17.7979% -Rate for instruction 13472: 17.7991% -Rate for instruction 13473: 17.7984% -Rate for instruction 13474: 17.8002% -Rate for instruction 13475: 17.7997% -Rate for instruction 13476: 17.8016% -Rate for instruction 13477: 17.8034% -Rate for instruction 13478: 17.804% -Rate for instruction 13479: 17.8047% -Rate for instruction 13480: 17.8045% -Rate for instruction 13481: 17.8049% -Rate for instruction 13482: 17.8053% -Rate for instruction 13483: 17.806% -Rate for instruction 13484: 17.8061% -Rate for instruction 13485: 17.8051% -Rate for instruction 13486: 17.8043% -Rate for instruction 13487: 17.8036% -Rate for instruction 13488: 17.804% -Rate for instruction 13489: 17.8044% -Rate for instruction 13490: 17.8045% -Rate for instruction 13491: 17.8051% -Rate for instruction 13492: 17.8041% -Rate for instruction 13493: 17.8034% -Rate for instruction 13494: 17.8023% -Rate for instruction 13495: 17.8016% -Rate for instruction 13496: 17.8011% -Rate for instruction 13497: 17.8004% -Rate for instruction 13498: 17.7996% -Rate for instruction 13499: 17.8009% -Rate for instruction 13500: 17.8004% -Rate for instruction 13501: 17.8016% -Rate for instruction 13502: 17.8009% -Rate for instruction 13503: 17.8004% -Rate for instruction 13504: 17.8002% -Rate for instruction 13505: 17.7992% -Rate for instruction 13506: 17.8005% -Rate for instruction 13507: 17.8026% -Rate for instruction 13508: 17.8038% -Rate for instruction 13509: 17.8036% -Rate for instruction 13510: 17.8026% -Rate for instruction 13511: 17.8035% -Rate for instruction 13512: 17.8031% -Rate for instruction 13513: 17.8038% -Rate for instruction 13514: 17.805% -Rate for instruction 13515: 17.8057% -Rate for instruction 13516: 17.8052% -Rate for instruction 13517: 17.8045% -Rate for instruction 13518: 17.804% -Rate for instruction 13519: 17.8033% -Rate for instruction 13520: 17.8022% -Rate for instruction 13521: 17.802% -Rate for instruction 13522: 17.8027% -Rate for instruction 13523: 17.802% -Rate for instruction 13524: 17.8021% -Rate for instruction 13525: 17.8019% -Rate for instruction 13526: 17.8026% -Rate for instruction 13527: 17.8021% -Rate for instruction 13528: 17.8025% -Rate for instruction 13529: 17.8032% -Rate for instruction 13530: 17.8024% -Rate for instruction 13531: 17.802% -Rate for instruction 13532: 17.8026% -Rate for instruction 13533: 17.8025% -Rate for instruction 13534: 17.8026% -Rate for instruction 13535: 17.8015% -Rate for instruction 13536: 17.8022% -Rate for instruction 13537: 17.8012% -Rate for instruction 13538: 17.8004% -Rate for instruction 13539: 17.8005% -Rate for instruction 13540: 17.8015% -Rate for instruction 13541: 17.8024% -Rate for instruction 13542: 17.8034% -Rate for instruction 13543: 17.8038% -Rate for instruction 13544: 17.8036% -Rate for instruction 13545: 17.804% -Rate for instruction 13546: 17.8038% -Rate for instruction 13547: 17.8036% -Rate for instruction 13548: 17.8026% -Rate for instruction 13549: 17.8024% -Rate for instruction 13550: 17.8014% -Rate for instruction 13551: 17.8015% -Rate for instruction 13552: 17.8008% -Rate for instruction 13553: 17.8006% -Rate for instruction 13554: 17.8001% -Rate for instruction 13555: 17.7991% -Rate for instruction 13556: 17.7984% -Rate for instruction 13557: 17.7982% -Rate for instruction 13558: 17.7974% -Rate for instruction 13559: 17.7967% -Rate for instruction 13560: 17.7962% -Rate for instruction 13561: 17.7955% -Rate for instruction 13562: 17.7953% -Rate for instruction 13563: 17.796% -Rate for instruction 13564: 17.7958% -Rate for instruction 13565: 17.7951% -Rate for instruction 13566: 17.7949% -Rate for instruction 13567: 17.7938% -Rate for instruction 13568: 17.7931% -Rate for instruction 13569: 17.7926% -Rate for instruction 13570: 17.7919% -Rate for instruction 13571: 17.7934% -Rate for instruction 13572: 17.7949% -Rate for instruction 13573: 17.7939% -Rate for instruction 13574: 17.7952% -Rate for instruction 13575: 17.7953% -Rate for instruction 13576: 17.7951% -Rate for instruction 13577: 17.7955% -Rate for instruction 13578: 17.795% -Rate for instruction 13579: 17.7951% -Rate for instruction 13580: 17.7952% -Rate for instruction 13581: 17.7942% -Rate for instruction 13582: 17.794% -Rate for instruction 13583: 17.7941% -Rate for instruction 13584: 17.7934% -Rate for instruction 13585: 17.7932% -Rate for instruction 13586: 17.7925% -Rate for instruction 13587: 17.7926% -Rate for instruction 13588: 17.7921% -Rate for instruction 13589: 17.7922% -Rate for instruction 13590: 17.7923% -Rate for instruction 13591: 17.7924% -Rate for instruction 13592: 17.7925% -Rate for instruction 13593: 17.7924% -Rate for instruction 13594: 17.7916% -Rate for instruction 13595: 17.7934% -Rate for instruction 13596: 17.7941% -Rate for instruction 13597: 17.7936% -Rate for instruction 13598: 17.7943% -Rate for instruction 13599: 17.7933% -Rate for instruction 13600: 17.7939% -Rate for instruction 13601: 17.7963% -Rate for instruction 13602: 17.7975% -Rate for instruction 13603: 17.7965% -Rate for instruction 13604: 17.7969% -Rate for instruction 13605: 17.7979% -Rate for instruction 13606: 17.7974% -Rate for instruction 13607: 17.7972% -Rate for instruction 13608: 17.7965% -Rate for instruction 13609: 17.796% -Rate for instruction 13610: 17.7958% -Rate for instruction 13611: 17.7948% -Rate for instruction 13612: 17.7944% -Rate for instruction 13613: 17.7933% -Rate for instruction 13614: 17.7923% -Rate for instruction 13615: 17.7924% -Rate for instruction 13616: 17.7925% -Rate for instruction 13617: 17.7921% -Rate for instruction 13618: 17.7927% -Rate for instruction 13619: 17.792% -Rate for instruction 13620: 17.7929% -Rate for instruction 13621: 17.7922% -Rate for instruction 13622: 17.7926% -Rate for instruction 13623: 17.7921% -Rate for instruction 13624: 17.7917% -Rate for instruction 13625: 17.7912% -Rate for instruction 13626: 17.7933% -Rate for instruction 13627: 17.7948% -Rate for instruction 13628: 17.7941% -Rate for instruction 13629: 17.7959% -Rate for instruction 13630: 17.7957% -Rate for instruction 13631: 17.7972% -Rate for instruction 13632: 17.7984% -Rate for instruction 13633: 17.7974% -Rate for instruction 13634: 17.7981% -Rate for instruction 13635: 17.7971% -Rate for instruction 13636: 17.7975% -Rate for instruction 13637: 17.7964% -Rate for instruction 13638: 17.7963% -Rate for instruction 13639: 17.7961% -Rate for instruction 13640: 17.7951% -Rate for instruction 13641: 17.7946% -Rate for instruction 13642: 17.7936% -Rate for instruction 13643: 17.7928% -Rate for instruction 13644: 17.7929% -Rate for instruction 13645: 17.7925% -Rate for instruction 13646: 17.792% -Rate for instruction 13647: 17.7916% -Rate for instruction 13648: 17.7914% -Rate for instruction 13649: 17.7912% -Rate for instruction 13650: 17.7908% -Rate for instruction 13651: 17.7906% -Rate for instruction 13652: 17.7901% -Rate for instruction 13653: 17.7899% -Rate for instruction 13654: 17.7889% -Rate for instruction 13655: 17.7887% -Rate for instruction 13656: 17.7883% -Rate for instruction 13657: 17.7875% -Rate for instruction 13658: 17.7865% -Rate for instruction 13659: 17.7866% -Rate for instruction 13660: 17.7865% -Rate for instruction 13661: 17.786% -Rate for instruction 13662: 17.7855% -Rate for instruction 13663: 17.7848% -Rate for instruction 13664: 17.7843% -Rate for instruction 13665: 17.7842% -Rate for instruction 13666: 17.7837% -Rate for instruction 13667: 17.7835% -Rate for instruction 13668: 17.7834% -Rate for instruction 13669: 17.7829% -Rate for instruction 13670: 17.7824% -Rate for instruction 13671: 17.7823% -Rate for instruction 13672: 17.7818% -Rate for instruction 13673: 17.7814% -Rate for instruction 13674: 17.7815% -Rate for instruction 13675: 17.7813% -Rate for instruction 13676: 17.7808% -Rate for instruction 13677: 17.7807% -Rate for instruction 13678: 17.7805% -Rate for instruction 13679: 17.7803% -Rate for instruction 13680: 17.7799% -Rate for instruction 13681: 17.7791% -Rate for instruction 13682: 17.7787% -Rate for instruction 13683: 17.7788% -Rate for instruction 13684: 17.778% -Rate for instruction 13685: 17.7779% -Rate for instruction 13686: 17.7774% -Rate for instruction 13687: 17.7767% -Rate for instruction 13688: 17.7782% -Rate for instruction 13689: 17.7772% -Rate for instruction 13690: 17.7789% -Rate for instruction 13691: 17.7779% -Rate for instruction 13692: 17.7772% -Rate for instruction 13693: 17.779% -Rate for instruction 13694: 17.7785% -Rate for instruction 13695: 17.7775% -Rate for instruction 13696: 17.7773% -Rate for instruction 13697: 17.7774% -Rate for instruction 13698: 17.7773% -Rate for instruction 13699: 17.7768% -Rate for instruction 13700: 17.7761% -Rate for instruction 13701: 17.7753% -Rate for instruction 13702: 17.7746% -Rate for instruction 13703: 17.7741% -Rate for instruction 13704: 17.7737% -Rate for instruction 13705: 17.7738% -Rate for instruction 13706: 17.7731% -Rate for instruction 13707: 17.7729% -Rate for instruction 13708: 17.7722% -Rate for instruction 13709: 17.7711% -Rate for instruction 13710: 17.7726% -Rate for instruction 13711: 17.7728% -Rate for instruction 13712: 17.7726% -Rate for instruction 13713: 17.773% -Rate for instruction 13714: 17.7739% -Rate for instruction 13715: 17.7732% -Rate for instruction 13716: 17.7741% -Rate for instruction 13717: 17.7756% -Rate for instruction 13718: 17.7749% -Rate for instruction 13719: 17.7744% -Rate for instruction 13720: 17.7734% -Rate for instruction 13721: 17.7741% -Rate for instruction 13722: 17.7748% -Rate for instruction 13723: 17.7737% -Rate for instruction 13724: 17.7739% -Rate for instruction 13725: 17.7734% -Rate for instruction 13726: 17.7743% -Rate for instruction 13727: 17.7736% -Rate for instruction 13728: 17.7734% -Rate for instruction 13729: 17.7727% -Rate for instruction 13730: 17.772% -Rate for instruction 13731: 17.771% -Rate for instruction 13732: 17.7702% -Rate for instruction 13733: 17.77% -Rate for instruction 13734: 17.769% -Rate for instruction 13735: 17.7686% -Rate for instruction 13736: 17.7695% -Rate for instruction 13737: 17.7702% -Rate for instruction 13738: 17.77% -Rate for instruction 13739: 17.7696% -Rate for instruction 13740: 17.7686% -Rate for instruction 13741: 17.7695% -Rate for instruction 13742: 17.7704% -Rate for instruction 13743: 17.7697% -Rate for instruction 13744: 17.7701% -Rate for instruction 13745: 17.7694% -Rate for instruction 13746: 17.7706% -Rate for instruction 13747: 17.7721% -Rate for instruction 13748: 17.7711% -Rate for instruction 13749: 17.7717% -Rate for instruction 13750: 17.7721% -Rate for instruction 13751: 17.7717% -Rate for instruction 13752: 17.7723% -Rate for instruction 13753: 17.773% -Rate for instruction 13754: 17.772% -Rate for instruction 13755: 17.7721% -Rate for instruction 13756: 17.7714% -Rate for instruction 13757: 17.7704% -Rate for instruction 13758: 17.7705% -Rate for instruction 13759: 17.7695% -Rate for instruction 13760: 17.7687% -Rate for instruction 13761: 17.7677% -Rate for instruction 13762: 17.7673% -Rate for instruction 13763: 17.7671% -Rate for instruction 13764: 17.7664% -Rate for instruction 13765: 17.7662% -Rate for instruction 13766: 17.7663% -Rate for instruction 13767: 17.7658% -Rate for instruction 13768: 17.7657% -Rate for instruction 13769: 17.7649% -Rate for instruction 13770: 17.7642% -Rate for instruction 13771: 17.7649% -Rate for instruction 13772: 17.7647% -Rate for instruction 13773: 17.7651% -Rate for instruction 13774: 17.7649% -Rate for instruction 13775: 17.7653% -Rate for instruction 13776: 17.7646% -Rate for instruction 13777: 17.7641% -Rate for instruction 13778: 17.7631% -Rate for instruction 13779: 17.7626% -Rate for instruction 13780: 17.7625% -Rate for instruction 13781: 17.762% -Rate for instruction 13782: 17.7621% -Rate for instruction 13783: 17.762% -Rate for instruction 13784: 17.7621% -Rate for instruction 13785: 17.7616% -Rate for instruction 13786: 17.7609% -Rate for instruction 13787: 17.7607% -Rate for instruction 13788: 17.7605% -Rate for instruction 13789: 17.7604% -Rate for instruction 13790: 17.7607% -Rate for instruction 13791: 17.7603% -Rate for instruction 13792: 17.7607% -Rate for instruction 13793: 17.7611% -Rate for instruction 13794: 17.7606% -Rate for instruction 13795: 17.7604% -Rate for instruction 13796: 17.7603% -Rate for instruction 13797: 17.7595% -Rate for instruction 13798: 17.7599% -Rate for instruction 13799: 17.7595% -Rate for instruction 13800: 17.7599% -Rate for instruction 13801: 17.7591% -Rate for instruction 13802: 17.7606% -Rate for instruction 13803: 17.7596% -Rate for instruction 13804: 17.7589% -Rate for instruction 13805: 17.7598% -Rate for instruction 13806: 17.7602% -Rate for instruction 13807: 17.7612% -Rate for instruction 13808: 17.7613% -Rate for instruction 13809: 17.7603% -Rate for instruction 13810: 17.7595% -Rate for instruction 13811: 17.7588% -Rate for instruction 13812: 17.7581% -Rate for instruction 13813: 17.759% -Rate for instruction 13814: 17.7608% -Rate for instruction 13815: 17.7606% -Rate for instruction 13816: 17.7605% -Rate for instruction 13817: 17.76% -Rate for instruction 13818: 17.7593% -Rate for instruction 13819: 17.7583% -Rate for instruction 13820: 17.7581% -Rate for instruction 13821: 17.7579% -Rate for instruction 13822: 17.7575% -Rate for instruction 13823: 17.7565% -Rate for instruction 13824: 17.7571% -Rate for instruction 13825: 17.7578% -Rate for instruction 13826: 17.7579% -Rate for instruction 13827: 17.7586% -Rate for instruction 13828: 17.7578% -Rate for instruction 13829: 17.7582% -Rate for instruction 13830: 17.7575% -Rate for instruction 13831: 17.7593% -Rate for instruction 13832: 17.7591% -Rate for instruction 13833: 17.7581% -Rate for instruction 13834: 17.7588% -Rate for instruction 13835: 17.76% -Rate for instruction 13836: 17.7617% -Rate for instruction 13837: 17.7613% -Rate for instruction 13838: 17.7608% -Rate for instruction 13839: 17.7621% -Rate for instruction 13840: 17.7633% -Rate for instruction 13841: 17.7637% -Rate for instruction 13842: 17.7649% -Rate for instruction 13843: 17.7644% -Rate for instruction 13844: 17.7643% -Rate for instruction 13845: 17.7633% -Rate for instruction 13846: 17.7634% -Rate for instruction 13847: 17.7624% -Rate for instruction 13848: 17.7616% -Rate for instruction 13849: 17.7612% -Rate for instruction 13850: 17.7613% -Rate for instruction 13851: 17.7611% -Rate for instruction 13852: 17.7604% -Rate for instruction 13853: 17.7602% -Rate for instruction 13854: 17.76% -Rate for instruction 13855: 17.7601% -Rate for instruction 13856: 17.7605% -Rate for instruction 13857: 17.7612% -Rate for instruction 13858: 17.761% -Rate for instruction 13859: 17.7622% -Rate for instruction 13860: 17.7637% -Rate for instruction 13861: 17.7641% -Rate for instruction 13862: 17.7639% -Rate for instruction 13863: 17.7652% -Rate for instruction 13864: 17.7655% -Rate for instruction 13865: 17.7651% -Rate for instruction 13866: 17.7652% -Rate for instruction 13867: 17.765% -Rate for instruction 13868: 17.7651% -Rate for instruction 13869: 17.7641% -Rate for instruction 13870: 17.7634% -Rate for instruction 13871: 17.7624% -Rate for instruction 13872: 17.762% -Rate for instruction 13873: 17.7609% -Rate for instruction 13874: 17.7602% -Rate for instruction 13875: 17.7592% -Rate for instruction 13876: 17.7588% -Rate for instruction 13877: 17.7586% -Rate for instruction 13878: 17.7582% -Rate for instruction 13879: 17.7583% -Rate for instruction 13880: 17.7578% -Rate for instruction 13881: 17.7568% -Rate for instruction 13882: 17.7566% -Rate for instruction 13883: 17.7562% -Rate for instruction 13884: 17.7563% -Rate for instruction 13885: 17.7553% -Rate for instruction 13886: 17.7554% -Rate for instruction 13887: 17.7547% -Rate for instruction 13888: 17.7542% -Rate for instruction 13889: 17.7532% -Rate for instruction 13890: 17.7533% -Rate for instruction 13891: 17.7529% -Rate for instruction 13892: 17.7519% -Rate for instruction 13893: 17.7517% -Rate for instruction 13894: 17.7513% -Rate for instruction 13895: 17.7505% -Rate for instruction 13896: 17.7506% -Rate for instruction 13897: 17.751% -Rate for instruction 13898: 17.7514% -Rate for instruction 13899: 17.7507% -Rate for instruction 13900: 17.7505% -Rate for instruction 13901: 17.7498% -Rate for instruction 13902: 17.7488% -Rate for instruction 13903: 17.7492% -Rate for instruction 13904: 17.749% -Rate for instruction 13905: 17.7483% -Rate for instruction 13906: 17.7484% -Rate for instruction 13907: 17.7482% -Rate for instruction 13908: 17.7475% -Rate for instruction 13909: 17.7476% -Rate for instruction 13910: 17.7474% -Rate for instruction 13911: 17.7473% -Rate for instruction 13912: 17.7474% -Rate for instruction 13913: 17.7475% -Rate for instruction 13914: 17.7476% -Rate for instruction 13915: 17.7482% -Rate for instruction 13916: 17.7478% -Rate for instruction 13917: 17.7468% -Rate for instruction 13918: 17.7464% -Rate for instruction 13919: 17.7465% -Rate for instruction 13920: 17.746% -Rate for instruction 13921: 17.7453% -Rate for instruction 13922: 17.7448% -Rate for instruction 13923: 17.7444% -Rate for instruction 13924: 17.744% -Rate for instruction 13925: 17.7446% -Rate for instruction 13926: 17.745% -Rate for instruction 13927: 17.7457% -Rate for instruction 13928: 17.7452% -Rate for instruction 13929: 17.7456% -Rate for instruction 13930: 17.7454% -Rate for instruction 13931: 17.7453% -Rate for instruction 13932: 17.7451% -Rate for instruction 13933: 17.7446% -Rate for instruction 13934: 17.7439% -Rate for instruction 13935: 17.7432% -Rate for instruction 13936: 17.7433% -Rate for instruction 13937: 17.7426% -Rate for instruction 13938: 17.7427% -Rate for instruction 13939: 17.7417% -Rate for instruction 13940: 17.7413% -Rate for instruction 13941: 17.7422% -Rate for instruction 13942: 17.7412% -Rate for instruction 13943: 17.7427% -Rate for instruction 13944: 17.7417% -Rate for instruction 13945: 17.7432% -Rate for instruction 13946: 17.7449% -Rate for instruction 13947: 17.7459% -Rate for instruction 13948: 17.7449% -Rate for instruction 13949: 17.7461% -Rate for instruction 13950: 17.7476% -Rate for instruction 13951: 17.7474% -Rate for instruction 13952: 17.7464% -Rate for instruction 13953: 17.7482% -Rate for instruction 13954: 17.7483% -Rate for instruction 13955: 17.75% -Rate for instruction 13956: 17.7512% -Rate for instruction 13957: 17.7519% -Rate for instruction 13958: 17.7525% -Rate for instruction 13959: 17.7515% -Rate for instruction 13960: 17.753% -Rate for instruction 13961: 17.7542% -Rate for instruction 13962: 17.7554% -Rate for instruction 13963: 17.7569% -Rate for instruction 13964: 17.7565% -Rate for instruction 13965: 17.7558% -Rate for instruction 13966: 17.7548% -Rate for instruction 13967: 17.754% -Rate for instruction 13968: 17.7555% -Rate for instruction 13969: 17.7554% -Rate for instruction 13970: 17.7566% -Rate for instruction 13971: 17.758% -Rate for instruction 13972: 17.757% -Rate for instruction 13973: 17.7563% -Rate for instruction 13974: 17.7553% -Rate for instruction 13975: 17.7568% -Rate for instruction 13976: 17.758% -Rate for instruction 13977: 17.7592% -Rate for instruction 13978: 17.7585% -Rate for instruction 13979: 17.76% -Rate for instruction 13980: 17.7595% -Rate for instruction 13981: 17.761% -Rate for instruction 13982: 17.7631% -Rate for instruction 13983: 17.7645% -Rate for instruction 13984: 17.766% -Rate for instruction 13985: 17.7675% -Rate for instruction 13986: 17.7665% -Rate for instruction 13987: 17.7688% -Rate for instruction 13988: 17.7703% -Rate for instruction 13989: 17.7704% -Rate for instruction 13990: 17.7708% -Rate for instruction 13991: 17.7725% -Rate for instruction 13992: 17.7726% -Rate for instruction 13993: 17.7733% -Rate for instruction 13994: 17.7734% -Rate for instruction 13995: 17.7735% -Rate for instruction 13996: 17.7728% -Rate for instruction 13997: 17.7726% -Rate for instruction 13998: 17.7724% -Rate for instruction 13999: 17.7717% -Rate for instruction 14000: 17.7713% -Rate for instruction 14001: 17.7711% -Rate for instruction 14002: 17.7726% -Rate for instruction 14003: 17.7735% -Rate for instruction 14004: 17.7725% -Rate for instruction 14005: 17.7721% -Rate for instruction 14006: 17.7711% -Rate for instruction 14007: 17.7703% -Rate for instruction 14008: 17.7693% -Rate for instruction 14009: 17.7695% -Rate for instruction 14010: 17.7685% -Rate for instruction 14011: 17.7691% -Rate for instruction 14012: 17.7687% -Rate for instruction 14013: 17.7677% -Rate for instruction 14014: 17.7697% -Rate for instruction 14015: 17.7693% -Rate for instruction 14016: 17.7702% -Rate for instruction 14017: 17.7719% -Rate for instruction 14018: 17.7709% -Rate for instruction 14019: 17.7708% -Rate for instruction 14020: 17.7703% -Rate for instruction 14021: 17.7696% -Rate for instruction 14022: 17.7692% -Rate for instruction 14023: 17.7698% -Rate for instruction 14024: 17.771% -Rate for instruction 14025: 17.7714% -Rate for instruction 14026: 17.7726% -Rate for instruction 14027: 17.773% -Rate for instruction 14028: 17.7744% -Rate for instruction 14029: 17.7756% -Rate for instruction 14030: 17.7749% -Rate for instruction 14031: 17.7748% -Rate for instruction 14032: 17.7757% -Rate for instruction 14033: 17.7752% -Rate for instruction 14034: 17.7742% -Rate for instruction 14035: 17.776% -Rate for instruction 14036: 17.7772% -Rate for instruction 14037: 17.7778% -Rate for instruction 14038: 17.7782% -Rate for instruction 14039: 17.7778% -Rate for instruction 14040: 17.779% -Rate for instruction 14041: 17.778% -Rate for instruction 14042: 17.7773% -Rate for instruction 14043: 17.7776% -Rate for instruction 14044: 17.7772% -Rate for instruction 14045: 17.777% -Rate for instruction 14046: 17.7766% -Rate for instruction 14047: 17.7761% -Rate for instruction 14048: 17.7751% -Rate for instruction 14049: 17.7744% -Rate for instruction 14050: 17.7743% -Rate for instruction 14051: 17.7741% -Rate for instruction 14052: 17.7739% -Rate for instruction 14053: 17.7732% -Rate for instruction 14054: 17.7728% -Rate for instruction 14055: 17.7729% -Rate for instruction 14056: 17.7721% -Rate for instruction 14057: 17.7723% -Rate for instruction 14058: 17.7721% -Rate for instruction 14059: 17.7716% -Rate for instruction 14060: 17.7715% -Rate for instruction 14061: 17.7729% -Rate for instruction 14062: 17.7725% -Rate for instruction 14063: 17.7726% -Rate for instruction 14064: 17.7735% -Rate for instruction 14065: 17.775% -Rate for instruction 14066: 17.7748% -Rate for instruction 14067: 17.776% -Rate for instruction 14068: 17.7772% -Rate for instruction 14069: 17.7762% -Rate for instruction 14070: 17.7772% -Rate for instruction 14071: 17.7764% -Rate for instruction 14072: 17.7776% -Rate for instruction 14073: 17.7766% -Rate for instruction 14074: 17.7781% -Rate for instruction 14075: 17.7793% -Rate for instruction 14076: 17.7802% -Rate for instruction 14077: 17.7792% -Rate for instruction 14078: 17.7788% -Rate for instruction 14079: 17.78% -Rate for instruction 14080: 17.779% -Rate for instruction 14081: 17.7783% -Rate for instruction 14082: 17.7792% -Rate for instruction 14083: 17.7782% -Rate for instruction 14084: 17.7772% -Rate for instruction 14085: 17.7771% -Rate for instruction 14086: 17.7766% -Rate for instruction 14087: 17.7778% -Rate for instruction 14088: 17.7771% -Rate for instruction 14089: 17.7769% -Rate for instruction 14090: 17.7762% -Rate for instruction 14091: 17.7752% -Rate for instruction 14092: 17.7745% -Rate for instruction 14093: 17.7738% -Rate for instruction 14094: 17.7736% -Rate for instruction 14095: 17.7729% -Rate for instruction 14096: 17.7719% -Rate for instruction 14097: 17.7715% -Rate for instruction 14098: 17.7716% -Rate for instruction 14099: 17.7711% -Rate for instruction 14100: 17.7704% -Rate for instruction 14101: 17.7711% -Rate for instruction 14102: 17.7704% -Rate for instruction 14103: 17.7694% -Rate for instruction 14104: 17.7706% -Rate for instruction 14105: 17.7718% -Rate for instruction 14106: 17.7732% -Rate for instruction 14107: 17.7736% -Rate for instruction 14108: 17.7743% -Rate for instruction 14109: 17.7744% -Rate for instruction 14110: 17.7758% -Rate for instruction 14111: 17.7776% -Rate for instruction 14112: 17.7793% -Rate for instruction 14113: 17.7789% -Rate for instruction 14114: 17.7781% -Rate for instruction 14115: 17.7772% -Rate for instruction 14116: 17.7764% -Rate for instruction 14117: 17.7765% -Rate for instruction 14118: 17.7761% -Rate for instruction 14119: 17.7757% -Rate for instruction 14120: 17.7749% -Rate for instruction 14121: 17.7742% -Rate for instruction 14122: 17.7762% -Rate for instruction 14123: 17.778% -Rate for instruction 14124: 17.7792% -Rate for instruction 14125: 17.7782% -Rate for instruction 14126: 17.7794% -Rate for instruction 14127: 17.7811% -Rate for instruction 14128: 17.782% -Rate for instruction 14129: 17.7838% -Rate for instruction 14130: 17.7855% -Rate for instruction 14131: 17.7867% -Rate for instruction 14132: 17.7882% -Rate for instruction 14133: 17.7893% -Rate for instruction 14134: 17.7894% -Rate for instruction 14135: 17.789% -Rate for instruction 14136: 17.791% -Rate for instruction 14137: 17.7906% -Rate for instruction 14138: 17.7907% -Rate for instruction 14139: 17.7913% -Rate for instruction 14140: 17.7909% -Rate for instruction 14141: 17.7921% -Rate for instruction 14142: 17.7911% -Rate for instruction 14143: 17.7923% -Rate for instruction 14144: 17.7921% -Rate for instruction 14145: 17.7917% -Rate for instruction 14146: 17.7907% -Rate for instruction 14147: 17.7908% -Rate for instruction 14148: 17.7898% -Rate for instruction 14149: 17.7896% -Rate for instruction 14150: 17.7886% -Rate for instruction 14151: 17.7879% -Rate for instruction 14152: 17.7869% -Rate for instruction 14153: 17.7865% -Rate for instruction 14154: 17.7866% -Rate for instruction 14155: 17.7862% -Rate for instruction 14156: 17.7854% -Rate for instruction 14157: 17.7845% -Rate for instruction 14158: 17.7837% -Rate for instruction 14159: 17.783% -Rate for instruction 14160: 17.785% -Rate for instruction 14161: 17.7865% -Rate for instruction 14162: 17.7866% -Rate for instruction 14163: 17.7864% -Rate for instruction 14164: 17.7863% -Rate for instruction 14165: 17.7855% -Rate for instruction 14166: 17.7851% -Rate for instruction 14167: 17.7849% -Rate for instruction 14168: 17.7839% -Rate for instruction 14169: 17.7838% -Rate for instruction 14170: 17.7828% -Rate for instruction 14171: 17.7829% -Rate for instruction 14172: 17.7827% -Rate for instruction 14173: 17.7817% -Rate for instruction 14174: 17.7818% -Rate for instruction 14175: 17.7811% -Rate for instruction 14176: 17.7815% -Rate for instruction 14177: 17.7813% -Rate for instruction 14178: 17.7817% -Rate for instruction 14179: 17.781% -Rate for instruction 14180: 17.7811% -Rate for instruction 14181: 17.7809% -Rate for instruction 14182: 17.78% -Rate for instruction 14183: 17.7801% -Rate for instruction 14184: 17.7799% -Rate for instruction 14185: 17.78% -Rate for instruction 14186: 17.7812% -Rate for instruction 14187: 17.7818% -Rate for instruction 14188: 17.7808% -Rate for instruction 14189: 17.7807% -Rate for instruction 14190: 17.7808% -Rate for instruction 14191: 17.7811% -Rate for instruction 14192: 17.7802% -Rate for instruction 14193: 17.7792% -Rate for instruction 14194: 17.7804% -Rate for instruction 14195: 17.7821% -Rate for instruction 14196: 17.7814% -Rate for instruction 14197: 17.7804% -Rate for instruction 14198: 17.7794% -Rate for instruction 14199: 17.7787% -Rate for instruction 14200: 17.7783% -Rate for instruction 14201: 17.7778% -Rate for instruction 14202: 17.7771% -Rate for instruction 14203: 17.7778% -Rate for instruction 14204: 17.7779% -Rate for instruction 14205: 17.7774% -Rate for instruction 14206: 17.7773% -Rate for instruction 14207: 17.7763% -Rate for instruction 14208: 17.7753% -Rate for instruction 14209: 17.7743% -Rate for instruction 14210: 17.7742% -Rate for instruction 14211: 17.774% -Rate for instruction 14212: 17.7752% -Rate for instruction 14213: 17.7766% -Rate for instruction 14214: 17.7759% -Rate for instruction 14215: 17.7757% -Rate for instruction 14216: 17.7761% -Rate for instruction 14217: 17.7751% -Rate for instruction 14218: 17.7769% -Rate for instruction 14219: 17.7762% -Rate for instruction 14220: 17.7771% -Rate for instruction 14221: 17.7788% -Rate for instruction 14222: 17.7789% -Rate for instruction 14223: 17.7785% -Rate for instruction 14224: 17.7794% -Rate for instruction 14225: 17.7792% -Rate for instruction 14226: 17.7796% -Rate for instruction 14227: 17.7799% -Rate for instruction 14228: 17.779% -Rate for instruction 14229: 17.7783% -Rate for instruction 14230: 17.7792% -Rate for instruction 14231: 17.7795% -Rate for instruction 14232: 17.7807% -Rate for instruction 14233: 17.7811% -Rate for instruction 14234: 17.782% -Rate for instruction 14235: 17.7835% -Rate for instruction 14236: 17.7846% -Rate for instruction 14237: 17.7856% -Rate for instruction 14238: 17.7862% -Rate for instruction 14239: 17.7858% -Rate for instruction 14240: 17.7851% -Rate for instruction 14241: 17.7843% -Rate for instruction 14242: 17.7834% -Rate for instruction 14243: 17.7827% -Rate for instruction 14244: 17.783% -Rate for instruction 14245: 17.7834% -Rate for instruction 14246: 17.7835% -Rate for instruction 14247: 17.7839% -Rate for instruction 14248: 17.7859% -Rate for instruction 14249: 17.787% -Rate for instruction 14250: 17.788% -Rate for instruction 14251: 17.7875% -Rate for instruction 14252: 17.7887% -Rate for instruction 14253: 17.7899% -Rate for instruction 14254: 17.7905% -Rate for instruction 14255: 17.7922% -Rate for instruction 14256: 17.7921% -Rate for instruction 14257: 17.7919% -Rate for instruction 14258: 17.7915% -Rate for instruction 14259: 17.7908% -Rate for instruction 14260: 17.7898% -Rate for instruction 14261: 17.7891% -Rate for instruction 14262: 17.7894% -Rate for instruction 14263: 17.7887% -Rate for instruction 14264: 17.7878% -Rate for instruction 14265: 17.787% -Rate for instruction 14266: 17.7861% -Rate for instruction 14267: 17.7859% -Rate for instruction 14268: 17.7849% -Rate for instruction 14269: 17.7842% -Rate for instruction 14270: 17.784% -Rate for instruction 14271: 17.7836% -Rate for instruction 14272: 17.7829% -Rate for instruction 14273: 17.7825% -Rate for instruction 14274: 17.782% -Rate for instruction 14275: 17.7816% -Rate for instruction 14276: 17.7825% -Rate for instruction 14277: 17.7815% -Rate for instruction 14278: 17.7822% -Rate for instruction 14279: 17.782% -Rate for instruction 14280: 17.7813% -Rate for instruction 14281: 17.7814% -Rate for instruction 14282: 17.7815% -Rate for instruction 14283: 17.7821% -Rate for instruction 14284: 17.7822% -Rate for instruction 14285: 17.7815% -Rate for instruction 14286: 17.7808% -Rate for instruction 14287: 17.7812% -Rate for instruction 14288: 17.7808% -Rate for instruction 14289: 17.7809% -Rate for instruction 14290: 17.7802% -Rate for instruction 14291: 17.7805% -Rate for instruction 14292: 17.7817% -Rate for instruction 14293: 17.7815% -Rate for instruction 14294: 17.7808% -Rate for instruction 14295: 17.7809% -Rate for instruction 14296: 17.78% -Rate for instruction 14297: 17.7801% -Rate for instruction 14298: 17.7804% -Rate for instruction 14299: 17.7811% -Rate for instruction 14300: 17.7806% -Rate for instruction 14301: 17.7797% -Rate for instruction 14302: 17.7787% -Rate for instruction 14303: 17.7788% -Rate for instruction 14304: 17.7789% -Rate for instruction 14305: 17.7779% -Rate for instruction 14306: 17.7772% -Rate for instruction 14307: 17.777% -Rate for instruction 14308: 17.7766% -Rate for instruction 14309: 17.777% -Rate for instruction 14310: 17.7779% -Rate for instruction 14311: 17.7785% -Rate for instruction 14312: 17.7792% -Rate for instruction 14313: 17.7793% -Rate for instruction 14314: 17.7788% -Rate for instruction 14315: 17.7789% -Rate for instruction 14316: 17.7782% -Rate for instruction 14317: 17.7778% -Rate for instruction 14318: 17.7776% -Rate for instruction 14319: 17.778% -Rate for instruction 14320: 17.777% -Rate for instruction 14321: 17.7785% -Rate for instruction 14322: 17.7778% -Rate for instruction 14323: 17.7781% -Rate for instruction 14324: 17.7782% -Rate for instruction 14325: 17.7775% -Rate for instruction 14326: 17.7787% -Rate for instruction 14327: 17.7788% -Rate for instruction 14328: 17.7794% -Rate for instruction 14329: 17.779% -Rate for instruction 14330: 17.7788% -Rate for instruction 14331: 17.7805% -Rate for instruction 14332: 17.782% -Rate for instruction 14333: 17.7824% -Rate for instruction 14334: 17.7833% -Rate for instruction 14335: 17.7839% -Rate for instruction 14336: 17.7853% -Rate for instruction 14337: 17.7849% -Rate for instruction 14338: 17.7866% -Rate for instruction 14339: 17.7864% -Rate for instruction 14340: 17.7866% -Rate for instruction 14341: 17.7858% -Rate for instruction 14342: 17.7859% -Rate for instruction 14343: 17.785% -Rate for instruction 14344: 17.7859% -Rate for instruction 14345: 17.7857% -Rate for instruction 14346: 17.7853% -Rate for instruction 14347: 17.7846% -Rate for instruction 14348: 17.786% -Rate for instruction 14349: 17.7861% -Rate for instruction 14350: 17.7862% -Rate for instruction 14351: 17.7863% -Rate for instruction 14352: 17.7864% -Rate for instruction 14353: 17.7865% -Rate for instruction 14354: 17.7864% -Rate for instruction 14355: 17.7862% -Rate for instruction 14356: 17.7855% -Rate for instruction 14357: 17.7848% -Rate for instruction 14358: 17.7838% -Rate for instruction 14359: 17.7839% -Rate for instruction 14360: 17.7829% -Rate for instruction 14361: 17.7828% -Rate for instruction 14362: 17.7818% -Rate for instruction 14363: 17.7814% -Rate for instruction 14364: 17.7812% -Rate for instruction 14365: 17.7829% -Rate for instruction 14366: 17.7843% -Rate for instruction 14367: 17.7834% -Rate for instruction 14368: 17.7843% -Rate for instruction 14369: 17.7846% -Rate for instruction 14370: 17.7861% -Rate for instruction 14371: 17.7857% -Rate for instruction 14372: 17.7871% -Rate for instruction 14373: 17.7891% -Rate for instruction 14374: 17.7884% -Rate for instruction 14375: 17.7879% -Rate for instruction 14376: 17.787% -Rate for instruction 14377: 17.7863% -Rate for instruction 14378: 17.7858% -Rate for instruction 14379: 17.7851% -Rate for instruction 14380: 17.7852% -Rate for instruction 14381: 17.7853% -Rate for instruction 14382: 17.7852% -Rate for instruction 14383: 17.785% -Rate for instruction 14384: 17.7846% -Rate for instruction 14385: 17.7849% -Rate for instruction 14386: 17.785% -Rate for instruction 14387: 17.7854% -Rate for instruction 14388: 17.7844% -Rate for instruction 14389: 17.7861% -Rate for instruction 14390: 17.7854% -Rate for instruction 14391: 17.7869% -Rate for instruction 14392: 17.7888% -Rate for instruction 14393: 17.7908% -Rate for instruction 14394: 17.7912% -Rate for instruction 14395: 17.7907% -Rate for instruction 14396: 17.7898% -Rate for instruction 14397: 17.7909% -Rate for instruction 14398: 17.7924% -Rate for instruction 14399: 17.7943% -Rate for instruction 14400: 17.7944% -Rate for instruction 14401: 17.7956% -Rate for instruction 14402: 17.7946% -Rate for instruction 14403: 17.7953% -Rate for instruction 14404: 17.7946% -Rate for instruction 14405: 17.7941% -Rate for instruction 14406: 17.7934% -Rate for instruction 14407: 17.7951% -Rate for instruction 14408: 17.7955% -Rate for instruction 14409: 17.7945% -Rate for instruction 14410: 17.7941% -Rate for instruction 14411: 17.7931% -Rate for instruction 14412: 17.7924% -Rate for instruction 14413: 17.7915% -Rate for instruction 14414: 17.7934% -Rate for instruction 14415: 17.7941% -Rate for instruction 14416: 17.795% -Rate for instruction 14417: 17.794% -Rate for instruction 14418: 17.7936% -Rate for instruction 14419: 17.7926% -Rate for instruction 14420: 17.7932% -Rate for instruction 14421: 17.7941% -Rate for instruction 14422: 17.7948% -Rate for instruction 14423: 17.7943% -Rate for instruction 14424: 17.795% -Rate for instruction 14425: 17.7959% -Rate for instruction 14426: 17.796% -Rate for instruction 14427: 17.7955% -Rate for instruction 14428: 17.7954% -Rate for instruction 14429: 17.7957% -Rate for instruction 14430: 17.7958% -Rate for instruction 14431: 17.7954% -Rate for instruction 14432: 17.795% -Rate for instruction 14433: 17.7948% -Rate for instruction 14434: 17.7946% -Rate for instruction 14435: 17.7953% -Rate for instruction 14436: 17.7946% -Rate for instruction 14437: 17.7941% -Rate for instruction 14438: 17.7942% -Rate for instruction 14439: 17.7941% -Rate for instruction 14440: 17.7936% -Rate for instruction 14441: 17.7929% -Rate for instruction 14442: 17.792% -Rate for instruction 14443: 17.7913% -Rate for instruction 14444: 17.7906% -Rate for instruction 14445: 17.7896% -Rate for instruction 14446: 17.7889% -Rate for instruction 14447: 17.7901% -Rate for instruction 14448: 17.7894% -Rate for instruction 14449: 17.7903% -Rate for instruction 14450: 17.7904% -Rate for instruction 14451: 17.7899% -Rate for instruction 14452: 17.7916% -Rate for instruction 14453: 17.7925% -Rate for instruction 14454: 17.7921% -Rate for instruction 14455: 17.793% -Rate for instruction 14456: 17.792% -Rate for instruction 14457: 17.7927% -Rate for instruction 14458: 17.7928% -Rate for instruction 14459: 17.7939% -Rate for instruction 14460: 17.7937% -Rate for instruction 14461: 17.7944% -Rate for instruction 14462: 17.7955% -Rate for instruction 14463: 17.7951% -Rate for instruction 14464: 17.7947% -Rate for instruction 14465: 17.7942% -Rate for instruction 14466: 17.7935% -Rate for instruction 14467: 17.7926% -Rate for instruction 14468: 17.7924% -Rate for instruction 14469: 17.7915% -Rate for instruction 14470: 17.7908% -Rate for instruction 14471: 17.7898% -Rate for instruction 14472: 17.7894% -Rate for instruction 14473: 17.7887% -Rate for instruction 14474: 17.789% -Rate for instruction 14475: 17.7883% -Rate for instruction 14476: 17.79% -Rate for instruction 14477: 17.7907% -Rate for instruction 14478: 17.7908% -Rate for instruction 14479: 17.7919% -Rate for instruction 14480: 17.7933% -Rate for instruction 14481: 17.794% -Rate for instruction 14482: 17.7951% -Rate for instruction 14483: 17.7958% -Rate for instruction 14484: 17.7956% -Rate for instruction 14485: 17.7952% -Rate for instruction 14486: 17.795% -Rate for instruction 14487: 17.7967% -Rate for instruction 14488: 17.7963% -Rate for instruction 14489: 17.7977% -Rate for instruction 14490: 17.797% -Rate for instruction 14491: 17.7979% -Rate for instruction 14492: 17.7982% -Rate for instruction 14493: 17.7973% -Rate for instruction 14494: 17.7974% -Rate for instruction 14495: 17.7985% -Rate for instruction 14496: 17.7978% -Rate for instruction 14497: 17.7977% -Rate for instruction 14498: 17.797% -Rate for instruction 14499: 17.7973% -Rate for instruction 14500: 17.7969% -Rate for instruction 14501: 17.7973% -Rate for instruction 14502: 17.7963% -Rate for instruction 14503: 17.7969% -Rate for instruction 14504: 17.7965% -Rate for instruction 14505: 17.7971% -Rate for instruction 14506: 17.7964% -Rate for instruction 14507: 17.796% -Rate for instruction 14508: 17.7966% -Rate for instruction 14509: 17.7973% -Rate for instruction 14510: 17.7963% -Rate for instruction 14511: 17.7956% -Rate for instruction 14512: 17.797% -Rate for instruction 14513: 17.7985% -Rate for instruction 14514: 17.8004% -Rate for instruction 14515: 17.8016% -Rate for instruction 14516: 17.803% -Rate for instruction 14517: 17.8044% -Rate for instruction 14518: 17.8053% -Rate for instruction 14519: 17.8046% -Rate for instruction 14520: 17.8039% -Rate for instruction 14521: 17.8046% -Rate for instruction 14522: 17.8041% -Rate for instruction 14523: 17.8037% -Rate for instruction 14524: 17.8035% -Rate for instruction 14525: 17.8034% -Rate for instruction 14526: 17.8024% -Rate for instruction 14527: 17.8028% -Rate for instruction 14528: 17.8018% -Rate for instruction 14529: 17.8019% -Rate for instruction 14530: 17.802% -Rate for instruction 14531: 17.801% -Rate for instruction 14532: 17.8006% -Rate for instruction 14533: 17.7996% -Rate for instruction 14534: 17.7989% -Rate for instruction 14535: 17.7993% -Rate for instruction 14536: 17.7997% -Rate for instruction 14537: 17.799% -Rate for instruction 14538: 17.7985% -Rate for instruction 14539: 17.7976% -Rate for instruction 14540: 17.7972% -Rate for instruction 14541: 17.7962% -Rate for instruction 14542: 17.7955% -Rate for instruction 14543: 17.7948% -Rate for instruction 14544: 17.7938% -Rate for instruction 14545: 17.7934% -Rate for instruction 14546: 17.7935% -Rate for instruction 14547: 17.7939% -Rate for instruction 14548: 17.7935% -Rate for instruction 14549: 17.7936% -Rate for instruction 14550: 17.7939% -Rate for instruction 14551: 17.7945% -Rate for instruction 14552: 17.7957% -Rate for instruction 14553: 17.7961% -Rate for instruction 14554: 17.7954% -Rate for instruction 14555: 17.7955% -Rate for instruction 14556: 17.795% -Rate for instruction 14557: 17.7946% -Rate for instruction 14558: 17.7939% -Rate for instruction 14559: 17.7943% -Rate for instruction 14560: 17.7941% -Rate for instruction 14561: 17.7934% -Rate for instruction 14562: 17.7951% -Rate for instruction 14563: 17.7965% -Rate for instruction 14564: 17.7956% -Rate for instruction 14565: 17.7949% -Rate for instruction 14566: 17.7944% -Rate for instruction 14567: 17.7953% -Rate for instruction 14568: 17.7952% -Rate for instruction 14569: 17.7945% -Rate for instruction 14570: 17.7956% -Rate for instruction 14571: 17.7976% -Rate for instruction 14572: 17.7969% -Rate for instruction 14573: 17.797% -Rate for instruction 14574: 17.7965% -Rate for instruction 14575: 17.7964% -Rate for instruction 14576: 17.7965% -Rate for instruction 14577: 17.7971% -Rate for instruction 14578: 17.7964% -Rate for instruction 14579: 17.797% -Rate for instruction 14580: 17.7974% -Rate for instruction 14581: 17.7975% -Rate for instruction 14582: 17.7989% -Rate for instruction 14583: 17.7995% -Rate for instruction 14584: 17.7994% -Rate for instruction 14585: 17.7995% -Rate for instruction 14586: 17.7988% -Rate for instruction 14587: 17.7983% -Rate for instruction 14588: 17.7982% -Rate for instruction 14589: 17.7972% -Rate for instruction 14590: 17.7968% -Rate for instruction 14591: 17.7966% -Rate for instruction 14592: 17.7962% -Rate for instruction 14593: 17.7955% -Rate for instruction 14594: 17.7967% -Rate for instruction 14595: 17.7978% -Rate for instruction 14596: 17.7982% -Rate for instruction 14597: 17.7988% -Rate for instruction 14598: 17.7984% -Rate for instruction 14599: 17.7977% -Rate for instruction 14600: 17.7967% -Rate for instruction 14601: 17.796% -Rate for instruction 14602: 17.7956% -Rate for instruction 14603: 17.7957% -Rate for instruction 14604: 17.7947% -Rate for instruction 14605: 17.7946% -Rate for instruction 14606: 17.7942% -Rate for instruction 14607: 17.7953% -Rate for instruction 14608: 17.7949% -Rate for instruction 14609: 17.7945% -Rate for instruction 14610: 17.7945% -Rate for instruction 14611: 17.7939% -Rate for instruction 14612: 17.7945% -Rate for instruction 14613: 17.7935% -Rate for instruction 14614: 17.7944% -Rate for instruction 14615: 17.7948% -Rate for instruction 14616: 17.7941% -Rate for instruction 14617: 17.7942% -Rate for instruction 14618: 17.794% -Rate for instruction 14619: 17.7946% -Rate for instruction 14620: 17.7958% -Rate for instruction 14621: 17.7951% -Rate for instruction 14622: 17.7957% -Rate for instruction 14623: 17.7956% -Rate for instruction 14624: 17.7949% -Rate for instruction 14625: 17.7958% -Rate for instruction 14626: 17.7969% -Rate for instruction 14627: 17.7965% -Rate for instruction 14628: 17.7955% -Rate for instruction 14629: 17.7951% -Rate for instruction 14630: 17.7944% -Rate for instruction 14631: 17.794% -Rate for instruction 14632: 17.7938% -Rate for instruction 14633: 17.7934% -Rate for instruction 14634: 17.7932% -Rate for instruction 14635: 17.7933% -Rate for instruction 14636: 17.7929% -Rate for instruction 14637: 17.794% -Rate for instruction 14638: 17.7944% -Rate for instruction 14639: 17.7948% -Rate for instruction 14640: 17.7949% -Rate for instruction 14641: 17.7958% -Rate for instruction 14642: 17.7972% -Rate for instruction 14643: 17.7962% -Rate for instruction 14644: 17.7971% -Rate for instruction 14645: 17.7967% -Rate for instruction 14646: 17.7957% -Rate for instruction 14647: 17.7969% -Rate for instruction 14648: 17.7959% -Rate for instruction 14649: 17.7957% -Rate for instruction 14650: 17.7974% -Rate for instruction 14651: 17.7983% -Rate for instruction 14652: 17.7974% -Rate for instruction 14653: 17.7977% -Rate for instruction 14654: 17.7973% -Rate for instruction 14655: 17.7974% -Rate for instruction 14656: 17.7964% -Rate for instruction 14657: 17.796% -Rate for instruction 14658: 17.7958% -Rate for instruction 14659: 17.7954% -Rate for instruction 14660: 17.7947% -Rate for instruction 14661: 17.794% -Rate for instruction 14662: 17.7939% -Rate for instruction 14663: 17.7932% -Rate for instruction 14664: 17.7925% -Rate for instruction 14665: 17.7915% -Rate for instruction 14666: 17.7914% -Rate for instruction 14667: 17.7917% -Rate for instruction 14668: 17.7908% -Rate for instruction 14669: 17.7909% -Rate for instruction 14670: 17.7905% -Rate for instruction 14671: 17.7921% -Rate for instruction 14672: 17.7933% -Rate for instruction 14673: 17.7929% -Rate for instruction 14674: 17.7922% -Rate for instruction 14675: 17.792% -Rate for instruction 14676: 17.7918% -Rate for instruction 14677: 17.793% -Rate for instruction 14678: 17.7939% -Rate for instruction 14679: 17.7932% -Rate for instruction 14680: 17.7951% -Rate for instruction 14681: 17.7949% -Rate for instruction 14682: 17.7961% -Rate for instruction 14683: 17.7978% -Rate for instruction 14684: 17.7979% -Rate for instruction 14685: 17.7969% -Rate for instruction 14686: 17.7973% -Rate for instruction 14687: 17.7976% -Rate for instruction 14688: 17.798% -Rate for instruction 14689: 17.7978% -Rate for instruction 14690: 17.7982% -Rate for instruction 14691: 17.7978% -Rate for instruction 14692: 17.7976% -Rate for instruction 14693: 17.7966% -Rate for instruction 14694: 17.796% -Rate for instruction 14695: 17.795% -Rate for instruction 14696: 17.7946% -Rate for instruction 14697: 17.7936% -Rate for instruction 14698: 17.7929% -Rate for instruction 14699: 17.793% -Rate for instruction 14700: 17.7921% -Rate for instruction 14701: 17.7922% -Rate for instruction 14702: 17.7915% -Rate for instruction 14703: 17.7908% -Rate for instruction 14704: 17.7899% -Rate for instruction 14705: 17.79% -Rate for instruction 14706: 17.7903% -Rate for instruction 14707: 17.7902% -Rate for instruction 14708: 17.7897% -Rate for instruction 14709: 17.7888% -Rate for instruction 14710: 17.7884% -Rate for instruction 14711: 17.789% -Rate for instruction 14712: 17.7907% -Rate for instruction 14713: 17.7907% -Rate for instruction 14714: 17.7901% -Rate for instruction 14715: 17.7902% -Rate for instruction 14716: 17.79% -Rate for instruction 14717: 17.7893% -Rate for instruction 14718: 17.7886% -Rate for instruction 14719: 17.7879% -Rate for instruction 14720: 17.7883% -Rate for instruction 14721: 17.7876% -Rate for instruction 14722: 17.7872% -Rate for instruction 14723: 17.7868% -Rate for instruction 14724: 17.7866% -Rate for instruction 14725: 17.7864% -Rate for instruction 14726: 17.7863% -Rate for instruction 14727: 17.7856% -Rate for instruction 14728: 17.7854% -Rate for instruction 14729: 17.786% -Rate for instruction 14730: 17.7861% -Rate for instruction 14731: 17.7852% -Rate for instruction 14732: 17.7845% -Rate for instruction 14733: 17.7841% -Rate for instruction 14734: 17.7837% -Rate for instruction 14735: 17.783% -Rate for instruction 14736: 17.782% -Rate for instruction 14737: 17.7819% -Rate for instruction 14738: 17.7809% -Rate for instruction 14739: 17.7813% -Rate for instruction 14740: 17.7809% -Rate for instruction 14741: 17.781% -Rate for instruction 14742: 17.7813% -Rate for instruction 14743: 17.783% -Rate for instruction 14744: 17.782% -Rate for instruction 14745: 17.7827% -Rate for instruction 14746: 17.782% -Rate for instruction 14747: 17.7816% -Rate for instruction 14748: 17.7814% -Rate for instruction 14749: 17.7825% -Rate for instruction 14750: 17.7845% -Rate for instruction 14751: 17.7843% -Rate for instruction 14752: 17.7836% -Rate for instruction 14753: 17.7829% -Rate for instruction 14754: 17.7828% -Rate for instruction 14755: 17.7836% -Rate for instruction 14756: 17.7845% -Rate for instruction 14757: 17.7844% -Rate for instruction 14758: 17.7842% -Rate for instruction 14759: 17.7853% -Rate for instruction 14760: 17.7867% -Rate for instruction 14761: 17.7858% -Rate for instruction 14762: 17.7864% -Rate for instruction 14763: 17.7875% -Rate for instruction 14764: 17.7874% -Rate for instruction 14765: 17.787% -Rate for instruction 14766: 17.7863% -Rate for instruction 14767: 17.7853% -Rate for instruction 14768: 17.7844% -Rate for instruction 14769: 17.7834% -Rate for instruction 14770: 17.783% -Rate for instruction 14771: 17.7831% -Rate for instruction 14772: 17.7822% -Rate for instruction 14773: 17.7815% -Rate for instruction 14774: 17.7829% -Rate for instruction 14775: 17.7835% -Rate for instruction 14776: 17.7828% -Rate for instruction 14777: 17.7837% -Rate for instruction 14778: 17.783% -Rate for instruction 14779: 17.7839% -Rate for instruction 14780: 17.784% -Rate for instruction 14781: 17.7841% -Rate for instruction 14782: 17.7839% -Rate for instruction 14783: 17.7835% -Rate for instruction 14784: 17.7852% -Rate for instruction 14785: 17.7842% -Rate for instruction 14786: 17.7849% -Rate for instruction 14787: 17.7847% -Rate for instruction 14788: 17.7837% -Rate for instruction 14789: 17.7836% -Rate for instruction 14790: 17.7826% -Rate for instruction 14791: 17.7822% -Rate for instruction 14792: 17.7821% -Rate for instruction 14793: 17.7811% -Rate for instruction 14794: 17.7804% -Rate for instruction 14795: 17.7803% -Rate for instruction 14796: 17.7799% -Rate for instruction 14797: 17.7792% -Rate for instruction 14798: 17.779% -Rate for instruction 14799: 17.7794% -Rate for instruction 14800: 17.7797% -Rate for instruction 14801: 17.7806% -Rate for instruction 14802: 17.7825% -Rate for instruction 14803: 17.7824% -Rate for instruction 14804: 17.7838% -Rate for instruction 14805: 17.7846% -Rate for instruction 14806: 17.7852% -Rate for instruction 14807: 17.7866% -Rate for instruction 14808: 17.7873% -Rate for instruction 14809: 17.7871% -Rate for instruction 14810: 17.7882% -Rate for instruction 14811: 17.7889% -Rate for instruction 14812: 17.7892% -Rate for instruction 14813: 17.7885% -Rate for instruction 14814: 17.7891% -Rate for instruction 14815: 17.7882% -Rate for instruction 14816: 17.7873% -Rate for instruction 14817: 17.7868% -Rate for instruction 14818: 17.7859% -Rate for instruction 14819: 17.786% -Rate for instruction 14820: 17.7861% -Rate for instruction 14821: 17.7852% -Rate for instruction 14822: 17.7855% -Rate for instruction 14823: 17.7846% -Rate for instruction 14824: 17.7839% -Rate for instruction 14825: 17.7832% -Rate for instruction 14826: 17.7823% -Rate for instruction 14827: 17.7816% -Rate for instruction 14828: 17.7814% -Rate for instruction 14829: 17.782% -Rate for instruction 14830: 17.7832% -Rate for instruction 14831: 17.7833% -Rate for instruction 14832: 17.7842% -Rate for instruction 14833: 17.785% -Rate for instruction 14834: 17.7841% -Rate for instruction 14835: 17.7857% -Rate for instruction 14836: 17.7856% -Rate for instruction 14837: 17.7859% -Rate for instruction 14838: 17.7855% -Rate for instruction 14839: 17.7851% -Rate for instruction 14840: 17.7867% -Rate for instruction 14841: 17.7874% -Rate for instruction 14842: 17.788% -Rate for instruction 14843: 17.7889% -Rate for instruction 14844: 17.79% -Rate for instruction 14845: 17.7893% -Rate for instruction 14846: 17.7889% -Rate for instruction 14847: 17.7903% -Rate for instruction 14848: 17.7901% -Rate for instruction 14849: 17.7897% -Rate for instruction 14850: 17.789% -Rate for instruction 14851: 17.7883% -Rate for instruction 14852: 17.7879% -Rate for instruction 14853: 17.7875% -Rate for instruction 14854: 17.7876% -Rate for instruction 14855: 17.7872% -Rate for instruction 14856: 17.787% -Rate for instruction 14857: 17.7871% -Rate for instruction 14858: 17.7872% -Rate for instruction 14859: 17.7876% -Rate for instruction 14860: 17.7869% -Rate for instruction 14861: 17.7859% -Rate for instruction 14862: 17.7855% -Rate for instruction 14863: 17.7848% -Rate for instruction 14864: 17.7842% -Rate for instruction 14865: 17.784% -Rate for instruction 14866: 17.7838% -Rate for instruction 14867: 17.7857% -Rate for instruction 14868: 17.7864% -Rate for instruction 14869: 17.7854% -Rate for instruction 14870: 17.785% -Rate for instruction 14871: 17.7841% -Rate for instruction 14872: 17.7836% -Rate for instruction 14873: 17.784% -Rate for instruction 14874: 17.7838% -Rate for instruction 14875: 17.7829% -Rate for instruction 14876: 17.7827% -Rate for instruction 14877: 17.7823% -Rate for instruction 14878: 17.7816% -Rate for instruction 14879: 17.7812% -Rate for instruction 14880: 17.7808% -Rate for instruction 14881: 17.7799% -Rate for instruction 14882: 17.7797% -Rate for instruction 14883: 17.7793% -Rate for instruction 14884: 17.7786% -Rate for instruction 14885: 17.7792% -Rate for instruction 14886: 17.7785% -Rate for instruction 14887: 17.7789% -Rate for instruction 14888: 17.778% -Rate for instruction 14889: 17.7775% -Rate for instruction 14890: 17.7787% -Rate for instruction 14891: 17.7783% -Rate for instruction 14892: 17.7781% -Rate for instruction 14893: 17.7795% -Rate for instruction 14894: 17.7809% -Rate for instruction 14895: 17.7825% -Rate for instruction 14896: 17.7821% -Rate for instruction 14897: 17.7827% -Rate for instruction 14898: 17.7823% -Rate for instruction 14899: 17.7819% -Rate for instruction 14900: 17.7809% -Rate for instruction 14901: 17.7805% -Rate for instruction 14902: 17.7796% -Rate for instruction 14903: 17.7792% -Rate for instruction 14904: 17.7788% -Rate for instruction 14905: 17.7781% -Rate for instruction 14906: 17.7779% -Rate for instruction 14907: 17.778% -Rate for instruction 14908: 17.7776% -Rate for instruction 14909: 17.7785% -Rate for instruction 14910: 17.7788% -Rate for instruction 14911: 17.7779% -Rate for instruction 14912: 17.7788% -Rate for instruction 14913: 17.7778% -Rate for instruction 14914: 17.7777% -Rate for instruction 14915: 17.7772% -Rate for instruction 14916: 17.7781% -Rate for instruction 14917: 17.7795% -Rate for instruction 14918: 17.7796% -Rate for instruction 14919: 17.7789% -Rate for instruction 14920: 17.7793% -Rate for instruction 14921: 17.7799% -Rate for instruction 14922: 17.7808% -Rate for instruction 14923: 17.7811% -Rate for instruction 14924: 17.7817% -Rate for instruction 14925: 17.7821% -Rate for instruction 14926: 17.7827% -Rate for instruction 14927: 17.7833% -Rate for instruction 14928: 17.7844% -Rate for instruction 14929: 17.7838% -Rate for instruction 14930: 17.7841% -Rate for instruction 14931: 17.7845% -Rate for instruction 14932: 17.7841% -Rate for instruction 14933: 17.7834% -Rate for instruction 14934: 17.7824% -Rate for instruction 14935: 17.7818% -Rate for instruction 14936: 17.7826% -Rate for instruction 14937: 17.782% -Rate for instruction 14938: 17.781% -Rate for instruction 14939: 17.7804% -Rate for instruction 14940: 17.7797% -Rate for instruction 14941: 17.7787% -Rate for instruction 14942: 17.7799% -Rate for instruction 14943: 17.7789% -Rate for instruction 14944: 17.779% -Rate for instruction 14945: 17.7781% -Rate for instruction 14946: 17.7777% -Rate for instruction 14947: 17.777% -Rate for instruction 14948: 17.7761% -Rate for instruction 14949: 17.7759% -Rate for instruction 14950: 17.7765% -Rate for instruction 14951: 17.7766% -Rate for instruction 14952: 17.777% -Rate for instruction 14953: 17.7771% -Rate for instruction 14954: 17.7774% -Rate for instruction 14955: 17.7765% -Rate for instruction 14956: 17.7763% -Rate for instruction 14957: 17.7759% -Rate for instruction 14958: 17.7763% -Rate for instruction 14959: 17.7769% -Rate for instruction 14960: 17.7762% -Rate for instruction 14961: 17.7761% -Rate for instruction 14962: 17.7772% -Rate for instruction 14963: 17.7786% -Rate for instruction 14964: 17.7789% -Rate for instruction 14965: 17.7785% -Rate for instruction 14966: 17.7783% -Rate for instruction 14967: 17.7782% -Rate for instruction 14968: 17.7785% -Rate for instruction 14969: 17.7776% -Rate for instruction 14970: 17.7782% -Rate for instruction 14971: 17.7775% -Rate for instruction 14972: 17.7769% -Rate for instruction 14973: 17.7767% -Rate for instruction 14974: 17.7776% -Rate for instruction 14975: 17.7784% -Rate for instruction 14976: 17.7783% -Rate for instruction 14977: 17.7776% -Rate for instruction 14978: 17.7767% -Rate for instruction 14979: 17.7758% -Rate for instruction 14980: 17.7758% -Rate for instruction 14981: 17.7762% -Rate for instruction 14982: 17.7771% -Rate for instruction 14983: 17.7774% -Rate for instruction 14984: 17.777% -Rate for instruction 14985: 17.7776% -Rate for instruction 14986: 17.7767% -Rate for instruction 14987: 17.7773% -Rate for instruction 14988: 17.7779% -Rate for instruction 14989: 17.7772% -Rate for instruction 14990: 17.7763% -Rate for instruction 14991: 17.7772% -Rate for instruction 14992: 17.7775% -Rate for instruction 14993: 17.7776% -Rate for instruction 14994: 17.7777% -Rate for instruction 14995: 17.777% -Rate for instruction 14996: 17.7761% -Rate for instruction 14997: 17.776% -Rate for instruction 14998: 17.775% -Rate for instruction 14999: 17.7746% -Rate for instruction 15000: 17.7737% -Rate for instruction 15001: 17.7738% -Rate for instruction 15002: 17.7739% -Rate for instruction 15003: 17.7737% -Rate for instruction 15004: 17.7733% -Rate for instruction 15005: 17.7729% -Rate for instruction 15006: 17.772% -Rate for instruction 15007: 17.7715% -Rate for instruction 15008: 17.7709% -Rate for instruction 15009: 17.7712% -Rate for instruction 15010: 17.7706% -Rate for instruction 15011: 17.7712% -Rate for instruction 15012: 17.7713% -Rate for instruction 15013: 17.7708% -Rate for instruction 15014: 17.7704% -Rate for instruction 15015: 17.7705% -Rate for instruction 15016: 17.7704% -Rate for instruction 15017: 17.771% -Rate for instruction 15018: 17.7713% -Rate for instruction 15019: 17.7709% -Rate for instruction 15020: 17.771% -Rate for instruction 15021: 17.7716% -Rate for instruction 15022: 17.7722% -Rate for instruction 15023: 17.7718% -Rate for instruction 15024: 17.7709% -Rate for instruction 15025: 17.7705% -Rate for instruction 15026: 17.7703% -Rate for instruction 15027: 17.7707% -Rate for instruction 15028: 17.7697% -Rate for instruction 15029: 17.7693% -Rate for instruction 15030: 17.7717% -Rate for instruction 15031: 17.7716% -Rate for instruction 15032: 17.7724% -Rate for instruction 15033: 17.773% -Rate for instruction 15034: 17.7747% -Rate for instruction 15035: 17.7755% -Rate for instruction 15036: 17.7779% -Rate for instruction 15037: 17.777% -Rate for instruction 15038: 17.7786% -Rate for instruction 15039: 17.7798% -Rate for instruction 15040: 17.7806% -Rate for instruction 15041: 17.7817% -Rate for instruction 15042: 17.7811% -Rate for instruction 15043: 17.7802% -Rate for instruction 15044: 17.7795% -Rate for instruction 15045: 17.7786% -Rate for instruction 15046: 17.7781% -Rate for instruction 15047: 17.7775% -Rate for instruction 15048: 17.7768% -Rate for instruction 15049: 17.7759% -Rate for instruction 15050: 17.7762% -Rate for instruction 15051: 17.7766% -Rate for instruction 15052: 17.7764% -Rate for instruction 15053: 17.7758% -Rate for instruction 15054: 17.7758% -Rate for instruction 15055: 17.7749% -Rate for instruction 15056: 17.7758% -Rate for instruction 15057: 17.7749% -Rate for instruction 15058: 17.7752% -Rate for instruction 15059: 17.7756% -Rate for instruction 15060: 17.7757% -Rate for instruction 15061: 17.7752% -Rate for instruction 15062: 17.7759% -Rate for instruction 15063: 17.7754% -Rate for instruction 15064: 17.7745% -Rate for instruction 15065: 17.7741% -Rate for instruction 15066: 17.7732% -Rate for instruction 15067: 17.7743% -Rate for instruction 15068: 17.7746% -Rate for instruction 15069: 17.7758% -Rate for instruction 15070: 17.7756% -Rate for instruction 15071: 17.7762% -Rate for instruction 15072: 17.7761% -Rate for instruction 15073: 17.7759% -Rate for instruction 15074: 17.7755% -Rate for instruction 15075: 17.7753% -Rate for instruction 15076: 17.7747% -Rate for instruction 15077: 17.7737% -Rate for instruction 15078: 17.7733% -Rate for instruction 15079: 17.7734% -Rate for instruction 15080: 17.7725% -Rate for instruction 15081: 17.7721% -Rate for instruction 15082: 17.7714% -Rate for instruction 15083: 17.7713% -Rate for instruction 15084: 17.7708% -Rate for instruction 15085: 17.7704% -Rate for instruction 15086: 17.7695% -Rate for instruction 15087: 17.7693% -Rate for instruction 15088: 17.7697% -Rate for instruction 15089: 17.769% -Rate for instruction 15090: 17.7681% -Rate for instruction 15091: 17.7682% -Rate for instruction 15092: 17.7688% -Rate for instruction 15093: 17.7692% -Rate for instruction 15094: 17.7693% -Rate for instruction 15095: 17.7696% -Rate for instruction 15096: 17.7697% -Rate for instruction 15097: 17.7698% -Rate for instruction 15098: 17.7689% -Rate for instruction 15099: 17.7687% -Rate for instruction 15100: 17.7688% -Rate for instruction 15101: 17.7687% -Rate for instruction 15102: 17.7685% -Rate for instruction 15103: 17.7686% -Rate for instruction 15104: 17.7684% -Rate for instruction 15105: 17.7685% -Rate for instruction 15106: 17.7686% -Rate for instruction 15107: 17.769% -Rate for instruction 15108: 17.7693% -Rate for instruction 15109: 17.7697% -Rate for instruction 15110: 17.7695% -Rate for instruction 15111: 17.7696% -Rate for instruction 15112: 17.7687% -Rate for instruction 15113: 17.7685% -Rate for instruction 15114: 17.7681% -Rate for instruction 15115: 17.7682% -Rate for instruction 15116: 17.7673% -Rate for instruction 15117: 17.7666% -Rate for instruction 15118: 17.7662% -Rate for instruction 15119: 17.7656% -Rate for instruction 15120: 17.7646% -Rate for instruction 15121: 17.7645% -Rate for instruction 15122: 17.7638% -Rate for instruction 15123: 17.7629% -Rate for instruction 15124: 17.7635% -Rate for instruction 15125: 17.7626% -Rate for instruction 15126: 17.7619% -Rate for instruction 15127: 17.761% -Rate for instruction 15128: 17.7606% -Rate for instruction 15129: 17.7609% -Rate for instruction 15130: 17.761% -Rate for instruction 15131: 17.7611% -Rate for instruction 15132: 17.7615% -Rate for instruction 15133: 17.7613% -Rate for instruction 15134: 17.7609% -Rate for instruction 15135: 17.76% -Rate for instruction 15136: 17.7604% -Rate for instruction 15137: 17.7597% -Rate for instruction 15138: 17.7593% -Rate for instruction 15139: 17.7591% -Rate for instruction 15140: 17.7585% -Rate for instruction 15141: 17.7588% -Rate for instruction 15142: 17.7579% -Rate for instruction 15143: 17.7582% -Rate for instruction 15144: 17.7583% -Rate for instruction 15145: 17.7574% -Rate for instruction 15146: 17.7575% -Rate for instruction 15147: 17.7576% -Rate for instruction 15148: 17.7567% -Rate for instruction 15149: 17.7573% -Rate for instruction 15150: 17.7579% -Rate for instruction 15151: 17.7575% -Rate for instruction 15152: 17.7571% -Rate for instruction 15153: 17.7569% -Rate for instruction 15154: 17.7565% -Rate for instruction 15155: 17.7564% -Rate for instruction 15156: 17.7559% -Rate for instruction 15157: 17.7555% -Rate for instruction 15158: 17.7564% -Rate for instruction 15159: 17.7578% -Rate for instruction 15160: 17.7579% -Rate for instruction 15161: 17.76% -Rate for instruction 15162: 17.7598% -Rate for instruction 15163: 17.7599% -Rate for instruction 15164: 17.7593% -Rate for instruction 15165: 17.7594% -Rate for instruction 15166: 17.759% -Rate for instruction 15167: 17.7598% -Rate for instruction 15168: 17.7589% -Rate for instruction 15169: 17.76% -Rate for instruction 15170: 17.7593% -Rate for instruction 15171: 17.7599% -Rate for instruction 15172: 17.7593% -Rate for instruction 15173: 17.7584% -Rate for instruction 15174: 17.7597% -Rate for instruction 15175: 17.7608% -Rate for instruction 15176: 17.7619% -Rate for instruction 15177: 17.761% -Rate for instruction 15178: 17.7616% -Rate for instruction 15179: 17.763% -Rate for instruction 15180: 17.7649% -Rate for instruction 15181: 17.7645% -Rate for instruction 15182: 17.7651% -Rate for instruction 15183: 17.7662% -Rate for instruction 15184: 17.767% -Rate for instruction 15185: 17.7661% -Rate for instruction 15186: 17.7654% -Rate for instruction 15187: 17.7648% -Rate for instruction 15188: 17.7656% -Rate for instruction 15189: 17.7652% -Rate for instruction 15190: 17.7643% -Rate for instruction 15191: 17.7657% -Rate for instruction 15192: 17.7648% -Rate for instruction 15193: 17.7641% -Rate for instruction 15194: 17.7634% -Rate for instruction 15195: 17.763% -Rate for instruction 15196: 17.7631% -Rate for instruction 15197: 17.7645% -Rate for instruction 15198: 17.7638% -Rate for instruction 15199: 17.7632% -Rate for instruction 15200: 17.7622% -Rate for instruction 15201: 17.7634% -Rate for instruction 15202: 17.764% -Rate for instruction 15203: 17.763% -Rate for instruction 15204: 17.7634% -Rate for instruction 15205: 17.7625% -Rate for instruction 15206: 17.7628% -Rate for instruction 15207: 17.7622% -Rate for instruction 15208: 17.7618% -Rate for instruction 15209: 17.7616% -Rate for instruction 15210: 17.7619% -Rate for instruction 15211: 17.762% -Rate for instruction 15212: 17.7611% -Rate for instruction 15213: 17.7615% -Rate for instruction 15214: 17.7618% -Rate for instruction 15215: 17.7627% -Rate for instruction 15216: 17.7638% -Rate for instruction 15217: 17.7634% -Rate for instruction 15218: 17.7635% -Rate for instruction 15219: 17.7641% -Rate for instruction 15220: 17.7634% -Rate for instruction 15221: 17.7625% -Rate for instruction 15222: 17.7618% -Rate for instruction 15223: 17.7614% -Rate for instruction 15224: 17.7605% -Rate for instruction 15225: 17.7599% -Rate for instruction 15226: 17.7589% -Rate for instruction 15227: 17.76% -Rate for instruction 15228: 17.7596% -Rate for instruction 15229: 17.7587% -Rate for instruction 15230: 17.7583% -Rate for instruction 15231: 17.7579% -Rate for instruction 15232: 17.7585% -Rate for instruction 15233: 17.7589% -Rate for instruction 15234: 17.7585% -Rate for instruction 15235: 17.7583% -Rate for instruction 15236: 17.7579% -Rate for instruction 15237: 17.7572% -Rate for instruction 15238: 17.7571% -Rate for instruction 15239: 17.7569% -Rate for instruction 15240: 17.756% -Rate for instruction 15241: 17.7561% -Rate for instruction 15242: 17.7562% -Rate for instruction 15243: 17.7555% -Rate for instruction 15244: 17.7554% -Rate for instruction 15245: 17.7547% -Rate for instruction 15246: 17.7546% -Rate for instruction 15247: 17.7537% -Rate for instruction 15248: 17.7535% -Rate for instruction 15249: 17.7533% -Rate for instruction 15250: 17.7524% -Rate for instruction 15251: 17.7528% -Rate for instruction 15252: 17.7521% -Rate for instruction 15253: 17.7525% -Rate for instruction 15254: 17.7523% -Rate for instruction 15255: 17.7524% -Rate for instruction 15256: 17.7523% -Rate for instruction 15257: 17.7518% -Rate for instruction 15258: 17.7524% -Rate for instruction 15259: 17.7523% -Rate for instruction 15260: 17.7516% -Rate for instruction 15261: 17.7512% -Rate for instruction 15262: 17.7516% -Rate for instruction 15263: 17.7512% -Rate for instruction 15264: 17.7513% -Rate for instruction 15265: 17.7511% -Rate for instruction 15266: 17.7505% -Rate for instruction 15267: 17.7503% -Rate for instruction 15268: 17.7496% -Rate for instruction 15269: 17.7502% -Rate for instruction 15270: 17.7496% -Rate for instruction 15271: 17.7497% -Rate for instruction 15272: 17.7493% -Rate for instruction 15273: 17.7496% -Rate for instruction 15274: 17.7495% -Rate for instruction 15275: 17.7498% -Rate for instruction 15276: 17.7504% -Rate for instruction 15277: 17.751% -Rate for instruction 15278: 17.7509% -Rate for instruction 15279: 17.751% -Rate for instruction 15280: 17.7508% -Rate for instruction 15281: 17.7506% -Rate for instruction 15282: 17.75% -Rate for instruction 15283: 17.7501% -Rate for instruction 15284: 17.7502% -Rate for instruction 15285: 17.7498% -Rate for instruction 15286: 17.7499% -Rate for instruction 15287: 17.7497% -Rate for instruction 15288: 17.7493% -Rate for instruction 15289: 17.7502% -Rate for instruction 15290: 17.7493% -Rate for instruction 15291: 17.7486% -Rate for instruction 15292: 17.75% -Rate for instruction 15293: 17.749% -Rate for instruction 15294: 17.7484% -Rate for instruction 15295: 17.7495% -Rate for instruction 15296: 17.7503% -Rate for instruction 15297: 17.7519% -Rate for instruction 15298: 17.7523% -Rate for instruction 15299: 17.7534% -Rate for instruction 15300: 17.7537% -Rate for instruction 15301: 17.7543% -Rate for instruction 15302: 17.7542% -Rate for instruction 15303: 17.754% -Rate for instruction 15304: 17.7539% -Rate for instruction 15305: 17.7532% -Rate for instruction 15306: 17.7531% -Rate for instruction 15307: 17.7527% -Rate for instruction 15308: 17.7523% -Rate for instruction 15309: 17.7513% -Rate for instruction 15310: 17.7507% -Rate for instruction 15311: 17.75% -Rate for instruction 15312: 17.7494% -Rate for instruction 15313: 17.7492% -Rate for instruction 15314: 17.7491% -Rate for instruction 15315: 17.7487% -Rate for instruction 15316: 17.749% -Rate for instruction 15317: 17.7491% -Rate for instruction 15318: 17.7489% -Rate for instruction 15319: 17.7495% -Rate for instruction 15320: 17.7501% -Rate for instruction 15321: 17.751% -Rate for instruction 15322: 17.7506% -Rate for instruction 15323: 17.7502% -Rate for instruction 15324: 17.7503% -Rate for instruction 15325: 17.7504% -Rate for instruction 15326: 17.7507% -Rate for instruction 15327: 17.7526% -Rate for instruction 15328: 17.7539% -Rate for instruction 15329: 17.7545% -Rate for instruction 15330: 17.7546% -Rate for instruction 15331: 17.754% -Rate for instruction 15332: 17.7546% -Rate for instruction 15333: 17.7539% -Rate for instruction 15334: 17.7548% -Rate for instruction 15335: 17.7541% -Rate for instruction 15336: 17.7545% -Rate for instruction 15337: 17.7545% -Rate for instruction 15338: 17.7544% -Rate for instruction 15339: 17.7537% -Rate for instruction 15340: 17.7543% -Rate for instruction 15341: 17.7554% -Rate for instruction 15342: 17.7555% -Rate for instruction 15343: 17.7551% -Rate for instruction 15344: 17.7542% -Rate for instruction 15345: 17.7536% -Rate for instruction 15346: 17.7527% -Rate for instruction 15347: 17.7528% -Rate for instruction 15348: 17.7518% -Rate for instruction 15349: 17.7512% -Rate for instruction 15350: 17.7518% -Rate for instruction 15351: 17.7509% -Rate for instruction 15352: 17.7505% -Rate for instruction 15353: 17.7503% -Rate for instruction 15354: 17.7497% -Rate for instruction 15355: 17.7493% -Rate for instruction 15356: 17.7486% -Rate for instruction 15357: 17.748% -Rate for instruction 15358: 17.7475% -Rate for instruction 15359: 17.7481% -Rate for instruction 15360: 17.7485% -Rate for instruction 15361: 17.7483% -Rate for instruction 15362: 17.7474% -Rate for instruction 15363: 17.7478% -Rate for instruction 15364: 17.7469% -Rate for instruction 15365: 17.7475% -Rate for instruction 15366: 17.7483% -Rate for instruction 15367: 17.7484% -Rate for instruction 15368: 17.7478% -Rate for instruction 15369: 17.7486% -Rate for instruction 15370: 17.7482% -Rate for instruction 15371: 17.7481% -Rate for instruction 15372: 17.7474% -Rate for instruction 15373: 17.748% -Rate for instruction 15374: 17.7488% -Rate for instruction 15375: 17.7487% -Rate for instruction 15376: 17.7495% -Rate for instruction 15377: 17.7504% -Rate for instruction 15378: 17.7502% -Rate for instruction 15379: 17.7511% -Rate for instruction 15380: 17.7509% -Rate for instruction 15381: 17.7518% -Rate for instruction 15382: 17.7509% -Rate for instruction 15383: 17.7502% -Rate for instruction 15384: 17.7496% -Rate for instruction 15385: 17.7509% -Rate for instruction 15386: 17.7517% -Rate for instruction 15387: 17.7508% -Rate for instruction 15388: 17.7504% -Rate for instruction 15389: 17.7495% -Rate for instruction 15390: 17.7501% -Rate for instruction 15391: 17.7495% -Rate for instruction 15392: 17.7496% -Rate for instruction 15393: 17.7487% -Rate for instruction 15394: 17.749% -Rate for instruction 15395: 17.7484% -Rate for instruction 15396: 17.748% -Rate for instruction 15397: 17.7473% -Rate for instruction 15398: 17.7472% -Rate for instruction 15399: 17.747% -Rate for instruction 15400: 17.7471% -Rate for instruction 15401: 17.7472% -Rate for instruction 15402: 17.748% -Rate for instruction 15403: 17.7481% -Rate for instruction 15404: 17.7472% -Rate for instruction 15405: 17.7466% -Rate for instruction 15406: 17.7467% -Rate for instruction 15407: 17.7473% -Rate for instruction 15408: 17.7471% -Rate for instruction 15409: 17.7467% -Rate for instruction 15410: 17.7461% -Rate for instruction 15411: 17.7457% -Rate for instruction 15412: 17.745% -Rate for instruction 15413: 17.7456% -Rate for instruction 15414: 17.7455% -Rate for instruction 15415: 17.7448% -Rate for instruction 15416: 17.7454% -Rate for instruction 15417: 17.7462% -Rate for instruction 15418: 17.7456% -Rate for instruction 15419: 17.7449% -Rate for instruction 15420: 17.7455% -Rate for instruction 15421: 17.7459% -Rate for instruction 15422: 17.746% -Rate for instruction 15423: 17.7458% -Rate for instruction 15424: 17.7467% -Rate for instruction 15425: 17.7465% -Rate for instruction 15426: 17.7471% -Rate for instruction 15427: 17.7482% -Rate for instruction 15428: 17.7473% -Rate for instruction 15429: 17.7474% -Rate for instruction 15430: 17.7465% -Rate for instruction 15431: 17.7471% -Rate for instruction 15432: 17.7467% -Rate for instruction 15433: 17.7478% -Rate for instruction 15434: 17.7469% -Rate for instruction 15435: 17.7467% -Rate for instruction 15436: 17.7481% -Rate for instruction 15437: 17.7492% -Rate for instruction 15438: 17.7485% -Rate for instruction 15439: 17.7499% -Rate for instruction 15440: 17.7494% -Rate for instruction 15441: 17.7488% -Rate for instruction 15442: 17.7484% -Rate for instruction 15443: 17.7495% -Rate for instruction 15444: 17.7506% -Rate for instruction 15445: 17.7509% -Rate for instruction 15446: 17.7518% -Rate for instruction 15447: 17.7509% -Rate for instruction 15448: 17.7505% -Rate for instruction 15449: 17.7501% -Rate for instruction 15450: 17.7497% -Rate for instruction 15451: 17.75% -Rate for instruction 15452: 17.7506% -Rate for instruction 15453: 17.7502% -Rate for instruction 15454: 17.7498% -Rate for instruction 15455: 17.7494% -Rate for instruction 15456: 17.7492% -Rate for instruction 15457: 17.7488% -Rate for instruction 15458: 17.7489% -Rate for instruction 15459: 17.748% -Rate for instruction 15460: 17.7484% -Rate for instruction 15461: 17.749% -Rate for instruction 15462: 17.7496% -Rate for instruction 15463: 17.7509% -Rate for instruction 15464: 17.7525% -Rate for instruction 15465: 17.7541% -Rate for instruction 15466: 17.7539% -Rate for instruction 15467: 17.754% -Rate for instruction 15468: 17.7531% -Rate for instruction 15469: 17.7547% -Rate for instruction 15470: 17.7538% -Rate for instruction 15471: 17.7549% -Rate for instruction 15472: 17.7543% -Rate for instruction 15473: 17.7551% -Rate for instruction 15474: 17.7562% -Rate for instruction 15475: 17.7575% -Rate for instruction 15476: 17.7594% -Rate for instruction 15477: 17.7587% -Rate for instruction 15478: 17.7581% -Rate for instruction 15479: 17.7577% -Rate for instruction 15480: 17.758% -Rate for instruction 15481: 17.7578% -Rate for instruction 15482: 17.7589% -Rate for instruction 15483: 17.7595% -Rate for instruction 15484: 17.7586% -Rate for instruction 15485: 17.7607% -Rate for instruction 15486: 17.7601% -Rate for instruction 15487: 17.7616% -Rate for instruction 15488: 17.763% -Rate for instruction 15489: 17.7638% -Rate for instruction 15490: 17.7634% -Rate for instruction 15491: 17.763% -Rate for instruction 15492: 17.7629% -Rate for instruction 15493: 17.7627% -Rate for instruction 15494: 17.7633% -Rate for instruction 15495: 17.7629% -Rate for instruction 15496: 17.763% -Rate for instruction 15497: 17.7633% -Rate for instruction 15498: 17.7627% -Rate for instruction 15499: 17.7623% -Rate for instruction 15500: 17.7621% -Rate for instruction 15501: 17.7617% -Rate for instruction 15502: 17.7633% -Rate for instruction 15503: 17.7639% -Rate for instruction 15504: 17.7633% -Rate for instruction 15505: 17.7631% -Rate for instruction 15506: 17.7642% -Rate for instruction 15507: 17.7653% -Rate for instruction 15508: 17.7666% -Rate for instruction 15509: 17.7662% -Rate for instruction 15510: 17.767% -Rate for instruction 15511: 17.7679% -Rate for instruction 15512: 17.7687% -Rate for instruction 15513: 17.7681% -Rate for instruction 15514: 17.7677% -Rate for instruction 15515: 17.7668% -Rate for instruction 15516: 17.7664% -Rate for instruction 15517: 17.766% -Rate for instruction 15518: 17.7656% -Rate for instruction 15519: 17.7649% -Rate for instruction 15520: 17.7643% -Rate for instruction 15521: 17.7644% -Rate for instruction 15522: 17.7635% -Rate for instruction 15523: 17.7626% -Rate for instruction 15524: 17.7617% -Rate for instruction 15525: 17.7625% -Rate for instruction 15526: 17.7616% -Rate for instruction 15527: 17.7632% -Rate for instruction 15528: 17.7633% -Rate for instruction 15529: 17.7626% -Rate for instruction 15530: 17.764% -Rate for instruction 15531: 17.7651% -Rate for instruction 15532: 17.7664% -Rate for instruction 15533: 17.7675% -Rate for instruction 15534: 17.7666% -Rate for instruction 15535: 17.7672% -Rate for instruction 15536: 17.7675% -Rate for instruction 15537: 17.7666% -Rate for instruction 15538: 17.766% -Rate for instruction 15539: 17.7673% -Rate for instruction 15540: 17.7679% -Rate for instruction 15541: 17.768% -Rate for instruction 15542: 17.7676% -Rate for instruction 15543: 17.7682% -Rate for instruction 15544: 17.7678% -Rate for instruction 15545: 17.7676% -Rate for instruction 15546: 17.7667% -Rate for instruction 15547: 17.7663% -Rate for instruction 15548: 17.7664% -Rate for instruction 15549: 17.7668% -Rate for instruction 15550: 17.7671% -Rate for instruction 15551: 17.7662% -Rate for instruction 15552: 17.7653% -Rate for instruction 15553: 17.7647% -Rate for instruction 15554: 17.7638% -Rate for instruction 15555: 17.7631% -Rate for instruction 15556: 17.7622% -Rate for instruction 15557: 17.7628% -Rate for instruction 15558: 17.7634% -Rate for instruction 15559: 17.764% -Rate for instruction 15560: 17.7631% -Rate for instruction 15561: 17.7624% -Rate for instruction 15562: 17.7628% -Rate for instruction 15563: 17.7629% -Rate for instruction 15564: 17.7622% -Rate for instruction 15565: 17.7621% -Rate for instruction 15566: 17.7612% -Rate for instruction 15567: 17.7613% -Rate for instruction 15568: 17.7616% -Rate for instruction 15569: 17.7607% -Rate for instruction 15570: 17.7603% -Rate for instruction 15571: 17.7599% -Rate for instruction 15572: 17.7605% -Rate for instruction 15573: 17.7606% -Rate for instruction 15574: 17.7607% -Rate for instruction 15575: 17.7601% -Rate for instruction 15576: 17.7594% -Rate for instruction 15577: 17.76% -Rate for instruction 15578: 17.7606% -Rate for instruction 15579: 17.7614% -Rate for instruction 15580: 17.762% -Rate for instruction 15581: 17.7616% -Rate for instruction 15582: 17.7612% -Rate for instruction 15583: 17.7621% -Rate for instruction 15584: 17.7612% -Rate for instruction 15585: 17.7603% -Rate for instruction 15586: 17.7601% -Rate for instruction 15587: 17.7595% -Rate for instruction 15588: 17.7598% -Rate for instruction 15589: 17.7597% -Rate for instruction 15590: 17.7605% -Rate for instruction 15591: 17.7611% -Rate for instruction 15592: 17.7619% -Rate for instruction 15593: 17.7623% -Rate for instruction 15594: 17.7623% -Rate for instruction 15595: 17.7617% -Rate for instruction 15596: 17.7625% -Rate for instruction 15597: 17.7631% -Rate for instruction 15598: 17.763% -Rate for instruction 15599: 17.7638% -Rate for instruction 15600: 17.7632% -Rate for instruction 15601: 17.7625% -Rate for instruction 15602: 17.7631% -Rate for instruction 15603: 17.7632% -Rate for instruction 15604: 17.7626% -Rate for instruction 15605: 17.7624% -Rate for instruction 15606: 17.762% -Rate for instruction 15607: 17.7621% -Rate for instruction 15608: 17.7632% -Rate for instruction 15609: 17.7638% -Rate for instruction 15610: 17.7634% -Rate for instruction 15611: 17.763% -Rate for instruction 15612: 17.7631% -Rate for instruction 15613: 17.7641% -Rate for instruction 15614: 17.7637% -Rate for instruction 15615: 17.7641% -Rate for instruction 15616: 17.7632% -Rate for instruction 15617: 17.7638% -Rate for instruction 15618: 17.7634% -Rate for instruction 15619: 17.7635% -Rate for instruction 15620: 17.7636% -Rate for instruction 15621: 17.7641% -Rate for instruction 15622: 17.7638% -Rate for instruction 15623: 17.7634% -Rate for instruction 15624: 17.7639% -Rate for instruction 15625: 17.7643% -Rate for instruction 15626: 17.7639% -Rate for instruction 15627: 17.7637% -Rate for instruction 15628: 17.7633% -Rate for instruction 15629: 17.7639% -Rate for instruction 15630: 17.7645% -Rate for instruction 15631: 17.7639% -Rate for instruction 15632: 17.7644% -Rate for instruction 15633: 17.7636% -Rate for instruction 15634: 17.7646% -Rate for instruction 15635: 17.7657% -Rate for instruction 15636: 17.7658% -Rate for instruction 15637: 17.7666% -Rate for instruction 15638: 17.7657% -Rate for instruction 15639: 17.7668% -Rate for instruction 15640: 17.7669% -Rate for instruction 15641: 17.7663% -Rate for instruction 15642: 17.7664% -Rate for instruction 15643: 17.7655% -Rate for instruction 15644: 17.7661% -Rate for instruction 15645: 17.7671% -Rate for instruction 15646: 17.7662% -Rate for instruction 15647: 17.7668% -Rate for instruction 15648: 17.7664% -Rate for instruction 15649: 17.766% -Rate for instruction 15650: 17.7651% -Rate for instruction 15651: 17.7652% -Rate for instruction 15652: 17.7648% -Rate for instruction 15653: 17.7642% -Rate for instruction 15654: 17.764% -Rate for instruction 15655: 17.7639% -Rate for instruction 15656: 17.764% -Rate for instruction 15657: 17.7633% -Rate for instruction 15658: 17.7625% -Rate for instruction 15659: 17.7626% -Rate for instruction 15660: 17.7617% -Rate for instruction 15661: 17.7613% -Rate for instruction 15662: 17.7604% -Rate for instruction 15663: 17.76% -Rate for instruction 15664: 17.7593% -Rate for instruction 15665: 17.7584% -Rate for instruction 15666: 17.7593% -Rate for instruction 15667: 17.7596% -Rate for instruction 15668: 17.7604% -Rate for instruction 15669: 17.7596% -Rate for instruction 15670: 17.7601% -Rate for instruction 15671: 17.7605% -Rate for instruction 15672: 17.7596% -Rate for instruction 15673: 17.7592% -Rate for instruction 15674: 17.7588% -Rate for instruction 15675: 17.7579% -Rate for instruction 15676: 17.7575% -Rate for instruction 15677: 17.7566% -Rate for instruction 15678: 17.757% -Rate for instruction 15679: 17.7563% -Rate for instruction 15680: 17.7559% -Rate for instruction 15681: 17.756% -Rate for instruction 15682: 17.7556% -Rate for instruction 15683: 17.7557% -Rate for instruction 15684: 17.7553% -Rate for instruction 15685: 17.7547% -Rate for instruction 15686: 17.7545% -Rate for instruction 15687: 17.7541% -Rate for instruction 15688: 17.7537% -Rate for instruction 15689: 17.7538% -Rate for instruction 15690: 17.7532% -Rate for instruction 15691: 17.7533% -Rate for instruction 15692: 17.7526% -Rate for instruction 15693: 17.7532% -Rate for instruction 15694: 17.7536% -Rate for instruction 15695: 17.7527% -Rate for instruction 15696: 17.7525% -Rate for instruction 15697: 17.7519% -Rate for instruction 15698: 17.7515% -Rate for instruction 15699: 17.7521% -Rate for instruction 15700: 17.7519% -Rate for instruction 15701: 17.751% -Rate for instruction 15702: 17.7509% -Rate for instruction 15703: 17.7503% -Rate for instruction 15704: 17.7506% -Rate for instruction 15705: 17.7497% -Rate for instruction 15706: 17.7491% -Rate for instruction 15707: 17.7487% -Rate for instruction 15708: 17.748% -Rate for instruction 15709: 17.7474% -Rate for instruction 15710: 17.7468% -Rate for instruction 15711: 17.7461% -Rate for instruction 15712: 17.7457% -Rate for instruction 15713: 17.7461% -Rate for instruction 15714: 17.7459% -Rate for instruction 15715: 17.7458% -Rate for instruction 15716: 17.7451% -Rate for instruction 15717: 17.7455% -Rate for instruction 15718: 17.7451% -Rate for instruction 15719: 17.7449% -Rate for instruction 15720: 17.7457% -Rate for instruction 15721: 17.7468% -Rate for instruction 15722: 17.7467% -Rate for instruction 15723: 17.7465% -Rate for instruction 15724: 17.7459% -Rate for instruction 15725: 17.7455% -Rate for instruction 15726: 17.7458% -Rate for instruction 15727: 17.7457% -Rate for instruction 15728: 17.7458% -Rate for instruction 15729: 17.7463% -Rate for instruction 15730: 17.7472% -Rate for instruction 15731: 17.7485% -Rate for instruction 15732: 17.7486% -Rate for instruction 15733: 17.7497% -Rate for instruction 15734: 17.7493% -Rate for instruction 15735: 17.7496% -Rate for instruction 15736: 17.7492% -Rate for instruction 15737: 17.7495% -Rate for instruction 15738: 17.7491% -Rate for instruction 15739: 17.7505% -Rate for instruction 15740: 17.7503% -Rate for instruction 15741: 17.7494% -Rate for instruction 15742: 17.7485% -Rate for instruction 15743: 17.7477% -Rate for instruction 15744: 17.747% -Rate for instruction 15745: 17.7466% -Rate for instruction 15746: 17.7457% -Rate for instruction 15747: 17.7458% -Rate for instruction 15748: 17.7457% -Rate for instruction 15749: 17.7463% -Rate for instruction 15750: 17.7473% -Rate for instruction 15751: 17.7482% -Rate for instruction 15752: 17.7478% -Rate for instruction 15753: 17.7479% -Rate for instruction 15754: 17.7492% -Rate for instruction 15755: 17.75% -Rate for instruction 15756: 17.7506% -Rate for instruction 15757: 17.7519% -Rate for instruction 15758: 17.751% -Rate for instruction 15759: 17.7506% -Rate for instruction 15760: 17.7502% -Rate for instruction 15761: 17.7501% -Rate for instruction 15762: 17.7492% -Rate for instruction 15763: 17.7488% -Rate for instruction 15764: 17.7479% -Rate for instruction 15765: 17.7473% -Rate for instruction 15766: 17.7481% -Rate for instruction 15767: 17.7487% -Rate for instruction 15768: 17.7483% -Rate for instruction 15769: 17.7491% -Rate for instruction 15770: 17.7509% -Rate for instruction 15771: 17.7527% -Rate for instruction 15772: 17.7538% -Rate for instruction 15773: 17.7539% -Rate for instruction 15774: 17.7557% -Rate for instruction 15775: 17.7548% -Rate for instruction 15776: 17.7547% -Rate for instruction 15777: 17.7545% -Rate for instruction 15778: 17.7541% -Rate for instruction 15779: 17.7535% -Rate for instruction 15780: 17.7548% -Rate for instruction 15781: 17.7551% -Rate for instruction 15782: 17.7543% -Rate for instruction 15783: 17.7536% -Rate for instruction 15784: 17.7527% -Rate for instruction 15785: 17.7528% -Rate for instruction 15786: 17.7519% -Rate for instruction 15787: 17.7513% -Rate for instruction 15788: 17.7504% -Rate for instruction 15789: 17.7513% -Rate for instruction 15790: 17.7511% -Rate for instruction 15791: 17.7505% -Rate for instruction 15792: 17.7498% -Rate for instruction 15793: 17.7494% -Rate for instruction 15794: 17.7503% -Rate for instruction 15795: 17.7506% -Rate for instruction 15796: 17.7502% -Rate for instruction 15797: 17.7513% -Rate for instruction 15798: 17.7521% -Rate for instruction 15799: 17.7524% -Rate for instruction 15800: 17.7518% -Rate for instruction 15801: 17.7524% -Rate for instruction 15802: 17.7517% -Rate for instruction 15803: 17.7526% -Rate for instruction 15804: 17.7519% -Rate for instruction 15805: 17.7513% -Rate for instruction 15806: 17.7521% -Rate for instruction 15807: 17.752% -Rate for instruction 15808: 17.7511% -Rate for instruction 15809: 17.7509% -Rate for instruction 15810: 17.7515% -Rate for instruction 15811: 17.7506% -Rate for instruction 15812: 17.751% -Rate for instruction 15813: 17.7511% -Rate for instruction 15814: 17.7512% -Rate for instruction 15815: 17.7508% -Rate for instruction 15816: 17.7501% -Rate for instruction 15817: 17.7495% -Rate for instruction 15818: 17.7496% -Rate for instruction 15819: 17.7492% -Rate for instruction 15820: 17.7493% -Rate for instruction 15821: 17.7504% -Rate for instruction 15822: 17.7517% -Rate for instruction 15823: 17.7513% -Rate for instruction 15824: 17.7506% -Rate for instruction 15825: 17.75% -Rate for instruction 15826: 17.7506% -Rate for instruction 15827: 17.7514% -Rate for instruction 15828: 17.7517% -Rate for instruction 15829: 17.7513% -Rate for instruction 15830: 17.7512% -Rate for instruction 15831: 17.7508% -Rate for instruction 15832: 17.7516% -Rate for instruction 15833: 17.7512% -Rate for instruction 15834: 17.7506% -Rate for instruction 15835: 17.7502% -Rate for instruction 15836: 17.7496% -Rate for instruction 15837: 17.7489% -Rate for instruction 15838: 17.7481% -Rate for instruction 15839: 17.7474% -Rate for instruction 15840: 17.747% -Rate for instruction 15841: 17.7464% -Rate for instruction 15842: 17.7455% -Rate for instruction 15843: 17.7468% -Rate for instruction 15844: 17.7481% -Rate for instruction 15845: 17.7475% -Rate for instruction 15846: 17.7471% -Rate for instruction 15847: 17.7472% -Rate for instruction 15848: 17.7466% -Rate for instruction 15849: 17.7457% -Rate for instruction 15850: 17.7463% -Rate for instruction 15851: 17.7464% -Rate for instruction 15852: 17.7469% -Rate for instruction 15853: 17.7461% -Rate for instruction 15854: 17.7454% -Rate for instruction 15855: 17.747% -Rate for instruction 15856: 17.7463% -Rate for instruction 15857: 17.7472% -Rate for instruction 15858: 17.7465% -Rate for instruction 15859: 17.7471% -Rate for instruction 15860: 17.7484% -Rate for instruction 15861: 17.7495% -Rate for instruction 15862: 17.7501% -Rate for instruction 15863: 17.7509% -Rate for instruction 15864: 17.7522% -Rate for instruction 15865: 17.7513% -Rate for instruction 15866: 17.7529% -Rate for instruction 15867: 17.7542% -Rate for instruction 15868: 17.7547% -Rate for instruction 15869: 17.7539% -Rate for instruction 15870: 17.7535% -Rate for instruction 15871: 17.7545% -Rate for instruction 15872: 17.7537% -Rate for instruction 15873: 17.7542% -Rate for instruction 15874: 17.7555% -Rate for instruction 15875: 17.7559% -Rate for instruction 15876: 17.7562% -Rate for instruction 15877: 17.7558% -Rate for instruction 15878: 17.7564% -Rate for instruction 15879: 17.7577% -Rate for instruction 15880: 17.7573% -Rate for instruction 15881: 17.7564% -Rate for instruction 15882: 17.7558% -Rate for instruction 15883: 17.7571% -Rate for instruction 15884: 17.7582% -Rate for instruction 15885: 17.7575% -Rate for instruction 15886: 17.7584% -Rate for instruction 15887: 17.7584% -Rate for instruction 15888: 17.7595% -Rate for instruction 15889: 17.7608% -Rate for instruction 15890: 17.7624% -Rate for instruction 15891: 17.7617% -Rate for instruction 15892: 17.7608% -Rate for instruction 15893: 17.7602% -Rate for instruction 15894: 17.7596% -Rate for instruction 15895: 17.7609% -Rate for instruction 15896: 17.7612% -Rate for instruction 15897: 17.7606% -Rate for instruction 15898: 17.7604% -Rate for instruction 15899: 17.7617% -Rate for instruction 15900: 17.7613% -Rate for instruction 15901: 17.7609% -Rate for instruction 15902: 17.7603% -Rate for instruction 15903: 17.7614% -Rate for instruction 15904: 17.761% -Rate for instruction 15905: 17.7618% -Rate for instruction 15906: 17.7609% -Rate for instruction 15907: 17.7613% -Rate for instruction 15908: 17.7621% -Rate for instruction 15909: 17.7634% -Rate for instruction 15910: 17.7649% -Rate for instruction 15911: 17.7653% -Rate for instruction 15912: 17.7649% -Rate for instruction 15913: 17.765% -Rate for instruction 15914: 17.7648% -Rate for instruction 15915: 17.7639% -Rate for instruction 15916: 17.7633% -Rate for instruction 15917: 17.7624% -Rate for instruction 15918: 17.762% -Rate for instruction 15919: 17.7612% -Rate for instruction 15920: 17.7605% -Rate for instruction 15921: 17.7604% -Rate for instruction 15922: 17.7605% -Rate for instruction 15923: 17.7608% -Rate for instruction 15924: 17.7614% -Rate for instruction 15925: 17.7607% -Rate for instruction 15926: 17.7604% -Rate for instruction 15927: 17.7607% -Rate for instruction 15928: 17.7605% -Rate for instruction 15929: 17.7602% -Rate for instruction 15930: 17.7602% -Rate for instruction 15931: 17.7599% -Rate for instruction 15932: 17.7597% -Rate for instruction 15933: 17.7598% -Rate for instruction 15934: 17.7599% -Rate for instruction 15935: 17.76% -Rate for instruction 15936: 17.7598% -Rate for instruction 15937: 17.7594% -Rate for instruction 15938: 17.7595% -Rate for instruction 15939: 17.7587% -Rate for instruction 15940: 17.7585% -Rate for instruction 15941: 17.7591% -Rate for instruction 15942: 17.7585% -Rate for instruction 15943: 17.7583% -Rate for instruction 15944: 17.7586% -Rate for instruction 15945: 17.7592% -Rate for instruction 15946: 17.7603% -Rate for instruction 15947: 17.7618% -Rate for instruction 15948: 17.7634% -Rate for instruction 15949: 17.763% -Rate for instruction 15950: 17.7631% -Rate for instruction 15951: 17.7641% -Rate for instruction 15952: 17.7632% -Rate for instruction 15953: 17.7645% -Rate for instruction 15954: 17.7637% -Rate for instruction 15955: 17.7645% -Rate for instruction 15956: 17.7651% -Rate for instruction 15957: 17.7661% -Rate for instruction 15958: 17.7676% -Rate for instruction 15959: 17.767% -Rate for instruction 15960: 17.7666% -Rate for instruction 15961: 17.766% -Rate for instruction 15962: 17.7651% -Rate for instruction 15963: 17.7642% -Rate for instruction 15964: 17.7634% -Rate for instruction 15965: 17.7627% -Rate for instruction 15966: 17.7636% -Rate for instruction 15967: 17.7627% -Rate for instruction 15968: 17.764% -Rate for instruction 15969: 17.7658% -Rate for instruction 15970: 17.7661% -Rate for instruction 15971: 17.7664% -Rate for instruction 15972: 17.766% -Rate for instruction 15973: 17.7652% -Rate for instruction 15974: 17.7643% -Rate for instruction 15975: 17.7656% -Rate for instruction 15976: 17.7652% -Rate for instruction 15977: 17.7643% -Rate for instruction 15978: 17.7651% -Rate for instruction 15979: 17.766% -Rate for instruction 15980: 17.7665% -Rate for instruction 15981: 17.7669% -Rate for instruction 15982: 17.7662% -Rate for instruction 15983: 17.768% -Rate for instruction 15984: 17.7691% -Rate for instruction 15985: 17.7684% -Rate for instruction 15986: 17.7692% -Rate for instruction 15987: 17.7686% -Rate for instruction 15988: 17.7682% -Rate for instruction 15989: 17.7676% -Rate for instruction 15990: 17.7679% -Rate for instruction 15991: 17.7671% -Rate for instruction 15992: 17.7669% -Rate for instruction 15993: 17.7675% -Rate for instruction 15994: 17.769% -Rate for instruction 15995: 17.7698% -Rate for instruction 15996: 17.7711% -Rate for instruction 15997: 17.7715% -Rate for instruction 15998: 17.7711% -Rate for instruction 15999: 17.7707% -Rate for instruction 16000: 17.77% -Rate for instruction 16001: 17.7699% -Rate for instruction 16002: 17.7693% -Rate for instruction 16003: 17.7689% -Rate for instruction 16004: 17.7687% -Rate for instruction 16005: 17.7691% -Rate for instruction 16006: 17.7694% -Rate for instruction 16007: 17.7695% -Rate for instruction 16008: 17.7691% -Rate for instruction 16009: 17.7692% -Rate for instruction 16010: 17.7698% -Rate for instruction 16011: 17.7691% -Rate for instruction 16012: 17.7683% -Rate for instruction 16013: 17.7679% -Rate for instruction 16014: 17.7672% -Rate for instruction 16015: 17.7668% -Rate for instruction 16016: 17.7662% -Rate for instruction 16017: 17.7661% -Rate for instruction 16018: 17.7652% -Rate for instruction 16019: 17.7665% -Rate for instruction 16020: 17.7675% -Rate for instruction 16021: 17.7679% -Rate for instruction 16022: 17.767% -Rate for instruction 16023: 17.7666% -Rate for instruction 16024: 17.7658% -Rate for instruction 16025: 17.7661% -Rate for instruction 16026: 17.7662% -Rate for instruction 16027: 17.7653% -Rate for instruction 16028: 17.7671% -Rate for instruction 16029: 17.7664% -Rate for instruction 16030: 17.7673% -Rate for instruction 16031: 17.7688% -Rate for instruction 16032: 17.7684% -Rate for instruction 16033: 17.7692% -Rate for instruction 16034: 17.7705% -Rate for instruction 16035: 17.7713% -Rate for instruction 16036: 17.7728% -Rate for instruction 16037: 17.772% -Rate for instruction 16038: 17.7737% -Rate for instruction 16039: 17.7748% -Rate for instruction 16040: 17.7742% -Rate for instruction 16041: 17.7755% -Rate for instruction 16042: 17.7746% -Rate for instruction 16043: 17.7759% -Rate for instruction 16044: 17.7755% -Rate for instruction 16045: 17.7768% -Rate for instruction 16046: 17.7764% -Rate for instruction 16047: 17.7762% -Rate for instruction 16048: 17.7778% -Rate for instruction 16049: 17.7791% -Rate for instruction 16050: 17.7808% -Rate for instruction 16051: 17.7804% -Rate for instruction 16052: 17.7812% -Rate for instruction 16053: 17.783% -Rate for instruction 16054: 17.7841% -Rate for instruction 16055: 17.7832% -Rate for instruction 16056: 17.7828% -Rate for instruction 16057: 17.7839% -Rate for instruction 16058: 17.7851% -Rate for instruction 16059: 17.7852% -Rate for instruction 16060: 17.786% -Rate for instruction 16061: 17.7856% -Rate for instruction 16062: 17.786% -Rate for instruction 16063: 17.787% -Rate for instruction 16064: 17.7876% -Rate for instruction 16065: 17.7886% -Rate for instruction 16066: 17.7894% -Rate for instruction 16067: 17.7888% -Rate for instruction 16068: 17.7896% -Rate for instruction 16069: 17.79% -Rate for instruction 16070: 17.7893% -Rate for instruction 16071: 17.7894% -Rate for instruction 16072: 17.7888% -Rate for instruction 16073: 17.7886% -Rate for instruction 16074: 17.788% -Rate for instruction 16075: 17.7881% -Rate for instruction 16076: 17.7894% -Rate for instruction 16077: 17.7907% -Rate for instruction 16078: 17.7905% -Rate for instruction 16079: 17.7916% -Rate for instruction 16080: 17.7907% -Rate for instruction 16081: 17.7913% -Rate for instruction 16082: 17.7921% -Rate for instruction 16083: 17.7919% -Rate for instruction 16084: 17.793% -Rate for instruction 16085: 17.7938% -Rate for instruction 16086: 17.7934% -Rate for instruction 16087: 17.7928% -Rate for instruction 16088: 17.7933% -Rate for instruction 16089: 17.7927% -Rate for instruction 16090: 17.793% -Rate for instruction 16091: 17.7936% -Rate for instruction 16092: 17.7939% -Rate for instruction 16093: 17.7945% -Rate for instruction 16094: 17.7951% -Rate for instruction 16095: 17.7954% -Rate for instruction 16096: 17.7948% -Rate for instruction 16097: 17.7953% -Rate for instruction 16098: 17.7964% -Rate for instruction 16099: 17.7957% -Rate for instruction 16100: 17.7954% -Rate for instruction 16101: 17.7945% -Rate for instruction 16102: 17.7953% -Rate for instruction 16103: 17.7949% -Rate for instruction 16104: 17.7945% -Rate for instruction 16105: 17.7951% -Rate for instruction 16106: 17.7945% -Rate for instruction 16107: 17.7943% -Rate for instruction 16108: 17.7949% -Rate for instruction 16109: 17.7952% -Rate for instruction 16110: 17.7963% -Rate for instruction 16111: 17.7975% -Rate for instruction 16112: 17.7969% -Rate for instruction 16113: 17.7965% -Rate for instruction 16114: 17.7957% -Rate for instruction 16115: 17.7965% -Rate for instruction 16116: 17.7973% -Rate for instruction 16117: 17.7983% -Rate for instruction 16118: 17.7991% -Rate for instruction 16119: 17.7982% -Rate for instruction 16120: 17.7981% -Rate for instruction 16121: 17.7975% -Rate for instruction 16122: 17.7971% -Rate for instruction 16123: 17.7976% -Rate for instruction 16124: 17.7977% -Rate for instruction 16125: 17.7969% -Rate for instruction 16126: 17.7962% -Rate for instruction 16127: 17.7963% -Rate for instruction 16128: 17.7955% -Rate for instruction 16129: 17.7951% -Rate for instruction 16130: 17.7942% -Rate for instruction 16131: 17.7936% -Rate for instruction 16132: 17.7927% -Rate for instruction 16133: 17.7926% -Rate for instruction 16134: 17.7917% -Rate for instruction 16135: 17.792% -Rate for instruction 16136: 17.7914% -Rate for instruction 16137: 17.7905% -Rate for instruction 16138: 17.7904% -Rate for instruction 16139: 17.7895% -Rate for instruction 16140: 17.7889% -Rate for instruction 16141: 17.789% -Rate for instruction 16142: 17.7893% -Rate for instruction 16143: 17.7894% -Rate for instruction 16144: 17.789% -Rate for instruction 16145: 17.7886% -Rate for instruction 16146: 17.7887% -Rate for instruction 16147: 17.7881% -Rate for instruction 16148: 17.7872% -Rate for instruction 16149: 17.7873% -Rate for instruction 16150: 17.7872% -Rate for instruction 16151: 17.787% -Rate for instruction 16152: 17.7869% -Rate for instruction 16153: 17.787% -Rate for instruction 16154: 17.7868% -Rate for instruction 16155: 17.7876% -Rate for instruction 16156: 17.7891% -Rate for instruction 16157: 17.789% -Rate for instruction 16158: 17.7891% -Rate for instruction 16159: 17.7885% -Rate for instruction 16160: 17.7883% -Rate for instruction 16161: 17.7875% -Rate for instruction 16162: 17.7868% -Rate for instruction 16163: 17.7881% -Rate for instruction 16164: 17.7887% -Rate for instruction 16165: 17.789% -Rate for instruction 16166: 17.791% -Rate for instruction 16167: 17.793% -Rate for instruction 16168: 17.7928% -Rate for instruction 16169: 17.7929% -Rate for instruction 16170: 17.793% -Rate for instruction 16171: 17.7931% -Rate for instruction 16172: 17.7934% -Rate for instruction 16173: 17.7935% -Rate for instruction 16174: 17.7931% -Rate for instruction 16175: 17.7925% -Rate for instruction 16176: 17.7921% -Rate for instruction 16177: 17.7929% -Rate for instruction 16178: 17.7925% -Rate for instruction 16179: 17.7919% -Rate for instruction 16180: 17.7922% -Rate for instruction 16181: 17.7918% -Rate for instruction 16182: 17.791% -Rate for instruction 16183: 17.7906% -Rate for instruction 16184: 17.7912% -Rate for instruction 16185: 17.7922% -Rate for instruction 16186: 17.7932% -Rate for instruction 16187: 17.7931% -Rate for instruction 16188: 17.7939% -Rate for instruction 16189: 17.794% -Rate for instruction 16190: 17.7934% -Rate for instruction 16191: 17.7949% -Rate for instruction 16192: 17.7959% -Rate for instruction 16193: 17.7955% -Rate for instruction 16194: 17.7954% -Rate for instruction 16195: 17.7945% -Rate for instruction 16196: 17.7941% -Rate for instruction 16197: 17.7933% -Rate for instruction 16198: 17.7931% -Rate for instruction 16199: 17.7923% -Rate for instruction 16200: 17.7921% -Rate for instruction 16201: 17.7913% -Rate for instruction 16202: 17.7911% -Rate for instruction 16203: 17.7912% -Rate for instruction 16204: 17.7918% -Rate for instruction 16205: 17.793% -Rate for instruction 16206: 17.7922% -Rate for instruction 16207: 17.793% -Rate for instruction 16208: 17.7921% -Rate for instruction 16209: 17.7915% -Rate for instruction 16210: 17.7925% -Rate for instruction 16211: 17.7938% -Rate for instruction 16212: 17.7934% -Rate for instruction 16213: 17.7947% -Rate for instruction 16214: 17.7962% -Rate for instruction 16215: 17.797% -Rate for instruction 16216: 17.7978% -Rate for instruction 16217: 17.7991% -Rate for instruction 16218: 17.8001% -Rate for instruction 16219: 17.7993% -Rate for instruction 16220: 17.7991% -Rate for instruction 16221: 17.8001% -Rate for instruction 16222: 17.8009% -Rate for instruction 16223: 17.802% -Rate for instruction 16224: 17.803% -Rate for instruction 16225: 17.804% -Rate for instruction 16226: 17.8051% -Rate for instruction 16227: 17.8047% -Rate for instruction 16228: 17.8053% -Rate for instruction 16229: 17.8049% -Rate for instruction 16230: 17.8054% -Rate for instruction 16231: 17.8048% -Rate for instruction 16232: 17.8047% -Rate for instruction 16233: 17.8052% -Rate for instruction 16234: 17.8058% -Rate for instruction 16235: 17.8066% -Rate for instruction 16236: 17.8074% -Rate for instruction 16237: 17.8079% -Rate for instruction 16238: 17.8076% -Rate for instruction 16239: 17.8079% -Rate for instruction 16240: 17.8087% -Rate for instruction 16241: 17.8083% -Rate for instruction 16242: 17.8091% -Rate for instruction 16243: 17.8087% -Rate for instruction 16244: 17.8086% -Rate for instruction 16245: 17.8079% -Rate for instruction 16246: 17.8078% -Rate for instruction 16247: 17.8079% -Rate for instruction 16248: 17.8091% -Rate for instruction 16249: 17.8085% -Rate for instruction 16250: 17.8077% -Rate for instruction 16251: 17.8075% -Rate for instruction 16252: 17.8083% -Rate for instruction 16253: 17.8091% -Rate for instruction 16254: 17.8097% -Rate for instruction 16255: 17.8102% -Rate for instruction 16256: 17.8106% -Rate for instruction 16257: 17.8116% -Rate for instruction 16258: 17.8117% -Rate for instruction 16259: 17.8111% -Rate for instruction 16260: 17.8102% -Rate for instruction 16261: 17.81% -Rate for instruction 16262: 17.8092% -Rate for instruction 16263: 17.8086% -Rate for instruction 16264: 17.8077% -Rate for instruction 16265: 17.808% -Rate for instruction 16266: 17.8076% -Rate for instruction 16267: 17.8082% -Rate for instruction 16268: 17.8085% -Rate for instruction 16269: 17.8077% -Rate for instruction 16270: 17.8068% -Rate for instruction 16271: 17.8074% -Rate for instruction 16272: 17.8082% -Rate for instruction 16273: 17.8073% -Rate for instruction 16274: 17.8074% -Rate for instruction 16275: 17.8075% -Rate for instruction 16276: 17.8071% -Rate for instruction 16277: 17.8067% -Rate for instruction 16278: 17.8068% -Rate for instruction 16279: 17.8064% -Rate for instruction 16280: 17.8058% -Rate for instruction 16281: 17.8054% -Rate for instruction 16282: 17.8062% -Rate for instruction 16283: 17.8056% -Rate for instruction 16284: 17.8057% -Rate for instruction 16285: 17.8062% -Rate for instruction 16286: 17.8058% -Rate for instruction 16287: 17.805% -Rate for instruction 16288: 17.8044% -Rate for instruction 16289: 17.8054% -Rate for instruction 16290: 17.8064% -Rate for instruction 16291: 17.8063% -Rate for instruction 16292: 17.8054% -Rate for instruction 16293: 17.8065% -Rate for instruction 16294: 17.8058% -Rate for instruction 16295: 17.8069% -Rate for instruction 16296: 17.8063% -Rate for instruction 16297: 17.8063% -Rate for instruction 16298: 17.806% -Rate for instruction 16299: 17.8058% -Rate for instruction 16300: 17.8066% -Rate for instruction 16301: 17.8062% -Rate for instruction 16302: 17.8075% -Rate for instruction 16303: 17.8076% -Rate for instruction 16304: 17.8072% -Rate for instruction 16305: 17.8075% -Rate for instruction 16306: 17.8081% -Rate for instruction 16307: 17.8082% -Rate for instruction 16308: 17.8082% -Rate for instruction 16309: 17.809% -Rate for instruction 16310: 17.8089% -Rate for instruction 16311: 17.8092% -Rate for instruction 16312: 17.8084% -Rate for instruction 16313: 17.8075% -Rate for instruction 16314: 17.8076% -Rate for instruction 16315: 17.8067% -Rate for instruction 16316: 17.8073% -Rate for instruction 16317: 17.8074% -Rate for instruction 16318: 17.807% -Rate for instruction 16319: 17.8076% -Rate for instruction 16320: 17.8081% -Rate for instruction 16321: 17.8087% -Rate for instruction 16322: 17.8085% -Rate for instruction 16323: 17.8081% -Rate for instruction 16324: 17.8082% -Rate for instruction 16325: 17.8074% -Rate for instruction 16326: 17.8075% -Rate for instruction 16327: 17.8073% -Rate for instruction 16328: 17.8081% -Rate for instruction 16329: 17.8084% -Rate for instruction 16330: 17.8083% -Rate for instruction 16331: 17.8091% -Rate for instruction 16332: 17.8084% -Rate for instruction 16333: 17.8078% -Rate for instruction 16334: 17.8084% -Rate for instruction 16335: 17.8094% -Rate for instruction 16336: 17.809% -Rate for instruction 16337: 17.8084% -Rate for instruction 16338: 17.808% -Rate for instruction 16339: 17.8074% -Rate for instruction 16340: 17.8084% -Rate for instruction 16341: 17.8088% -Rate for instruction 16342: 17.8081% -Rate for instruction 16343: 17.8073% -Rate for instruction 16344: 17.8074% -Rate for instruction 16345: 17.8068% -Rate for instruction 16346: 17.809% -Rate for instruction 16347: 17.8093% -Rate for instruction 16348: 17.8087% -Rate for instruction 16349: 17.8078% -Rate for instruction 16350: 17.807% -Rate for instruction 16351: 17.808% -Rate for instruction 16352: 17.8076% -Rate for instruction 16353: 17.807% -Rate for instruction 16354: 17.8066% -Rate for instruction 16355: 17.8057% -Rate for instruction 16356: 17.8061% -Rate for instruction 16357: 17.8069% -Rate for instruction 16358: 17.8062% -Rate for instruction 16359: 17.8059% -Rate for instruction 16360: 17.8052% -Rate for instruction 16361: 17.8067% -Rate for instruction 16362: 17.8061% -Rate for instruction 16363: 17.8074% -Rate for instruction 16364: 17.8086% -Rate for instruction 16365: 17.8104% -Rate for instruction 16366: 17.8095% -Rate for instruction 16367: 17.8105% -Rate for instruction 16368: 17.8116% -Rate for instruction 16369: 17.8121% -Rate for instruction 16370: 17.8134% -Rate for instruction 16371: 17.8132% -Rate for instruction 16372: 17.8126% -Rate for instruction 16373: 17.8122% -Rate for instruction 16374: 17.8116% -Rate for instruction 16375: 17.8108% -Rate for instruction 16376: 17.8118% -Rate for instruction 16377: 17.8128% -Rate for instruction 16378: 17.812% -Rate for instruction 16379: 17.8114% -Rate for instruction 16380: 17.811% -Rate for instruction 16381: 17.8106% -Rate for instruction 16382: 17.8118% -Rate for instruction 16383: 17.8126% -Rate for instruction 16384: 17.8127% -Rate for instruction 16385: 17.813% -Rate for instruction 16386: 17.8124% -Rate for instruction 16387: 17.813% -Rate for instruction 16388: 17.814% -Rate for instruction 16389: 17.8148% -Rate for instruction 16390: 17.814% -Rate for instruction 16391: 17.8147% -Rate for instruction 16392: 17.816% -Rate for instruction 16393: 17.8168% -Rate for instruction 16394: 17.8176% -Rate for instruction 16395: 17.8188% -Rate for instruction 16396: 17.8192% -Rate for instruction 16397: 17.8204% -Rate for instruction 16398: 17.8205% -Rate for instruction 16399: 17.8201% -Rate for instruction 16400: 17.8193% -Rate for instruction 16401: 17.8187% -Rate for instruction 16402: 17.8178% -Rate for instruction 16403: 17.8177% -Rate for instruction 16404: 17.8168% -Rate for instruction 16405: 17.8174% -Rate for instruction 16406: 17.8186% -Rate for instruction 16407: 17.818% -Rate for instruction 16408: 17.8174% -Rate for instruction 16409: 17.8165% -Rate for instruction 16410: 17.8161% -Rate for instruction 16411: 17.8155% -Rate for instruction 16412: 17.8156% -Rate for instruction 16413: 17.8155% -Rate for instruction 16414: 17.8149% -Rate for instruction 16415: 17.8149% -Rate for instruction 16416: 17.8146% -Rate for instruction 16417: 17.8144% -Rate for instruction 16418: 17.8136% -Rate for instruction 16419: 17.8143% -Rate for instruction 16420: 17.8142% -Rate for instruction 16421: 17.8133% -Rate for instruction 16422: 17.8127% -Rate for instruction 16423: 17.8131% -Rate for instruction 16424: 17.8138% -Rate for instruction 16425: 17.8135% -Rate for instruction 16426: 17.8135% -Rate for instruction 16427: 17.8129% -Rate for instruction 16428: 17.8135% -Rate for instruction 16429: 17.8136% -Rate for instruction 16430: 17.8141% -Rate for instruction 16431: 17.8135% -Rate for instruction 16432: 17.8134% -Rate for instruction 16433: 17.8134% -Rate for instruction 16434: 17.814% -Rate for instruction 16435: 17.8134% -Rate for instruction 16436: 17.8125% -Rate for instruction 16437: 17.8124% -Rate for instruction 16438: 17.8132% -Rate for instruction 16439: 17.813% -Rate for instruction 16440: 17.8138% -Rate for instruction 16441: 17.8134% -Rate for instruction 16442: 17.8154% -Rate for instruction 16443: 17.8169% -Rate for instruction 16444: 17.8165% -Rate for instruction 16445: 17.8171% -Rate for instruction 16446: 17.8174% -Rate for instruction 16447: 17.817% -Rate for instruction 16448: 17.8173% -Rate for instruction 16449: 17.8169% -Rate for instruction 16450: 17.8165% -Rate for instruction 16451: 17.8169% -Rate for instruction 16452: 17.8174% -Rate for instruction 16453: 17.8182% -Rate for instruction 16454: 17.8183% -Rate for instruction 16455: 17.8184% -Rate for instruction 16456: 17.8194% -Rate for instruction 16457: 17.8185% -Rate for instruction 16458: 17.8179% -Rate for instruction 16459: 17.8185% -Rate for instruction 16460: 17.8193% -Rate for instruction 16461: 17.8187% -Rate for instruction 16462: 17.8183% -Rate for instruction 16463: 17.8177% -Rate for instruction 16464: 17.817% -Rate for instruction 16465: 17.8167% -Rate for instruction 16466: 17.8163% -Rate for instruction 16467: 17.8164% -Rate for instruction 16468: 17.8176% -Rate for instruction 16469: 17.8184% -Rate for instruction 16470: 17.8178% -Rate for instruction 16471: 17.819% -Rate for instruction 16472: 17.8196% -Rate for instruction 16473: 17.8204% -Rate for instruction 16474: 17.8209% -Rate for instruction 16475: 17.8215% -Rate for instruction 16476: 17.8211% -Rate for instruction 16477: 17.821% -Rate for instruction 16478: 17.8203% -Rate for instruction 16479: 17.8209% -Rate for instruction 16480: 17.8212% -Rate for instruction 16481: 17.8222% -Rate for instruction 16482: 17.8237% -Rate for instruction 16483: 17.825% -Rate for instruction 16484: 17.826% -Rate for instruction 16485: 17.8265% -Rate for instruction 16486: 17.8269% -Rate for instruction 16487: 17.8267% -Rate for instruction 16488: 17.827% -Rate for instruction 16489: 17.8283% -Rate for instruction 16490: 17.8293% -Rate for instruction 16491: 17.8303% -Rate for instruction 16492: 17.8316% -Rate for instruction 16493: 17.8317% -Rate for instruction 16494: 17.8331% -Rate for instruction 16495: 17.8349% -Rate for instruction 16496: 17.8347% -Rate for instruction 16497: 17.8364% -Rate for instruction 16498: 17.8372% -Rate for instruction 16499: 17.8373% -Rate for instruction 16500: 17.8376% -Rate for instruction 16501: 17.8382% -Rate for instruction 16502: 17.8392% -Rate for instruction 16503: 17.8402% -Rate for instruction 16504: 17.8412% -Rate for instruction 16505: 17.8422% -Rate for instruction 16506: 17.8421% -Rate for instruction 16507: 17.8431% -Rate for instruction 16508: 17.8436% -Rate for instruction 16509: 17.8435% -Rate for instruction 16510: 17.8429% -Rate for instruction 16511: 17.8425% -Rate for instruction 16512: 17.8424% -Rate for instruction 16513: 17.842% -Rate for instruction 16514: 17.8414% -Rate for instruction 16515: 17.841% -Rate for instruction 16516: 17.8427% -Rate for instruction 16517: 17.8418% -Rate for instruction 16518: 17.8424% -Rate for instruction 16519: 17.8425% -Rate for instruction 16520: 17.843% -Rate for instruction 16521: 17.844% -Rate for instruction 16522: 17.8441% -Rate for instruction 16523: 17.8433% -Rate for instruction 16524: 17.8438% -Rate for instruction 16525: 17.843% -Rate for instruction 16526: 17.8431% -Rate for instruction 16527: 17.8422% -Rate for instruction 16528: 17.8425% -Rate for instruction 16529: 17.8447% -Rate for instruction 16530: 17.8467% -Rate for instruction 16531: 17.8465% -Rate for instruction 16532: 17.8459% -Rate for instruction 16533: 17.8469% -Rate for instruction 16534: 17.8477% -Rate for instruction 16535: 17.8473% -Rate for instruction 16536: 17.8486% -Rate for instruction 16537: 17.8477% -Rate for instruction 16538: 17.848% -Rate for instruction 16539: 17.8481% -Rate for instruction 16540: 17.8475% -Rate for instruction 16541: 17.8466% -Rate for instruction 16542: 17.846% -Rate for instruction 16543: 17.8457% -Rate for instruction 16544: 17.8448% -Rate for instruction 16545: 17.8442% -Rate for instruction 16546: 17.845% -Rate for instruction 16547: 17.8455% -Rate for instruction 16548: 17.8461% -Rate for instruction 16549: 17.8469% -Rate for instruction 16550: 17.8472% -Rate for instruction 16551: 17.8468% -Rate for instruction 16552: 17.8464% -Rate for instruction 16553: 17.8458% -Rate for instruction 16554: 17.8449% -Rate for instruction 16555: 17.8457% -Rate for instruction 16556: 17.8465% -Rate for instruction 16557: 17.8475% -Rate for instruction 16558: 17.8474% -Rate for instruction 16559: 17.8468% -Rate for instruction 16560: 17.8464% -Rate for instruction 16561: 17.8469% -Rate for instruction 16562: 17.8477% -Rate for instruction 16563: 17.8478% -Rate for instruction 16564: 17.8472% -Rate for instruction 16565: 17.847% -Rate for instruction 16566: 17.8466% -Rate for instruction 16567: 17.846% -Rate for instruction 16568: 17.847% -Rate for instruction 16569: 17.8481% -Rate for instruction 16570: 17.8479% -Rate for instruction 16571: 17.848% -Rate for instruction 16572: 17.8474% -Rate for instruction 16573: 17.847% -Rate for instruction 16574: 17.8462% -Rate for instruction 16575: 17.8458% -Rate for instruction 16576: 17.8449% -Rate for instruction 16577: 17.8441% -Rate for instruction 16578: 17.8442% -Rate for instruction 16579: 17.8433% -Rate for instruction 16580: 17.8425% -Rate for instruction 16581: 17.8421% -Rate for instruction 16582: 17.8417% -Rate for instruction 16583: 17.8423% -Rate for instruction 16584: 17.8428% -Rate for instruction 16585: 17.8434% -Rate for instruction 16586: 17.8441% -Rate for instruction 16587: 17.8447% -Rate for instruction 16588: 17.8455% -Rate for instruction 16589: 17.8462% -Rate for instruction 16590: 17.847% -Rate for instruction 16591: 17.8483% -Rate for instruction 16592: 17.8477% -Rate for instruction 16593: 17.8484% -Rate for instruction 16594: 17.8492% -Rate for instruction 16595: 17.8488% -Rate for instruction 16596: 17.8482% -Rate for instruction 16597: 17.8474% -Rate for instruction 16598: 17.8468% -Rate for instruction 16599: 17.8466% -Rate for instruction 16600: 17.8474% -Rate for instruction 16601: 17.8482% -Rate for instruction 16602: 17.8487% -Rate for instruction 16603: 17.8502% -Rate for instruction 16604: 17.8503% -Rate for instruction 16605: 17.8497% -Rate for instruction 16606: 17.8504% -Rate for instruction 16607: 17.8508% -Rate for instruction 16608: 17.8508% -Rate for instruction 16609: 17.8507% -Rate for instruction 16610: 17.851% -Rate for instruction 16611: 17.8504% -Rate for instruction 16612: 17.8498% -Rate for instruction 16613: 17.8494% -Rate for instruction 16614: 17.849% -Rate for instruction 16615: 17.8482% -Rate for instruction 16616: 17.8476% -Rate for instruction 16617: 17.8472% -Rate for instruction 16618: 17.847% -Rate for instruction 16619: 17.8467% -Rate for instruction 16620: 17.8461% -Rate for instruction 16621: 17.8459% -Rate for instruction 16622: 17.8462% -Rate for instruction 16623: 17.8454% -Rate for instruction 16624: 17.8448% -Rate for instruction 16625: 17.8442% -Rate for instruction 16626: 17.8449% -Rate for instruction 16627: 17.8441% -Rate for instruction 16628: 17.8439% -Rate for instruction 16629: 17.8436% -Rate for instruction 16630: 17.8432% -Rate for instruction 16631: 17.8423% -Rate for instruction 16632: 17.8417% -Rate for instruction 16633: 17.8423% -Rate for instruction 16634: 17.8431% -Rate for instruction 16635: 17.8424% -Rate for instruction 16636: 17.8435% -Rate for instruction 16637: 17.8442% -Rate for instruction 16638: 17.8448% -Rate for instruction 16639: 17.8458% -Rate for instruction 16640: 17.847% -Rate for instruction 16641: 17.848% -Rate for instruction 16642: 17.8472% -Rate for instruction 16643: 17.8477% -Rate for instruction 16644: 17.849% -Rate for instruction 16645: 17.85% -Rate for instruction 16646: 17.851% -Rate for instruction 16647: 17.8501% -Rate for instruction 16648: 17.8493% -Rate for instruction 16649: 17.8489% -Rate for instruction 16650: 17.8495% -Rate for instruction 16651: 17.8502% -Rate for instruction 16652: 17.8503% -Rate for instruction 16653: 17.8504% -Rate for instruction 16654: 17.8507% -Rate for instruction 16655: 17.8513% -Rate for instruction 16656: 17.8509% -Rate for instruction 16657: 17.8503% -Rate for instruction 16658: 17.8499% -Rate for instruction 16659: 17.8498% -Rate for instruction 16660: 17.8494% -Rate for instruction 16661: 17.8488% -Rate for instruction 16662: 17.8482% -Rate for instruction 16663: 17.8478% -Rate for instruction 16664: 17.8469% -Rate for instruction 16665: 17.8466% -Rate for instruction 16666: 17.8462% -Rate for instruction 16667: 17.8474% -Rate for instruction 16668: 17.8484% -Rate for instruction 16669: 17.849% -Rate for instruction 16670: 17.8491% -Rate for instruction 16671: 17.8484% -Rate for instruction 16672: 17.8476% -Rate for instruction 16673: 17.8481% -Rate for instruction 16674: 17.8494% -Rate for instruction 16675: 17.8488% -Rate for instruction 16676: 17.8484% -Rate for instruction 16677: 17.8492% -Rate for instruction 16678: 17.8495% -Rate for instruction 16679: 17.8493% -Rate for instruction 16680: 17.8501% -Rate for instruction 16681: 17.8509% -Rate for instruction 16682: 17.851% -Rate for instruction 16683: 17.8515% -Rate for instruction 16684: 17.8509% -Rate for instruction 16685: 17.8508% -Rate for instruction 16686: 17.8499% -Rate for instruction 16687: 17.85% -Rate for instruction 16688: 17.8503% -Rate for instruction 16689: 17.8504% -Rate for instruction 16690: 17.8507% -Rate for instruction 16691: 17.8501% -Rate for instruction 16692: 17.8493% -Rate for instruction 16693: 17.8489% -Rate for instruction 16694: 17.8494% -Rate for instruction 16695: 17.8488% -Rate for instruction 16696: 17.8484% -Rate for instruction 16697: 17.8478% -Rate for instruction 16698: 17.8472% -Rate for instruction 16699: 17.8464% -Rate for instruction 16700: 17.8458% -Rate for instruction 16701: 17.8454% -Rate for instruction 16702: 17.845% -Rate for instruction 16703: 17.8442% -Rate for instruction 16704: 17.8438% -Rate for instruction 16705: 17.8434% -Rate for instruction 16706: 17.8426% -Rate for instruction 16707: 17.842% -Rate for instruction 16708: 17.8421% -Rate for instruction 16709: 17.8421% -Rate for instruction 16710: 17.8422% -Rate for instruction 16711: 17.843% -Rate for instruction 16712: 17.844% -Rate for instruction 16713: 17.8436% -Rate for instruction 16714: 17.8433% -Rate for instruction 16715: 17.8426% -Rate for instruction 16716: 17.8418% -Rate for instruction 16717: 17.8412% -Rate for instruction 16718: 17.8406% -Rate for instruction 16719: 17.8407% -Rate for instruction 16720: 17.8401% -Rate for instruction 16721: 17.8395% -Rate for instruction 16722: 17.8391% -Rate for instruction 16723: 17.8394% -Rate for instruction 16724: 17.839% -Rate for instruction 16725: 17.8382% -Rate for instruction 16726: 17.8376% -Rate for instruction 16727: 17.8379% -Rate for instruction 16728: 17.8371% -Rate for instruction 16729: 17.8362% -Rate for instruction 16730: 17.8358% -Rate for instruction 16731: 17.835% -Rate for instruction 16732: 17.8342% -Rate for instruction 16733: 17.834% -Rate for instruction 16734: 17.8332% -Rate for instruction 16735: 17.8337% -Rate for instruction 16736: 17.8331% -Rate for instruction 16737: 17.8344% -Rate for instruction 16738: 17.8335% -Rate for instruction 16739: 17.8334% -Rate for instruction 16740: 17.8332% -Rate for instruction 16741: 17.8324% -Rate for instruction 16742: 17.8329% -Rate for instruction 16743: 17.8326% -Rate for instruction 16744: 17.832% -Rate for instruction 16745: 17.8323% -Rate for instruction 16746: 17.8324% -Rate for instruction 16747: 17.832% -Rate for instruction 16748: 17.8311% -Rate for instruction 16749: 17.8317% -Rate for instruction 16750: 17.8313% -Rate for instruction 16751: 17.8305% -Rate for instruction 16752: 17.8312% -Rate for instruction 16753: 17.8327% -Rate for instruction 16754: 17.8319% -Rate for instruction 16755: 17.8329% -Rate for instruction 16756: 17.8323% -Rate for instruction 16757: 17.8333% -Rate for instruction 16758: 17.834% -Rate for instruction 16759: 17.8339% -Rate for instruction 16760: 17.8349% -Rate for instruction 16761: 17.8345% -Rate for instruction 16762: 17.8341% -Rate for instruction 16763: 17.8333% -Rate for instruction 16764: 17.8334% -Rate for instruction 16765: 17.833% -Rate for instruction 16766: 17.8324% -Rate for instruction 16767: 17.8323% -Rate for instruction 16768: 17.8321% -Rate for instruction 16769: 17.8322% -Rate for instruction 16770: 17.8334% -Rate for instruction 16771: 17.8342% -Rate for instruction 16772: 17.8334% -Rate for instruction 16773: 17.8344% -Rate for instruction 16774: 17.834% -Rate for instruction 16775: 17.8355% -Rate for instruction 16776: 17.8349% -Rate for instruction 16777: 17.834% -Rate for instruction 16778: 17.8359% -Rate for instruction 16779: 17.8365% -Rate for instruction 16780: 17.8368% -Rate for instruction 16781: 17.838% -Rate for instruction 16782: 17.8397% -Rate for instruction 16783: 17.8393% -Rate for instruction 16784: 17.839% -Rate for instruction 16785: 17.8381% -Rate for instruction 16786: 17.8391% -Rate for instruction 16787: 17.8385% -Rate for instruction 16788: 17.8377% -Rate for instruction 16789: 17.8375% -Rate for instruction 16790: 17.8381% -Rate for instruction 16791: 17.8382% -Rate for instruction 16792: 17.8382% -Rate for instruction 16793: 17.8379% -Rate for instruction 16794: 17.837% -Rate for instruction 16795: 17.8364% -Rate for instruction 16796: 17.8356% -Rate for instruction 16797: 17.8357% -Rate for instruction 16798: 17.8349% -Rate for instruction 16799: 17.8342% -Rate for instruction 16800: 17.8357% -Rate for instruction 16801: 17.836% -Rate for instruction 16802: 17.8354% -Rate for instruction 16803: 17.836% -Rate for instruction 16804: 17.8358% -Rate for instruction 16805: 17.8352% -Rate for instruction 16806: 17.8355% -Rate for instruction 16807: 17.8358% -Rate for instruction 16808: 17.8355% -Rate for instruction 16809: 17.836% -Rate for instruction 16810: 17.8368% -Rate for instruction 16811: 17.8359% -Rate for instruction 16812: 17.8362% -Rate for instruction 16813: 17.8363% -Rate for instruction 16814: 17.8376% -Rate for instruction 16815: 17.8372% -Rate for instruction 16816: 17.8379% -Rate for instruction 16817: 17.8385% -Rate for instruction 16818: 17.8383% -Rate for instruction 16819: 17.8382% -Rate for instruction 16820: 17.839% -Rate for instruction 16821: 17.8384% -Rate for instruction 16822: 17.8387% -Rate for instruction 16823: 17.8381% -Rate for instruction 16824: 17.8375% -Rate for instruction 16825: 17.8387% -Rate for instruction 16826: 17.8383% -Rate for instruction 16827: 17.8398% -Rate for instruction 16828: 17.841% -Rate for instruction 16829: 17.8413% -Rate for instruction 16830: 17.8409% -Rate for instruction 16831: 17.8403% -Rate for instruction 16832: 17.8402% -Rate for instruction 16833: 17.8394% -Rate for instruction 16834: 17.8394% -Rate for instruction 16835: 17.8395% -Rate for instruction 16836: 17.8394% -Rate for instruction 16837: 17.8388% -Rate for instruction 16838: 17.8393% -Rate for instruction 16839: 17.8401% -Rate for instruction 16840: 17.8406% -Rate for instruction 16841: 17.8414% -Rate for instruction 16842: 17.8415% -Rate for instruction 16843: 17.8422% -Rate for instruction 16844: 17.843% -Rate for instruction 16845: 17.8429% -Rate for instruction 16846: 17.8432% -Rate for instruction 16847: 17.8426% -Rate for instruction 16848: 17.8436% -Rate for instruction 16849: 17.8439% -Rate for instruction 16850: 17.8444% -Rate for instruction 16851: 17.8443% -Rate for instruction 16852: 17.8434% -Rate for instruction 16853: 17.8444% -Rate for instruction 16854: 17.8447% -Rate for instruction 16855: 17.8439% -Rate for instruction 16856: 17.8433% -Rate for instruction 16857: 17.8432% -Rate for instruction 16858: 17.8442% -Rate for instruction 16859: 17.8449% -Rate for instruction 16860: 17.845% -Rate for instruction 16861: 17.8446% -Rate for instruction 16862: 17.8447% -Rate for instruction 16863: 17.8446% -Rate for instruction 16864: 17.8446% -Rate for instruction 16865: 17.8447% -Rate for instruction 16866: 17.8444% -Rate for instruction 16867: 17.8438% -Rate for instruction 16868: 17.8436% -Rate for instruction 16869: 17.843% -Rate for instruction 16870: 17.8438% -Rate for instruction 16871: 17.8434% -Rate for instruction 16872: 17.8428% -Rate for instruction 16873: 17.842% -Rate for instruction 16874: 17.8416% -Rate for instruction 16875: 17.8424% -Rate for instruction 16876: 17.8434% -Rate for instruction 16877: 17.8428% -Rate for instruction 16878: 17.8424% -Rate for instruction 16879: 17.8431% -Rate for instruction 16880: 17.8435% -Rate for instruction 16881: 17.8435% -Rate for instruction 16882: 17.8443% -Rate for instruction 16883: 17.8448% -Rate for instruction 16884: 17.8452% -Rate for instruction 16885: 17.8446% -Rate for instruction 16886: 17.8442% -Rate for instruction 16887: 17.8443% -Rate for instruction 16888: 17.8457% -Rate for instruction 16889: 17.8469% -Rate for instruction 16890: 17.8479% -Rate for instruction 16891: 17.8473% -Rate for instruction 16892: 17.8488% -Rate for instruction 16893: 17.8484% -Rate for instruction 16894: 17.8482% -Rate for instruction 16895: 17.8476% -Rate for instruction 16896: 17.8473% -Rate for instruction 16897: 17.8474% -Rate for instruction 16898: 17.8474% -Rate for instruction 16899: 17.8487% -Rate for instruction 16900: 17.8496% -Rate for instruction 16901: 17.8495% -Rate for instruction 16902: 17.8503% -Rate for instruction 16903: 17.8513% -Rate for instruction 16904: 17.8507% -Rate for instruction 16905: 17.8514% -Rate for instruction 16906: 17.8526% -Rate for instruction 16907: 17.853% -Rate for instruction 16908: 17.8521% -Rate for instruction 16909: 17.8517% -Rate for instruction 16910: 17.8511% -Rate for instruction 16911: 17.8503% -Rate for instruction 16912: 17.8513% -Rate for instruction 16913: 17.8521% -Rate for instruction 16914: 17.8517% -Rate for instruction 16915: 17.8509% -Rate for instruction 16916: 17.8516% -Rate for instruction 16917: 17.8517% -Rate for instruction 16918: 17.8511% -Rate for instruction 16919: 17.8514% -Rate for instruction 16920: 17.8513% -Rate for instruction 16921: 17.8525% -Rate for instruction 16922: 17.8519% -Rate for instruction 16923: 17.8531% -Rate for instruction 16924: 17.8541% -Rate for instruction 16925: 17.8542% -Rate for instruction 16926: 17.8538% -Rate for instruction 16927: 17.8541% -Rate for instruction 16928: 17.8542% -Rate for instruction 16929: 17.8556% -Rate for instruction 16930: 17.8564% -Rate for instruction 16931: 17.8563% -Rate for instruction 16932: 17.8577% -Rate for instruction 16933: 17.8585% -Rate for instruction 16934: 17.859% -Rate for instruction 16935: 17.8582% -Rate for instruction 16936: 17.8583% -Rate for instruction 16937: 17.8577% -Rate for instruction 16938: 17.8573% -Rate for instruction 16939: 17.8569% -Rate for instruction 16940: 17.8581% -Rate for instruction 16941: 17.8593% -Rate for instruction 16942: 17.8608% -Rate for instruction 16943: 17.8604% -Rate for instruction 16944: 17.8598% -Rate for instruction 16945: 17.8592% -Rate for instruction 16946: 17.8593% -Rate for instruction 16947: 17.8587% -Rate for instruction 16948: 17.8597% -Rate for instruction 16949: 17.8598% -Rate for instruction 16950: 17.8601% -Rate for instruction 16951: 17.8595% -Rate for instruction 16952: 17.8602% -Rate for instruction 16953: 17.8608% -Rate for instruction 16954: 17.8609% -Rate for instruction 16955: 17.8605% -Rate for instruction 16956: 17.8615% -Rate for instruction 16957: 17.8627% -Rate for instruction 16958: 17.8632% -Rate for instruction 16959: 17.8638% -Rate for instruction 16960: 17.8647% -Rate for instruction 16961: 17.8655% -Rate for instruction 16962: 17.8651% -Rate for instruction 16963: 17.8659% -Rate for instruction 16964: 17.8673% -Rate for instruction 16965: 17.8672% -Rate for instruction 16966: 17.8664% -Rate for instruction 16967: 17.8671% -Rate for instruction 16968: 17.8665% -Rate for instruction 16969: 17.8659% -Rate for instruction 16970: 17.866% -Rate for instruction 16971: 17.8659% -Rate for instruction 16972: 17.8653% -Rate for instruction 16973: 17.8644% -Rate for instruction 16974: 17.8645% -Rate for instruction 16975: 17.8644% -Rate for instruction 16976: 17.8651% -Rate for instruction 16977: 17.8645% -Rate for instruction 16978: 17.8639% -Rate for instruction 16979: 17.8635% -Rate for instruction 16980: 17.8639% -Rate for instruction 16981: 17.863% -Rate for instruction 16982: 17.8638% -Rate for instruction 16983: 17.8648% -Rate for instruction 16984: 17.8646% -Rate for instruction 16985: 17.8643% -Rate for instruction 16986: 17.8648% -Rate for instruction 16987: 17.8667% -Rate for instruction 16988: 17.8679% -Rate for instruction 16989: 17.8675% -Rate for instruction 16990: 17.8687% -Rate for instruction 16991: 17.869% -Rate for instruction 16992: 17.8682% -Rate for instruction 16993: 17.8694% -Rate for instruction 16994: 17.8693% -Rate for instruction 16995: 17.87% -Rate for instruction 16996: 17.8701% -Rate for instruction 16997: 17.8693% -Rate for instruction 16998: 17.8692% -Rate for instruction 16999: 17.8683% -Rate for instruction 17000: 17.8684% -Rate for instruction 17001: 17.8678% -Rate for instruction 17002: 17.8692% -Rate for instruction 17003: 17.8686% -Rate for instruction 17004: 17.8678% -Rate for instruction 17005: 17.8693% -Rate for instruction 17006: 17.8696% -Rate for instruction 17007: 17.8703% -Rate for instruction 17008: 17.8695% -Rate for instruction 17009: 17.8687% -Rate for instruction 17010: 17.8681% -Rate for instruction 17011: 17.8673% -Rate for instruction 17012: 17.8667% -Rate for instruction 17013: 17.8658% -Rate for instruction 17014: 17.8668% -Rate for instruction 17015: 17.8669% -Rate for instruction 17016: 17.8665% -Rate for instruction 17017: 17.8659% -Rate for instruction 17018: 17.8671% -Rate for instruction 17019: 17.8663% -Rate for instruction 17020: 17.8657% -Rate for instruction 17021: 17.8649% -Rate for instruction 17022: 17.8641% -Rate for instruction 17023: 17.8637% -Rate for instruction 17024: 17.8647% -Rate for instruction 17025: 17.8641% -Rate for instruction 17026: 17.8633% -Rate for instruction 17027: 17.8627% -Rate for instruction 17028: 17.8639% -Rate for instruction 17029: 17.864% -Rate for instruction 17030: 17.8645% -Rate for instruction 17031: 17.865% -Rate for instruction 17032: 17.8651% -Rate for instruction 17033: 17.8661% -Rate for instruction 17034: 17.8668% -Rate for instruction 17035: 17.8665% -Rate for instruction 17036: 17.867% -Rate for instruction 17037: 17.8662% -Rate for instruction 17038: 17.8669% -Rate for instruction 17039: 17.867% -Rate for instruction 17040: 17.8669% -Rate for instruction 17041: 17.866% -Rate for instruction 17042: 17.867% -Rate for instruction 17043: 17.8678% -Rate for instruction 17044: 17.8676% -Rate for instruction 17045: 17.8688% -Rate for instruction 17046: 17.8698% -Rate for instruction 17047: 17.8706% -Rate for instruction 17048: 17.8716% -Rate for instruction 17049: 17.871% -Rate for instruction 17050: 17.8715% -Rate for instruction 17051: 17.8716% -Rate for instruction 17052: 17.8717% -Rate for instruction 17053: 17.8715% -Rate for instruction 17054: 17.8709% -Rate for instruction 17055: 17.8705% -Rate for instruction 17056: 17.8699% -Rate for instruction 17057: 17.8698% -Rate for instruction 17058: 17.8712% -Rate for instruction 17059: 17.8722% -Rate for instruction 17060: 17.8714% -Rate for instruction 17061: 17.8712% -Rate for instruction 17062: 17.8711% -Rate for instruction 17063: 17.8723% -Rate for instruction 17064: 17.8726% -Rate for instruction 17065: 17.872% -Rate for instruction 17066: 17.8719% -Rate for instruction 17067: 17.871% -Rate for instruction 17068: 17.8705% -Rate for instruction 17069: 17.871% -Rate for instruction 17070: 17.872% -Rate for instruction 17071: 17.8732% -Rate for instruction 17072: 17.8728% -Rate for instruction 17073: 17.8736% -Rate for instruction 17074: 17.8734% -Rate for instruction 17075: 17.8735% -Rate for instruction 17076: 17.8733% -Rate for instruction 17077: 17.873% -Rate for instruction 17078: 17.8733% -Rate for instruction 17079: 17.8729% -Rate for instruction 17080: 17.8725% -Rate for instruction 17081: 17.8728% -Rate for instruction 17082: 17.8734% -Rate for instruction 17083: 17.8734% -Rate for instruction 17084: 17.8731% -Rate for instruction 17085: 17.8732% -Rate for instruction 17086: 17.8728% -Rate for instruction 17087: 17.8733% -Rate for instruction 17088: 17.8743% -Rate for instruction 17089: 17.8735% -Rate for instruction 17090: 17.8729% -Rate for instruction 17091: 17.8721% -Rate for instruction 17092: 17.8735% -Rate for instruction 17093: 17.8747% -Rate for instruction 17094: 17.8754% -Rate for instruction 17095: 17.876% -Rate for instruction 17096: 17.8765% -Rate for instruction 17097: 17.877% -Rate for instruction 17098: 17.8767% -Rate for instruction 17099: 17.877% -Rate for instruction 17100: 17.8775% -Rate for instruction 17101: 17.8783% -Rate for instruction 17102: 17.8792% -Rate for instruction 17103: 17.8793% -Rate for instruction 17104: 17.8787% -Rate for instruction 17105: 17.8783% -Rate for instruction 17106: 17.8775% -Rate for instruction 17107: 17.8781% -Rate for instruction 17108: 17.8784% -Rate for instruction 17109: 17.8791% -Rate for instruction 17110: 17.8808% -Rate for instruction 17111: 17.8806% -Rate for instruction 17112: 17.8805% -Rate for instruction 17113: 17.8805% -Rate for instruction 17114: 17.8804% -Rate for instruction 17115: 17.8796% -Rate for instruction 17116: 17.8797% -Rate for instruction 17117: 17.8802% -Rate for instruction 17118: 17.8798% -Rate for instruction 17119: 17.8792% -Rate for instruction 17120: 17.88% -Rate for instruction 17121: 17.8792% -Rate for instruction 17122: 17.8788% -Rate for instruction 17123: 17.8786% -Rate for instruction 17124: 17.8783% -Rate for instruction 17125: 17.879% -Rate for instruction 17126: 17.8791% -Rate for instruction 17127: 17.8792% -Rate for instruction 17128: 17.8806% -Rate for instruction 17129: 17.8798% -Rate for instruction 17130: 17.8794% -Rate for instruction 17131: 17.8788% -Rate for instruction 17132: 17.878% -Rate for instruction 17133: 17.8774% -Rate for instruction 17134: 17.8779% -Rate for instruction 17135: 17.8776% -Rate for instruction 17136: 17.877% -Rate for instruction 17137: 17.8766% -Rate for instruction 17138: 17.8765% -Rate for instruction 17139: 17.8759% -Rate for instruction 17140: 17.8755% -Rate for instruction 17141: 17.8758% -Rate for instruction 17142: 17.8768% -Rate for instruction 17143: 17.8762% -Rate for instruction 17144: 17.8769% -Rate for instruction 17145: 17.8763% -Rate for instruction 17146: 17.8775% -Rate for instruction 17147: 17.8785% -Rate for instruction 17148: 17.8779% -Rate for instruction 17149: 17.8789% -Rate for instruction 17150: 17.881% -Rate for instruction 17151: 17.8802% -Rate for instruction 17152: 17.8816% -Rate for instruction 17153: 17.8824% -Rate for instruction 17154: 17.8833% -Rate for instruction 17155: 17.8825% -Rate for instruction 17156: 17.8817% -Rate for instruction 17157: 17.8818% -Rate for instruction 17158: 17.8827% -Rate for instruction 17159: 17.8835% -Rate for instruction 17160: 17.8847% -Rate for instruction 17161: 17.8843% -Rate for instruction 17162: 17.884% -Rate for instruction 17163: 17.8831% -Rate for instruction 17164: 17.883% -Rate for instruction 17165: 17.8826% -Rate for instruction 17166: 17.8818% -Rate for instruction 17167: 17.8814% -Rate for instruction 17168: 17.8808% -Rate for instruction 17169: 17.88% -Rate for instruction 17170: 17.8797% -Rate for instruction 17171: 17.8788% -Rate for instruction 17172: 17.8787% -Rate for instruction 17173: 17.879% -Rate for instruction 17174: 17.8791% -Rate for instruction 17175: 17.8798% -Rate for instruction 17176: 17.8806% -Rate for instruction 17177: 17.8811% -Rate for instruction 17178: 17.8805% -Rate for instruction 17179: 17.8801% -Rate for instruction 17180: 17.8807% -Rate for instruction 17181: 17.8803% -Rate for instruction 17182: 17.8801% -Rate for instruction 17183: 17.88% -Rate for instruction 17184: 17.8794% -Rate for instruction 17185: 17.879% -Rate for instruction 17186: 17.8787% -Rate for instruction 17187: 17.8785% -Rate for instruction 17188: 17.8777% -Rate for instruction 17189: 17.8778% -Rate for instruction 17190: 17.8776% -Rate for instruction 17191: 17.8768% -Rate for instruction 17192: 17.8778% -Rate for instruction 17193: 17.8788% -Rate for instruction 17194: 17.8782% -Rate for instruction 17195: 17.8774% -Rate for instruction 17196: 17.8783% -Rate for instruction 17197: 17.88% -Rate for instruction 17198: 17.8794% -Rate for instruction 17199: 17.8788% -Rate for instruction 17200: 17.8793% -Rate for instruction 17201: 17.8785% -Rate for instruction 17202: 17.8784% -Rate for instruction 17203: 17.8789% -Rate for instruction 17204: 17.8783% -Rate for instruction 17205: 17.8784% -Rate for instruction 17206: 17.878% -Rate for instruction 17207: 17.8781% -Rate for instruction 17208: 17.8784% -Rate for instruction 17209: 17.8789% -Rate for instruction 17210: 17.8783% -Rate for instruction 17211: 17.8775% -Rate for instruction 17212: 17.8774% -Rate for instruction 17213: 17.8788% -Rate for instruction 17214: 17.878% -Rate for instruction 17215: 17.8794% -Rate for instruction 17216: 17.8788% -Rate for instruction 17217: 17.8802% -Rate for instruction 17218: 17.8796% -Rate for instruction 17219: 17.8806% -Rate for instruction 17220: 17.8798% -Rate for instruction 17221: 17.8792% -Rate for instruction 17222: 17.8784% -Rate for instruction 17223: 17.8776% -Rate for instruction 17224: 17.8772% -Rate for instruction 17225: 17.8777% -Rate for instruction 17226: 17.878% -Rate for instruction 17227: 17.8776% -Rate for instruction 17228: 17.8782% -Rate for instruction 17229: 17.8774% -Rate for instruction 17230: 17.8772% -Rate for instruction 17231: 17.8777% -Rate for instruction 17232: 17.8769% -Rate for instruction 17233: 17.8777% -Rate for instruction 17234: 17.8771% -Rate for instruction 17235: 17.8783% -Rate for instruction 17236: 17.8786% -Rate for instruction 17237: 17.88% -Rate for instruction 17238: 17.8805% -Rate for instruction 17239: 17.8806% -Rate for instruction 17240: 17.88% -Rate for instruction 17241: 17.881% -Rate for instruction 17242: 17.8824% -Rate for instruction 17243: 17.8816% -Rate for instruction 17244: 17.881% -Rate for instruction 17245: 17.8813% -Rate for instruction 17246: 17.8811% -Rate for instruction 17247: 17.8806% -Rate for instruction 17248: 17.8797% -Rate for instruction 17249: 17.8789% -Rate for instruction 17250: 17.8792% -Rate for instruction 17251: 17.8786% -Rate for instruction 17252: 17.8781% -Rate for instruction 17253: 17.8779% -Rate for instruction 17254: 17.8775% -Rate for instruction 17255: 17.8774% -Rate for instruction 17256: 17.877% -Rate for instruction 17257: 17.8769% -Rate for instruction 17258: 17.8765% -Rate for instruction 17259: 17.8764% -Rate for instruction 17260: 17.8756% -Rate for instruction 17261: 17.8747% -Rate for instruction 17262: 17.8742% -Rate for instruction 17263: 17.8738% -Rate for instruction 17264: 17.8734% -Rate for instruction 17265: 17.8753% -Rate for instruction 17266: 17.8745% -Rate for instruction 17267: 17.8768% -Rate for instruction 17268: 17.8773% -Rate for instruction 17269: 17.8767% -Rate for instruction 17270: 17.8772% -Rate for instruction 17271: 17.8786% -Rate for instruction 17272: 17.8781% -Rate for instruction 17273: 17.8781% -Rate for instruction 17274: 17.8791% -Rate for instruction 17275: 17.8803% -Rate for instruction 17276: 17.8813% -Rate for instruction 17277: 17.8805% -Rate for instruction 17278: 17.8796% -Rate for instruction 17279: 17.8811% -Rate for instruction 17280: 17.8807% -Rate for instruction 17281: 17.8801% -Rate for instruction 17282: 17.8795% -Rate for instruction 17283: 17.8791% -Rate for instruction 17284: 17.8792% -Rate for instruction 17285: 17.8795% -Rate for instruction 17286: 17.8787% -Rate for instruction 17287: 17.8781% -Rate for instruction 17288: 17.8773% -Rate for instruction 17289: 17.8772% -Rate for instruction 17290: 17.8764% -Rate for instruction 17291: 17.8758% -Rate for instruction 17292: 17.875% -Rate for instruction 17293: 17.8753% -Rate for instruction 17294: 17.8747% -Rate for instruction 17295: 17.875% -Rate for instruction 17296: 17.8744% -Rate for instruction 17297: 17.8738% -Rate for instruction 17298: 17.8739% -Rate for instruction 17299: 17.8739% -Rate for instruction 17300: 17.8736% -Rate for instruction 17301: 17.8734% -Rate for instruction 17302: 17.8737% -Rate for instruction 17303: 17.8731% -Rate for instruction 17304: 17.873% -Rate for instruction 17305: 17.8731% -Rate for instruction 17306: 17.8727% -Rate for instruction 17307: 17.8719% -Rate for instruction 17308: 17.872% -Rate for instruction 17309: 17.8721% -Rate for instruction 17310: 17.8713% -Rate for instruction 17311: 17.8709% -Rate for instruction 17312: 17.8707% -Rate for instruction 17313: 17.8699% -Rate for instruction 17314: 17.8713% -Rate for instruction 17315: 17.8723% -Rate for instruction 17316: 17.8726% -Rate for instruction 17317: 17.8722% -Rate for instruction 17318: 17.8719% -Rate for instruction 17319: 17.8713% -Rate for instruction 17320: 17.8709% -Rate for instruction 17321: 17.8703% -Rate for instruction 17322: 17.8706% -Rate for instruction 17323: 17.8701% -Rate for instruction 17324: 17.8697% -Rate for instruction 17325: 17.8698% -Rate for instruction 17326: 17.8694% -Rate for instruction 17327: 17.8693% -Rate for instruction 17328: 17.8693% -Rate for instruction 17329: 17.869% -Rate for instruction 17330: 17.8686% -Rate for instruction 17331: 17.8691% -Rate for instruction 17332: 17.8692% -Rate for instruction 17333: 17.8688% -Rate for instruction 17334: 17.8687% -Rate for instruction 17335: 17.8679% -Rate for instruction 17336: 17.8677% -Rate for instruction 17337: 17.8672% -Rate for instruction 17338: 17.8668% -Rate for instruction 17339: 17.8666% -Rate for instruction 17340: 17.8663% -Rate for instruction 17341: 17.8664% -Rate for instruction 17342: 17.866% -Rate for instruction 17343: 17.8652% -Rate for instruction 17344: 17.8655% -Rate for instruction 17345: 17.8667% -Rate for instruction 17346: 17.8663% -Rate for instruction 17347: 17.8668% -Rate for instruction 17348: 17.8674% -Rate for instruction 17349: 17.867% -Rate for instruction 17350: 17.8664% -Rate for instruction 17351: 17.866% -Rate for instruction 17352: 17.8668% -Rate for instruction 17353: 17.8675% -Rate for instruction 17354: 17.868% -Rate for instruction 17355: 17.869% -Rate for instruction 17356: 17.8693% -Rate for instruction 17357: 17.8696% -Rate for instruction 17358: 17.8688% -Rate for instruction 17359: 17.868% -Rate for instruction 17360: 17.8676% -Rate for instruction 17361: 17.8673% -Rate for instruction 17362: 17.8665% -Rate for instruction 17363: 17.8659% -Rate for instruction 17364: 17.8653% -Rate for instruction 17365: 17.8654% -Rate for instruction 17366: 17.865% -Rate for instruction 17367: 17.8651% -Rate for instruction 17368: 17.8654% -Rate for instruction 17369: 17.865% -Rate for instruction 17370: 17.8642% -Rate for instruction 17371: 17.8641% -Rate for instruction 17372: 17.8644% -Rate for instruction 17373: 17.8638% -Rate for instruction 17374: 17.8639% -Rate for instruction 17375: 17.8639% -Rate for instruction 17376: 17.8631% -Rate for instruction 17377: 17.8632% -Rate for instruction 17378: 17.8631% -Rate for instruction 17379: 17.8627% -Rate for instruction 17380: 17.8628% -Rate for instruction 17381: 17.8626% -Rate for instruction 17382: 17.8634% -Rate for instruction 17383: 17.8641% -Rate for instruction 17384: 17.8633% -Rate for instruction 17385: 17.8643% -Rate for instruction 17386: 17.8646% -Rate for instruction 17387: 17.864% -Rate for instruction 17388: 17.8636% -Rate for instruction 17389: 17.8628% -Rate for instruction 17390: 17.8638% -Rate for instruction 17391: 17.8643% -Rate for instruction 17392: 17.8651% -Rate for instruction 17393: 17.8654% -Rate for instruction 17394: 17.865% -Rate for instruction 17395: 17.8657% -Rate for instruction 17396: 17.866% -Rate for instruction 17397: 17.8661% -Rate for instruction 17398: 17.8653% -Rate for instruction 17399: 17.8665% -Rate for instruction 17400: 17.8657% -Rate for instruction 17401: 17.8658% -Rate for instruction 17402: 17.8656% -Rate for instruction 17403: 17.8657% -Rate for instruction 17404: 17.866% -Rate for instruction 17405: 17.8667% -Rate for instruction 17406: 17.8677% -Rate for instruction 17407: 17.8682% -Rate for instruction 17408: 17.8687% -Rate for instruction 17409: 17.8701% -Rate for instruction 17410: 17.8698% -Rate for instruction 17411: 17.8696% -Rate for instruction 17412: 17.8702% -Rate for instruction 17413: 17.8711% -Rate for instruction 17414: 17.8703% -Rate for instruction 17415: 17.8702% -Rate for instruction 17416: 17.8707% -Rate for instruction 17417: 17.8719% -Rate for instruction 17418: 17.8711% -Rate for instruction 17419: 17.8714% -Rate for instruction 17420: 17.8721% -Rate for instruction 17421: 17.8733% -Rate for instruction 17422: 17.8734% -Rate for instruction 17423: 17.8741% -Rate for instruction 17424: 17.8742% -Rate for instruction 17425: 17.8738% -Rate for instruction 17426: 17.8746% -Rate for instruction 17427: 17.8749% -Rate for instruction 17428: 17.8754% -Rate for instruction 17429: 17.8748% -Rate for instruction 17430: 17.8753% -Rate for instruction 17431: 17.8761% -Rate for instruction 17432: 17.877% -Rate for instruction 17433: 17.8775% -Rate for instruction 17434: 17.8774% -Rate for instruction 17435: 17.8772% -Rate for instruction 17436: 17.8778% -Rate for instruction 17437: 17.8783% -Rate for instruction 17438: 17.8784% -Rate for instruction 17439: 17.8791% -Rate for instruction 17440: 17.8794% -Rate for instruction 17441: 17.8801% -Rate for instruction 17442: 17.8798% -Rate for instruction 17443: 17.8796% -Rate for instruction 17444: 17.8793% -Rate for instruction 17445: 17.8787% -Rate for instruction 17446: 17.8792% -Rate for instruction 17447: 17.8802% -Rate for instruction 17448: 17.8807% -Rate for instruction 17449: 17.8801% -Rate for instruction 17450: 17.8811% -Rate for instruction 17451: 17.882% -Rate for instruction 17452: 17.8825% -Rate for instruction 17453: 17.8835% -Rate for instruction 17454: 17.8845% -Rate for instruction 17455: 17.8841% -Rate for instruction 17456: 17.8846% -Rate for instruction 17457: 17.8853% -Rate for instruction 17458: 17.8852% -Rate for instruction 17459: 17.8844% -Rate for instruction 17460: 17.884% -Rate for instruction 17461: 17.8832% -Rate for instruction 17462: 17.8826% -Rate for instruction 17463: 17.8818% -Rate for instruction 17464: 17.8817% -Rate for instruction 17465: 17.8813% -Rate for instruction 17466: 17.8808% -Rate for instruction 17467: 17.8799% -Rate for instruction 17468: 17.8816% -Rate for instruction 17469: 17.8832% -Rate for instruction 17470: 17.8824% -Rate for instruction 17471: 17.8825% -Rate for instruction 17472: 17.8823% -Rate for instruction 17473: 17.8817% -Rate for instruction 17474: 17.8816% -Rate for instruction 17475: 17.8812% -Rate for instruction 17476: 17.8811% -Rate for instruction 17477: 17.8807% -Rate for instruction 17478: 17.8808% -Rate for instruction 17479: 17.8809% -Rate for instruction 17480: 17.8805% -Rate for instruction 17481: 17.8799% -Rate for instruction 17482: 17.8793% -Rate for instruction 17483: 17.8794% -Rate for instruction 17484: 17.8786% -Rate for instruction 17485: 17.878% -Rate for instruction 17486: 17.8772% -Rate for instruction 17487: 17.8764% -Rate for instruction 17488: 17.8765% -Rate for instruction 17489: 17.8757% -Rate for instruction 17490: 17.8749% -Rate for instruction 17491: 17.8741% -Rate for instruction 17492: 17.8759% -Rate for instruction 17493: 17.8771% -Rate for instruction 17494: 17.8768% -Rate for instruction 17495: 17.8773% -Rate for instruction 17496: 17.8767% -Rate for instruction 17497: 17.8765% -Rate for instruction 17498: 17.876% -Rate for instruction 17499: 17.8758% -Rate for instruction 17500: 17.8759% -Rate for instruction 17501: 17.8753% -Rate for instruction 17502: 17.8758% -Rate for instruction 17503: 17.8761% -Rate for instruction 17504: 17.8762% -Rate for instruction 17505: 17.8761% -Rate for instruction 17506: 17.8759% -Rate for instruction 17507: 17.8767% -Rate for instruction 17508: 17.877% -Rate for instruction 17509: 17.8766% -Rate for instruction 17510: 17.8758% -Rate for instruction 17511: 17.8757% -Rate for instruction 17512: 17.8749% -Rate for instruction 17513: 17.8747% -Rate for instruction 17514: 17.8743% -Rate for instruction 17515: 17.8738% -Rate for instruction 17516: 17.8743% -Rate for instruction 17517: 17.8741% -Rate for instruction 17518: 17.8733% -Rate for instruction 17519: 17.8728% -Rate for instruction 17520: 17.8726% -Rate for instruction 17521: 17.8718% -Rate for instruction 17522: 17.8717% -Rate for instruction 17523: 17.8709% -Rate for instruction 17524: 17.8705% -Rate for instruction 17525: 17.8702% -Rate for instruction 17526: 17.8694% -Rate for instruction 17527: 17.8694% -Rate for instruction 17528: 17.8689% -Rate for instruction 17529: 17.8687% -Rate for instruction 17530: 17.8681% -Rate for instruction 17531: 17.8673% -Rate for instruction 17532: 17.8683% -Rate for instruction 17533: 17.8675% -Rate for instruction 17534: 17.8682% -Rate for instruction 17535: 17.8683% -Rate for instruction 17536: 17.869% -Rate for instruction 17537: 17.8687% -Rate for instruction 17538: 17.8692% -Rate for instruction 17539: 17.8699% -Rate for instruction 17540: 17.8693% -Rate for instruction 17541: 17.869% -Rate for instruction 17542: 17.8682% -Rate for instruction 17543: 17.8676% -Rate for instruction 17544: 17.8672% -Rate for instruction 17545: 17.8667% -Rate for instruction 17546: 17.8678% -Rate for instruction 17547: 17.867% -Rate for instruction 17548: 17.868% -Rate for instruction 17549: 17.8687% -Rate for instruction 17550: 17.8695% -Rate for instruction 17551: 17.87% -Rate for instruction 17552: 17.8712% -Rate for instruction 17553: 17.8717% -Rate for instruction 17554: 17.872% -Rate for instruction 17555: 17.8712% -Rate for instruction 17556: 17.8706% -Rate for instruction 17557: 17.8713% -Rate for instruction 17558: 17.8705% -Rate for instruction 17559: 17.8708% -Rate for instruction 17560: 17.8711% -Rate for instruction 17561: 17.8721% -Rate for instruction 17562: 17.8728% -Rate for instruction 17563: 17.8735% -Rate for instruction 17564: 17.8754% -Rate for instruction 17565: 17.8759% -Rate for instruction 17566: 17.8768% -Rate for instruction 17567: 17.8769% -Rate for instruction 17568: 17.8779% -Rate for instruction 17569: 17.8782% -Rate for instruction 17570: 17.8782% -Rate for instruction 17571: 17.8785% -Rate for instruction 17572: 17.878% -Rate for instruction 17573: 17.8772% -Rate for instruction 17574: 17.8768% -Rate for instruction 17575: 17.8773% -Rate for instruction 17576: 17.8767% -Rate for instruction 17577: 17.8775% -Rate for instruction 17578: 17.8769% -Rate for instruction 17579: 17.8761% -Rate for instruction 17580: 17.8755% -Rate for instruction 17581: 17.8749% -Rate for instruction 17582: 17.8748% -Rate for instruction 17583: 17.874% -Rate for instruction 17584: 17.8743% -Rate for instruction 17585: 17.8746% -Rate for instruction 17586: 17.8747% -Rate for instruction 17587: 17.8749% -Rate for instruction 17588: 17.8755% -Rate for instruction 17589: 17.8751% -Rate for instruction 17590: 17.8754% -Rate for instruction 17591: 17.8753% -Rate for instruction 17592: 17.8756% -Rate for instruction 17593: 17.8748% -Rate for instruction 17594: 17.8742% -Rate for instruction 17595: 17.8738% -Rate for instruction 17596: 17.8741% -Rate for instruction 17597: 17.8733% -Rate for instruction 17598: 17.8738% -Rate for instruction 17599: 17.8733% -Rate for instruction 17600: 17.8731% -Rate for instruction 17601: 17.8728% -Rate for instruction 17602: 17.8724% -Rate for instruction 17603: 17.872% -Rate for instruction 17604: 17.8732% -Rate for instruction 17605: 17.8744% -Rate for instruction 17606: 17.8736% -Rate for instruction 17607: 17.8743% -Rate for instruction 17608: 17.8757% -Rate for instruction 17609: 17.8753% -Rate for instruction 17610: 17.8763% -Rate for instruction 17611: 17.8757% -Rate for instruction 17612: 17.8751% -Rate for instruction 17613: 17.8748% -Rate for instruction 17614: 17.8748% -Rate for instruction 17615: 17.8751% -Rate for instruction 17616: 17.8752% -Rate for instruction 17617: 17.8749% -Rate for instruction 17618: 17.8741% -Rate for instruction 17619: 17.8739% -Rate for instruction 17620: 17.8733% -Rate for instruction 17621: 17.8728% -Rate for instruction 17622: 17.8731% -Rate for instruction 17623: 17.8725% -Rate for instruction 17624: 17.8717% -Rate for instruction 17625: 17.8711% -Rate for instruction 17626: 17.8707% -Rate for instruction 17627: 17.87% -Rate for instruction 17628: 17.8696% -Rate for instruction 17629: 17.869% -Rate for instruction 17630: 17.8695% -Rate for instruction 17631: 17.8705% -Rate for instruction 17632: 17.871% -Rate for instruction 17633: 17.8719% -Rate for instruction 17634: 17.8711% -Rate for instruction 17635: 17.8708% -Rate for instruction 17636: 17.8702% -Rate for instruction 17637: 17.8709% -Rate for instruction 17638: 17.8725% -Rate for instruction 17639: 17.8735% -Rate for instruction 17640: 17.8727% -Rate for instruction 17641: 17.8739% -Rate for instruction 17642: 17.8746% -Rate for instruction 17643: 17.8738% -Rate for instruction 17644: 17.8732% -Rate for instruction 17645: 17.8744% -Rate for instruction 17646: 17.8751% -Rate for instruction 17647: 17.8759% -Rate for instruction 17648: 17.8755% -Rate for instruction 17649: 17.8758% -Rate for instruction 17650: 17.8759% -Rate for instruction 17651: 17.8757% -Rate for instruction 17652: 17.8758% -Rate for instruction 17653: 17.8768% -Rate for instruction 17654: 17.8768% -Rate for instruction 17655: 17.8767% -Rate for instruction 17656: 17.8768% -Rate for instruction 17657: 17.8762% -Rate for instruction 17658: 17.8758% -Rate for instruction 17659: 17.8757% -Rate for instruction 17660: 17.8755% -Rate for instruction 17661: 17.875% -Rate for instruction 17662: 17.8759% -Rate for instruction 17663: 17.8764% -Rate for instruction 17664: 17.878% -Rate for instruction 17665: 17.8777% -Rate for instruction 17666: 17.8784% -Rate for instruction 17667: 17.8789% -Rate for instruction 17668: 17.8801% -Rate for instruction 17669: 17.8802% -Rate for instruction 17670: 17.8796% -Rate for instruction 17671: 17.8797% -Rate for instruction 17672: 17.8799% -Rate for instruction 17673: 17.8809% -Rate for instruction 17674: 17.8805% -Rate for instruction 17675: 17.8797% -Rate for instruction 17676: 17.8805% -Rate for instruction 17677: 17.8805% -Rate for instruction 17678: 17.8811% -Rate for instruction 17679: 17.8816% -Rate for instruction 17680: 17.881% -Rate for instruction 17681: 17.8802% -Rate for instruction 17682: 17.8796% -Rate for instruction 17683: 17.8793% -Rate for instruction 17684: 17.8785% -Rate for instruction 17685: 17.8779% -Rate for instruction 17686: 17.8778% -Rate for instruction 17687: 17.8785% -Rate for instruction 17688: 17.8786% -Rate for instruction 17689: 17.8778% -Rate for instruction 17690: 17.8776% -Rate for instruction 17691: 17.8771% -Rate for instruction 17692: 17.8769% -Rate for instruction 17693: 17.8766% -Rate for instruction 17694: 17.876% -Rate for instruction 17695: 17.8761% -Rate for instruction 17696: 17.8763% -Rate for instruction 17697: 17.8764% -Rate for instruction 17698: 17.8761% -Rate for instruction 17699: 17.8755% -Rate for instruction 17700: 17.8758% -Rate for instruction 17701: 17.8754% -Rate for instruction 17702: 17.8766% -Rate for instruction 17703: 17.8769% -Rate for instruction 17704: 17.8765% -Rate for instruction 17705: 17.8757% -Rate for instruction 17706: 17.876% -Rate for instruction 17707: 17.8757% -Rate for instruction 17708: 17.8757% -Rate for instruction 17709: 17.8765% -Rate for instruction 17710: 17.8757% -Rate for instruction 17711: 17.8771% -Rate for instruction 17712: 17.8767% -Rate for instruction 17713: 17.8781% -Rate for instruction 17714: 17.879% -Rate for instruction 17715: 17.8789% -Rate for instruction 17716: 17.8785% -Rate for instruction 17717: 17.8782% -Rate for instruction 17718: 17.8776% -Rate for instruction 17719: 17.8777% -Rate for instruction 17720: 17.8775% -Rate for instruction 17721: 17.8774% -Rate for instruction 17722: 17.8772% -Rate for instruction 17723: 17.8771% -Rate for instruction 17724: 17.8765% -Rate for instruction 17725: 17.8762% -Rate for instruction 17726: 17.8758% -Rate for instruction 17727: 17.8759% -Rate for instruction 17728: 17.8753% -Rate for instruction 17729: 17.8745% -Rate for instruction 17730: 17.8755% -Rate for instruction 17731: 17.8762% -Rate for instruction 17732: 17.8756% -Rate for instruction 17733: 17.8757% -Rate for instruction 17734: 17.8769% -Rate for instruction 17735: 17.8763% -Rate for instruction 17736: 17.8774% -Rate for instruction 17737: 17.8782% -Rate for instruction 17738: 17.8785% -Rate for instruction 17739: 17.8783% -Rate for instruction 17740: 17.878% -Rate for instruction 17741: 17.8774% -Rate for instruction 17742: 17.8773% -Rate for instruction 17743: 17.8769% -Rate for instruction 17744: 17.8772% -Rate for instruction 17745: 17.8777% -Rate for instruction 17746: 17.8776% -Rate for instruction 17747: 17.8776% -Rate for instruction 17748: 17.8768% -Rate for instruction 17749: 17.8769% -Rate for instruction 17750: 17.8761% -Rate for instruction 17751: 17.8769% -Rate for instruction 17752: 17.8767% -Rate for instruction 17753: 17.8766% -Rate for instruction 17754: 17.8773% -Rate for instruction 17755: 17.878% -Rate for instruction 17756: 17.8779% -Rate for instruction 17757: 17.8788% -Rate for instruction 17758: 17.88% -Rate for instruction 17759: 17.8814% -Rate for instruction 17760: 17.8823% -Rate for instruction 17761: 17.883% -Rate for instruction 17762: 17.8844% -Rate for instruction 17763: 17.8856% -Rate for instruction 17764: 17.8863% -Rate for instruction 17765: 17.8877% -Rate for instruction 17766: 17.8869% -Rate for instruction 17767: 17.8863% -Rate for instruction 17768: 17.8875% -Rate for instruction 17769: 17.8888% -Rate for instruction 17770: 17.8893% -Rate for instruction 17771: 17.8899% -Rate for instruction 17772: 17.8891% -Rate for instruction 17773: 17.8904% -Rate for instruction 17774: 17.8896% -Rate for instruction 17775: 17.8899% -Rate for instruction 17776: 17.8902% -Rate for instruction 17777: 17.8912% -Rate for instruction 17778: 17.8915% -Rate for instruction 17779: 17.8915% -Rate for instruction 17780: 17.8916% -Rate for instruction 17781: 17.8915% -Rate for instruction 17782: 17.8911% -Rate for instruction 17783: 17.8903% -Rate for instruction 17784: 17.8898% -Rate for instruction 17785: 17.889% -Rate for instruction 17786: 17.889% -Rate for instruction 17787: 17.8882% -Rate for instruction 17788: 17.889% -Rate for instruction 17789: 17.8884% -Rate for instruction 17790: 17.8876% -Rate for instruction 17791: 17.887% -Rate for instruction 17792: 17.8862% -Rate for instruction 17793: 17.8857% -Rate for instruction 17794: 17.8868% -Rate for instruction 17795: 17.8867% -Rate for instruction 17796: 17.8885% -Rate for instruction 17797: 17.8886% -Rate for instruction 17798: 17.8882% -Rate for instruction 17799: 17.8879% -Rate for instruction 17800: 17.8879% -Rate for instruction 17801: 17.8878% -Rate for instruction 17802: 17.8874% -Rate for instruction 17803: 17.8866% -Rate for instruction 17804: 17.8859% -Rate for instruction 17805: 17.887% -Rate for instruction 17806: 17.8869% -Rate for instruction 17807: 17.8863% -Rate for instruction 17808: 17.8855% -Rate for instruction 17809: 17.8847% -Rate for instruction 17810: 17.8839% -Rate for instruction 17811: 17.8855% -Rate for instruction 17812: 17.8858% -Rate for instruction 17813: 17.8857% -Rate for instruction 17814: 17.8868% -Rate for instruction 17815: 17.886% -Rate for instruction 17816: 17.8868% -Rate for instruction 17817: 17.8864% -Rate for instruction 17818: 17.8861% -Rate for instruction 17819: 17.8855% -Rate for instruction 17820: 17.8851% -Rate for instruction 17821: 17.8846% -Rate for instruction 17822: 17.884% -Rate for instruction 17823: 17.8856% -Rate for instruction 17824: 17.8872% -Rate for instruction 17825: 17.8868% -Rate for instruction 17826: 17.8864% -Rate for instruction 17827: 17.8876% -Rate for instruction 17828: 17.8875% -Rate for instruction 17829: 17.8875% -Rate for instruction 17830: 17.8872% -Rate for instruction 17831: 17.8866% -Rate for instruction 17832: 17.886% -Rate for instruction 17833: 17.8857% -Rate for instruction 17834: 17.8853% -Rate for instruction 17835: 17.8858% -Rate for instruction 17836: 17.8857% -Rate for instruction 17837: 17.8862% -Rate for instruction 17838: 17.8854% -Rate for instruction 17839: 17.8872% -Rate for instruction 17840: 17.8884% -Rate for instruction 17841: 17.888% -Rate for instruction 17842: 17.8883% -Rate for instruction 17843: 17.8888% -Rate for instruction 17844: 17.8899% -Rate for instruction 17845: 17.8913% -Rate for instruction 17846: 17.891% -Rate for instruction 17847: 17.8902% -Rate for instruction 17848: 17.8898% -Rate for instruction 17849: 17.8892% -Rate for instruction 17850: 17.8885% -Rate for instruction 17851: 17.8885% -Rate for instruction 17852: 17.8882% -Rate for instruction 17853: 17.8885% -Rate for instruction 17854: 17.8877% -Rate for instruction 17855: 17.8869% -Rate for instruction 17856: 17.8874% -Rate for instruction 17857: 17.8879% -Rate for instruction 17858: 17.8873% -Rate for instruction 17859: 17.887% -Rate for instruction 17860: 17.8886% -Rate for instruction 17861: 17.8882% -Rate for instruction 17862: 17.8894% -Rate for instruction 17863: 17.8903% -Rate for instruction 17864: 17.8895% -Rate for instruction 17865: 17.8896% -Rate for instruction 17866: 17.8907% -Rate for instruction 17867: 17.8906% -Rate for instruction 17868: 17.8909% -Rate for instruction 17869: 17.8912% -Rate for instruction 17870: 17.8913% -Rate for instruction 17871: 17.8918% -Rate for instruction 17872: 17.8923% -Rate for instruction 17873: 17.893% -Rate for instruction 17874: 17.8935% -Rate for instruction 17875: 17.8929% -Rate for instruction 17876: 17.8941% -Rate for instruction 17877: 17.8948% -Rate for instruction 17878: 17.894% -Rate for instruction 17879: 17.8934% -Rate for instruction 17880: 17.8926% -Rate for instruction 17881: 17.8923% -Rate for instruction 17882: 17.8915% -Rate for instruction 17883: 17.8909% -Rate for instruction 17884: 17.8912% -Rate for instruction 17885: 17.8909% -Rate for instruction 17886: 17.8912% -Rate for instruction 17887: 17.891% -Rate for instruction 17888: 17.8911% -Rate for instruction 17889: 17.891% -Rate for instruction 17890: 17.8906% -Rate for instruction 17891: 17.89% -Rate for instruction 17892: 17.8897% -Rate for instruction 17893: 17.8895% -Rate for instruction 17894: 17.8894% -Rate for instruction 17895: 17.8897% -Rate for instruction 17896: 17.8895% -Rate for instruction 17897: 17.889% -Rate for instruction 17898: 17.8899% -Rate for instruction 17899: 17.8906% -Rate for instruction 17900: 17.8916% -Rate for instruction 17901: 17.8925% -Rate for instruction 17902: 17.8924% -Rate for instruction 17903: 17.8916% -Rate for instruction 17904: 17.8914% -Rate for instruction 17905: 17.8911% -Rate for instruction 17906: 17.8903% -Rate for instruction 17907: 17.8906% -Rate for instruction 17908: 17.8909% -Rate for instruction 17909: 17.8905% -Rate for instruction 17910: 17.8902% -Rate for instruction 17911: 17.8898% -Rate for instruction 17912: 17.8895% -Rate for instruction 17913: 17.8906% -Rate for instruction 17914: 17.89% -Rate for instruction 17915: 17.8908% -Rate for instruction 17916: 17.8904% -Rate for instruction 17917: 17.8896% -Rate for instruction 17918: 17.8899% -Rate for instruction 17919: 17.8896% -Rate for instruction 17920: 17.8898% -Rate for instruction 17921: 17.8893% -Rate for instruction 17922: 17.8887% -Rate for instruction 17923: 17.889% -Rate for instruction 17924: 17.8889% -Rate for instruction 17925: 17.8881% -Rate for instruction 17926: 17.8875% -Rate for instruction 17927: 17.8867% -Rate for instruction 17928: 17.887% -Rate for instruction 17929: 17.8873% -Rate for instruction 17930: 17.8867% -Rate for instruction 17931: 17.8859% -Rate for instruction 17932: 17.8869% -Rate for instruction 17933: 17.8872% -Rate for instruction 17934: 17.8868% -Rate for instruction 17935: 17.8865% -Rate for instruction 17936: 17.8861% -Rate for instruction 17937: 17.8862% -Rate for instruction 17938: 17.8867% -Rate for instruction 17939: 17.8861% -Rate for instruction 17940: 17.8866% -Rate for instruction 17941: 17.8865% -Rate for instruction 17942: 17.8859% -Rate for instruction 17943: 17.8851% -Rate for instruction 17944: 17.8846% -Rate for instruction 17945: 17.8842% -Rate for instruction 17946: 17.8843% -Rate for instruction 17947: 17.8839% -Rate for instruction 17948: 17.8838% -Rate for instruction 17949: 17.8839% -Rate for instruction 17950: 17.8839% -Rate for instruction 17951: 17.884% -Rate for instruction 17952: 17.8832% -Rate for instruction 17953: 17.8829% -Rate for instruction 17954: 17.8821% -Rate for instruction 17955: 17.8822% -Rate for instruction 17956: 17.8818% -Rate for instruction 17957: 17.8817% -Rate for instruction 17958: 17.8818% -Rate for instruction 17959: 17.8825% -Rate for instruction 17960: 17.8834% -Rate for instruction 17961: 17.8828% -Rate for instruction 17962: 17.884% -Rate for instruction 17963: 17.8834% -Rate for instruction 17964: 17.8848% -Rate for instruction 17965: 17.8844% -Rate for instruction 17966: 17.8845% -Rate for instruction 17967: 17.8856% -Rate for instruction 17968: 17.8859% -Rate for instruction 17969: 17.8862% -Rate for instruction 17970: 17.8863% -Rate for instruction 17971: 17.8862% -Rate for instruction 17972: 17.8856% -Rate for instruction 17973: 17.8857% -Rate for instruction 17974: 17.8849% -Rate for instruction 17975: 17.885% -Rate for instruction 17976: 17.8844% -Rate for instruction 17977: 17.884% -Rate for instruction 17978: 17.8837% -Rate for instruction 17979: 17.8831% -Rate for instruction 17980: 17.8834% -Rate for instruction 17981: 17.8833% -Rate for instruction 17982: 17.8829% -Rate for instruction 17983: 17.883% -Rate for instruction 17984: 17.8831% -Rate for instruction 17985: 17.8829% -Rate for instruction 17986: 17.8824% -Rate for instruction 17987: 17.8822% -Rate for instruction 17988: 17.8817% -Rate for instruction 17989: 17.8813% -Rate for instruction 17990: 17.8807% -Rate for instruction 17991: 17.8806% -Rate for instruction 17992: 17.8802% -Rate for instruction 17993: 17.8812% -Rate for instruction 17994: 17.8804% -Rate for instruction 17995: 17.8815% -Rate for instruction 17996: 17.8825% -Rate for instruction 17997: 17.8836% -Rate for instruction 17998: 17.8845% -Rate for instruction 17999: 17.8857% -Rate for instruction 18000: 17.886% -Rate for instruction 18001: 17.8867% -Rate for instruction 18002: 17.8863% -Rate for instruction 18003: 17.8856% -Rate for instruction 18004: 17.885% -Rate for instruction 18005: 17.8857% -Rate for instruction 18006: 17.8868% -Rate for instruction 18007: 17.8871% -Rate for instruction 18008: 17.8887% -Rate for instruction 18009: 17.8901% -Rate for instruction 18010: 17.891% -Rate for instruction 18011: 17.8917% -Rate for instruction 18012: 17.8924% -Rate for instruction 18013: 17.8923% -Rate for instruction 18014: 17.8921% -Rate for instruction 18015: 17.8918% -Rate for instruction 18016: 17.8916% -Rate for instruction 18017: 17.8911% -Rate for instruction 18018: 17.8903% -Rate for instruction 18019: 17.89% -Rate for instruction 18020: 17.8892% -Rate for instruction 18021: 17.889% -Rate for instruction 18022: 17.8885% -Rate for instruction 18023: 17.8883% -Rate for instruction 18024: 17.8895% -Rate for instruction 18025: 17.8904% -Rate for instruction 18026: 17.8898% -Rate for instruction 18027: 17.8908% -Rate for instruction 18028: 17.8913% -Rate for instruction 18029: 17.8909% -Rate for instruction 18030: 17.8914% -Rate for instruction 18031: 17.8923% -Rate for instruction 18032: 17.8933% -Rate for instruction 18033: 17.894% -Rate for instruction 18034: 17.8951% -Rate for instruction 18035: 17.8948% -Rate for instruction 18036: 17.8953% -Rate for instruction 18037: 17.8945% -Rate for instruction 18038: 17.8943% -Rate for instruction 18039: 17.8942% -Rate for instruction 18040: 17.8941% -Rate for instruction 18041: 17.895% -Rate for instruction 18042: 17.8942% -Rate for instruction 18043: 17.8951% -Rate for instruction 18044: 17.8944% -Rate for instruction 18045: 17.8951% -Rate for instruction 18046: 17.8958% -Rate for instruction 18047: 17.8952% -Rate for instruction 18048: 17.8949% -Rate for instruction 18049: 17.8945% -Rate for instruction 18050: 17.8937% -Rate for instruction 18051: 17.8934% -Rate for instruction 18052: 17.8928% -Rate for instruction 18053: 17.8938% -Rate for instruction 18054: 17.8932% -Rate for instruction 18055: 17.8939% -Rate for instruction 18056: 17.8953% -Rate for instruction 18057: 17.8949% -Rate for instruction 18058: 17.8943% -Rate for instruction 18059: 17.8951% -Rate for instruction 18060: 17.8956% -Rate for instruction 18061: 17.8948% -Rate for instruction 18062: 17.8942% -Rate for instruction 18063: 17.8934% -Rate for instruction 18064: 17.895% -Rate for instruction 18065: 17.8946% -Rate for instruction 18066: 17.8939% -Rate for instruction 18067: 17.8939% -Rate for instruction 18068: 17.8949% -Rate for instruction 18069: 17.8956% -Rate for instruction 18070: 17.8961% -Rate for instruction 18071: 17.8964% -Rate for instruction 18072: 17.8975% -Rate for instruction 18073: 17.8974% -Rate for instruction 18074: 17.8991% -Rate for instruction 18075: 17.8996% -Rate for instruction 18076: 17.8995% -Rate for instruction 18077: 17.8998% -Rate for instruction 18078: 17.899% -Rate for instruction 18079: 17.8982% -Rate for instruction 18080: 17.8979% -Rate for instruction 18081: 17.898% -Rate for instruction 18082: 17.8989% -Rate for instruction 18083: 17.8983% -Rate for instruction 18084: 17.8994% -Rate for instruction 18085: 17.8989% -Rate for instruction 18086: 17.8994% -Rate for instruction 18087: 17.9005% -Rate for instruction 18088: 17.9014% -Rate for instruction 18089: 17.9019% -Rate for instruction 18090: 17.9033% -Rate for instruction 18091: 17.9044% -Rate for instruction 18092: 17.9054% -Rate for instruction 18093: 17.9056% -Rate for instruction 18094: 17.9053% -Rate for instruction 18095: 17.9051% -Rate for instruction 18096: 17.9046% -Rate for instruction 18097: 17.904% -Rate for instruction 18098: 17.9039% -Rate for instruction 18099: 17.9037% -Rate for instruction 18100: 17.9034% -Rate for instruction 18101: 17.903% -Rate for instruction 18102: 17.9023% -Rate for instruction 18103: 17.9017% -Rate for instruction 18104: 17.9011% -Rate for instruction 18105: 17.9004% -Rate for instruction 18106: 17.9002% -Rate for instruction 18107: 17.9003% -Rate for instruction 18108: 17.8999% -Rate for instruction 18109: 17.9% -Rate for instruction 18110: 17.9005% -Rate for instruction 18111: 17.9006% -Rate for instruction 18112: 17.9004% -Rate for instruction 18113: 17.9007% -Rate for instruction 18114: 17.9% -Rate for instruction 18115: 17.9009% -Rate for instruction 18116: 17.9005% -Rate for instruction 18117: 17.9% -Rate for instruction 18118: 17.9007% -Rate for instruction 18119: 17.9007% -Rate for instruction 18120: 17.9006% -Rate for instruction 18121: 17.902% -Rate for instruction 18122: 17.9022% -Rate for instruction 18123: 17.9025% -Rate for instruction 18124: 17.9018% -Rate for instruction 18125: 17.9022% -Rate for instruction 18126: 17.9017% -Rate for instruction 18127: 17.9024% -Rate for instruction 18128: 17.9016% -Rate for instruction 18129: 17.9023% -Rate for instruction 18130: 17.9016% -Rate for instruction 18131: 17.9008% -Rate for instruction 18132: 17.9002% -Rate for instruction 18133: 17.8994% -Rate for instruction 18134: 17.8989% -Rate for instruction 18135: 17.8981% -Rate for instruction 18136: 17.8988% -Rate for instruction 18137: 17.898% -Rate for instruction 18138: 17.8975% -Rate for instruction 18139: 17.8978% -Rate for instruction 18140: 17.8978% -Rate for instruction 18141: 17.8977% -Rate for instruction 18142: 17.8978% -Rate for instruction 18143: 17.8974% -Rate for instruction 18144: 17.8966% -Rate for instruction 18145: 17.8967% -Rate for instruction 18146: 17.8968% -Rate for instruction 18147: 17.8973% -Rate for instruction 18148: 17.8976% -Rate for instruction 18149: 17.8972% -Rate for instruction 18150: 17.8967% -Rate for instruction 18151: 17.8963% -Rate for instruction 18152: 17.8962% -Rate for instruction 18153: 17.8962% -Rate for instruction 18154: 17.8963% -Rate for instruction 18155: 17.8955% -Rate for instruction 18156: 17.8948% -Rate for instruction 18157: 17.8951% -Rate for instruction 18158: 17.8945% -Rate for instruction 18159: 17.8941% -Rate for instruction 18160: 17.8942% -Rate for instruction 18161: 17.8941% -Rate for instruction 18162: 17.8935% -Rate for instruction 18163: 17.8936% -Rate for instruction 18164: 17.8928% -Rate for instruction 18165: 17.8925% -Rate for instruction 18166: 17.8928% -Rate for instruction 18167: 17.892% -Rate for instruction 18168: 17.8914% -Rate for instruction 18169: 17.8911% -Rate for instruction 18170: 17.8907% -Rate for instruction 18171: 17.8899% -Rate for instruction 18172: 17.8904% -Rate for instruction 18173: 17.8897% -Rate for instruction 18174: 17.8891% -Rate for instruction 18175: 17.8883% -Rate for instruction 18176: 17.8884% -Rate for instruction 18177: 17.8885% -Rate for instruction 18178: 17.8879% -Rate for instruction 18179: 17.8882% -Rate for instruction 18180: 17.8889% -Rate for instruction 18181: 17.8896% -Rate for instruction 18182: 17.8899% -Rate for instruction 18183: 17.8896% -Rate for instruction 18184: 17.8903% -Rate for instruction 18185: 17.8906% -Rate for instruction 18186: 17.8908% -Rate for instruction 18187: 17.8913% -Rate for instruction 18188: 17.8912% -Rate for instruction 18189: 17.8909% -Rate for instruction 18190: 17.8907% -Rate for instruction 18191: 17.8904% -Rate for instruction 18192: 17.8898% -Rate for instruction 18193: 17.8895% -Rate for instruction 18194: 17.8889% -Rate for instruction 18195: 17.8885% -Rate for instruction 18196: 17.8882% -Rate for instruction 18197: 17.8878% -Rate for instruction 18198: 17.8877% -Rate for instruction 18199: 17.8869% -Rate for instruction 18200: 17.8864% -Rate for instruction 18201: 17.8858% -Rate for instruction 18202: 17.8859% -Rate for instruction 18203: 17.8864% -Rate for instruction 18204: 17.8875% -Rate for instruction 18205: 17.887% -Rate for instruction 18206: 17.8868% -Rate for instruction 18207: 17.8861% -Rate for instruction 18208: 17.8861% -Rate for instruction 18209: 17.8854% -Rate for instruction 18210: 17.8848% -Rate for instruction 18211: 17.8849% -Rate for instruction 18212: 17.8841% -Rate for instruction 18213: 17.8852% -Rate for instruction 18214: 17.8845% -Rate for instruction 18215: 17.8845% -Rate for instruction 18216: 17.8852% -Rate for instruction 18217: 17.8855% -Rate for instruction 18218: 17.8862% -Rate for instruction 18219: 17.8876% -Rate for instruction 18220: 17.8868% -Rate for instruction 18221: 17.8884% -Rate for instruction 18222: 17.8891% -Rate for instruction 18223: 17.8891% -Rate for instruction 18224: 17.8896% -Rate for instruction 18225: 17.8895% -Rate for instruction 18226: 17.8898% -Rate for instruction 18227: 17.8892% -Rate for instruction 18228: 17.8891% -Rate for instruction 18229: 17.8885% -Rate for instruction 18230: 17.888% -Rate for instruction 18231: 17.8872% -Rate for instruction 18232: 17.8864% -Rate for instruction 18233: 17.8863% -Rate for instruction 18234: 17.8855% -Rate for instruction 18235: 17.8847% -Rate for instruction 18236: 17.8846% -Rate for instruction 18237: 17.8843% -Rate for instruction 18238: 17.8835% -Rate for instruction 18239: 17.884% -Rate for instruction 18240: 17.8847% -Rate for instruction 18241: 17.8852% -Rate for instruction 18242: 17.8859% -Rate for instruction 18243: 17.886% -Rate for instruction 18244: 17.8869% -Rate for instruction 18245: 17.8878% -Rate for instruction 18246: 17.887% -Rate for instruction 18247: 17.8867% -Rate for instruction 18248: 17.8859% -Rate for instruction 18249: 17.8854% -Rate for instruction 18250: 17.8861% -Rate for instruction 18251: 17.8868% -Rate for instruction 18252: 17.8877% -Rate for instruction 18253: 17.8871% -Rate for instruction 18254: 17.8864% -Rate for instruction 18255: 17.8858% -Rate for instruction 18256: 17.8863% -Rate for instruction 18257: 17.888% -Rate for instruction 18258: 17.8877% -Rate for instruction 18259: 17.8869% -Rate for instruction 18260: 17.8864% -Rate for instruction 18261: 17.8856% -Rate for instruction 18262: 17.8855% -Rate for instruction 18263: 17.8847% -Rate for instruction 18264: 17.8841% -Rate for instruction 18265: 17.8842% -Rate for instruction 18266: 17.8843% -Rate for instruction 18267: 17.8842% -Rate for instruction 18268: 17.8838% -Rate for instruction 18269: 17.8832% -Rate for instruction 18270: 17.8831% -Rate for instruction 18271: 17.883% -Rate for instruction 18272: 17.8824% -Rate for instruction 18273: 17.8825% -Rate for instruction 18274: 17.8821% -Rate for instruction 18275: 17.8818% -Rate for instruction 18276: 17.8817% -Rate for instruction 18277: 17.8815% -Rate for instruction 18278: 17.8816% -Rate for instruction 18279: 17.8812% -Rate for instruction 18280: 17.8817% -Rate for instruction 18281: 17.8812% -Rate for instruction 18282: 17.881% -Rate for instruction 18283: 17.8807% -Rate for instruction 18284: 17.8799% -Rate for instruction 18285: 17.8796% -Rate for instruction 18286: 17.8795% -Rate for instruction 18287: 17.8791% -Rate for instruction 18288: 17.8785% -Rate for instruction 18289: 17.878% -Rate for instruction 18290: 17.8774% -Rate for instruction 18291: 17.8767% -Rate for instruction 18292: 17.8767% -Rate for instruction 18293: 17.8768% -Rate for instruction 18294: 17.8767% -Rate for instruction 18295: 17.877% -Rate for instruction 18296: 17.8768% -Rate for instruction 18297: 17.8765% -Rate for instruction 18298: 17.8763% -Rate for instruction 18299: 17.8756% -Rate for instruction 18300: 17.8759% -Rate for instruction 18301: 17.8753% -Rate for instruction 18302: 17.8752% -Rate for instruction 18303: 17.8746% -Rate for instruction 18304: 17.8751% -Rate for instruction 18305: 17.8764% -Rate for instruction 18306: 17.8774% -Rate for instruction 18307: 17.8772% -Rate for instruction 18308: 17.8765% -Rate for instruction 18309: 17.8763% -Rate for instruction 18310: 17.876% -Rate for instruction 18311: 17.8758% -Rate for instruction 18312: 17.8755% -Rate for instruction 18313: 17.8747% -Rate for instruction 18314: 17.8744% -Rate for instruction 18315: 17.8747% -Rate for instruction 18316: 17.8739% -Rate for instruction 18317: 17.8738% -Rate for instruction 18318: 17.8732% -Rate for instruction 18319: 17.8731% -Rate for instruction 18320: 17.8727% -Rate for instruction 18321: 17.8724% -Rate for instruction 18322: 17.8716% -Rate for instruction 18323: 17.8721% -Rate for instruction 18324: 17.8718% -Rate for instruction 18325: 17.872% -Rate for instruction 18326: 17.8713% -Rate for instruction 18327: 17.8707% -Rate for instruction 18328: 17.87% -Rate for instruction 18329: 17.8696% -Rate for instruction 18330: 17.8699% -Rate for instruction 18331: 17.87% -Rate for instruction 18332: 17.8698% -Rate for instruction 18333: 17.8695% -Rate for instruction 18334: 17.8687% -Rate for instruction 18335: 17.8684% -Rate for instruction 18336: 17.8676% -Rate for instruction 18337: 17.8685% -Rate for instruction 18338: 17.8688% -Rate for instruction 18339: 17.8697% -Rate for instruction 18340: 17.8692% -Rate for instruction 18341: 17.8688% -Rate for instruction 18342: 17.8685% -Rate for instruction 18343: 17.8677% -Rate for instruction 18344: 17.8676% -Rate for instruction 18345: 17.8679% -Rate for instruction 18346: 17.8677% -Rate for instruction 18347: 17.8676% -Rate for instruction 18348: 17.8668% -Rate for instruction 18349: 17.8667% -Rate for instruction 18350: 17.8661% -Rate for instruction 18351: 17.8656% -Rate for instruction 18352: 17.8652% -Rate for instruction 18353: 17.8653% -Rate for instruction 18354: 17.866% -Rate for instruction 18355: 17.8653% -Rate for instruction 18356: 17.8651% -Rate for instruction 18357: 17.8656% -Rate for instruction 18358: 17.8663% -Rate for instruction 18359: 17.8674% -Rate for instruction 18360: 17.8686% -Rate for instruction 18361: 17.8684% -Rate for instruction 18362: 17.8677% -Rate for instruction 18363: 17.8686% -Rate for instruction 18364: 17.8695% -Rate for instruction 18365: 17.8687% -Rate for instruction 18366: 17.8701% -Rate for instruction 18367: 17.8712% -Rate for instruction 18368: 17.8704% -Rate for instruction 18369: 17.8701% -Rate for instruction 18370: 17.8695% -Rate for instruction 18371: 17.8692% -Rate for instruction 18372: 17.8686% -Rate for instruction 18373: 17.8683% -Rate for instruction 18374: 17.8679% -Rate for instruction 18375: 17.8672% -Rate for instruction 18376: 17.8672% -Rate for instruction 18377: 17.8677% -Rate for instruction 18378: 17.868% -Rate for instruction 18379: 17.8677% -Rate for instruction 18380: 17.8673% -Rate for instruction 18381: 17.8666% -Rate for instruction 18382: 17.8679% -Rate for instruction 18383: 17.8675% -Rate for instruction 18384: 17.8687% -Rate for instruction 18385: 17.87% -Rate for instruction 18386: 17.8694% -Rate for instruction 18387: 17.8691% -Rate for instruction 18388: 17.8694% -Rate for instruction 18389: 17.8692% -Rate for instruction 18390: 17.8693% -Rate for instruction 18391: 17.8686% -Rate for instruction 18392: 17.8688% -Rate for instruction 18393: 17.8691% -Rate for instruction 18394: 17.869% -Rate for instruction 18395: 17.8691% -Rate for instruction 18396: 17.8685% -Rate for instruction 18397: 17.8686% -Rate for instruction 18398: 17.8697% -Rate for instruction 18399: 17.8696% -Rate for instruction 18400: 17.869% -Rate for instruction 18401: 17.8683% -Rate for instruction 18402: 17.8679% -Rate for instruction 18403: 17.8671% -Rate for instruction 18404: 17.8666% -Rate for instruction 18405: 17.8658% -Rate for instruction 18406: 17.8657% -Rate for instruction 18407: 17.8658% -Rate for instruction 18408: 17.8658% -Rate for instruction 18409: 17.8651% -Rate for instruction 18410: 17.8645% -Rate for instruction 18411: 17.8644% -Rate for instruction 18412: 17.8643% -Rate for instruction 18413: 17.8635% -Rate for instruction 18414: 17.8632% -Rate for instruction 18415: 17.8636% -Rate for instruction 18416: 17.8637% -Rate for instruction 18417: 17.863% -Rate for instruction 18418: 17.8624% -Rate for instruction 18419: 17.8623% -Rate for instruction 18420: 17.8621% -Rate for instruction 18421: 17.862% -Rate for instruction 18422: 17.8615% -Rate for instruction 18423: 17.8619% -Rate for instruction 18424: 17.8612% -Rate for instruction 18425: 17.8608% -Rate for instruction 18426: 17.8607% -Rate for instruction 18427: 17.8604% -Rate for instruction 18428: 17.8598% -Rate for instruction 18429: 17.8597% -Rate for instruction 18430: 17.8598% -Rate for instruction 18431: 17.86% -Rate for instruction 18432: 17.8609% -Rate for instruction 18433: 17.8612% -Rate for instruction 18434: 17.8611% -Rate for instruction 18435: 17.8607% -Rate for instruction 18436: 17.861% -Rate for instruction 18437: 17.8607% -Rate for instruction 18438: 17.8601% -Rate for instruction 18439: 17.8608% -Rate for instruction 18440: 17.8611% -Rate for instruction 18441: 17.8616% -Rate for instruction 18442: 17.8623% -Rate for instruction 18443: 17.863% -Rate for instruction 18444: 17.8623% -Rate for instruction 18445: 17.8615% -Rate for instruction 18446: 17.8609% -Rate for instruction 18447: 17.8606% -Rate for instruction 18448: 17.86% -Rate for instruction 18449: 17.8597% -Rate for instruction 18450: 17.8589% -Rate for instruction 18451: 17.8586% -Rate for instruction 18452: 17.8583% -Rate for instruction 18453: 17.8575% -Rate for instruction 18454: 17.8567% -Rate for instruction 18455: 17.8562% -Rate for instruction 18456: 17.8567% -Rate for instruction 18457: 17.8576% -Rate for instruction 18458: 17.857% -Rate for instruction 18459: 17.8563% -Rate for instruction 18460: 17.857% -Rate for instruction 18461: 17.8571% -Rate for instruction 18462: 17.8567% -Rate for instruction 18463: 17.857% -Rate for instruction 18464: 17.8569% -Rate for instruction 18465: 17.8569% -Rate for instruction 18466: 17.8568% -Rate for instruction 18467: 17.8565% -Rate for instruction 18468: 17.8559% -Rate for instruction 18469: 17.856% -Rate for instruction 18470: 17.8569% -Rate for instruction 18471: 17.8574% -Rate for instruction 18472: 17.8572% -Rate for instruction 18473: 17.8571% -Rate for instruction 18474: 17.8566% -Rate for instruction 18475: 17.856% -Rate for instruction 18476: 17.8557% -Rate for instruction 18477: 17.8557% -Rate for instruction 18478: 17.856% -Rate for instruction 18479: 17.8567% -Rate for instruction 18480: 17.8572% -Rate for instruction 18481: 17.8575% -Rate for instruction 18482: 17.8576% -Rate for instruction 18483: 17.8583% -Rate for instruction 18484: 17.8575% -Rate for instruction 18485: 17.858% -Rate for instruction 18486: 17.8583% -Rate for instruction 18487: 17.8582% -Rate for instruction 18488: 17.8578% -Rate for instruction 18489: 17.8593% -Rate for instruction 18490: 17.8586% -Rate for instruction 18491: 17.8593% -Rate for instruction 18492: 17.8602% -Rate for instruction 18493: 17.8615% -Rate for instruction 18494: 17.8624% -Rate for instruction 18495: 17.8631% -Rate for instruction 18496: 17.8628% -Rate for instruction 18497: 17.8641% -Rate for instruction 18498: 17.8642% -Rate for instruction 18499: 17.8647% -Rate for instruction 18500: 17.8645% -Rate for instruction 18501: 17.8652% -Rate for instruction 18502: 17.8659% -Rate for instruction 18503: 17.8654% -Rate for instruction 18504: 17.8654% -Rate for instruction 18505: 17.8651% -Rate for instruction 18506: 17.8643% -Rate for instruction 18507: 17.864% -Rate for instruction 18508: 17.8637% -Rate for instruction 18509: 17.8639% -Rate for instruction 18510: 17.8638% -Rate for instruction 18511: 17.8633% -Rate for instruction 18512: 17.8627% -Rate for instruction 18513: 17.8624% -Rate for instruction 18514: 17.8622% -Rate for instruction 18515: 17.8617% -Rate for instruction 18516: 17.8624% -Rate for instruction 18517: 17.8616% -Rate for instruction 18518: 17.8617% -Rate for instruction 18519: 17.8611% -Rate for instruction 18520: 17.8621% -Rate for instruction 18521: 17.8613% -Rate for instruction 18522: 17.8616% -Rate for instruction 18523: 17.8617% -Rate for instruction 18524: 17.8609% -Rate for instruction 18525: 17.8603% -Rate for instruction 18526: 17.8606% -Rate for instruction 18527: 17.8613% -Rate for instruction 18528: 17.8618% -Rate for instruction 18529: 17.8621% -Rate for instruction 18530: 17.8626% -Rate for instruction 18531: 17.8633% -Rate for instruction 18532: 17.8636% -Rate for instruction 18533: 17.8636% -Rate for instruction 18534: 17.8639% -Rate for instruction 18535: 17.8644% -Rate for instruction 18536: 17.8636% -Rate for instruction 18537: 17.8629% -Rate for instruction 18538: 17.863% -Rate for instruction 18539: 17.8622% -Rate for instruction 18540: 17.8617% -Rate for instruction 18541: 17.8609% -Rate for instruction 18542: 17.8606% -Rate for instruction 18543: 17.86% -Rate for instruction 18544: 17.8601% -Rate for instruction 18545: 17.8595% -Rate for instruction 18546: 17.8594% -Rate for instruction 18547: 17.8589% -Rate for instruction 18548: 17.8587% -Rate for instruction 18549: 17.8598% -Rate for instruction 18550: 17.8591% -Rate for instruction 18551: 17.8598% -Rate for instruction 18552: 17.8603% -Rate for instruction 18553: 17.8597% -Rate for instruction 18554: 17.8602% -Rate for instruction 18555: 17.8597% -Rate for instruction 18556: 17.8593% -Rate for instruction 18557: 17.8604% -Rate for instruction 18558: 17.8609% -Rate for instruction 18559: 17.8618% -Rate for instruction 18560: 17.8611% -Rate for instruction 18561: 17.8611% -Rate for instruction 18562: 17.8604% -Rate for instruction 18563: 17.8611% -Rate for instruction 18564: 17.8616% -Rate for instruction 18565: 17.8608% -Rate for instruction 18566: 17.8609% -Rate for instruction 18567: 17.8603% -Rate for instruction 18568: 17.8612% -Rate for instruction 18569: 17.8605% -Rate for instruction 18570: 17.861% -Rate for instruction 18571: 17.8606% -Rate for instruction 18572: 17.8613% -Rate for instruction 18573: 17.8614% -Rate for instruction 18574: 17.8625% -Rate for instruction 18575: 17.8622% -Rate for instruction 18576: 17.8631% -Rate for instruction 18577: 17.8627% -Rate for instruction 18578: 17.8622% -Rate for instruction 18579: 17.8618% -Rate for instruction 18580: 17.8615% -Rate for instruction 18581: 17.862% -Rate for instruction 18582: 17.8627% -Rate for instruction 18583: 17.8623% -Rate for instruction 18584: 17.863% -Rate for instruction 18585: 17.8627% -Rate for instruction 18586: 17.8628% -Rate for instruction 18587: 17.862% -Rate for instruction 18588: 17.8617% -Rate for instruction 18589: 17.8624% -Rate for instruction 18590: 17.8627% -Rate for instruction 18591: 17.8627% -Rate for instruction 18592: 17.862% -Rate for instruction 18593: 17.8625% -Rate for instruction 18594: 17.8619% -Rate for instruction 18595: 17.8618% -Rate for instruction 18596: 17.861% -Rate for instruction 18597: 17.8623% -Rate for instruction 18598: 17.8626% -Rate for instruction 18599: 17.8623% -Rate for instruction 18600: 17.863% -Rate for instruction 18601: 17.8639% -Rate for instruction 18602: 17.8646% -Rate for instruction 18603: 17.8651% -Rate for instruction 18604: 17.8662% -Rate for instruction 18605: 17.866% -Rate for instruction 18606: 17.8653% -Rate for instruction 18607: 17.8651% -Rate for instruction 18608: 17.8648% -Rate for instruction 18609: 17.8645% -Rate for instruction 18610: 17.8637% -Rate for instruction 18611: 17.863% -Rate for instruction 18612: 17.8626% -Rate for instruction 18613: 17.8627% -Rate for instruction 18614: 17.863% -Rate for instruction 18615: 17.8628% -Rate for instruction 18616: 17.8639% -Rate for instruction 18617: 17.864% -Rate for instruction 18618: 17.8637% -Rate for instruction 18619: 17.8635% -Rate for instruction 18620: 17.8644% -Rate for instruction 18621: 17.8639% -Rate for instruction 18622: 17.8652% -Rate for instruction 18623: 17.8655% -Rate for instruction 18624: 17.8666% -Rate for instruction 18625: 17.8667% -Rate for instruction 18626: 17.8663% -Rate for instruction 18627: 17.8662% -Rate for instruction 18628: 17.8681% -Rate for instruction 18629: 17.869% -Rate for instruction 18630: 17.8689% -Rate for instruction 18631: 17.8681% -Rate for instruction 18632: 17.8678% -Rate for instruction 18633: 17.8675% -Rate for instruction 18634: 17.8673% -Rate for instruction 18635: 17.8668% -Rate for instruction 18636: 17.866% -Rate for instruction 18637: 17.8655% -Rate for instruction 18638: 17.8649% -Rate for instruction 18639: 17.8654% -Rate for instruction 18640: 17.8647% -Rate for instruction 18641: 17.8639% -Rate for instruction 18642: 17.8634% -Rate for instruction 18643: 17.863% -Rate for instruction 18644: 17.8633% -Rate for instruction 18645: 17.8634% -Rate for instruction 18646: 17.8633% -Rate for instruction 18647: 17.8627% -Rate for instruction 18648: 17.8626% -Rate for instruction 18649: 17.862% -Rate for instruction 18650: 17.8623% -Rate for instruction 18651: 17.863% -Rate for instruction 18652: 17.8635% -Rate for instruction 18653: 17.8627% -Rate for instruction 18654: 17.8643% -Rate for instruction 18655: 17.8647% -Rate for instruction 18656: 17.864% -Rate for instruction 18657: 17.8651% -Rate for instruction 18658: 17.8658% -Rate for instruction 18659: 17.8675% -Rate for instruction 18660: 17.867% -Rate for instruction 18661: 17.8683% -Rate for instruction 18662: 17.8681% -Rate for instruction 18663: 17.8692% -Rate for instruction 18664: 17.8689% -Rate for instruction 18665: 17.869% -Rate for instruction 18666: 17.8693% -Rate for instruction 18667: 17.8689% -Rate for instruction 18668: 17.8684% -Rate for instruction 18669: 17.8689% -Rate for instruction 18670: 17.8689% -Rate for instruction 18671: 17.8682% -Rate for instruction 18672: 17.8683% -Rate for instruction 18673: 17.8677% -Rate for instruction 18674: 17.867% -Rate for instruction 18675: 17.8666% -Rate for instruction 18676: 17.8659% -Rate for instruction 18677: 17.8661% -Rate for instruction 18678: 17.8656% -Rate for instruction 18679: 17.8655% -Rate for instruction 18680: 17.8664% -Rate for instruction 18681: 17.8668% -Rate for instruction 18682: 17.8667% -Rate for instruction 18683: 17.866% -Rate for instruction 18684: 17.8662% -Rate for instruction 18685: 17.8659% -Rate for instruction 18686: 17.866% -Rate for instruction 18687: 17.8658% -Rate for instruction 18688: 17.8663% -Rate for instruction 18689: 17.8668% -Rate for instruction 18690: 17.8677% -Rate for instruction 18691: 17.8682% -Rate for instruction 18692: 17.8681% -Rate for instruction 18693: 17.8679% -Rate for instruction 18694: 17.8674% -Rate for instruction 18695: 17.8675% -Rate for instruction 18696: 17.8677% -Rate for instruction 18697: 17.867% -Rate for instruction 18698: 17.8671% -Rate for instruction 18699: 17.8673% -Rate for instruction 18700: 17.8668% -Rate for instruction 18701: 17.866% -Rate for instruction 18702: 17.8663% -Rate for instruction 18703: 17.8666% -Rate for instruction 18704: 17.8667% -Rate for instruction 18705: 17.8672% -Rate for instruction 18706: 17.8674% -Rate for instruction 18707: 17.8673% -Rate for instruction 18708: 17.8666% -Rate for instruction 18709: 17.866% -Rate for instruction 18710: 17.8653% -Rate for instruction 18711: 17.8651% -Rate for instruction 18712: 17.8646% -Rate for instruction 18713: 17.864% -Rate for instruction 18714: 17.8639% -Rate for instruction 18715: 17.8642% -Rate for instruction 18716: 17.8645% -Rate for instruction 18717: 17.865% -Rate for instruction 18718: 17.865% -Rate for instruction 18719: 17.8647% -Rate for instruction 18720: 17.8646% -Rate for instruction 18721: 17.8642% -Rate for instruction 18722: 17.8639% -Rate for instruction 18723: 17.8635% -Rate for instruction 18724: 17.8644% -Rate for instruction 18725: 17.8649% -Rate for instruction 18726: 17.8642% -Rate for instruction 18727: 17.8644% -Rate for instruction 18728: 17.8653% -Rate for instruction 18729: 17.866% -Rate for instruction 18730: 17.8667% -Rate for instruction 18731: 17.8666% -Rate for instruction 18732: 17.8667% -Rate for instruction 18733: 17.8665% -Rate for instruction 18734: 17.8668% -Rate for instruction 18735: 17.8675% -Rate for instruction 18736: 17.867% -Rate for instruction 18737: 17.867% -Rate for instruction 18738: 17.8667% -Rate for instruction 18739: 17.8663% -Rate for instruction 18740: 17.8662% -Rate for instruction 18741: 17.8663% -Rate for instruction 18742: 17.8657% -Rate for instruction 18743: 17.8664% -Rate for instruction 18744: 17.8667% -Rate for instruction 18745: 17.866% -Rate for instruction 18746: 17.8652% -Rate for instruction 18747: 17.8647% -Rate for instruction 18748: 17.8647% -Rate for instruction 18749: 17.8642% -Rate for instruction 18750: 17.8635% -Rate for instruction 18751: 17.8629% -Rate for instruction 18752: 17.8626% -Rate for instruction 18753: 17.862% -Rate for instruction 18754: 17.8623% -Rate for instruction 18755: 17.862% -Rate for instruction 18756: 17.862% -Rate for instruction 18757: 17.8621% -Rate for instruction 18758: 17.8626% -Rate for instruction 18759: 17.8625% -Rate for instruction 18760: 17.8623% -Rate for instruction 18761: 17.8624% -Rate for instruction 18762: 17.8623% -Rate for instruction 18763: 17.863% -Rate for instruction 18764: 17.8641% -Rate for instruction 18765: 17.8635% -Rate for instruction 18766: 17.8638% -Rate for instruction 18767: 17.8641% -Rate for instruction 18768: 17.8639% -Rate for instruction 18769: 17.8632% -Rate for instruction 18770: 17.8629% -Rate for instruction 18771: 17.8627% -Rate for instruction 18772: 17.8626% -Rate for instruction 18773: 17.8625% -Rate for instruction 18774: 17.8619% -Rate for instruction 18775: 17.8618% -Rate for instruction 18776: 17.8619% -Rate for instruction 18777: 17.8617% -Rate for instruction 18778: 17.862% -Rate for instruction 18779: 17.8615% -Rate for instruction 18780: 17.8607% -Rate for instruction 18781: 17.8602% -Rate for instruction 18782: 17.8603% -Rate for instruction 18783: 17.8599% -Rate for instruction 18784: 17.8592% -Rate for instruction 18785: 17.8592% -Rate for instruction 18786: 17.8589% -Rate for instruction 18787: 17.86% -Rate for instruction 18788: 17.8595% -Rate for instruction 18789: 17.8604% -Rate for instruction 18790: 17.86% -Rate for instruction 18791: 17.8597% -Rate for instruction 18792: 17.8608% -Rate for instruction 18793: 17.8613% -Rate for instruction 18794: 17.8605% -Rate for instruction 18795: 17.8616% -Rate for instruction 18796: 17.8619% -Rate for instruction 18797: 17.8624% -Rate for instruction 18798: 17.8627% -Rate for instruction 18799: 17.8621% -Rate for instruction 18800: 17.8626% -Rate for instruction 18801: 17.8627% -Rate for instruction 18802: 17.8619% -Rate for instruction 18803: 17.8618% -Rate for instruction 18804: 17.8617% -Rate for instruction 18805: 17.8609% -Rate for instruction 18806: 17.8604% -Rate for instruction 18807: 17.8598% -Rate for instruction 18808: 17.8597% -Rate for instruction 18809: 17.859% -Rate for instruction 18810: 17.8582% -Rate for instruction 18811: 17.8577% -Rate for instruction 18812: 17.8569% -Rate for instruction 18813: 17.8568% -Rate for instruction 18814: 17.8575% -Rate for instruction 18815: 17.858% -Rate for instruction 18816: 17.8576% -Rate for instruction 18817: 17.8587% -Rate for instruction 18818: 17.8584% -Rate for instruction 18819: 17.8595% -Rate for instruction 18820: 17.8587% -Rate for instruction 18821: 17.858% -Rate for instruction 18822: 17.8572% -Rate for instruction 18823: 17.8567% -Rate for instruction 18824: 17.8568% -Rate for instruction 18825: 17.8566% -Rate for instruction 18826: 17.8563% -Rate for instruction 18827: 17.857% -Rate for instruction 18828: 17.8581% -Rate for instruction 18829: 17.8588% -Rate for instruction 18830: 17.8586% -Rate for instruction 18831: 17.8589% -Rate for instruction 18832: 17.8594% -Rate for instruction 18833: 17.8601% -Rate for instruction 18834: 17.8612% -Rate for instruction 18835: 17.8604% -Rate for instruction 18836: 17.8601% -Rate for instruction 18837: 17.8594% -Rate for instruction 18838: 17.8588% -Rate for instruction 18839: 17.8581% -Rate for instruction 18840: 17.8588% -Rate for instruction 18841: 17.8594% -Rate for instruction 18842: 17.8591% -Rate for instruction 18843: 17.8596% -Rate for instruction 18844: 17.8593% -Rate for instruction 18845: 17.8587% -Rate for instruction 18846: 17.8592% -Rate for instruction 18847: 17.8593% -Rate for instruction 18848: 17.8589% -Rate for instruction 18849: 17.8596% -Rate for instruction 18850: 17.8593% -Rate for instruction 18851: 17.8596% -Rate for instruction 18852: 17.8596% -Rate for instruction 18853: 17.8599% -Rate for instruction 18854: 17.8602% -Rate for instruction 18855: 17.8607% -Rate for instruction 18856: 17.8607% -Rate for instruction 18857: 17.86% -Rate for instruction 18858: 17.8597% -Rate for instruction 18859: 17.8595% -Rate for instruction 18860: 17.86% -Rate for instruction 18861: 17.8599% -Rate for instruction 18862: 17.8597% -Rate for instruction 18863: 17.8592% -Rate for instruction 18864: 17.8591% -Rate for instruction 18865: 17.8592% -Rate for instruction 18866: 17.8586% -Rate for instruction 18867: 17.8583% -Rate for instruction 18868: 17.8579% -Rate for instruction 18869: 17.8574% -Rate for instruction 18870: 17.8573% -Rate for instruction 18871: 17.8573% -Rate for instruction 18872: 17.8574% -Rate for instruction 18873: 17.8577% -Rate for instruction 18874: 17.8572% -Rate for instruction 18875: 17.8566% -Rate for instruction 18876: 17.8567% -Rate for instruction 18877: 17.8566% -Rate for instruction 18878: 17.857% -Rate for instruction 18879: 17.8565% -Rate for instruction 18880: 17.8566% -Rate for instruction 18881: 17.8558% -Rate for instruction 18882: 17.8553% -Rate for instruction 18883: 17.8556% -Rate for instruction 18884: 17.8548% -Rate for instruction 18885: 17.8547% -Rate for instruction 18886: 17.8542% -Rate for instruction 18887: 17.8536% -Rate for instruction 18888: 17.8533% -Rate for instruction 18889: 17.8534% -Rate for instruction 18890: 17.853% -Rate for instruction 18891: 17.8531% -Rate for instruction 18892: 17.8532% -Rate for instruction 18893: 17.8532% -Rate for instruction 18894: 17.8525% -Rate for instruction 18895: 17.8524% -Rate for instruction 18896: 17.8537% -Rate for instruction 18897: 17.8552% -Rate for instruction 18898: 17.8554% -Rate for instruction 18899: 17.8561% -Rate for instruction 18900: 17.8554% -Rate for instruction 18901: 17.855% -Rate for instruction 18902: 17.8543% -Rate for instruction 18903: 17.855% -Rate for instruction 18904: 17.8547% -Rate for instruction 18905: 17.8543% -Rate for instruction 18906: 17.8544% -Rate for instruction 18907: 17.8539% -Rate for instruction 18908: 17.8543% -Rate for instruction 18909: 17.8542% -Rate for instruction 18910: 17.8541% -Rate for instruction 18911: 17.8544% -Rate for instruction 18912: 17.8546% -Rate for instruction 18913: 17.8549% -Rate for instruction 18914: 17.8552% -Rate for instruction 18915: 17.8546% -Rate for instruction 18916: 17.8551% -Rate for instruction 18917: 17.8554% -Rate for instruction 18918: 17.8549% -Rate for instruction 18919: 17.8551% -Rate for instruction 18920: 17.8562% -Rate for instruction 18921: 17.8569% -Rate for instruction 18922: 17.8578% -Rate for instruction 18923: 17.8593% -Rate for instruction 18924: 17.8602% -Rate for instruction 18925: 17.8596% -Rate for instruction 18926: 17.8593% -Rate for instruction 18927: 17.8592% -Rate for instruction 18928: 17.8584% -Rate for instruction 18929: 17.8577% -Rate for instruction 18930: 17.8572% -Rate for instruction 18931: 17.8584% -Rate for instruction 18932: 17.8595% -Rate for instruction 18933: 17.859% -Rate for instruction 18934: 17.8597% -Rate for instruction 18935: 17.8591% -Rate for instruction 18936: 17.8596% -Rate for instruction 18937: 17.8599% -Rate for instruction 18938: 17.8592% -Rate for instruction 18939: 17.8592% -Rate for instruction 18940: 17.8601% -Rate for instruction 18941: 17.8596% -Rate for instruction 18942: 17.8603% -Rate for instruction 18943: 17.8611% -Rate for instruction 18944: 17.8606% -Rate for instruction 18945: 17.8603% -Rate for instruction 18946: 17.8595% -Rate for instruction 18947: 17.8594% -Rate for instruction 18948: 17.8601% -Rate for instruction 18949: 17.862% -Rate for instruction 18950: 17.8629% -Rate for instruction 18951: 17.8631% -Rate for instruction 18952: 17.863% -Rate for instruction 18953: 17.8631% -Rate for instruction 18954: 17.8638% -Rate for instruction 18955: 17.8632% -Rate for instruction 18956: 17.8627% -Rate for instruction 18957: 17.863% -Rate for instruction 18958: 17.8622% -Rate for instruction 18959: 17.8625% -Rate for instruction 18960: 17.862% -Rate for instruction 18961: 17.8612% -Rate for instruction 18962: 17.8607% -Rate for instruction 18963: 17.8604% -Rate for instruction 18964: 17.8596% -Rate for instruction 18965: 17.8591% -Rate for instruction 18966: 17.8596% -Rate for instruction 18967: 17.8588% -Rate for instruction 18968: 17.8589% -Rate for instruction 18969: 17.8592% -Rate for instruction 18970: 17.8594% -Rate for instruction 18971: 17.8591% -Rate for instruction 18972: 17.859% -Rate for instruction 18973: 17.8586% -Rate for instruction 18974: 17.8585% -Rate for instruction 18975: 17.859% -Rate for instruction 18976: 17.8601% -Rate for instruction 18977: 17.8597% -Rate for instruction 18978: 17.8598% -Rate for instruction 18979: 17.8605% -Rate for instruction 18980: 17.8606% -Rate for instruction 18981: 17.8604% -Rate for instruction 18982: 17.8605% -Rate for instruction 18983: 17.86% -Rate for instruction 18984: 17.8605% -Rate for instruction 18985: 17.8609% -Rate for instruction 18986: 17.8614% -Rate for instruction 18987: 17.8611% -Rate for instruction 18988: 17.8607% -Rate for instruction 18989: 17.8604% -Rate for instruction 18990: 17.8603% -Rate for instruction 18991: 17.8604% -Rate for instruction 18992: 17.861% -Rate for instruction 18993: 17.8615% -Rate for instruction 18994: 17.8612% -Rate for instruction 18995: 17.8606% -Rate for instruction 18996: 17.8607% -Rate for instruction 18997: 17.8602% -Rate for instruction 18998: 17.86% -Rate for instruction 18999: 17.8593% -Rate for instruction 19000: 17.8592% -Rate for instruction 19001: 17.8591% -Rate for instruction 19002: 17.8589% -Rate for instruction 19003: 17.8588% -Rate for instruction 19004: 17.8585% -Rate for instruction 19005: 17.8589% -Rate for instruction 19006: 17.8592% -Rate for instruction 19007: 17.8589% -Rate for instruction 19008: 17.8592% -Rate for instruction 19009: 17.859% -Rate for instruction 19010: 17.8585% -Rate for instruction 19011: 17.858% -Rate for instruction 19012: 17.8584% -Rate for instruction 19013: 17.8591% -Rate for instruction 19014: 17.8586% -Rate for instruction 19015: 17.8593% -Rate for instruction 19016: 17.8589% -Rate for instruction 19017: 17.8594% -Rate for instruction 19018: 17.8599% -Rate for instruction 19019: 17.8608% -Rate for instruction 19020: 17.86% -Rate for instruction 19021: 17.8599% -Rate for instruction 19022: 17.861% -Rate for instruction 19023: 17.8604% -Rate for instruction 19024: 17.8601% -Rate for instruction 19025: 17.8596% -Rate for instruction 19026: 17.86% -Rate for instruction 19027: 17.8605% -Rate for instruction 19028: 17.86% -Rate for instruction 19029: 17.8597% -Rate for instruction 19030: 17.8589% -Rate for instruction 19031: 17.86% -Rate for instruction 19032: 17.8605% -Rate for instruction 19033: 17.862% -Rate for instruction 19034: 17.8624% -Rate for instruction 19035: 17.8629% -Rate for instruction 19036: 17.8628% -Rate for instruction 19037: 17.8625% -Rate for instruction 19038: 17.8625% -Rate for instruction 19039: 17.8626% -Rate for instruction 19040: 17.8629% -Rate for instruction 19041: 17.8627% -Rate for instruction 19042: 17.8628% -Rate for instruction 19043: 17.8627% -Rate for instruction 19044: 17.8621% -Rate for instruction 19045: 17.862% -Rate for instruction 19046: 17.8619% -Rate for instruction 19047: 17.8626% -Rate for instruction 19048: 17.8624% -Rate for instruction 19049: 17.8629% -Rate for instruction 19050: 17.8624% -Rate for instruction 19051: 17.8631% -Rate for instruction 19052: 17.8635% -Rate for instruction 19053: 17.8652% -Rate for instruction 19054: 17.8647% -Rate for instruction 19055: 17.8654% -Rate for instruction 19056: 17.8656% -Rate for instruction 19057: 17.8651% -Rate for instruction 19058: 17.8646% -Rate for instruction 19059: 17.8646% -Rate for instruction 19060: 17.8645% -Rate for instruction 19061: 17.8642% -Rate for instruction 19062: 17.864% -Rate for instruction 19063: 17.8639% -Rate for instruction 19064: 17.8636% -Rate for instruction 19065: 17.8635% -Rate for instruction 19066: 17.8631% -Rate for instruction 19067: 17.863% -Rate for instruction 19068: 17.8625% -Rate for instruction 19069: 17.8625% -Rate for instruction 19070: 17.8622% -Rate for instruction 19071: 17.8621% -Rate for instruction 19072: 17.8621% -Rate for instruction 19073: 17.8622% -Rate for instruction 19074: 17.8627% -Rate for instruction 19075: 17.8626% -Rate for instruction 19076: 17.8618% -Rate for instruction 19077: 17.8625% -Rate for instruction 19078: 17.8626% -Rate for instruction 19079: 17.862% -Rate for instruction 19080: 17.8615% -Rate for instruction 19081: 17.8616% -Rate for instruction 19082: 17.8608% -Rate for instruction 19083: 17.8605% -Rate for instruction 19084: 17.861% -Rate for instruction 19085: 17.8615% -Rate for instruction 19086: 17.8611% -Rate for instruction 19087: 17.861% -Rate for instruction 19088: 17.8603% -Rate for instruction 19089: 17.8597% -Rate for instruction 19090: 17.8598% -Rate for instruction 19091: 17.8595% -Rate for instruction 19092: 17.8589% -Rate for instruction 19093: 17.8588% -Rate for instruction 19094: 17.8585% -Rate for instruction 19095: 17.8577% -Rate for instruction 19096: 17.8572% -Rate for instruction 19097: 17.8569% -Rate for instruction 19098: 17.8566% -Rate for instruction 19099: 17.8566% -Rate for instruction 19100: 17.8565% -Rate for instruction 19101: 17.8566% -Rate for instruction 19102: 17.8568% -Rate for instruction 19103: 17.8565% -Rate for instruction 19104: 17.8564% -Rate for instruction 19105: 17.8567% -Rate for instruction 19106: 17.8573% -Rate for instruction 19107: 17.8572% -Rate for instruction 19108: 17.8573% -Rate for instruction 19109: 17.8569% -Rate for instruction 19110: 17.8568% -Rate for instruction 19111: 17.8575% -Rate for instruction 19112: 17.8574% -Rate for instruction 19113: 17.8574% -Rate for instruction 19114: 17.8573% -Rate for instruction 19115: 17.8582% -Rate for instruction 19116: 17.8589% -Rate for instruction 19117: 17.8587% -Rate for instruction 19118: 17.8586% -Rate for instruction 19119: 17.8587% -Rate for instruction 19120: 17.8583% -Rate for instruction 19121: 17.8592% -Rate for instruction 19122: 17.8595% -Rate for instruction 19123: 17.859% -Rate for instruction 19124: 17.8588% -Rate for instruction 19125: 17.8581% -Rate for instruction 19126: 17.8586% -Rate for instruction 19127: 17.8578% -Rate for instruction 19128: 17.8577% -Rate for instruction 19129: 17.8582% -Rate for instruction 19130: 17.8589% -Rate for instruction 19131: 17.8597% -Rate for instruction 19132: 17.8606% -Rate for instruction 19133: 17.8615% -Rate for instruction 19134: 17.8622% -Rate for instruction 19135: 17.8618% -Rate for instruction 19136: 17.8615% -Rate for instruction 19137: 17.8612% -Rate for instruction 19138: 17.8606% -Rate for instruction 19139: 17.8607% -Rate for instruction 19140: 17.86% -Rate for instruction 19141: 17.8598% -Rate for instruction 19142: 17.8597% -Rate for instruction 19143: 17.8598% -Rate for instruction 19144: 17.8593% -Rate for instruction 19145: 17.8585% -Rate for instruction 19146: 17.859% -Rate for instruction 19147: 17.8583% -Rate for instruction 19148: 17.8583% -Rate for instruction 19149: 17.858% -Rate for instruction 19150: 17.8577% -Rate for instruction 19151: 17.8569% -Rate for instruction 19152: 17.8566% -Rate for instruction 19153: 17.8565% -Rate for instruction 19154: 17.8562% -Rate for instruction 19155: 17.8554% -Rate for instruction 19156: 17.8561% -Rate for instruction 19157: 17.8556% -Rate for instruction 19158: 17.8548% -Rate for instruction 19159: 17.8557% -Rate for instruction 19160: 17.8564% -Rate for instruction 19161: 17.8563% -Rate for instruction 19162: 17.8559% -Rate for instruction 19163: 17.8558% -Rate for instruction 19164: 17.8561% -Rate for instruction 19165: 17.8553% -Rate for instruction 19166: 17.8546% -Rate for instruction 19167: 17.8543% -Rate for instruction 19168: 17.8535% -Rate for instruction 19169: 17.853% -Rate for instruction 19170: 17.8523% -Rate for instruction 19171: 17.8524% -Rate for instruction 19172: 17.8526% -Rate for instruction 19173: 17.8521% -Rate for instruction 19174: 17.8518% -Rate for instruction 19175: 17.8512% -Rate for instruction 19176: 17.8513% -Rate for instruction 19177: 17.8512% -Rate for instruction 19178: 17.8509% -Rate for instruction 19179: 17.8509% -Rate for instruction 19180: 17.8506% -Rate for instruction 19181: 17.8507% -Rate for instruction 19182: 17.8499% -Rate for instruction 19183: 17.8496% -Rate for instruction 19184: 17.8491% -Rate for instruction 19185: 17.849% -Rate for instruction 19186: 17.8484% -Rate for instruction 19187: 17.8483% -Rate for instruction 19188: 17.8482% -Rate for instruction 19189: 17.8478% -Rate for instruction 19190: 17.8481% -Rate for instruction 19191: 17.8478% -Rate for instruction 19192: 17.8477% -Rate for instruction 19193: 17.8473% -Rate for instruction 19194: 17.847% -Rate for instruction 19195: 17.8471% -Rate for instruction 19196: 17.8467% -Rate for instruction 19197: 17.8472% -Rate for instruction 19198: 17.8465% -Rate for instruction 19199: 17.8462% -Rate for instruction 19200: 17.8462% -Rate for instruction 19201: 17.8459% -Rate for instruction 19202: 17.8462% -Rate for instruction 19203: 17.8456% -Rate for instruction 19204: 17.8455% -Rate for instruction 19205: 17.8464% -Rate for instruction 19206: 17.8471% -Rate for instruction 19207: 17.8467% -Rate for instruction 19208: 17.8464% -Rate for instruction 19209: 17.8465% -Rate for instruction 19210: 17.8461% -Rate for instruction 19211: 17.8458% -Rate for instruction 19212: 17.8457% -Rate for instruction 19213: 17.8464% -Rate for instruction 19214: 17.8472% -Rate for instruction 19215: 17.8471% -Rate for instruction 19216: 17.8468% -Rate for instruction 19217: 17.8467% -Rate for instruction 19218: 17.8465% -Rate for instruction 19219: 17.8462% -Rate for instruction 19220: 17.8463% -Rate for instruction 19221: 17.8467% -Rate for instruction 19222: 17.847% -Rate for instruction 19223: 17.8471% -Rate for instruction 19224: 17.8468% -Rate for instruction 19225: 17.846% -Rate for instruction 19226: 17.8453% -Rate for instruction 19227: 17.8446% -Rate for instruction 19228: 17.8444% -Rate for instruction 19229: 17.8441% -Rate for instruction 19230: 17.8438% -Rate for instruction 19231: 17.8437% -Rate for instruction 19232: 17.8431% -Rate for instruction 19233: 17.8428% -Rate for instruction 19234: 17.8429% -Rate for instruction 19235: 17.8421% -Rate for instruction 19236: 17.842% -Rate for instruction 19237: 17.8415% -Rate for instruction 19238: 17.8414% -Rate for instruction 19239: 17.8406% -Rate for instruction 19240: 17.8399% -Rate for instruction 19241: 17.8392% -Rate for instruction 19242: 17.8389% -Rate for instruction 19243: 17.8385% -Rate for instruction 19244: 17.8378% -Rate for instruction 19245: 17.8373% -Rate for instruction 19246: 17.8371% -Rate for instruction 19247: 17.8382% -Rate for instruction 19248: 17.8379% -Rate for instruction 19249: 17.8396% -Rate for instruction 19250: 17.8392% -Rate for instruction 19251: 17.8405% -Rate for instruction 19252: 17.841% -Rate for instruction 19253: 17.8416% -Rate for instruction 19254: 17.8421% -Rate for instruction 19255: 17.8414% -Rate for instruction 19256: 17.8423% -Rate for instruction 19257: 17.8427% -Rate for instruction 19258: 17.8432% -Rate for instruction 19259: 17.8439% -Rate for instruction 19260: 17.8435% -Rate for instruction 19261: 17.8432% -Rate for instruction 19262: 17.8431% -Rate for instruction 19263: 17.8424% -Rate for instruction 19264: 17.842% -Rate for instruction 19265: 17.8413% -Rate for instruction 19266: 17.8408% -Rate for instruction 19267: 17.8409% -Rate for instruction 19268: 17.8407% -Rate for instruction 19269: 17.8404% -Rate for instruction 19270: 17.8409% -Rate for instruction 19271: 17.8402% -Rate for instruction 19272: 17.8398% -Rate for instruction 19273: 17.8395% -Rate for instruction 19274: 17.839% -Rate for instruction 19275: 17.8386% -Rate for instruction 19276: 17.8393% -Rate for instruction 19277: 17.8398% -Rate for instruction 19278: 17.8409% -Rate for instruction 19279: 17.8401% -Rate for instruction 19280: 17.8398% -Rate for instruction 19281: 17.8405% -Rate for instruction 19282: 17.8407% -Rate for instruction 19283: 17.8404% -Rate for instruction 19284: 17.8397% -Rate for instruction 19285: 17.8392% -Rate for instruction 19286: 17.8384% -Rate for instruction 19287: 17.8383% -Rate for instruction 19288: 17.8376% -Rate for instruction 19289: 17.8371% -Rate for instruction 19290: 17.8373% -Rate for instruction 19291: 17.837% -Rate for instruction 19292: 17.8363% -Rate for instruction 19293: 17.8364% -Rate for instruction 19294: 17.8364% -Rate for instruction 19295: 17.8357% -Rate for instruction 19296: 17.835% -Rate for instruction 19297: 17.8345% -Rate for instruction 19298: 17.8337% -Rate for instruction 19299: 17.8332% -Rate for instruction 19300: 17.8325% -Rate for instruction 19301: 17.8327% -Rate for instruction 19302: 17.8326% -Rate for instruction 19303: 17.8321% -Rate for instruction 19304: 17.832% -Rate for instruction 19305: 17.8312% -Rate for instruction 19306: 17.8317% -Rate for instruction 19307: 17.8312% -Rate for instruction 19308: 17.8319% -Rate for instruction 19309: 17.8315% -Rate for instruction 19310: 17.8312% -Rate for instruction 19311: 17.8307% -Rate for instruction 19312: 17.8304% -Rate for instruction 19313: 17.8308% -Rate for instruction 19314: 17.8313% -Rate for instruction 19315: 17.831% -Rate for instruction 19316: 17.8316% -Rate for instruction 19317: 17.8323% -Rate for instruction 19318: 17.8326% -Rate for instruction 19319: 17.8331% -Rate for instruction 19320: 17.8329% -Rate for instruction 19321: 17.8332% -Rate for instruction 19322: 17.8333% -Rate for instruction 19323: 17.8341% -Rate for instruction 19324: 17.8348% -Rate for instruction 19325: 17.8345% -Rate for instruction 19326: 17.8346% -Rate for instruction 19327: 17.8338% -Rate for instruction 19328: 17.8339% -Rate for instruction 19329: 17.8336% -Rate for instruction 19330: 17.8335% -Rate for instruction 19331: 17.8335% -Rate for instruction 19332: 17.8332% -Rate for instruction 19333: 17.8327% -Rate for instruction 19334: 17.8325% -Rate for instruction 19335: 17.832% -Rate for instruction 19336: 17.8317% -Rate for instruction 19337: 17.8316% -Rate for instruction 19338: 17.8308% -Rate for instruction 19339: 17.8301% -Rate for instruction 19340: 17.8298% -Rate for instruction 19341: 17.8307% -Rate for instruction 19342: 17.8309% -Rate for instruction 19343: 17.8314% -Rate for instruction 19344: 17.8319% -Rate for instruction 19345: 17.8323% -Rate for instruction 19346: 17.833% -Rate for instruction 19347: 17.8335% -Rate for instruction 19348: 17.8328% -Rate for instruction 19349: 17.8328% -Rate for instruction 19350: 17.8329% -Rate for instruction 19351: 17.8322% -Rate for instruction 19352: 17.8321% -Rate for instruction 19353: 17.8329% -Rate for instruction 19354: 17.8326% -Rate for instruction 19355: 17.8319% -Rate for instruction 19356: 17.8314% -Rate for instruction 19357: 17.8322% -Rate for instruction 19358: 17.8333% -Rate for instruction 19359: 17.834% -Rate for instruction 19360: 17.8338% -Rate for instruction 19361: 17.8335% -Rate for instruction 19362: 17.8334% -Rate for instruction 19363: 17.8327% -Rate for instruction 19364: 17.8321% -Rate for instruction 19365: 17.8316% -Rate for instruction 19366: 17.8313% -Rate for instruction 19367: 17.8312% -Rate for instruction 19368: 17.8306% -Rate for instruction 19369: 17.8303% -Rate for instruction 19370: 17.8306% -Rate for instruction 19371: 17.8309% -Rate for instruction 19372: 17.8311% -Rate for instruction 19373: 17.8322% -Rate for instruction 19374: 17.8319% -Rate for instruction 19375: 17.8331% -Rate for instruction 19376: 17.833% -Rate for instruction 19377: 17.8327% -Rate for instruction 19378: 17.8321% -Rate for instruction 19379: 17.8322% -Rate for instruction 19380: 17.8321% -Rate for instruction 19381: 17.832% -Rate for instruction 19382: 17.8312% -Rate for instruction 19383: 17.8313% -Rate for instruction 19384: 17.8318% -Rate for instruction 19385: 17.8323% -Rate for instruction 19386: 17.8315% -Rate for instruction 19387: 17.8324% -Rate for instruction 19388: 17.8319% -Rate for instruction 19389: 17.8327% -Rate for instruction 19390: 17.8336% -Rate for instruction 19391: 17.8339% -Rate for instruction 19392: 17.8351% -Rate for instruction 19393: 17.8364% -Rate for instruction 19394: 17.8375% -Rate for instruction 19395: 17.8383% -Rate for instruction 19396: 17.8376% -Rate for instruction 19397: 17.8387% -Rate for instruction 19398: 17.8397% -Rate for instruction 19399: 17.8392% -Rate for instruction 19400: 17.8387% -Rate for instruction 19401: 17.8388% -Rate for instruction 19402: 17.8382% -Rate for instruction 19403: 17.8387% -Rate for instruction 19404: 17.8382% -Rate for instruction 19405: 17.8379% -Rate for instruction 19406: 17.8379% -Rate for instruction 19407: 17.8372% -Rate for instruction 19408: 17.8367% -Rate for instruction 19409: 17.836% -Rate for instruction 19410: 17.8356% -Rate for instruction 19411: 17.8353% -Rate for instruction 19412: 17.835% -Rate for instruction 19413: 17.8345% -Rate for instruction 19414: 17.8341% -Rate for instruction 19415: 17.8338% -Rate for instruction 19416: 17.8339% -Rate for instruction 19417: 17.8338% -Rate for instruction 19418: 17.8334% -Rate for instruction 19419: 17.8331% -Rate for instruction 19420: 17.8328% -Rate for instruction 19421: 17.8335% -Rate for instruction 19422: 17.8335% -Rate for instruction 19423: 17.8328% -Rate for instruction 19424: 17.8335% -Rate for instruction 19425: 17.8336% -Rate for instruction 19426: 17.8328% -Rate for instruction 19427: 17.8327% -Rate for instruction 19428: 17.8332% -Rate for instruction 19429: 17.834% -Rate for instruction 19430: 17.8337% -Rate for instruction 19431: 17.8336% -Rate for instruction 19432: 17.8339% -Rate for instruction 19433: 17.8349% -Rate for instruction 19434: 17.836% -Rate for instruction 19435: 17.8364% -Rate for instruction 19436: 17.8357% -Rate for instruction 19437: 17.836% -Rate for instruction 19438: 17.8359% -Rate for instruction 19439: 17.8352% -Rate for instruction 19440: 17.835% -Rate for instruction 19441: 17.8345% -Rate for instruction 19442: 17.8338% -Rate for instruction 19443: 17.8335% -Rate for instruction 19444: 17.8327% -Rate for instruction 19445: 17.8326% -Rate for instruction 19446: 17.8319% -Rate for instruction 19447: 17.8318% -Rate for instruction 19448: 17.8314% -Rate for instruction 19449: 17.8321% -Rate for instruction 19450: 17.833% -Rate for instruction 19451: 17.8336% -Rate for instruction 19452: 17.8337% -Rate for instruction 19453: 17.8332% -Rate for instruction 19454: 17.8325% -Rate for instruction 19455: 17.8321% -Rate for instruction 19456: 17.8322% -Rate for instruction 19457: 17.8325% -Rate for instruction 19458: 17.832% -Rate for instruction 19459: 17.8313% -Rate for instruction 19460: 17.8313% -Rate for instruction 19461: 17.831% -Rate for instruction 19462: 17.8305% -Rate for instruction 19463: 17.8309% -Rate for instruction 19464: 17.831% -Rate for instruction 19465: 17.8313% -Rate for instruction 19466: 17.8312% -Rate for instruction 19467: 17.8312% -Rate for instruction 19468: 17.8307% -Rate for instruction 19469: 17.8306% -Rate for instruction 19470: 17.8309% -Rate for instruction 19471: 17.8305% -Rate for instruction 19472: 17.83% -Rate for instruction 19473: 17.8303% -Rate for instruction 19474: 17.8307% -Rate for instruction 19475: 17.8306% -Rate for instruction 19476: 17.8305% -Rate for instruction 19477: 17.83% -Rate for instruction 19478: 17.8295% -Rate for instruction 19479: 17.8291% -Rate for instruction 19480: 17.829% -Rate for instruction 19481: 17.8283% -Rate for instruction 19482: 17.828% -Rate for instruction 19483: 17.828% -Rate for instruction 19484: 17.8275% -Rate for instruction 19485: 17.8272% -Rate for instruction 19486: 17.8279% -Rate for instruction 19487: 17.8277% -Rate for instruction 19488: 17.8284% -Rate for instruction 19489: 17.8289% -Rate for instruction 19490: 17.8283% -Rate for instruction 19491: 17.8288% -Rate for instruction 19492: 17.8293% -Rate for instruction 19493: 17.8297% -Rate for instruction 19494: 17.8306% -Rate for instruction 19495: 17.8307% -Rate for instruction 19496: 17.8308% -Rate for instruction 19497: 17.831% -Rate for instruction 19498: 17.8303% -Rate for instruction 19499: 17.831% -Rate for instruction 19500: 17.8304% -Rate for instruction 19501: 17.8307% -Rate for instruction 19502: 17.8304% -Rate for instruction 19503: 17.8307% -Rate for instruction 19504: 17.8299% -Rate for instruction 19505: 17.83% -Rate for instruction 19506: 17.8303% -Rate for instruction 19507: 17.8308% -Rate for instruction 19508: 17.831% -Rate for instruction 19509: 17.8311% -Rate for instruction 19510: 17.8312% -Rate for instruction 19511: 17.8316% -Rate for instruction 19512: 17.8321% -Rate for instruction 19513: 17.8318% -Rate for instruction 19514: 17.832% -Rate for instruction 19515: 17.8325% -Rate for instruction 19516: 17.832% -Rate for instruction 19517: 17.8315% -Rate for instruction 19518: 17.8313% -Rate for instruction 19519: 17.8306% -Rate for instruction 19520: 17.8303% -Rate for instruction 19521: 17.8304% -Rate for instruction 19522: 17.8303% -Rate for instruction 19523: 17.8299% -Rate for instruction 19524: 17.8306% -Rate for instruction 19525: 17.8307% -Rate for instruction 19526: 17.8299% -Rate for instruction 19527: 17.8304% -Rate for instruction 19528: 17.8311% -Rate for instruction 19529: 17.8308% -Rate for instruction 19530: 17.8316% -Rate for instruction 19531: 17.8311% -Rate for instruction 19532: 17.832% -Rate for instruction 19533: 17.8328% -Rate for instruction 19534: 17.8331% -Rate for instruction 19535: 17.8335% -Rate for instruction 19536: 17.8332% -Rate for instruction 19537: 17.8327% -Rate for instruction 19538: 17.8332% -Rate for instruction 19539: 17.8344% -Rate for instruction 19540: 17.8337% -Rate for instruction 19541: 17.834% -Rate for instruction 19542: 17.8333% -Rate for instruction 19543: 17.8329% -Rate for instruction 19544: 17.8326% -Rate for instruction 19545: 17.8323% -Rate for instruction 19546: 17.8316% -Rate for instruction 19547: 17.8313% -Rate for instruction 19548: 17.8305% -Rate for instruction 19549: 17.83% -Rate for instruction 19550: 17.8295% -Rate for instruction 19551: 17.8292% -Rate for instruction 19552: 17.8289% -Rate for instruction 19553: 17.8281% -Rate for instruction 19554: 17.8278% -Rate for instruction 19555: 17.8285% -Rate for instruction 19556: 17.8278% -Rate for instruction 19557: 17.8278% -Rate for instruction 19558: 17.8271% -Rate for instruction 19559: 17.8274% -Rate for instruction 19560: 17.8269% -Rate for instruction 19561: 17.8279% -Rate for instruction 19562: 17.8284% -Rate for instruction 19563: 17.8279% -Rate for instruction 19564: 17.8289% -Rate for instruction 19565: 17.8282% -Rate for instruction 19566: 17.8281% -Rate for instruction 19567: 17.8284% -Rate for instruction 19568: 17.8288% -Rate for instruction 19569: 17.8281% -Rate for instruction 19570: 17.8276% -Rate for instruction 19571: 17.8269% -Rate for instruction 19572: 17.8268% -Rate for instruction 19573: 17.826% -Rate for instruction 19574: 17.8255% -Rate for instruction 19575: 17.8248% -Rate for instruction 19576: 17.8263% -Rate for instruction 19577: 17.8257% -Rate for instruction 19578: 17.826% -Rate for instruction 19579: 17.8253% -Rate for instruction 19580: 17.8248% -Rate for instruction 19581: 17.8243% -Rate for instruction 19582: 17.8251% -Rate for instruction 19583: 17.8262% -Rate for instruction 19584: 17.8255% -Rate for instruction 19585: 17.8255% -Rate for instruction 19586: 17.8256% -Rate for instruction 19587: 17.8255% -Rate for instruction 19588: 17.8252% -Rate for instruction 19589: 17.8254% -Rate for instruction 19590: 17.8247% -Rate for instruction 19591: 17.8242% -Rate for instruction 19592: 17.8243% -Rate for instruction 19593: 17.8237% -Rate for instruction 19594: 17.8236% -Rate for instruction 19595: 17.8231% -Rate for instruction 19596: 17.823% -Rate for instruction 19597: 17.8227% -Rate for instruction 19598: 17.8231% -Rate for instruction 19599: 17.823% -Rate for instruction 19600: 17.8227% -Rate for instruction 19601: 17.822% -Rate for instruction 19602: 17.8214% -Rate for instruction 19603: 17.8215% -Rate for instruction 19604: 17.8212% -Rate for instruction 19605: 17.8211% -Rate for instruction 19606: 17.8208% -Rate for instruction 19607: 17.8202% -Rate for instruction 19608: 17.8199% -Rate for instruction 19609: 17.8202% -Rate for instruction 19610: 17.8199% -Rate for instruction 19611: 17.8197% -Rate for instruction 19612: 17.8192% -Rate for instruction 19613: 17.8189% -Rate for instruction 19614: 17.8184% -Rate for instruction 19615: 17.8181% -Rate for instruction 19616: 17.8179% -Rate for instruction 19617: 17.8174% -Rate for instruction 19618: 17.8167% -Rate for instruction 19619: 17.8168% -Rate for instruction 19620: 17.8163% -Rate for instruction 19621: 17.8167% -Rate for instruction 19622: 17.816% -Rate for instruction 19623: 17.8161% -Rate for instruction 19624: 17.8162% -Rate for instruction 19625: 17.8168% -Rate for instruction 19626: 17.8167% -Rate for instruction 19627: 17.8164% -Rate for instruction 19628: 17.8163% -Rate for instruction 19629: 17.8161% -Rate for instruction 19630: 17.816% -Rate for instruction 19631: 17.8157% -Rate for instruction 19632: 17.8152% -Rate for instruction 19633: 17.8151% -Rate for instruction 19634: 17.8147% -Rate for instruction 19635: 17.815% -Rate for instruction 19636: 17.8147% -Rate for instruction 19637: 17.8142% -Rate for instruction 19638: 17.8138% -Rate for instruction 19639: 17.8133% -Rate for instruction 19640: 17.8134% -Rate for instruction 19641: 17.8131% -Rate for instruction 19642: 17.8128% -Rate for instruction 19643: 17.8121% -Rate for instruction 19644: 17.8113% -Rate for instruction 19645: 17.811% -Rate for instruction 19646: 17.8111% -Rate for instruction 19647: 17.8118% -Rate for instruction 19648: 17.8128% -Rate for instruction 19649: 17.8125% -Rate for instruction 19650: 17.8135% -Rate for instruction 19651: 17.8134% -Rate for instruction 19652: 17.8141% -Rate for instruction 19653: 17.8134% -Rate for instruction 19654: 17.8136% -Rate for instruction 19655: 17.8139% -Rate for instruction 19656: 17.8151% -Rate for instruction 19657: 17.8158% -Rate for instruction 19658: 17.8167% -Rate for instruction 19659: 17.8169% -Rate for instruction 19660: 17.8182% -Rate for instruction 19661: 17.8175% -Rate for instruction 19662: 17.8189% -Rate for instruction 19663: 17.8186% -Rate for instruction 19664: 17.8185% -Rate for instruction 19665: 17.8179% -Rate for instruction 19666: 17.8178% -Rate for instruction 19667: 17.8177% -Rate for instruction 19668: 17.8174% -Rate for instruction 19669: 17.8173% -Rate for instruction 19670: 17.8169% -Rate for instruction 19671: 17.8162% -Rate for instruction 19672: 17.8157% -Rate for instruction 19673: 17.815% -Rate for instruction 19674: 17.8166% -Rate for instruction 19675: 17.8161% -Rate for instruction 19676: 17.8174% -Rate for instruction 19677: 17.8188% -Rate for instruction 19678: 17.8199% -Rate for instruction 19679: 17.8197% -Rate for instruction 19680: 17.8194% -Rate for instruction 19681: 17.8199% -Rate for instruction 19682: 17.8192% -Rate for instruction 19683: 17.8192% -Rate for instruction 19684: 17.8191% -Rate for instruction 19685: 17.8196% -Rate for instruction 19686: 17.8195% -Rate for instruction 19687: 17.8199% -Rate for instruction 19688: 17.8202% -Rate for instruction 19689: 17.8195% -Rate for instruction 19690: 17.8195% -Rate for instruction 19691: 17.8196% -Rate for instruction 19692: 17.8193% -Rate for instruction 19693: 17.8201% -Rate for instruction 19694: 17.8196% -Rate for instruction 19695: 17.8209% -Rate for instruction 19696: 17.8223% -Rate for instruction 19697: 17.8222% -Rate for instruction 19698: 17.8225% -Rate for instruction 19699: 17.8221% -Rate for instruction 19700: 17.823% -Rate for instruction 19701: 17.8229% -Rate for instruction 19702: 17.8227% -Rate for instruction 19703: 17.822% -Rate for instruction 19704: 17.8215% -Rate for instruction 19705: 17.8208% -Rate for instruction 19706: 17.8205% -Rate for instruction 19707: 17.8198% -Rate for instruction 19708: 17.8193% -Rate for instruction 19709: 17.8203% -Rate for instruction 19710: 17.8202% -Rate for instruction 19711: 17.8199% -Rate for instruction 19712: 17.8194% -Rate for instruction 19713: 17.8194% -Rate for instruction 19714: 17.8191% -Rate for instruction 19715: 17.8194% -Rate for instruction 19716: 17.8191% -Rate for instruction 19717: 17.8189% -Rate for instruction 19718: 17.8186% -Rate for instruction 19719: 17.8181% -Rate for instruction 19720: 17.8178% -Rate for instruction 19721: 17.8171% -Rate for instruction 19722: 17.817% -Rate for instruction 19723: 17.8172% -Rate for instruction 19724: 17.8173% -Rate for instruction 19725: 17.8172% -Rate for instruction 19726: 17.8165% -Rate for instruction 19727: 17.8163% -Rate for instruction 19728: 17.816% -Rate for instruction 19729: 17.8161% -Rate for instruction 19730: 17.8162% -Rate for instruction 19731: 17.8172% -Rate for instruction 19732: 17.8183% -Rate for instruction 19733: 17.8181% -Rate for instruction 19734: 17.8182% -Rate for instruction 19735: 17.8177% -Rate for instruction 19736: 17.8176% -Rate for instruction 19737: 17.8169% -Rate for instruction 19738: 17.8163% -Rate for instruction 19739: 17.8178% -Rate for instruction 19740: 17.8171% -Rate for instruction 19741: 17.8183% -Rate for instruction 19742: 17.8178% -Rate for instruction 19743: 17.8177% -Rate for instruction 19744: 17.8178% -Rate for instruction 19745: 17.817% -Rate for instruction 19746: 17.8167% -Rate for instruction 19747: 17.8168% -Rate for instruction 19748: 17.8169% -Rate for instruction 19749: 17.8167% -Rate for instruction 19750: 17.8168% -Rate for instruction 19751: 17.8165% -Rate for instruction 19752: 17.8164% -Rate for instruction 19753: 17.8165% -Rate for instruction 19754: 17.8165% -Rate for instruction 19755: 17.816% -Rate for instruction 19756: 17.8157% -Rate for instruction 19757: 17.8152% -Rate for instruction 19758: 17.8147% -Rate for instruction 19759: 17.8143% -Rate for instruction 19760: 17.8138% -Rate for instruction 19761: 17.8135% -Rate for instruction 19762: 17.8134% -Rate for instruction 19763: 17.8129% -Rate for instruction 19764: 17.8122% -Rate for instruction 19765: 17.813% -Rate for instruction 19766: 17.8135% -Rate for instruction 19767: 17.8128% -Rate for instruction 19768: 17.8125% -Rate for instruction 19769: 17.8123% -Rate for instruction 19770: 17.8122% -Rate for instruction 19771: 17.8137% -Rate for instruction 19772: 17.8151% -Rate for instruction 19773: 17.8146% -Rate for instruction 19774: 17.8143% -Rate for instruction 19775: 17.8145% -Rate for instruction 19776: 17.8158% -Rate for instruction 19777: 17.8152% -Rate for instruction 19778: 17.8147% -Rate for instruction 19779: 17.8154% -Rate for instruction 19780: 17.8147% -Rate for instruction 19781: 17.814% -Rate for instruction 19782: 17.8144% -Rate for instruction 19783: 17.8149% -Rate for instruction 19784: 17.8142% -Rate for instruction 19785: 17.8152% -Rate for instruction 19786: 17.8163% -Rate for instruction 19787: 17.8175% -Rate for instruction 19788: 17.8172% -Rate for instruction 19789: 17.8175% -Rate for instruction 19790: 17.8179% -Rate for instruction 19791: 17.8184% -Rate for instruction 19792: 17.8198% -Rate for instruction 19793: 17.8197% -Rate for instruction 19794: 17.8194% -Rate for instruction 19795: 17.8191% -Rate for instruction 19796: 17.8203% -Rate for instruction 19797: 17.8215% -Rate for instruction 19798: 17.8208% -Rate for instruction 19799: 17.8201% -Rate for instruction 19800: 17.8198% -Rate for instruction 19801: 17.8191% -Rate for instruction 19802: 17.819% -Rate for instruction 19803: 17.8206% -Rate for instruction 19804: 17.8205% -Rate for instruction 19805: 17.8219% -Rate for instruction 19806: 17.8212% -Rate for instruction 19807: 17.8205% -Rate for instruction 19808: 17.8204% -Rate for instruction 19809: 17.8203% -Rate for instruction 19810: 17.8199% -Rate for instruction 19811: 17.8208% -Rate for instruction 19812: 17.8207% -Rate for instruction 19813: 17.8215% -Rate for instruction 19814: 17.8212% -Rate for instruction 19815: 17.822% -Rate for instruction 19816: 17.8217% -Rate for instruction 19817: 17.821% -Rate for instruction 19818: 17.8203% -Rate for instruction 19819: 17.8202% -Rate for instruction 19820: 17.8214% -Rate for instruction 19821: 17.8217% -Rate for instruction 19822: 17.821% -Rate for instruction 19823: 17.8218% -Rate for instruction 19824: 17.8231% -Rate for instruction 19825: 17.8237% -Rate for instruction 19826: 17.824% -Rate for instruction 19827: 17.8233% -Rate for instruction 19828: 17.823% -Rate for instruction 19829: 17.8223% -Rate for instruction 19830: 17.8217% -Rate for instruction 19831: 17.821% -Rate for instruction 19832: 17.8211% -Rate for instruction 19833: 17.821% -Rate for instruction 19834: 17.8205% -Rate for instruction 19835: 17.8221% -Rate for instruction 19836: 17.8231% -Rate for instruction 19837: 17.8246% -Rate for instruction 19838: 17.8262% -Rate for instruction 19839: 17.8274% -Rate for instruction 19840: 17.8285% -Rate for instruction 19841: 17.8293% -Rate for instruction 19842: 17.8296% -Rate for instruction 19843: 17.831% -Rate for instruction 19844: 17.8307% -Rate for instruction 19845: 17.8321% -Rate for instruction 19846: 17.8335% -Rate for instruction 19847: 17.8336% -Rate for instruction 19848: 17.8331% -Rate for instruction 19849: 17.8343% -Rate for instruction 19850: 17.8356% -Rate for instruction 19851: 17.8354% -Rate for instruction 19852: 17.8349% -Rate for instruction 19853: 17.8342% -Rate for instruction 19854: 17.8343% -Rate for instruction 19855: 17.8342% -Rate for instruction 19856: 17.8339% -Rate for instruction 19857: 17.8347% -Rate for instruction 19858: 17.8357% -Rate for instruction 19859: 17.8362% -Rate for instruction 19860: 17.8357% -Rate for instruction 19861: 17.8352% -Rate for instruction 19862: 17.8345% -Rate for instruction 19863: 17.8344% -Rate for instruction 19864: 17.8336% -Rate for instruction 19865: 17.8341% -Rate for instruction 19866: 17.8344% -Rate for instruction 19867: 17.8341% -Rate for instruction 19868: 17.8343% -Rate for instruction 19869: 17.8348% -Rate for instruction 19870: 17.8346% -Rate for instruction 19871: 17.8353% -Rate for instruction 19872: 17.8363% -Rate for instruction 19873: 17.8378% -Rate for instruction 19874: 17.8388% -Rate for instruction 19875: 17.8395% -Rate for instruction 19876: 17.8401% -Rate for instruction 19877: 17.8398% -Rate for instruction 19878: 17.8402% -Rate for instruction 19879: 17.8403% -Rate for instruction 19880: 17.8398% -Rate for instruction 19881: 17.8397% -Rate for instruction 19882: 17.8413% -Rate for instruction 19883: 17.8416% -Rate for instruction 19884: 17.8409% -Rate for instruction 19885: 17.8405% -Rate for instruction 19886: 17.84% -Rate for instruction 19887: 17.8401% -Rate for instruction 19888: 17.8396% -Rate for instruction 19889: 17.8391% -Rate for instruction 19890: 17.839% -Rate for instruction 19891: 17.8384% -Rate for instruction 19892: 17.8395% -Rate for instruction 19893: 17.8405% -Rate for instruction 19894: 17.841% -Rate for instruction 19895: 17.8414% -Rate for instruction 19896: 17.8417% -Rate for instruction 19897: 17.842% -Rate for instruction 19898: 17.8416% -Rate for instruction 19899: 17.8413% -Rate for instruction 19900: 17.8412% -Rate for instruction 19901: 17.8407% -Rate for instruction 19902: 17.8402% -Rate for instruction 19903: 17.8402% -Rate for instruction 19904: 17.8403% -Rate for instruction 19905: 17.8406% -Rate for instruction 19906: 17.8418% -Rate for instruction 19907: 17.843% -Rate for instruction 19908: 17.8425% -Rate for instruction 19909: 17.842% -Rate for instruction 19910: 17.8431% -Rate for instruction 19911: 17.8427% -Rate for instruction 19912: 17.8438% -Rate for instruction 19913: 17.8431% -Rate for instruction 19914: 17.8428% -Rate for instruction 19915: 17.8424% -Rate for instruction 19916: 17.8429% -Rate for instruction 19917: 17.8422% -Rate for instruction 19918: 17.8417% -Rate for instruction 19919: 17.8418% -Rate for instruction 19920: 17.8424% -Rate for instruction 19921: 17.8423% -Rate for instruction 19922: 17.8418% -Rate for instruction 19923: 17.8415% -Rate for instruction 19924: 17.8421% -Rate for instruction 19925: 17.8429% -Rate for instruction 19926: 17.8438% -Rate for instruction 19927: 17.8437% -Rate for instruction 19928: 17.8435% -Rate for instruction 19929: 17.8438% -Rate for instruction 19930: 17.8439% -Rate for instruction 19931: 17.8434% -Rate for instruction 19932: 17.8442% -Rate for instruction 19933: 17.8435% -Rate for instruction 19934: 17.843% -Rate for instruction 19935: 17.8434% -Rate for instruction 19936: 17.8431% -Rate for instruction 19937: 17.844% -Rate for instruction 19938: 17.8435% -Rate for instruction 19939: 17.8447% -Rate for instruction 19940: 17.8451% -Rate for instruction 19941: 17.8462% -Rate for instruction 19942: 17.8472% -Rate for instruction 19943: 17.8467% -Rate for instruction 19944: 17.847% -Rate for instruction 19945: 17.8472% -Rate for instruction 19946: 17.8473% -Rate for instruction 19947: 17.8479% -Rate for instruction 19948: 17.8476% -Rate for instruction 19949: 17.8479% -Rate for instruction 19950: 17.8485% -Rate for instruction 19951: 17.849% -Rate for instruction 19952: 17.8483% -Rate for instruction 19953: 17.8486% -Rate for instruction 19954: 17.8478% -Rate for instruction 19955: 17.8483% -Rate for instruction 19956: 17.8495% -Rate for instruction 19957: 17.8504% -Rate for instruction 19958: 17.8516% -Rate for instruction 19959: 17.8509% -Rate for instruction 19960: 17.8521% -Rate for instruction 19961: 17.852% -Rate for instruction 19962: 17.8519% -Rate for instruction 19963: 17.8519% -Rate for instruction 19964: 17.8526% -Rate for instruction 19965: 17.8525% -Rate for instruction 19966: 17.8529% -Rate for instruction 19967: 17.8536% -Rate for instruction 19968: 17.8546% -Rate for instruction 19969: 17.8551% -Rate for instruction 19970: 17.8557% -Rate for instruction 19971: 17.855% -Rate for instruction 19972: 17.8562% -Rate for instruction 19973: 17.8557% -Rate for instruction 19974: 17.8552% -Rate for instruction 19975: 17.8559% -Rate for instruction 19976: 17.8565% -Rate for instruction 19977: 17.8562% -Rate for instruction 19978: 17.857% -Rate for instruction 19979: 17.8577% -Rate for instruction 19980: 17.8583% -Rate for instruction 19981: 17.858% -Rate for instruction 19982: 17.8579% -Rate for instruction 19983: 17.8576% -Rate for instruction 19984: 17.857% -Rate for instruction 19985: 17.8577% -Rate for instruction 19986: 17.8583% -Rate for instruction 19987: 17.8588% -Rate for instruction 19988: 17.8592% -Rate for instruction 19989: 17.8585% -Rate for instruction 19990: 17.8596% -Rate for instruction 19991: 17.8596% -Rate for instruction 19992: 17.8613% -Rate for instruction 19993: 17.8611% -Rate for instruction 19994: 17.8604% -Rate for instruction 19995: 17.8611% -Rate for instruction 19996: 17.8623% -Rate for instruction 19997: 17.8639% -Rate for instruction 19998: 17.8651% -Rate for instruction 19999: 17.8648% -Rate for instruction 20000: 17.8655% -Rate for instruction 20001: 17.8648% -Rate for instruction 20002: 17.8656% -Rate for instruction 20003: 17.8651% -Rate for instruction 20004: 17.865% -Rate for instruction 20005: 17.8652% -Rate for instruction 20006: 17.8655% -Rate for instruction 20007: 17.8648% -Rate for instruction 20008: 17.8643% -Rate for instruction 20009: 17.8638% -Rate for instruction 20010: 17.8631% -Rate for instruction 20011: 17.8633% -Rate for instruction 20012: 17.8626% -Rate for instruction 20013: 17.8621% -Rate for instruction 20014: 17.862% -Rate for instruction 20015: 17.8626% -Rate for instruction 20016: 17.8633% -Rate for instruction 20017: 17.8641% -Rate for instruction 20018: 17.8648% -Rate for instruction 20019: 17.865% -Rate for instruction 20020: 17.8643% -Rate for instruction 20021: 17.8642% -Rate for instruction 20022: 17.8635% -Rate for instruction 20023: 17.8643% -Rate for instruction 20024: 17.8636% -Rate for instruction 20025: 17.8633% -Rate for instruction 20026: 17.863% -Rate for instruction 20027: 17.8644% -Rate for instruction 20028: 17.8645% -Rate for instruction 20029: 17.8644% -Rate for instruction 20030: 17.8652% -Rate for instruction 20031: 17.8651% -Rate for instruction 20032: 17.8649% -Rate for instruction 20033: 17.8646% -Rate for instruction 20034: 17.8641% -Rate for instruction 20035: 17.8638% -Rate for instruction 20036: 17.8631% -Rate for instruction 20037: 17.8638% -Rate for instruction 20038: 17.8636% -Rate for instruction 20039: 17.8641% -Rate for instruction 20040: 17.8638% -Rate for instruction 20041: 17.8631% -Rate for instruction 20042: 17.8627% -Rate for instruction 20043: 17.8634% -Rate for instruction 20044: 17.8631% -Rate for instruction 20045: 17.8624% -Rate for instruction 20046: 17.8623% -Rate for instruction 20047: 17.8629% -Rate for instruction 20048: 17.8634% -Rate for instruction 20049: 17.8642% -Rate for instruction 20050: 17.8641% -Rate for instruction 20051: 17.8634% -Rate for instruction 20052: 17.8629% -Rate for instruction 20053: 17.8625% -Rate for instruction 20054: 17.862% -Rate for instruction 20055: 17.8627% -Rate for instruction 20056: 17.8635% -Rate for instruction 20057: 17.8634% -Rate for instruction 20058: 17.8638% -Rate for instruction 20059: 17.8643% -Rate for instruction 20060: 17.8644% -Rate for instruction 20061: 17.864% -Rate for instruction 20062: 17.8641% -Rate for instruction 20063: 17.8638% -Rate for instruction 20064: 17.8642% -Rate for instruction 20065: 17.8637% -Rate for instruction 20066: 17.864% -Rate for instruction 20067: 17.8639% -Rate for instruction 20068: 17.8632% -Rate for instruction 20069: 17.8631% -Rate for instruction 20070: 17.8627% -Rate for instruction 20071: 17.8638% -Rate for instruction 20072: 17.8633% -Rate for instruction 20073: 17.8637% -Rate for instruction 20074: 17.8644% -Rate for instruction 20075: 17.8638% -Rate for instruction 20076: 17.8641% -Rate for instruction 20077: 17.8636% -Rate for instruction 20078: 17.8639% -Rate for instruction 20079: 17.8637% -Rate for instruction 20080: 17.8646% -Rate for instruction 20081: 17.8643% -Rate for instruction 20082: 17.8636% -Rate for instruction 20083: 17.8631% -Rate for instruction 20084: 17.8637% -Rate for instruction 20085: 17.8634% -Rate for instruction 20086: 17.8631% -Rate for instruction 20087: 17.8624% -Rate for instruction 20088: 17.8632% -Rate for instruction 20089: 17.8627% -Rate for instruction 20090: 17.8622% -Rate for instruction 20091: 17.8615% -Rate for instruction 20092: 17.8616% -Rate for instruction 20093: 17.8612% -Rate for instruction 20094: 17.8617% -Rate for instruction 20095: 17.8623% -Rate for instruction 20096: 17.8622% -Rate for instruction 20097: 17.8625% -Rate for instruction 20098: 17.8629% -Rate for instruction 20099: 17.8632% -Rate for instruction 20100: 17.8638% -Rate for instruction 20101: 17.8637% -Rate for instruction 20102: 17.8645% -Rate for instruction 20103: 17.864% -Rate for instruction 20104: 17.8645% -Rate for instruction 20105: 17.8647% -Rate for instruction 20106: 17.8646% -Rate for instruction 20107: 17.8647% -Rate for instruction 20108: 17.8648% -Rate for instruction 20109: 17.8641% -Rate for instruction 20110: 17.8647% -Rate for instruction 20111: 17.8644% -Rate for instruction 20112: 17.865% -Rate for instruction 20113: 17.8643% -Rate for instruction 20114: 17.864% -Rate for instruction 20115: 17.8645% -Rate for instruction 20116: 17.8659% -Rate for instruction 20117: 17.8669% -Rate for instruction 20118: 17.8677% -Rate for instruction 20119: 17.8676% -Rate for instruction 20120: 17.8682% -Rate for instruction 20121: 17.8681% -Rate for instruction 20122: 17.8691% -Rate for instruction 20123: 17.87% -Rate for instruction 20124: 17.8695% -Rate for instruction 20125: 17.8692% -Rate for instruction 20126: 17.869% -Rate for instruction 20127: 17.8699% -Rate for instruction 20128: 17.8705% -Rate for instruction 20129: 17.87% -Rate for instruction 20130: 17.8693% -Rate for instruction 20131: 17.8705% -Rate for instruction 20132: 17.8713% -Rate for instruction 20133: 17.8722% -Rate for instruction 20134: 17.873% -Rate for instruction 20135: 17.8727% -Rate for instruction 20136: 17.8733% -Rate for instruction 20137: 17.8738% -Rate for instruction 20138: 17.8731% -Rate for instruction 20139: 17.8733% -Rate for instruction 20140: 17.8738% -Rate for instruction 20141: 17.8733% -Rate for instruction 20142: 17.8732% -Rate for instruction 20143: 17.8727% -Rate for instruction 20144: 17.8733% -Rate for instruction 20145: 17.8726% -Rate for instruction 20146: 17.8738% -Rate for instruction 20147: 17.8747% -Rate for instruction 20148: 17.8762% -Rate for instruction 20149: 17.8771% -Rate for instruction 20150: 17.8773% -Rate for instruction 20151: 17.878% -Rate for instruction 20152: 17.878% -Rate for instruction 20153: 17.8779% -Rate for instruction 20154: 17.8784% -Rate for instruction 20155: 17.8777% -Rate for instruction 20156: 17.877% -Rate for instruction 20157: 17.8767% -Rate for instruction 20158: 17.876% -Rate for instruction 20159: 17.8755% -Rate for instruction 20160: 17.8748% -Rate for instruction 20161: 17.875% -Rate for instruction 20162: 17.8747% -Rate for instruction 20163: 17.8748% -Rate for instruction 20164: 17.8745% -Rate for instruction 20165: 17.8745% -Rate for instruction 20166: 17.8748% -Rate for instruction 20167: 17.875% -Rate for instruction 20168: 17.8749% -Rate for instruction 20169: 17.8744% -Rate for instruction 20170: 17.8751% -Rate for instruction 20171: 17.8757% -Rate for instruction 20172: 17.8759% -Rate for instruction 20173: 17.8756% -Rate for instruction 20174: 17.8763% -Rate for instruction 20175: 17.8763% -Rate for instruction 20176: 17.8766% -Rate for instruction 20177: 17.8767% -Rate for instruction 20178: 17.8762% -Rate for instruction 20179: 17.8766% -Rate for instruction 20180: 17.8769% -Rate for instruction 20181: 17.8777% -Rate for instruction 20182: 17.8783% -Rate for instruction 20183: 17.8784% -Rate for instruction 20184: 17.8785% -Rate for instruction 20185: 17.878% -Rate for instruction 20186: 17.8773% -Rate for instruction 20187: 17.8777% -Rate for instruction 20188: 17.878% -Rate for instruction 20189: 17.8784% -Rate for instruction 20190: 17.8783% -Rate for instruction 20191: 17.878% -Rate for instruction 20192: 17.8775% -Rate for instruction 20193: 17.8777% -Rate for instruction 20194: 17.878% -Rate for instruction 20195: 17.8779% -Rate for instruction 20196: 17.8776% -Rate for instruction 20197: 17.8774% -Rate for instruction 20198: 17.8773% -Rate for instruction 20199: 17.877% -Rate for instruction 20200: 17.8765% -Rate for instruction 20201: 17.8762% -Rate for instruction 20202: 17.8761% -Rate for instruction 20203: 17.8763% -Rate for instruction 20204: 17.8762% -Rate for instruction 20205: 17.8763% -Rate for instruction 20206: 17.8761% -Rate for instruction 20207: 17.876% -Rate for instruction 20208: 17.8761% -Rate for instruction 20209: 17.8756% -Rate for instruction 20210: 17.8749% -Rate for instruction 20211: 17.8751% -Rate for instruction 20212: 17.8746% -Rate for instruction 20213: 17.8745% -Rate for instruction 20214: 17.874% -Rate for instruction 20215: 17.875% -Rate for instruction 20216: 17.8759% -Rate for instruction 20217: 17.8759% -Rate for instruction 20218: 17.8754% -Rate for instruction 20219: 17.8753% -Rate for instruction 20220: 17.875% -Rate for instruction 20221: 17.8747% -Rate for instruction 20222: 17.8744% -Rate for instruction 20223: 17.8744% -Rate for instruction 20224: 17.8741% -Rate for instruction 20225: 17.8736% -Rate for instruction 20226: 17.8744% -Rate for instruction 20227: 17.8743% -Rate for instruction 20228: 17.874% -Rate for instruction 20229: 17.8735% -Rate for instruction 20230: 17.8749% -Rate for instruction 20231: 17.8744% -Rate for instruction 20232: 17.8737% -Rate for instruction 20233: 17.8738% -Rate for instruction 20234: 17.8736% -Rate for instruction 20235: 17.8743% -Rate for instruction 20236: 17.8742% -Rate for instruction 20237: 17.8744% -Rate for instruction 20238: 17.8741% -Rate for instruction 20239: 17.8742% -Rate for instruction 20240: 17.8746% -Rate for instruction 20241: 17.8745% -Rate for instruction 20242: 17.8747% -Rate for instruction 20243: 17.8746% -Rate for instruction 20244: 17.8743% -Rate for instruction 20245: 17.8736% -Rate for instruction 20246: 17.8735% -Rate for instruction 20247: 17.8732% -Rate for instruction 20248: 17.8727% -Rate for instruction 20249: 17.8722% -Rate for instruction 20250: 17.8719% -Rate for instruction 20251: 17.8715% -Rate for instruction 20252: 17.8716% -Rate for instruction 20253: 17.8713% -Rate for instruction 20254: 17.8718% -Rate for instruction 20255: 17.8718% -Rate for instruction 20256: 17.8728% -Rate for instruction 20257: 17.8737% -Rate for instruction 20258: 17.873% -Rate for instruction 20259: 17.8736% -Rate for instruction 20260: 17.8741% -Rate for instruction 20261: 17.8747% -Rate for instruction 20262: 17.8749% -Rate for instruction 20263: 17.875% -Rate for instruction 20264: 17.8747% -Rate for instruction 20265: 17.875% -Rate for instruction 20266: 17.8745% -Rate for instruction 20267: 17.8749% -Rate for instruction 20268: 17.8746% -Rate for instruction 20269: 17.8739% -Rate for instruction 20270: 17.8736% -Rate for instruction 20271: 17.8731% -Rate for instruction 20272: 17.8724% -Rate for instruction 20273: 17.8721% -Rate for instruction 20274: 17.8714% -Rate for instruction 20275: 17.8716% -Rate for instruction 20276: 17.8713% -Rate for instruction 20277: 17.8712% -Rate for instruction 20278: 17.8711% -Rate for instruction 20279: 17.8706% -Rate for instruction 20280: 17.8703% -Rate for instruction 20281: 17.8696% -Rate for instruction 20282: 17.8693% -Rate for instruction 20283: 17.8691% -Rate for instruction 20284: 17.8696% -Rate for instruction 20285: 17.8693% -Rate for instruction 20286: 17.8688% -Rate for instruction 20287: 17.8687% -Rate for instruction 20288: 17.8685% -Rate for instruction 20289: 17.8692% -Rate for instruction 20290: 17.8694% -Rate for instruction 20291: 17.8695% -Rate for instruction 20292: 17.8697% -Rate for instruction 20293: 17.8691% -Rate for instruction 20294: 17.8689% -Rate for instruction 20295: 17.8682% -Rate for instruction 20296: 17.8685% -Rate for instruction 20297: 17.868% -Rate for instruction 20298: 17.8681% -Rate for instruction 20299: 17.8676% -Rate for instruction 20300: 17.8678% -Rate for instruction 20301: 17.8673% -Rate for instruction 20302: 17.8668% -Rate for instruction 20303: 17.8667% -Rate for instruction 20304: 17.867% -Rate for instruction 20305: 17.8666% -Rate for instruction 20306: 17.8661% -Rate for instruction 20307: 17.866% -Rate for instruction 20308: 17.8665% -Rate for instruction 20309: 17.8665% -Rate for instruction 20310: 17.8664% -Rate for instruction 20311: 17.8665% -Rate for instruction 20312: 17.866% -Rate for instruction 20313: 17.8664% -Rate for instruction 20314: 17.8661% -Rate for instruction 20315: 17.8654% -Rate for instruction 20316: 17.8653% -Rate for instruction 20317: 17.865% -Rate for instruction 20318: 17.8649% -Rate for instruction 20319: 17.8651% -Rate for instruction 20320: 17.8661% -Rate for instruction 20321: 17.8666% -Rate for instruction 20322: 17.8666% -Rate for instruction 20323: 17.866% -Rate for instruction 20324: 17.8658% -Rate for instruction 20325: 17.8655% -Rate for instruction 20326: 17.8654% -Rate for instruction 20327: 17.8653% -Rate for instruction 20328: 17.8646% -Rate for instruction 20329: 17.8652% -Rate for instruction 20330: 17.8659% -Rate for instruction 20331: 17.8654% -Rate for instruction 20332: 17.8649% -Rate for instruction 20333: 17.8651% -Rate for instruction 20334: 17.8648% -Rate for instruction 20335: 17.8652% -Rate for instruction 20336: 17.8661% -Rate for instruction 20337: 17.8658% -Rate for instruction 20338: 17.8654% -Rate for instruction 20339: 17.8665% -Rate for instruction 20340: 17.8671% -Rate for instruction 20341: 17.8666% -Rate for instruction 20342: 17.867% -Rate for instruction 20343: 17.8679% -Rate for instruction 20344: 17.8674% -Rate for instruction 20345: 17.8669% -Rate for instruction 20346: 17.8662% -Rate for instruction 20347: 17.8661% -Rate for instruction 20348: 17.8657% -Rate for instruction 20349: 17.8656% -Rate for instruction 20350: 17.8655% -Rate for instruction 20351: 17.8654% -Rate for instruction 20352: 17.8658% -Rate for instruction 20353: 17.8657% -Rate for instruction 20354: 17.865% -Rate for instruction 20355: 17.8651% -Rate for instruction 20356: 17.8655% -Rate for instruction 20357: 17.865% -Rate for instruction 20358: 17.8645% -Rate for instruction 20359: 17.8638% -Rate for instruction 20360: 17.8648% -Rate for instruction 20361: 17.8643% -Rate for instruction 20362: 17.8652% -Rate for instruction 20363: 17.8652% -Rate for instruction 20364: 17.8659% -Rate for instruction 20365: 17.8652% -Rate for instruction 20366: 17.8654% -Rate for instruction 20367: 17.8659% -Rate for instruction 20368: 17.8658% -Rate for instruction 20369: 17.8651% -Rate for instruction 20370: 17.8646% -Rate for instruction 20371: 17.8639% -Rate for instruction 20372: 17.8636% -Rate for instruction 20373: 17.8629% -Rate for instruction 20374: 17.8624% -Rate for instruction 20375: 17.8617% -Rate for instruction 20376: 17.8618% -Rate for instruction 20377: 17.8613% -Rate for instruction 20378: 17.8611% -Rate for instruction 20379: 17.8608% -Rate for instruction 20380: 17.8601% -Rate for instruction 20381: 17.8596% -Rate for instruction 20382: 17.8599% -Rate for instruction 20383: 17.8592% -Rate for instruction 20384: 17.8593% -Rate for instruction 20385: 17.859% -Rate for instruction 20386: 17.8589% -Rate for instruction 20387: 17.8582% -Rate for instruction 20388: 17.8586% -Rate for instruction 20389: 17.8587% -Rate for instruction 20390: 17.8582% -Rate for instruction 20391: 17.8577% -Rate for instruction 20392: 17.8574% -Rate for instruction 20393: 17.8578% -Rate for instruction 20394: 17.8571% -Rate for instruction 20395: 17.857% -Rate for instruction 20396: 17.8569% -Rate for instruction 20397: 17.8573% -Rate for instruction 20398: 17.857% -Rate for instruction 20399: 17.8571% -Rate for instruction 20400: 17.8575% -Rate for instruction 20401: 17.8582% -Rate for instruction 20402: 17.8575% -Rate for instruction 20403: 17.8574% -Rate for instruction 20404: 17.8576% -Rate for instruction 20405: 17.8573% -Rate for instruction 20406: 17.857% -Rate for instruction 20407: 17.8569% -Rate for instruction 20408: 17.8569% -Rate for instruction 20409: 17.8566% -Rate for instruction 20410: 17.8569% -Rate for instruction 20411: 17.8571% -Rate for instruction 20412: 17.8576% -Rate for instruction 20413: 17.8578% -Rate for instruction 20414: 17.8575% -Rate for instruction 20415: 17.858% -Rate for instruction 20416: 17.8573% -Rate for instruction 20417: 17.8574% -Rate for instruction 20418: 17.857% -Rate for instruction 20419: 17.8571% -Rate for instruction 20420: 17.8566% -Rate for instruction 20421: 17.8573% -Rate for instruction 20422: 17.8569% -Rate for instruction 20423: 17.8566% -Rate for instruction 20424: 17.8559% -Rate for instruction 20425: 17.856% -Rate for instruction 20426: 17.8561% -Rate for instruction 20427: 17.8561% -Rate for instruction 20428: 17.856% -Rate for instruction 20429: 17.8559% -Rate for instruction 20430: 17.8558% -Rate for instruction 20431: 17.8559% -Rate for instruction 20432: 17.8557% -Rate for instruction 20433: 17.856% -Rate for instruction 20434: 17.8557% -Rate for instruction 20435: 17.8554% -Rate for instruction 20436: 17.8551% -Rate for instruction 20437: 17.8544% -Rate for instruction 20438: 17.8537% -Rate for instruction 20439: 17.8541% -Rate for instruction 20440: 17.8548% -Rate for instruction 20441: 17.8558% -Rate for instruction 20442: 17.8558% -Rate for instruction 20443: 17.8559% -Rate for instruction 20444: 17.8558% -Rate for instruction 20445: 17.8566% -Rate for instruction 20446: 17.8574% -Rate for instruction 20447: 17.8573% -Rate for instruction 20448: 17.8579% -Rate for instruction 20449: 17.8573% -Rate for instruction 20450: 17.8568% -Rate for instruction 20451: 17.8563% -Rate for instruction 20452: 17.8556% -Rate for instruction 20453: 17.8551% -Rate for instruction 20454: 17.8546% -Rate for instruction 20455: 17.8543% -Rate for instruction 20456: 17.8538% -Rate for instruction 20457: 17.8531% -Rate for instruction 20458: 17.8535% -Rate for instruction 20459: 17.854% -Rate for instruction 20460: 17.8546% -Rate for instruction 20461: 17.8558% -Rate for instruction 20462: 17.8564% -Rate for instruction 20463: 17.8557% -Rate for instruction 20464: 17.8564% -Rate for instruction 20465: 17.8557% -Rate for instruction 20466: 17.8552% -Rate for instruction 20467: 17.8551% -Rate for instruction 20468: 17.8557% -Rate for instruction 20469: 17.855% -Rate for instruction 20470: 17.8562% -Rate for instruction 20471: 17.8567% -Rate for instruction 20472: 17.8571% -Rate for instruction 20473: 17.8566% -Rate for instruction 20474: 17.857% -Rate for instruction 20475: 17.8567% -Rate for instruction 20476: 17.8576% -Rate for instruction 20477: 17.8584% -Rate for instruction 20478: 17.8588% -Rate for instruction 20479: 17.8595% -Rate for instruction 20480: 17.8593% -Rate for instruction 20481: 17.8586% -Rate for instruction 20482: 17.8583% -Rate for instruction 20483: 17.8577% -Rate for instruction 20484: 17.8572% -Rate for instruction 20485: 17.8565% -Rate for instruction 20486: 17.8564% -Rate for instruction 20487: 17.8568% -Rate for instruction 20488: 17.8563% -Rate for instruction 20489: 17.8571% -Rate for instruction 20490: 17.8568% -Rate for instruction 20491: 17.8573% -Rate for instruction 20492: 17.8573% -Rate for instruction 20493: 17.857% -Rate for instruction 20494: 17.8565% -Rate for instruction 20495: 17.8568% -Rate for instruction 20496: 17.8563% -Rate for instruction 20497: 17.8558% -Rate for instruction 20498: 17.8562% -Rate for instruction 20499: 17.8563% -Rate for instruction 20500: 17.8558% -Rate for instruction 20501: 17.8557% -Rate for instruction 20502: 17.8555% -Rate for instruction 20503: 17.8551% -Rate for instruction 20504: 17.8547% -Rate for instruction 20505: 17.8544% -Rate for instruction 20506: 17.8543% -Rate for instruction 20507: 17.854% -Rate for instruction 20508: 17.8545% -Rate for instruction 20509: 17.854% -Rate for instruction 20510: 17.8536% -Rate for instruction 20511: 17.8533% -Rate for instruction 20512: 17.8543% -Rate for instruction 20513: 17.8553% -Rate for instruction 20514: 17.855% -Rate for instruction 20515: 17.8551% -Rate for instruction 20516: 17.8548% -Rate for instruction 20517: 17.8551% -Rate for instruction 20518: 17.8547% -Rate for instruction 20519: 17.8546% -Rate for instruction 20520: 17.8539% -Rate for instruction 20521: 17.8534% -Rate for instruction 20522: 17.8535% -Rate for instruction 20523: 17.8536% -Rate for instruction 20524: 17.8535% -Rate for instruction 20525: 17.8532% -Rate for instruction 20526: 17.8536% -Rate for instruction 20527: 17.8539% -Rate for instruction 20528: 17.8535% -Rate for instruction 20529: 17.8532% -Rate for instruction 20530: 17.8539% -Rate for instruction 20531: 17.8537% -Rate for instruction 20532: 17.8532% -Rate for instruction 20533: 17.8526% -Rate for instruction 20534: 17.853% -Rate for instruction 20535: 17.8527% -Rate for instruction 20536: 17.8522% -Rate for instruction 20537: 17.8526% -Rate for instruction 20538: 17.8522% -Rate for instruction 20539: 17.852% -Rate for instruction 20540: 17.8515% -Rate for instruction 20541: 17.851% -Rate for instruction 20542: 17.8505% -Rate for instruction 20543: 17.8512% -Rate for instruction 20544: 17.8522% -Rate for instruction 20545: 17.8532% -Rate for instruction 20546: 17.8527% -Rate for instruction 20547: 17.852% -Rate for instruction 20548: 17.8515% -Rate for instruction 20549: 17.8508% -Rate for instruction 20550: 17.8502% -Rate for instruction 20551: 17.8508% -Rate for instruction 20552: 17.851% -Rate for instruction 20553: 17.8507% -Rate for instruction 20554: 17.8508% -Rate for instruction 20555: 17.8505% -Rate for instruction 20556: 17.8515% -Rate for instruction 20557: 17.8516% -Rate for instruction 20558: 17.8524% -Rate for instruction 20559: 17.8532% -Rate for instruction 20560: 17.8533% -Rate for instruction 20561: 17.8531% -Rate for instruction 20562: 17.8534% -Rate for instruction 20563: 17.8538% -Rate for instruction 20564: 17.8548% -Rate for instruction 20565: 17.8545% -Rate for instruction 20566: 17.8548% -Rate for instruction 20567: 17.8545% -Rate for instruction 20568: 17.8538% -Rate for instruction 20569: 17.8537% -Rate for instruction 20570: 17.8541% -Rate for instruction 20571: 17.8546% -Rate for instruction 20572: 17.8546% -Rate for instruction 20573: 17.8552% -Rate for instruction 20574: 17.8559% -Rate for instruction 20575: 17.8559% -Rate for instruction 20576: 17.8558% -Rate for instruction 20577: 17.8561% -Rate for instruction 20578: 17.8569% -Rate for instruction 20579: 17.857% -Rate for instruction 20580: 17.8576% -Rate for instruction 20581: 17.858% -Rate for instruction 20582: 17.8587% -Rate for instruction 20583: 17.8585% -Rate for instruction 20584: 17.8586% -Rate for instruction 20585: 17.8581% -Rate for instruction 20586: 17.858% -Rate for instruction 20587: 17.8577% -Rate for instruction 20588: 17.8577% -Rate for instruction 20589: 17.858% -Rate for instruction 20590: 17.8577% -Rate for instruction 20591: 17.8576% -Rate for instruction 20592: 17.8578% -Rate for instruction 20593: 17.8579% -Rate for instruction 20594: 17.8578% -Rate for instruction 20595: 17.8578% -Rate for instruction 20596: 17.8577% -Rate for instruction 20597: 17.8572% -Rate for instruction 20598: 17.8573% -Rate for instruction 20599: 17.8568% -Rate for instruction 20600: 17.8565% -Rate for instruction 20601: 17.8564% -Rate for instruction 20602: 17.8559% -Rate for instruction 20603: 17.8556% -Rate for instruction 20604: 17.8553% -Rate for instruction 20605: 17.8557% -Rate for instruction 20606: 17.8556% -Rate for instruction 20607: 17.8558% -Rate for instruction 20608: 17.8555% -Rate for instruction 20609: 17.8562% -Rate for instruction 20610: 17.856% -Rate for instruction 20611: 17.8565% -Rate for instruction 20612: 17.856% -Rate for instruction 20613: 17.8559% -Rate for instruction 20614: 17.8561% -Rate for instruction 20615: 17.8564% -Rate for instruction 20616: 17.857% -Rate for instruction 20617: 17.8571% -Rate for instruction 20618: 17.8569% -Rate for instruction 20619: 17.8579% -Rate for instruction 20620: 17.8576% -Rate for instruction 20621: 17.8584% -Rate for instruction 20622: 17.8594% -Rate for instruction 20623: 17.8593% -Rate for instruction 20624: 17.859% -Rate for instruction 20625: 17.8587% -Rate for instruction 20626: 17.858% -Rate for instruction 20627: 17.8577% -Rate for instruction 20628: 17.8576% -Rate for instruction 20629: 17.8573% -Rate for instruction 20630: 17.857% -Rate for instruction 20631: 17.8565% -Rate for instruction 20632: 17.8562% -Rate for instruction 20633: 17.8563% -Rate for instruction 20634: 17.8558% -Rate for instruction 20635: 17.8557% -Rate for instruction 20636: 17.8561% -Rate for instruction 20637: 17.8573% -Rate for instruction 20638: 17.8575% -Rate for instruction 20639: 17.858% -Rate for instruction 20640: 17.8582% -Rate for instruction 20641: 17.859% -Rate for instruction 20642: 17.8598% -Rate for instruction 20643: 17.8603% -Rate for instruction 20644: 17.8609% -Rate for instruction 20645: 17.8617% -Rate for instruction 20646: 17.8612% -Rate for instruction 20647: 17.8607% -Rate for instruction 20648: 17.8601% -Rate for instruction 20649: 17.8596% -Rate for instruction 20650: 17.8598% -Rate for instruction 20651: 17.8597% -Rate for instruction 20652: 17.8592% -Rate for instruction 20653: 17.8595% -Rate for instruction 20654: 17.8593% -Rate for instruction 20655: 17.8592% -Rate for instruction 20656: 17.8591% -Rate for instruction 20657: 17.8584% -Rate for instruction 20658: 17.8581% -Rate for instruction 20659: 17.8578% -Rate for instruction 20660: 17.8573% -Rate for instruction 20661: 17.857% -Rate for instruction 20662: 17.8565% -Rate for instruction 20663: 17.8566% -Rate for instruction 20664: 17.8565% -Rate for instruction 20665: 17.8563% -Rate for instruction 20666: 17.8562% -Rate for instruction 20667: 17.8557% -Rate for instruction 20668: 17.8552% -Rate for instruction 20669: 17.8551% -Rate for instruction 20670: 17.8544% -Rate for instruction 20671: 17.8538% -Rate for instruction 20672: 17.8536% -Rate for instruction 20673: 17.8533% -Rate for instruction 20674: 17.8527% -Rate for instruction 20675: 17.8522% -Rate for instruction 20676: 17.8524% -Rate for instruction 20677: 17.8529% -Rate for instruction 20678: 17.8537% -Rate for instruction 20679: 17.8532% -Rate for instruction 20680: 17.8544% -Rate for instruction 20681: 17.8546% -Rate for instruction 20682: 17.8541% -Rate for instruction 20683: 17.8538% -Rate for instruction 20684: 17.8531% -Rate for instruction 20685: 17.8525% -Rate for instruction 20686: 17.8527% -Rate for instruction 20687: 17.852% -Rate for instruction 20688: 17.8516% -Rate for instruction 20689: 17.852% -Rate for instruction 20690: 17.8522% -Rate for instruction 20691: 17.8525% -Rate for instruction 20692: 17.8524% -Rate for instruction 20693: 17.8521% -Rate for instruction 20694: 17.852% -Rate for instruction 20695: 17.8513% -Rate for instruction 20696: 17.8506% -Rate for instruction 20697: 17.8501% -Rate for instruction 20698: 17.85% -Rate for instruction 20699: 17.8501% -Rate for instruction 20700: 17.8505% -Rate for instruction 20701: 17.85% -Rate for instruction 20702: 17.8503% -Rate for instruction 20703: 17.8503% -Rate for instruction 20704: 17.8498% -Rate for instruction 20705: 17.8501% -Rate for instruction 20706: 17.8502% -Rate for instruction 20707: 17.8498% -Rate for instruction 20708: 17.8494% -Rate for instruction 20709: 17.8491% -Rate for instruction 20710: 17.8489% -Rate for instruction 20711: 17.849% -Rate for instruction 20712: 17.8485% -Rate for instruction 20713: 17.8484% -Rate for instruction 20714: 17.8479% -Rate for instruction 20715: 17.848% -Rate for instruction 20716: 17.8475% -Rate for instruction 20717: 17.8468% -Rate for instruction 20718: 17.8465% -Rate for instruction 20719: 17.8462% -Rate for instruction 20720: 17.8455% -Rate for instruction 20721: 17.8452% -Rate for instruction 20722: 17.8445% -Rate for instruction 20723: 17.8446% -Rate for instruction 20724: 17.8443% -Rate for instruction 20725: 17.8438% -Rate for instruction 20726: 17.8435% -Rate for instruction 20727: 17.8436% -Rate for instruction 20728: 17.8436% -Rate for instruction 20729: 17.8433% -Rate for instruction 20730: 17.8428% -Rate for instruction 20731: 17.8424% -Rate for instruction 20732: 17.8424% -Rate for instruction 20733: 17.8429% -Rate for instruction 20734: 17.8422% -Rate for instruction 20735: 17.8426% -Rate for instruction 20736: 17.8427% -Rate for instruction 20737: 17.8426% -Rate for instruction 20738: 17.8423% -Rate for instruction 20739: 17.842% -Rate for instruction 20740: 17.8422% -Rate for instruction 20741: 17.8415% -Rate for instruction 20742: 17.8411% -Rate for instruction 20743: 17.8406% -Rate for instruction 20744: 17.8412% -Rate for instruction 20745: 17.8414% -Rate for instruction 20746: 17.8409% -Rate for instruction 20747: 17.8406% -Rate for instruction 20748: 17.8403% -Rate for instruction 20749: 17.84% -Rate for instruction 20750: 17.8395% -Rate for instruction 20751: 17.8389% -Rate for instruction 20752: 17.8382% -Rate for instruction 20753: 17.8375% -Rate for instruction 20754: 17.8374% -Rate for instruction 20755: 17.8377% -Rate for instruction 20756: 17.8374% -Rate for instruction 20757: 17.8372% -Rate for instruction 20758: 17.838% -Rate for instruction 20759: 17.839% -Rate for instruction 20760: 17.8391% -Rate for instruction 20761: 17.839% -Rate for instruction 20762: 17.84% -Rate for instruction 20763: 17.8393% -Rate for instruction 20764: 17.8397% -Rate for instruction 20765: 17.8393% -Rate for instruction 20766: 17.8402% -Rate for instruction 20767: 17.8396% -Rate for instruction 20768: 17.8391% -Rate for instruction 20769: 17.8386% -Rate for instruction 20770: 17.84% -Rate for instruction 20771: 17.8393% -Rate for instruction 20772: 17.8403% -Rate for instruction 20773: 17.8403% -Rate for instruction 20774: 17.8404% -Rate for instruction 20775: 17.8412% -Rate for instruction 20776: 17.842% -Rate for instruction 20777: 17.8428% -Rate for instruction 20778: 17.8427% -Rate for instruction 20779: 17.843% -Rate for instruction 20780: 17.8425% -Rate for instruction 20781: 17.8429% -Rate for instruction 20782: 17.8435% -Rate for instruction 20783: 17.8442% -Rate for instruction 20784: 17.8435% -Rate for instruction 20785: 17.843% -Rate for instruction 20786: 17.8442% -Rate for instruction 20787: 17.845% -Rate for instruction 20788: 17.8449% -Rate for instruction 20789: 17.8444% -Rate for instruction 20790: 17.8446% -Rate for instruction 20791: 17.8454% -Rate for instruction 20792: 17.8462% -Rate for instruction 20793: 17.8459% -Rate for instruction 20794: 17.8464% -Rate for instruction 20795: 17.8472% -Rate for instruction 20796: 17.8465% -Rate for instruction 20797: 17.8462% -Rate for instruction 20798: 17.8463% -Rate for instruction 20799: 17.8467% -Rate for instruction 20800: 17.847% -Rate for instruction 20801: 17.8463% -Rate for instruction 20802: 17.8464% -Rate for instruction 20803: 17.847% -Rate for instruction 20804: 17.8472% -Rate for instruction 20805: 17.8467% -Rate for instruction 20806: 17.8466% -Rate for instruction 20807: 17.8463% -Rate for instruction 20808: 17.8464% -Rate for instruction 20809: 17.8461% -Rate for instruction 20810: 17.8454% -Rate for instruction 20811: 17.8451% -Rate for instruction 20812: 17.8448% -Rate for instruction 20813: 17.8452% -Rate for instruction 20814: 17.8453% -Rate for instruction 20815: 17.845% -Rate for instruction 20816: 17.8447% -Rate for instruction 20817: 17.844% -Rate for instruction 20818: 17.8448% -Rate for instruction 20819: 17.8458% -Rate for instruction 20820: 17.8457% -Rate for instruction 20821: 17.8465% -Rate for instruction 20822: 17.8462% -Rate for instruction 20823: 17.8463% -Rate for instruction 20824: 17.8456% -Rate for instruction 20825: 17.8464% -Rate for instruction 20826: 17.847% -Rate for instruction 20827: 17.8475% -Rate for instruction 20828: 17.8481% -Rate for instruction 20829: 17.8481% -Rate for instruction 20830: 17.8495% -Rate for instruction 20831: 17.8503% -Rate for instruction 20832: 17.8507% -Rate for instruction 20833: 17.8501% -Rate for instruction 20834: 17.8494% -Rate for instruction 20835: 17.8493% -Rate for instruction 20836: 17.8486% -Rate for instruction 20837: 17.8481% -Rate for instruction 20838: 17.8475% -Rate for instruction 20839: 17.8475% -Rate for instruction 20840: 17.8485% -Rate for instruction 20841: 17.8478% -Rate for instruction 20842: 17.8492% -Rate for instruction 20843: 17.8493% -Rate for instruction 20844: 17.8491% -Rate for instruction 20845: 17.8498% -Rate for instruction 20846: 17.8493% -Rate for instruction 20847: 17.849% -Rate for instruction 20848: 17.8487% -Rate for instruction 20849: 17.8487% -Rate for instruction 20850: 17.8482% -Rate for instruction 20851: 17.8489% -Rate for instruction 20852: 17.8489% -Rate for instruction 20853: 17.8486% -Rate for instruction 20854: 17.8487% -Rate for instruction 20855: 17.8493% -Rate for instruction 20856: 17.8498% -Rate for instruction 20857: 17.8495% -Rate for instruction 20858: 17.8495% -Rate for instruction 20859: 17.849% -Rate for instruction 20860: 17.8489% -Rate for instruction 20861: 17.8482% -Rate for instruction 20862: 17.8483% -Rate for instruction 20863: 17.8476% -Rate for instruction 20864: 17.8481% -Rate for instruction 20865: 17.8485% -Rate for instruction 20866: 17.8488% -Rate for instruction 20867: 17.8488% -Rate for instruction 20868: 17.8502% -Rate for instruction 20869: 17.8504% -Rate for instruction 20870: 17.8501% -Rate for instruction 20871: 17.8506% -Rate for instruction 20872: 17.8499% -Rate for instruction 20873: 17.8496% -Rate for instruction 20874: 17.8497% -Rate for instruction 20875: 17.8499% -Rate for instruction 20876: 17.8498% -Rate for instruction 20877: 17.8491% -Rate for instruction 20878: 17.8488% -Rate for instruction 20879: 17.8481% -Rate for instruction 20880: 17.8478% -Rate for instruction 20881: 17.8472% -Rate for instruction 20882: 17.8467% -Rate for instruction 20883: 17.8466% -Rate for instruction 20884: 17.8459% -Rate for instruction 20885: 17.8454% -Rate for instruction 20886: 17.8457% -Rate for instruction 20887: 17.8461% -Rate for instruction 20888: 17.846% -Rate for instruction 20889: 17.8457% -Rate for instruction 20890: 17.8457% -Rate for instruction 20891: 17.8462% -Rate for instruction 20892: 17.8468% -Rate for instruction 20893: 17.8478% -Rate for instruction 20894: 17.8477% -Rate for instruction 20895: 17.8474% -Rate for instruction 20896: 17.8471% -Rate for instruction 20897: 17.8466% -Rate for instruction 20898: 17.8468% -Rate for instruction 20899: 17.8463% -Rate for instruction 20900: 17.8459% -Rate for instruction 20901: 17.8452% -Rate for instruction 20902: 17.8454% -Rate for instruction 20903: 17.8449% -Rate for instruction 20904: 17.845% -Rate for instruction 20905: 17.8447% -Rate for instruction 20906: 17.8442% -Rate for instruction 20907: 17.8441% -Rate for instruction 20908: 17.8442% -Rate for instruction 20909: 17.8441% -Rate for instruction 20910: 17.8439% -Rate for instruction 20911: 17.8442% -Rate for instruction 20912: 17.8444% -Rate for instruction 20913: 17.8447% -Rate for instruction 20914: 17.8444% -Rate for instruction 20915: 17.8441% -Rate for instruction 20916: 17.8434% -Rate for instruction 20917: 17.8431% -Rate for instruction 20918: 17.8432% -Rate for instruction 20919: 17.8434% -Rate for instruction 20920: 17.8439% -Rate for instruction 20921: 17.8445% -Rate for instruction 20922: 17.8449% -Rate for instruction 20923: 17.8454% -Rate for instruction 20924: 17.8456% -Rate for instruction 20925: 17.8457% -Rate for instruction 20926: 17.8465% -Rate for instruction 20927: 17.8462% -Rate for instruction 20928: 17.8466% -Rate for instruction 20929: 17.8459% -Rate for instruction 20930: 17.8462% -Rate for instruction 20931: 17.8466% -Rate for instruction 20932: 17.8469% -Rate for instruction 20933: 17.8464% -Rate for instruction 20934: 17.8474% -Rate for instruction 20935: 17.8484% -Rate for instruction 20936: 17.8495% -Rate for instruction 20937: 17.85% -Rate for instruction 20938: 17.8508% -Rate for instruction 20939: 17.8519% -Rate for instruction 20940: 17.8518% -Rate for instruction 20941: 17.8528% -Rate for instruction 20942: 17.8529% -Rate for instruction 20943: 17.8526% -Rate for instruction 20944: 17.8521% -Rate for instruction 20945: 17.8521% -Rate for instruction 20946: 17.8518% -Rate for instruction 20947: 17.8515% -Rate for instruction 20948: 17.851% -Rate for instruction 20949: 17.8507% -Rate for instruction 20950: 17.8503% -Rate for instruction 20951: 17.8503% -Rate for instruction 20952: 17.8506% -Rate for instruction 20953: 17.8508% -Rate for instruction 20954: 17.8509% -Rate for instruction 20955: 17.8513% -Rate for instruction 20956: 17.8512% -Rate for instruction 20957: 17.852% -Rate for instruction 20958: 17.853% -Rate for instruction 20959: 17.8531% -Rate for instruction 20960: 17.8528% -Rate for instruction 20961: 17.853% -Rate for instruction 20962: 17.8534% -Rate for instruction 20963: 17.8537% -Rate for instruction 20964: 17.8532% -Rate for instruction 20965: 17.8525% -Rate for instruction 20966: 17.852% -Rate for instruction 20967: 17.8528% -Rate for instruction 20968: 17.8524% -Rate for instruction 20969: 17.8532% -Rate for instruction 20970: 17.8541% -Rate for instruction 20971: 17.8542% -Rate for instruction 20972: 17.855% -Rate for instruction 20973: 17.8549% -Rate for instruction 20974: 17.8542% -Rate for instruction 20975: 17.8537% -Rate for instruction 20976: 17.8531% -Rate for instruction 20977: 17.8528% -Rate for instruction 20978: 17.8521% -Rate for instruction 20979: 17.8516% -Rate for instruction 20980: 17.8509% -Rate for instruction 20981: 17.8516% -Rate for instruction 20982: 17.8514% -Rate for instruction 20983: 17.8513% -Rate for instruction 20984: 17.8516% -Rate for instruction 20985: 17.852% -Rate for instruction 20986: 17.8515% -Rate for instruction 20987: 17.8512% -Rate for instruction 20988: 17.8507% -Rate for instruction 20989: 17.8512% -Rate for instruction 20990: 17.8516% -Rate for instruction 20991: 17.8517% -Rate for instruction 20992: 17.8517% -Rate for instruction 20993: 17.8513% -Rate for instruction 20994: 17.8511% -Rate for instruction 20995: 17.8505% -Rate for instruction 20996: 17.8507% -Rate for instruction 20997: 17.8508% -Rate for instruction 20998: 17.8507% -Rate for instruction 20999: 17.8505% -Rate for instruction 21000: 17.8506% -Rate for instruction 21001: 17.8505% -Rate for instruction 21002: 17.8506% -Rate for instruction 21003: 17.8501% -Rate for instruction 21004: 17.8498% -Rate for instruction 21005: 17.8495% -Rate for instruction 21006: 17.849% -Rate for instruction 21007: 17.8492% -Rate for instruction 21008: 17.8495% -Rate for instruction 21009: 17.8496% -Rate for instruction 21010: 17.8498% -Rate for instruction 21011: 17.8493% -Rate for instruction 21012: 17.8492% -Rate for instruction 21013: 17.8487% -Rate for instruction 21014: 17.8492% -Rate for instruction 21015: 17.8496% -Rate for instruction 21016: 17.8502% -Rate for instruction 21017: 17.8497% -Rate for instruction 21018: 17.8492% -Rate for instruction 21019: 17.8488% -Rate for instruction 21020: 17.8486% -Rate for instruction 21021: 17.8491% -Rate for instruction 21022: 17.8497% -Rate for instruction 21023: 17.8501% -Rate for instruction 21024: 17.8494% -Rate for instruction 21025: 17.8497% -Rate for instruction 21026: 17.8501% -Rate for instruction 21027: 17.8495% -Rate for instruction 21028: 17.8492% -Rate for instruction 21029: 17.8489% -Rate for instruction 21030: 17.8493% -Rate for instruction 21031: 17.8505% -Rate for instruction 21032: 17.8509% -Rate for instruction 21033: 17.8508% -Rate for instruction 21034: 17.8505% -Rate for instruction 21035: 17.8509% -Rate for instruction 21036: 17.8513% -Rate for instruction 21037: 17.8514% -Rate for instruction 21038: 17.8518% -Rate for instruction 21039: 17.8524% -Rate for instruction 21040: 17.8523% -Rate for instruction 21041: 17.8518% -Rate for instruction 21042: 17.8523% -Rate for instruction 21043: 17.8525% -Rate for instruction 21044: 17.8524% -Rate for instruction 21045: 17.8517% -Rate for instruction 21046: 17.8514% -Rate for instruction 21047: 17.8508% -Rate for instruction 21048: 17.8508% -Rate for instruction 21049: 17.8504% -Rate for instruction 21050: 17.8502% -Rate for instruction 21051: 17.8499% -Rate for instruction 21052: 17.85% -Rate for instruction 21053: 17.8493% -Rate for instruction 21054: 17.8492% -Rate for instruction 21055: 17.85% -Rate for instruction 21056: 17.8494% -Rate for instruction 21057: 17.8489% -Rate for instruction 21058: 17.8489% -Rate for instruction 21059: 17.8485% -Rate for instruction 21060: 17.8493% -Rate for instruction 21061: 17.8491% -Rate for instruction 21062: 17.8496% -Rate for instruction 21063: 17.85% -Rate for instruction 21064: 17.8506% -Rate for instruction 21065: 17.8521% -Rate for instruction 21066: 17.8522% -Rate for instruction 21067: 17.8515% -Rate for instruction 21068: 17.8516% -Rate for instruction 21069: 17.8511% -Rate for instruction 21070: 17.8514% -Rate for instruction 21071: 17.8527% -Rate for instruction 21072: 17.8526% -Rate for instruction 21073: 17.8527% -Rate for instruction 21074: 17.8531% -Rate for instruction 21075: 17.8532% -Rate for instruction 21076: 17.8534% -Rate for instruction 21077: 17.8535% -Rate for instruction 21078: 17.853% -Rate for instruction 21079: 17.8529% -Rate for instruction 21080: 17.8524% -Rate for instruction 21081: 17.853% -Rate for instruction 21082: 17.8534% -Rate for instruction 21083: 17.8529% -Rate for instruction 21084: 17.8525% -Rate for instruction 21085: 17.8518% -Rate for instruction 21086: 17.8515% -Rate for instruction 21087: 17.8514% -Rate for instruction 21088: 17.8516% -Rate for instruction 21089: 17.8512% -Rate for instruction 21090: 17.8516% -Rate for instruction 21091: 17.852% -Rate for instruction 21092: 17.8517% -Rate for instruction 21093: 17.8516% -Rate for instruction 21094: 17.8513% -Rate for instruction 21095: 17.8515% -Rate for instruction 21096: 17.8511% -Rate for instruction 21097: 17.8504% -Rate for instruction 21098: 17.8499% -Rate for instruction 21099: 17.8509% -Rate for instruction 21100: 17.8517% -Rate for instruction 21101: 17.8525% -Rate for instruction 21102: 17.8527% -Rate for instruction 21103: 17.8526% -Rate for instruction 21104: 17.8536% -Rate for instruction 21105: 17.854% -Rate for instruction 21106: 17.8544% -Rate for instruction 21107: 17.8552% -Rate for instruction 21108: 17.8546% -Rate for instruction 21109: 17.8543% -Rate for instruction 21110: 17.854% -Rate for instruction 21111: 17.8533% -Rate for instruction 21112: 17.853% -Rate for instruction 21113: 17.8524% -Rate for instruction 21114: 17.8521% -Rate for instruction 21115: 17.8518% -Rate for instruction 21116: 17.8522% -Rate for instruction 21117: 17.8524% -Rate for instruction 21118: 17.8518% -Rate for instruction 21119: 17.8515% -Rate for instruction 21120: 17.8521% -Rate for instruction 21121: 17.8516% -Rate for instruction 21122: 17.8517% -Rate for instruction 21123: 17.8521% -Rate for instruction 21124: 17.8525% -Rate for instruction 21125: 17.8524% -Rate for instruction 21126: 17.853% -Rate for instruction 21127: 17.8533% -Rate for instruction 21128: 17.8528% -Rate for instruction 21129: 17.8529% -Rate for instruction 21130: 17.8531% -Rate for instruction 21131: 17.8532% -Rate for instruction 21132: 17.853% -Rate for instruction 21133: 17.8527% -Rate for instruction 21134: 17.8525% -Rate for instruction 21135: 17.8531% -Rate for instruction 21136: 17.8531% -Rate for instruction 21137: 17.853% -Rate for instruction 21138: 17.8534% -Rate for instruction 21139: 17.8533% -Rate for instruction 21140: 17.8538% -Rate for instruction 21141: 17.8544% -Rate for instruction 21142: 17.8542% -Rate for instruction 21143: 17.8538% -Rate for instruction 21144: 17.854% -Rate for instruction 21145: 17.8533% -Rate for instruction 21146: 17.8529% -Rate for instruction 21147: 17.8524% -Rate for instruction 21148: 17.8521% -Rate for instruction 21149: 17.8516% -Rate for instruction 21150: 17.8509% -Rate for instruction 21151: 17.8505% -Rate for instruction 21152: 17.8505% -Rate for instruction 21153: 17.8504% -Rate for instruction 21154: 17.8499% -Rate for instruction 21155: 17.8496% -Rate for instruction 21156: 17.8493% -Rate for instruction 21157: 17.8496% -Rate for instruction 21158: 17.8497% -Rate for instruction 21159: 17.8494% -Rate for instruction 21160: 17.8498% -Rate for instruction 21161: 17.8511% -Rate for instruction 21162: 17.8515% -Rate for instruction 21163: 17.8516% -Rate for instruction 21164: 17.8511% -Rate for instruction 21165: 17.8505% -Rate for instruction 21166: 17.8511% -Rate for instruction 21167: 17.851% -Rate for instruction 21168: 17.8516% -Rate for instruction 21169: 17.8518% -Rate for instruction 21170: 17.8517% -Rate for instruction 21171: 17.8523% -Rate for instruction 21172: 17.8529% -Rate for instruction 21173: 17.8534% -Rate for instruction 21174: 17.8538% -Rate for instruction 21175: 17.854% -Rate for instruction 21176: 17.8546% -Rate for instruction 21177: 17.8552% -Rate for instruction 21178: 17.8553% -Rate for instruction 21179: 17.8556% -Rate for instruction 21180: 17.8562% -Rate for instruction 21181: 17.8559% -Rate for instruction 21182: 17.8561% -Rate for instruction 21183: 17.8558% -Rate for instruction 21184: 17.8561% -Rate for instruction 21185: 17.8569% -Rate for instruction 21186: 17.8573% -Rate for instruction 21187: 17.8566% -Rate for instruction 21188: 17.8567% -Rate for instruction 21189: 17.8568% -Rate for instruction 21190: 17.8566% -Rate for instruction 21191: 17.8567% -Rate for instruction 21192: 17.856% -Rate for instruction 21193: 17.8565% -Rate for instruction 21194: 17.8565% -Rate for instruction 21195: 17.8561% -Rate for instruction 21196: 17.8559% -Rate for instruction 21197: 17.8562% -Rate for instruction 21198: 17.8564% -Rate for instruction 21199: 17.8567% -Rate for instruction 21200: 17.8569% -Rate for instruction 21201: 17.8563% -Rate for instruction 21202: 17.8567% -Rate for instruction 21203: 17.8569% -Rate for instruction 21204: 17.8566% -Rate for instruction 21205: 17.8565% -Rate for instruction 21206: 17.856% -Rate for instruction 21207: 17.8563% -Rate for instruction 21208: 17.8571% -Rate for instruction 21209: 17.857% -Rate for instruction 21210: 17.857% -Rate for instruction 21211: 17.8567% -Rate for instruction 21212: 17.8568% -Rate for instruction 21213: 17.8563% -Rate for instruction 21214: 17.8566% -Rate for instruction 21215: 17.8568% -Rate for instruction 21216: 17.8561% -Rate for instruction 21217: 17.8568% -Rate for instruction 21218: 17.8561% -Rate for instruction 21219: 17.8558% -Rate for instruction 21220: 17.8557% -Rate for instruction 21221: 17.8557% -Rate for instruction 21222: 17.8562% -Rate for instruction 21223: 17.8561% -Rate for instruction 21224: 17.8567% -Rate for instruction 21225: 17.8582% -Rate for instruction 21226: 17.8577% -Rate for instruction 21227: 17.8574% -Rate for instruction 21228: 17.8569% -Rate for instruction 21229: 17.8572% -Rate for instruction 21230: 17.8565% -Rate for instruction 21231: 17.8568% -Rate for instruction 21232: 17.8568% -Rate for instruction 21233: 17.8572% -Rate for instruction 21234: 17.8577% -Rate for instruction 21235: 17.8586% -Rate for instruction 21236: 17.8596% -Rate for instruction 21237: 17.8599% -Rate for instruction 21238: 17.8592% -Rate for instruction 21239: 17.8598% -Rate for instruction 21240: 17.8599% -Rate for instruction 21241: 17.8592% -Rate for instruction 21242: 17.8591% -Rate for instruction 21243: 17.8584% -Rate for instruction 21244: 17.858% -Rate for instruction 21245: 17.8577% -Rate for instruction 21246: 17.8574% -Rate for instruction 21247: 17.8567% -Rate for instruction 21248: 17.856% -Rate for instruction 21249: 17.8557% -Rate for instruction 21250: 17.856% -Rate for instruction 21251: 17.8561% -Rate for instruction 21252: 17.8559% -Rate for instruction 21253: 17.856% -Rate for instruction 21254: 17.8555% -Rate for instruction 21255: 17.8556% -Rate for instruction 21256: 17.8558% -Rate for instruction 21257: 17.8552% -Rate for instruction 21258: 17.8552% -Rate for instruction 21259: 17.856% -Rate for instruction 21260: 17.8563% -Rate for instruction 21261: 17.8565% -Rate for instruction 21262: 17.8559% -Rate for instruction 21263: 17.8556% -Rate for instruction 21264: 17.8549% -Rate for instruction 21265: 17.8544% -Rate for instruction 21266: 17.8538% -Rate for instruction 21267: 17.8537% -Rate for instruction 21268: 17.8537% -Rate for instruction 21269: 17.8536% -Rate for instruction 21270: 17.8529% -Rate for instruction 21271: 17.8525% -Rate for instruction 21272: 17.8522% -Rate for instruction 21273: 17.8515% -Rate for instruction 21274: 17.8516% -Rate for instruction 21275: 17.8513% -Rate for instruction 21276: 17.8508% -Rate for instruction 21277: 17.8516% -Rate for instruction 21278: 17.8509% -Rate for instruction 21279: 17.8512% -Rate for instruction 21280: 17.8518% -Rate for instruction 21281: 17.8522% -Rate for instruction 21282: 17.8516% -Rate for instruction 21283: 17.8511% -Rate for instruction 21284: 17.8515% -Rate for instruction 21285: 17.851% -Rate for instruction 21286: 17.8513% -Rate for instruction 21287: 17.8508% -Rate for instruction 21288: 17.851% -Rate for instruction 21289: 17.8504% -Rate for instruction 21290: 17.8504% -Rate for instruction 21291: 17.8498% -Rate for instruction 21292: 17.8502% -Rate for instruction 21293: 17.8497% -Rate for instruction 21294: 17.85% -Rate for instruction 21295: 17.8497% -Rate for instruction 21296: 17.8496% -Rate for instruction 21297: 17.8493% -Rate for instruction 21298: 17.8488% -Rate for instruction 21299: 17.8496% -Rate for instruction 21300: 17.8491% -Rate for instruction 21301: 17.849% -Rate for instruction 21302: 17.8485% -Rate for instruction 21303: 17.8484% -Rate for instruction 21304: 17.8481% -Rate for instruction 21305: 17.8491% -Rate for instruction 21306: 17.8488% -Rate for instruction 21307: 17.8487% -Rate for instruction 21308: 17.8484% -Rate for instruction 21309: 17.8481% -Rate for instruction 21310: 17.8481% -Rate for instruction 21311: 17.8478% -Rate for instruction 21312: 17.8488% -Rate for instruction 21313: 17.8489% -Rate for instruction 21314: 17.8493% -Rate for instruction 21315: 17.8486% -Rate for instruction 21316: 17.848% -Rate for instruction 21317: 17.8482% -Rate for instruction 21318: 17.8487% -Rate for instruction 21319: 17.8482% -Rate for instruction 21320: 17.8488% -Rate for instruction 21321: 17.8485% -Rate for instruction 21322: 17.8485% -Rate for instruction 21323: 17.8481% -Rate for instruction 21324: 17.8485% -Rate for instruction 21325: 17.848% -Rate for instruction 21326: 17.8475% -Rate for instruction 21327: 17.8474% -Rate for instruction 21328: 17.8473% -Rate for instruction 21329: 17.847% -Rate for instruction 21330: 17.8465% -Rate for instruction 21331: 17.8464% -Rate for instruction 21332: 17.8469% -Rate for instruction 21333: 17.8473% -Rate for instruction 21334: 17.8484% -Rate for instruction 21335: 17.8485% -Rate for instruction 21336: 17.85% -Rate for instruction 21337: 17.8495% -Rate for instruction 21338: 17.8489% -Rate for instruction 21339: 17.8491% -Rate for instruction 21340: 17.8486% -Rate for instruction 21341: 17.8491% -Rate for instruction 21342: 17.8493% -Rate for instruction 21343: 17.8488% -Rate for instruction 21344: 17.8493% -Rate for instruction 21345: 17.8486% -Rate for instruction 21346: 17.8492% -Rate for instruction 21347: 17.8502% -Rate for instruction 21348: 17.8499% -Rate for instruction 21349: 17.8494% -Rate for instruction 21350: 17.8489% -Rate for instruction 21351: 17.8502% -Rate for instruction 21352: 17.8498% -Rate for instruction 21353: 17.8491% -Rate for instruction 21354: 17.8504% -Rate for instruction 21355: 17.85% -Rate for instruction 21356: 17.8497% -Rate for instruction 21357: 17.8508% -Rate for instruction 21358: 17.8507% -Rate for instruction 21359: 17.8502% -Rate for instruction 21360: 17.8506% -Rate for instruction 21361: 17.8505% -Rate for instruction 21362: 17.8519% -Rate for instruction 21363: 17.8514% -Rate for instruction 21364: 17.8518% -Rate for instruction 21365: 17.8528% -Rate for instruction 21366: 17.8536% -Rate for instruction 21367: 17.8529% -Rate for instruction 21368: 17.8535% -Rate for instruction 21369: 17.8546% -Rate for instruction 21370: 17.8549% -Rate for instruction 21371: 17.8555% -Rate for instruction 21372: 17.855% -Rate for instruction 21373: 17.856% -Rate for instruction 21374: 17.8553% -Rate for instruction 21375: 17.8563% -Rate for instruction 21376: 17.8558% -Rate for instruction 21377: 17.8552% -Rate for instruction 21378: 17.8547% -Rate for instruction 21379: 17.8555% -Rate for instruction 21380: 17.8554% -Rate for instruction 21381: 17.8554% -Rate for instruction 21382: 17.8548% -Rate for instruction 21383: 17.8541% -Rate for instruction 21384: 17.8538% -Rate for instruction 21385: 17.8532% -Rate for instruction 21386: 17.8527% -Rate for instruction 21387: 17.8527% -Rate for instruction 21388: 17.8532% -Rate for instruction 21389: 17.8531% -Rate for instruction 21390: 17.8528% -Rate for instruction 21391: 17.8526% -Rate for instruction 21392: 17.8524% -Rate for instruction 21393: 17.8517% -Rate for instruction 21394: 17.8516% -Rate for instruction 21395: 17.8516% -Rate for instruction 21396: 17.8514% -Rate for instruction 21397: 17.8509% -Rate for instruction 21398: 17.8508% -Rate for instruction 21399: 17.8501% -Rate for instruction 21400: 17.85% -Rate for instruction 21401: 17.8493% -Rate for instruction 21402: 17.8487% -Rate for instruction 21403: 17.8482% -Rate for instruction 21404: 17.8477% -Rate for instruction 21405: 17.8474% -Rate for instruction 21406: 17.8471% -Rate for instruction 21407: 17.8469% -Rate for instruction 21408: 17.8467% -Rate for instruction 21409: 17.8464% -Rate for instruction 21410: 17.846% -Rate for instruction 21411: 17.8457% -Rate for instruction 21412: 17.8454% -Rate for instruction 21413: 17.8451% -Rate for instruction 21414: 17.8444% -Rate for instruction 21415: 17.8443% -Rate for instruction 21416: 17.844% -Rate for instruction 21417: 17.8437% -Rate for instruction 21418: 17.8434% -Rate for instruction 21419: 17.8431% -Rate for instruction 21420: 17.8436% -Rate for instruction 21421: 17.8436% -Rate for instruction 21422: 17.8437% -Rate for instruction 21423: 17.8436% -Rate for instruction 21424: 17.8435% -Rate for instruction 21425: 17.8435% -Rate for instruction 21426: 17.8434% -Rate for instruction 21427: 17.8431% -Rate for instruction 21428: 17.8434% -Rate for instruction 21429: 17.8438% -Rate for instruction 21430: 17.8442% -Rate for instruction 21431: 17.8436% -Rate for instruction 21432: 17.8434% -Rate for instruction 21433: 17.8437% -Rate for instruction 21434: 17.8436% -Rate for instruction 21435: 17.8433% -Rate for instruction 21436: 17.8441% -Rate for instruction 21437: 17.8443% -Rate for instruction 21438: 17.8436% -Rate for instruction 21439: 17.8432% -Rate for instruction 21440: 17.8429% -Rate for instruction 21441: 17.8424% -Rate for instruction 21442: 17.8418% -Rate for instruction 21443: 17.8416% -Rate for instruction 21444: 17.8417% -Rate for instruction 21445: 17.8418% -Rate for instruction 21446: 17.8413% -Rate for instruction 21447: 17.8412% -Rate for instruction 21448: 17.8405% -Rate for instruction 21449: 17.8402% -Rate for instruction 21450: 17.8401% -Rate for instruction 21451: 17.8398% -Rate for instruction 21452: 17.8408% -Rate for instruction 21453: 17.8403% -Rate for instruction 21454: 17.8409% -Rate for instruction 21455: 17.8403% -Rate for instruction 21456: 17.8398% -Rate for instruction 21457: 17.8408% -Rate for instruction 21458: 17.8405% -Rate for instruction 21459: 17.8412% -Rate for instruction 21460: 17.8422% -Rate for instruction 21461: 17.8433% -Rate for instruction 21462: 17.8441% -Rate for instruction 21463: 17.8438% -Rate for instruction 21464: 17.8435% -Rate for instruction 21465: 17.8443% -Rate for instruction 21466: 17.8449% -Rate for instruction 21467: 17.8443% -Rate for instruction 21468: 17.8445% -Rate for instruction 21469: 17.8448% -Rate for instruction 21470: 17.8459% -Rate for instruction 21471: 17.8452% -Rate for instruction 21472: 17.8451% -Rate for instruction 21473: 17.8461% -Rate for instruction 21474: 17.8454% -Rate for instruction 21475: 17.8468% -Rate for instruction 21476: 17.8472% -Rate for instruction 21477: 17.8478% -Rate for instruction 21478: 17.8482% -Rate for instruction 21479: 17.8492% -Rate for instruction 21480: 17.8501% -Rate for instruction 21481: 17.8504% -Rate for instruction 21482: 17.8501% -Rate for instruction 21483: 17.8494% -Rate for instruction 21484: 17.85% -Rate for instruction 21485: 17.8494% -Rate for instruction 21486: 17.8491% -Rate for instruction 21487: 17.8488% -Rate for instruction 21488: 17.8481% -Rate for instruction 21489: 17.8478% -Rate for instruction 21490: 17.8483% -Rate for instruction 21491: 17.8483% -Rate for instruction 21492: 17.8477% -Rate for instruction 21493: 17.8483% -Rate for instruction 21494: 17.8491% -Rate for instruction 21495: 17.8497% -Rate for instruction 21496: 17.8506% -Rate for instruction 21497: 17.85% -Rate for instruction 21498: 17.8497% -Rate for instruction 21499: 17.8504% -Rate for instruction 21500: 17.8498% -Rate for instruction 21501: 17.8502% -Rate for instruction 21502: 17.8512% -Rate for instruction 21503: 17.8512% -Rate for instruction 21504: 17.852% -Rate for instruction 21505: 17.8514% -Rate for instruction 21506: 17.8518% -Rate for instruction 21507: 17.8511% -Rate for instruction 21508: 17.8517% -Rate for instruction 21509: 17.8518% -Rate for instruction 21510: 17.8515% -Rate for instruction 21511: 17.8523% -Rate for instruction 21512: 17.8532% -Rate for instruction 21513: 17.8526% -Rate for instruction 21514: 17.8521% -Rate for instruction 21515: 17.852% -Rate for instruction 21516: 17.8514% -Rate for instruction 21517: 17.8509% -Rate for instruction 21518: 17.8502% -Rate for instruction 21519: 17.8499% -Rate for instruction 21520: 17.85% -Rate for instruction 21521: 17.8499% -Rate for instruction 21522: 17.8492% -Rate for instruction 21523: 17.8493% -Rate for instruction 21524: 17.8488% -Rate for instruction 21525: 17.8484% -Rate for instruction 21526: 17.8479% -Rate for instruction 21527: 17.8474% -Rate for instruction 21528: 17.8468% -Rate for instruction 21529: 17.847% -Rate for instruction 21530: 17.8464% -Rate for instruction 21531: 17.8461% -Rate for instruction 21532: 17.8463% -Rate for instruction 21533: 17.846% -Rate for instruction 21534: 17.8457% -Rate for instruction 21535: 17.8456% -Rate for instruction 21536: 17.8459% -Rate for instruction 21537: 17.8452% -Rate for instruction 21538: 17.8456% -Rate for instruction 21539: 17.8459% -Rate for instruction 21540: 17.8458% -Rate for instruction 21541: 17.8453% -Rate for instruction 21542: 17.8453% -Rate for instruction 21543: 17.8447% -Rate for instruction 21544: 17.8448% -Rate for instruction 21545: 17.8446% -Rate for instruction 21546: 17.844% -Rate for instruction 21547: 17.8441% -Rate for instruction 21548: 17.8434% -Rate for instruction 21549: 17.8433% -Rate for instruction 21550: 17.8435% -Rate for instruction 21551: 17.8434% -Rate for instruction 21552: 17.8428% -Rate for instruction 21553: 17.8439% -Rate for instruction 21554: 17.8434% -Rate for instruction 21555: 17.8428% -Rate for instruction 21556: 17.8423% -Rate for instruction 21557: 17.842% -Rate for instruction 21558: 17.8428% -Rate for instruction 21559: 17.8425% -Rate for instruction 21560: 17.8428% -Rate for instruction 21561: 17.8425% -Rate for instruction 21562: 17.8422% -Rate for instruction 21563: 17.8419% -Rate for instruction 21564: 17.8419% -Rate for instruction 21565: 17.8418% -Rate for instruction 21566: 17.8417% -Rate for instruction 21567: 17.8411% -Rate for instruction 21568: 17.8418% -Rate for instruction 21569: 17.843% -Rate for instruction 21570: 17.8438% -Rate for instruction 21571: 17.8445% -Rate for instruction 21572: 17.8458% -Rate for instruction 21573: 17.8452% -Rate for instruction 21574: 17.8462% -Rate for instruction 21575: 17.8457% -Rate for instruction 21576: 17.8463% -Rate for instruction 21577: 17.8458% -Rate for instruction 21578: 17.8455% -Rate for instruction 21579: 17.8449% -Rate for instruction 21580: 17.8456% -Rate for instruction 21581: 17.8466% -Rate for instruction 21582: 17.8472% -Rate for instruction 21583: 17.8471% -Rate for instruction 21584: 17.8479% -Rate for instruction 21585: 17.8486% -Rate for instruction 21586: 17.8482% -Rate for instruction 21587: 17.8475% -Rate for instruction 21588: 17.8471% -Rate for instruction 21589: 17.8471% -Rate for instruction 21590: 17.8474% -Rate for instruction 21591: 17.8474% -Rate for instruction 21592: 17.8468% -Rate for instruction 21593: 17.8467% -Rate for instruction 21594: 17.8464% -Rate for instruction 21595: 17.8461% -Rate for instruction 21596: 17.8458% -Rate for instruction 21597: 17.8457% -Rate for instruction 21598: 17.8459% -Rate for instruction 21599: 17.8453% -Rate for instruction 21600: 17.8462% -Rate for instruction 21601: 17.847% -Rate for instruction 21602: 17.8481% -Rate for instruction 21603: 17.8484% -Rate for instruction 21604: 17.8477% -Rate for instruction 21605: 17.8485% -Rate for instruction 21606: 17.8489% -Rate for instruction 21607: 17.8502% -Rate for instruction 21608: 17.8505% -Rate for instruction 21609: 17.8514% -Rate for instruction 21610: 17.851% -Rate for instruction 21611: 17.8515% -Rate for instruction 21612: 17.8521% -Rate for instruction 21613: 17.8531% -Rate for instruction 21614: 17.8541% -Rate for instruction 21615: 17.8536% -Rate for instruction 21616: 17.854% -Rate for instruction 21617: 17.8546% -Rate for instruction 21618: 17.8548% -Rate for instruction 21619: 17.8551% -Rate for instruction 21620: 17.8557% -Rate for instruction 21621: 17.8561% -Rate for instruction 21622: 17.8556% -Rate for instruction 21623: 17.8552% -Rate for instruction 21624: 17.8547% -Rate for instruction 21625: 17.8544% -Rate for instruction 21626: 17.8539% -Rate for instruction 21627: 17.8535% -Rate for instruction 21628: 17.853% -Rate for instruction 21629: 17.8527% -Rate for instruction 21630: 17.8526% -Rate for instruction 21631: 17.853% -Rate for instruction 21632: 17.8536% -Rate for instruction 21633: 17.8544% -Rate for instruction 21634: 17.8548% -Rate for instruction 21635: 17.8543% -Rate for instruction 21636: 17.8551% -Rate for instruction 21637: 17.8552% -Rate for instruction 21638: 17.8556% -Rate for instruction 21639: 17.8565% -Rate for instruction 21640: 17.8575% -Rate for instruction 21641: 17.8579% -Rate for instruction 21642: 17.8587% -Rate for instruction 21643: 17.8582% -Rate for instruction 21644: 17.859% -Rate for instruction 21645: 17.8594% -Rate for instruction 21646: 17.86% -Rate for instruction 21647: 17.8602% -Rate for instruction 21648: 17.861% -Rate for instruction 21649: 17.8616% -Rate for instruction 21650: 17.8613% -Rate for instruction 21651: 17.8614% -Rate for instruction 21652: 17.8609% -Rate for instruction 21653: 17.8603% -Rate for instruction 21654: 17.86% -Rate for instruction 21655: 17.8593% -Rate for instruction 21656: 17.8589% -Rate for instruction 21657: 17.8582% -Rate for instruction 21658: 17.8592% -Rate for instruction 21659: 17.8589% -Rate for instruction 21660: 17.8595% -Rate for instruction 21661: 17.8588% -Rate for instruction 21662: 17.8583% -Rate for instruction 21663: 17.8591% -Rate for instruction 21664: 17.8588% -Rate for instruction 21665: 17.8587% -Rate for instruction 21666: 17.8584% -Rate for instruction 21667: 17.858% -Rate for instruction 21668: 17.8586% -Rate for instruction 21669: 17.859% -Rate for instruction 21670: 17.8583% -Rate for instruction 21671: 17.8593% -Rate for instruction 21672: 17.8602% -Rate for instruction 21673: 17.8606% -Rate for instruction 21674: 17.8612% -Rate for instruction 21675: 17.8609% -Rate for instruction 21676: 17.8615% -Rate for instruction 21677: 17.8611% -Rate for instruction 21678: 17.8617% -Rate for instruction 21679: 17.8616% -Rate for instruction 21680: 17.8614% -Rate for instruction 21681: 17.8615% -Rate for instruction 21682: 17.8616% -Rate for instruction 21683: 17.862% -Rate for instruction 21684: 17.8615% -Rate for instruction 21685: 17.8623% -Rate for instruction 21686: 17.8618% -Rate for instruction 21687: 17.8624% -Rate for instruction 21688: 17.863% -Rate for instruction 21689: 17.8629% -Rate for instruction 21690: 17.8633% -Rate for instruction 21691: 17.863% -Rate for instruction 21692: 17.8636% -Rate for instruction 21693: 17.8631% -Rate for instruction 21694: 17.8637% -Rate for instruction 21695: 17.8647% -Rate for instruction 21696: 17.8642% -Rate for instruction 21697: 17.8639% -Rate for instruction 21698: 17.8636% -Rate for instruction 21699: 17.863% -Rate for instruction 21700: 17.8625% -Rate for instruction 21701: 17.8624% -Rate for instruction 21702: 17.8623% -Rate for instruction 21703: 17.8625% -Rate for instruction 21704: 17.8628% -Rate for instruction 21705: 17.8634% -Rate for instruction 21706: 17.8643% -Rate for instruction 21707: 17.8644% -Rate for instruction 21708: 17.8646% -Rate for instruction 21709: 17.8645% -Rate for instruction 21710: 17.8644% -Rate for instruction 21711: 17.8637% -Rate for instruction 21712: 17.8635% -Rate for instruction 21713: 17.8628% -Rate for instruction 21714: 17.8627% -Rate for instruction 21715: 17.8622% -Rate for instruction 21716: 17.8625% -Rate for instruction 21717: 17.8632% -Rate for instruction 21718: 17.8642% -Rate for instruction 21719: 17.8651% -Rate for instruction 21720: 17.8647% -Rate for instruction 21721: 17.8654% -Rate for instruction 21722: 17.8655% -Rate for instruction 21723: 17.8654% -Rate for instruction 21724: 17.8655% -Rate for instruction 21725: 17.8655% -Rate for instruction 21726: 17.8652% -Rate for instruction 21727: 17.8648% -Rate for instruction 21728: 17.8648% -Rate for instruction 21729: 17.8642% -Rate for instruction 21730: 17.8635% -Rate for instruction 21731: 17.8636% -Rate for instruction 21732: 17.8633% -Rate for instruction 21733: 17.8634% -Rate for instruction 21734: 17.8634% -Rate for instruction 21735: 17.8631% -Rate for instruction 21736: 17.8634% -Rate for instruction 21737: 17.8627% -Rate for instruction 21738: 17.8628% -Rate for instruction 21739: 17.8634% -Rate for instruction 21740: 17.8638% -Rate for instruction 21741: 17.8642% -Rate for instruction 21742: 17.8643% -Rate for instruction 21743: 17.8645% -Rate for instruction 21744: 17.8648% -Rate for instruction 21745: 17.8646% -Rate for instruction 21746: 17.8642% -Rate for instruction 21747: 17.8641% -Rate for instruction 21748: 17.8643% -Rate for instruction 21749: 17.8642% -Rate for instruction 21750: 17.8646% -Rate for instruction 21751: 17.864% -Rate for instruction 21752: 17.8635% -Rate for instruction 21753: 17.8644% -Rate for instruction 21754: 17.8638% -Rate for instruction 21755: 17.8642% -Rate for instruction 21756: 17.8636% -Rate for instruction 21757: 17.864% -Rate for instruction 21758: 17.8646% -Rate for instruction 21759: 17.8648% -Rate for instruction 21760: 17.8652% -Rate for instruction 21761: 17.8651% -Rate for instruction 21762: 17.8647% -Rate for instruction 21763: 17.864% -Rate for instruction 21764: 17.8637% -Rate for instruction 21765: 17.8634% -Rate for instruction 21766: 17.863% -Rate for instruction 21767: 17.8628% -Rate for instruction 21768: 17.8622% -Rate for instruction 21769: 17.8623% -Rate for instruction 21770: 17.8618% -Rate for instruction 21771: 17.8617% -Rate for instruction 21772: 17.8617% -Rate for instruction 21773: 17.8622% -Rate for instruction 21774: 17.8629% -Rate for instruction 21775: 17.8623% -Rate for instruction 21776: 17.8622% -Rate for instruction 21777: 17.8621% -Rate for instruction 21778: 17.8616% -Rate for instruction 21779: 17.8617% -Rate for instruction 21780: 17.8615% -Rate for instruction 21781: 17.8628% -Rate for instruction 21782: 17.8626% -Rate for instruction 21783: 17.8621% -Rate for instruction 21784: 17.8634% -Rate for instruction 21785: 17.8629% -Rate for instruction 21786: 17.8623% -Rate for instruction 21787: 17.8629% -Rate for instruction 21788: 17.8638% -Rate for instruction 21789: 17.8646% -Rate for instruction 21790: 17.8646% -Rate for instruction 21791: 17.8647% -Rate for instruction 21792: 17.8653% -Rate for instruction 21793: 17.8654% -Rate for instruction 21794: 17.8647% -Rate for instruction 21795: 17.8643% -Rate for instruction 21796: 17.8636% -Rate for instruction 21797: 17.8638% -Rate for instruction 21798: 17.8632% -Rate for instruction 21799: 17.8627% -Rate for instruction 21800: 17.8628% -Rate for instruction 21801: 17.8623% -Rate for instruction 21802: 17.8619% -Rate for instruction 21803: 17.8614% -Rate for instruction 21804: 17.8609% -Rate for instruction 21805: 17.8606% -Rate for instruction 21806: 17.8607% -Rate for instruction 21807: 17.8604% -Rate for instruction 21808: 17.8603% -Rate for instruction 21809: 17.8602% -Rate for instruction 21810: 17.8597% -Rate for instruction 21811: 17.8598% -Rate for instruction 21812: 17.8606% -Rate for instruction 21813: 17.8608% -Rate for instruction 21814: 17.8607% -Rate for instruction 21815: 17.8604% -Rate for instruction 21816: 17.8601% -Rate for instruction 21817: 17.8603% -Rate for instruction 21818: 17.8608% -Rate for instruction 21819: 17.861% -Rate for instruction 21820: 17.8611% -Rate for instruction 21821: 17.8616% -Rate for instruction 21822: 17.861% -Rate for instruction 21823: 17.8607% -Rate for instruction 21824: 17.8611% -Rate for instruction 21825: 17.8612% -Rate for instruction 21826: 17.8609% -Rate for instruction 21827: 17.8603% -Rate for instruction 21828: 17.8596% -Rate for instruction 21829: 17.8597% -Rate for instruction 21830: 17.8594% -Rate for instruction 21831: 17.8598% -Rate for instruction 21832: 17.8608% -Rate for instruction 21833: 17.8613% -Rate for instruction 21834: 17.8609% -Rate for instruction 21835: 17.8604% -Rate for instruction 21836: 17.8598% -Rate for instruction 21837: 17.8597% -Rate for instruction 21838: 17.8601% -Rate for instruction 21839: 17.8598% -Rate for instruction 21840: 17.86% -Rate for instruction 21841: 17.8606% -Rate for instruction 21842: 17.8609% -Rate for instruction 21843: 17.8614% -Rate for instruction 21844: 17.861% -Rate for instruction 21845: 17.861% -Rate for instruction 21846: 17.8615% -Rate for instruction 21847: 17.8612% -Rate for instruction 21848: 17.8607% -Rate for instruction 21849: 17.8611% -Rate for instruction 21850: 17.8615% -Rate for instruction 21851: 17.8614% -Rate for instruction 21852: 17.8615% -Rate for instruction 21853: 17.861% -Rate for instruction 21854: 17.862% -Rate for instruction 21855: 17.8627% -Rate for instruction 21856: 17.8631% -Rate for instruction 21857: 17.8625% -Rate for instruction 21858: 17.8619% -Rate for instruction 21859: 17.8616% -Rate for instruction 21860: 17.8623% -Rate for instruction 21861: 17.8619% -Rate for instruction 21862: 17.8619% -Rate for instruction 21863: 17.8615% -Rate for instruction 21864: 17.8608% -Rate for instruction 21865: 17.8618% -Rate for instruction 21866: 17.8624% -Rate for instruction 21867: 17.8622% -Rate for instruction 21868: 17.862% -Rate for instruction 21869: 17.8617% -Rate for instruction 21870: 17.8614% -Rate for instruction 21871: 17.8609% -Rate for instruction 21872: 17.8606% -Rate for instruction 21873: 17.861% -Rate for instruction 21874: 17.8607% -Rate for instruction 21875: 17.8615% -Rate for instruction 21876: 17.8619% -Rate for instruction 21877: 17.8622% -Rate for instruction 21878: 17.8619% -Rate for instruction 21879: 17.8619% -Rate for instruction 21880: 17.8617% -Rate for instruction 21881: 17.8619% -Rate for instruction 21882: 17.8614% -Rate for instruction 21883: 17.8617% -Rate for instruction 21884: 17.861% -Rate for instruction 21885: 17.8607% -Rate for instruction 21886: 17.8601% -Rate for instruction 21887: 17.8598% -Rate for instruction 21888: 17.8599% -Rate for instruction 21889: 17.8601% -Rate for instruction 21890: 17.8598% -Rate for instruction 21891: 17.8604% -Rate for instruction 21892: 17.8603% -Rate for instruction 21893: 17.8605% -Rate for instruction 21894: 17.8601% -Rate for instruction 21895: 17.8594% -Rate for instruction 21896: 17.859% -Rate for instruction 21897: 17.8588% -Rate for instruction 21898: 17.8582% -Rate for instruction 21899: 17.8583% -Rate for instruction 21900: 17.8592% -Rate for instruction 21901: 17.8596% -Rate for instruction 21902: 17.8593% -Rate for instruction 21903: 17.8598% -Rate for instruction 21904: 17.8596% -Rate for instruction 21905: 17.8601% -Rate for instruction 21906: 17.8605% -Rate for instruction 21907: 17.8612% -Rate for instruction 21908: 17.8606% -Rate for instruction 21909: 17.8617% -Rate for instruction 21910: 17.8621% -Rate for instruction 21911: 17.8622% -Rate for instruction 21912: 17.8636% -Rate for instruction 21913: 17.8642% -Rate for instruction 21914: 17.8636% -Rate for instruction 21915: 17.8635% -Rate for instruction 21916: 17.8639% -Rate for instruction 21917: 17.8633% -Rate for instruction 21918: 17.8637% -Rate for instruction 21919: 17.8636% -Rate for instruction 21920: 17.8636% -Rate for instruction 21921: 17.8639% -Rate for instruction 21922: 17.8641% -Rate for instruction 21923: 17.8645% -Rate for instruction 21924: 17.8649% -Rate for instruction 21925: 17.8646% -Rate for instruction 21926: 17.8649% -Rate for instruction 21927: 17.8646% -Rate for instruction 21928: 17.8639% -Rate for instruction 21929: 17.8642% -Rate for instruction 21930: 17.8642% -Rate for instruction 21931: 17.8645% -Rate for instruction 21932: 17.8644% -Rate for instruction 21933: 17.8641% -Rate for instruction 21934: 17.8638% -Rate for instruction 21935: 17.8642% -Rate for instruction 21936: 17.8639% -Rate for instruction 21937: 17.8636% -Rate for instruction 21938: 17.8635% -Rate for instruction 21939: 17.8645% -Rate for instruction 21940: 17.8642% -Rate for instruction 21941: 17.8649% -Rate for instruction 21942: 17.8652% -Rate for instruction 21943: 17.8654% -Rate for instruction 21944: 17.8651% -Rate for instruction 21945: 17.865% -Rate for instruction 21946: 17.8656% -Rate for instruction 21947: 17.8662% -Rate for instruction 21948: 17.8666% -Rate for instruction 21949: 17.8667% -Rate for instruction 21950: 17.866% -Rate for instruction 21951: 17.8656% -Rate for instruction 21952: 17.8649% -Rate for instruction 21953: 17.8646% -Rate for instruction 21954: 17.864% -Rate for instruction 21955: 17.8635% -Rate for instruction 21956: 17.8629% -Rate for instruction 21957: 17.8631% -Rate for instruction 21958: 17.8628% -Rate for instruction 21959: 17.8622% -Rate for instruction 21960: 17.8619% -Rate for instruction 21961: 17.8614% -Rate for instruction 21962: 17.8612% -Rate for instruction 21963: 17.8607% -Rate for instruction 21964: 17.8601% -Rate for instruction 21965: 17.8599% -Rate for instruction 21966: 17.8598% -Rate for instruction 21967: 17.8599% -Rate for instruction 21968: 17.8594% -Rate for instruction 21969: 17.8591% -Rate for instruction 21970: 17.859% -Rate for instruction 21971: 17.8584% -Rate for instruction 21972: 17.8581% -Rate for instruction 21973: 17.8575% -Rate for instruction 21974: 17.8574% -Rate for instruction 21975: 17.8571% -Rate for instruction 21976: 17.8568% -Rate for instruction 21977: 17.8561% -Rate for instruction 21978: 17.8562% -Rate for instruction 21979: 17.8561% -Rate for instruction 21980: 17.856% -Rate for instruction 21981: 17.8564% -Rate for instruction 21982: 17.8568% -Rate for instruction 21983: 17.8565% -Rate for instruction 21984: 17.8566% -Rate for instruction 21985: 17.8572% -Rate for instruction 21986: 17.8578% -Rate for instruction 21987: 17.858% -Rate for instruction 21988: 17.8586% -Rate for instruction 21989: 17.8586% -Rate for instruction 21990: 17.8582% -Rate for instruction 21991: 17.8579% -Rate for instruction 21992: 17.8574% -Rate for instruction 21993: 17.8575% -Rate for instruction 21994: 17.857% -Rate for instruction 21995: 17.8571% -Rate for instruction 21996: 17.8568% -Rate for instruction 21997: 17.8572% -Rate for instruction 21998: 17.8571% -Rate for instruction 21999: 17.858% -Rate for instruction 22000: 17.8585% -Rate for instruction 22001: 17.8594% -Rate for instruction 22002: 17.8588% -Rate for instruction 22003: 17.8588% -Rate for instruction 22004: 17.8584% -Rate for instruction 22005: 17.8582% -Rate for instruction 22006: 17.8583% -Rate for instruction 22007: 17.8589% -Rate for instruction 22008: 17.8595% -Rate for instruction 22009: 17.8592% -Rate for instruction 22010: 17.8591% -Rate for instruction 22011: 17.8595% -Rate for instruction 22012: 17.8594% -Rate for instruction 22013: 17.8593% -Rate for instruction 22014: 17.8602% -Rate for instruction 22015: 17.8608% -Rate for instruction 22016: 17.861% -Rate for instruction 22017: 17.8616% -Rate for instruction 22018: 17.8615% -Rate for instruction 22019: 17.8612% -Rate for instruction 22020: 17.8613% -Rate for instruction 22021: 17.8608% -Rate for instruction 22022: 17.8602% -Rate for instruction 22023: 17.8597% -Rate for instruction 22024: 17.8593% -Rate for instruction 22025: 17.8591% -Rate for instruction 22026: 17.8592% -Rate for instruction 22027: 17.8587% -Rate for instruction 22028: 17.859% -Rate for instruction 22029: 17.8583% -Rate for instruction 22030: 17.8581% -Rate for instruction 22031: 17.8588% -Rate for instruction 22032: 17.8592% -Rate for instruction 22033: 17.8598% -Rate for instruction 22034: 17.8595% -Rate for instruction 22035: 17.8605% -Rate for instruction 22036: 17.86% -Rate for instruction 22037: 17.8608% -Rate for instruction 22038: 17.8613% -Rate for instruction 22039: 17.8618% -Rate for instruction 22040: 17.8613% -Rate for instruction 22041: 17.8607% -Rate for instruction 22042: 17.8614% -Rate for instruction 22043: 17.8608% -Rate for instruction 22044: 17.8605% -Rate for instruction 22045: 17.8611% -Rate for instruction 22046: 17.8608% -Rate for instruction 22047: 17.861% -Rate for instruction 22048: 17.8604% -Rate for instruction 22049: 17.8615% -Rate for instruction 22050: 17.8617% -Rate for instruction 22051: 17.8623% -Rate for instruction 22052: 17.8624% -Rate for instruction 22053: 17.8635% -Rate for instruction 22054: 17.8639% -Rate for instruction 22055: 17.8643% -Rate for instruction 22056: 17.8649% -Rate for instruction 22057: 17.8655% -Rate for instruction 22058: 17.8652% -Rate for instruction 22059: 17.8658% -Rate for instruction 22060: 17.8664% -Rate for instruction 22061: 17.8666% -Rate for instruction 22062: 17.8668% -Rate for instruction 22063: 17.8662% -Rate for instruction 22064: 17.8666% -Rate for instruction 22065: 17.8662% -Rate for instruction 22066: 17.8662% -Rate for instruction 22067: 17.8665% -Rate for instruction 22068: 17.8669% -Rate for instruction 22069: 17.8669% -Rate for instruction 22070: 17.8672% -Rate for instruction 22071: 17.8671% -Rate for instruction 22072: 17.8664% -Rate for instruction 22073: 17.8661% -Rate for instruction 22074: 17.8658% -Rate for instruction 22075: 17.8663% -Rate for instruction 22076: 17.8667% -Rate for instruction 22077: 17.8664% -Rate for instruction 22078: 17.8668% -Rate for instruction 22079: 17.867% -Rate for instruction 22080: 17.8678% -Rate for instruction 22081: 17.8682% -Rate for instruction 22082: 17.8679% -Rate for instruction 22083: 17.8678% -Rate for instruction 22084: 17.8677% -Rate for instruction 22085: 17.867% -Rate for instruction 22086: 17.8673% -Rate for instruction 22087: 17.8672% -Rate for instruction 22088: 17.8665% -Rate for instruction 22089: 17.8669% -Rate for instruction 22090: 17.867% -Rate for instruction 22091: 17.8672% -Rate for instruction 22092: 17.8668% -Rate for instruction 22093: 17.8675% -Rate for instruction 22094: 17.8671% -Rate for instruction 22095: 17.8671% -Rate for instruction 22096: 17.8681% -Rate for instruction 22097: 17.8685% -Rate for instruction 22098: 17.8691% -Rate for instruction 22099: 17.8684% -Rate for instruction 22100: 17.8694% -Rate for instruction 22101: 17.8687% -Rate for instruction 22102: 17.8697% -Rate for instruction 22103: 17.8699% -Rate for instruction 22104: 17.8705% -Rate for instruction 22105: 17.8704% -Rate for instruction 22106: 17.8703% -Rate for instruction 22107: 17.8698% -Rate for instruction 22108: 17.8692% -Rate for instruction 22109: 17.8687% -Rate for instruction 22110: 17.8686% -Rate for instruction 22111: 17.868% -Rate for instruction 22112: 17.8675% -Rate for instruction 22113: 17.8677% -Rate for instruction 22114: 17.8671% -Rate for instruction 22115: 17.867% -Rate for instruction 22116: 17.867% -Rate for instruction 22117: 17.8669% -Rate for instruction 22118: 17.8677% -Rate for instruction 22119: 17.8674% -Rate for instruction 22120: 17.8669% -Rate for instruction 22121: 17.8668% -Rate for instruction 22122: 17.8662% -Rate for instruction 22123: 17.8656% -Rate for instruction 22124: 17.8651% -Rate for instruction 22125: 17.8648% -Rate for instruction 22126: 17.8647% -Rate for instruction 22127: 17.8648% -Rate for instruction 22128: 17.865% -Rate for instruction 22129: 17.8656% -Rate for instruction 22130: 17.8658% -Rate for instruction 22131: 17.8652% -Rate for instruction 22132: 17.8651% -Rate for instruction 22133: 17.8651% -Rate for instruction 22134: 17.8647% -Rate for instruction 22135: 17.8646% -Rate for instruction 22136: 17.8641% -Rate for instruction 22137: 17.864% -Rate for instruction 22138: 17.8639% -Rate for instruction 22139: 17.8641% -Rate for instruction 22140: 17.8637% -Rate for instruction 22141: 17.8637% -Rate for instruction 22142: 17.8638% -Rate for instruction 22143: 17.8638% -Rate for instruction 22144: 17.8634% -Rate for instruction 22145: 17.8633% -Rate for instruction 22146: 17.863% -Rate for instruction 22147: 17.8627% -Rate for instruction 22148: 17.8629% -Rate for instruction 22149: 17.8623% -Rate for instruction 22150: 17.8622% -Rate for instruction 22151: 17.8623% -Rate for instruction 22152: 17.8621% -Rate for instruction 22153: 17.8617% -Rate for instruction 22154: 17.8616% -Rate for instruction 22155: 17.8616% -Rate for instruction 22156: 17.8619% -Rate for instruction 22157: 17.8621% -Rate for instruction 22158: 17.8622% -Rate for instruction 22159: 17.8619% -Rate for instruction 22160: 17.8614% -Rate for instruction 22161: 17.8611% -Rate for instruction 22162: 17.8608% -Rate for instruction 22163: 17.8613% -Rate for instruction 22164: 17.8617% -Rate for instruction 22165: 17.8619% -Rate for instruction 22166: 17.8625% -Rate for instruction 22167: 17.8624% -Rate for instruction 22168: 17.863% -Rate for instruction 22169: 17.863% -Rate for instruction 22170: 17.8627% -Rate for instruction 22171: 17.8623% -Rate for instruction 22172: 17.8632% -Rate for instruction 22173: 17.8626% -Rate for instruction 22174: 17.8625% -Rate for instruction 22175: 17.863% -Rate for instruction 22176: 17.864% -Rate for instruction 22177: 17.8649% -Rate for instruction 22178: 17.8651% -Rate for instruction 22179: 17.8657% -Rate for instruction 22180: 17.8651% -Rate for instruction 22181: 17.8648% -Rate for instruction 22182: 17.8652% -Rate for instruction 22183: 17.8656% -Rate for instruction 22184: 17.8662% -Rate for instruction 22185: 17.8666% -Rate for instruction 22186: 17.8663% -Rate for instruction 22187: 17.8664% -Rate for instruction 22188: 17.8659% -Rate for instruction 22189: 17.8658% -Rate for instruction 22190: 17.8652% -Rate for instruction 22191: 17.8645% -Rate for instruction 22192: 17.8639% -Rate for instruction 22193: 17.8638% -Rate for instruction 22194: 17.8637% -Rate for instruction 22195: 17.8636% -Rate for instruction 22196: 17.8636% -Rate for instruction 22197: 17.863% -Rate for instruction 22198: 17.8636% -Rate for instruction 22199: 17.8633% -Rate for instruction 22200: 17.8644% -Rate for instruction 22201: 17.8638% -Rate for instruction 22202: 17.8633% -Rate for instruction 22203: 17.8641% -Rate for instruction 22204: 17.8636% -Rate for instruction 22205: 17.864% -Rate for instruction 22206: 17.8646% -Rate for instruction 22207: 17.864% -Rate for instruction 22208: 17.8649% -Rate for instruction 22209: 17.8643% -Rate for instruction 22210: 17.8642% -Rate for instruction 22211: 17.8647% -Rate for instruction 22212: 17.8651% -Rate for instruction 22213: 17.8659% -Rate for instruction 22214: 17.8653% -Rate for instruction 22215: 17.865% -Rate for instruction 22216: 17.8645% -Rate for instruction 22217: 17.8639% -Rate for instruction 22218: 17.8646% -Rate for instruction 22219: 17.8652% -Rate for instruction 22220: 17.8655% -Rate for instruction 22221: 17.8655% -Rate for instruction 22222: 17.8656% -Rate for instruction 22223: 17.8656% -Rate for instruction 22224: 17.8657% -Rate for instruction 22225: 17.8659% -Rate for instruction 22226: 17.8664% -Rate for instruction 22227: 17.8668% -Rate for instruction 22228: 17.8666% -Rate for instruction 22229: 17.8667% -Rate for instruction 22230: 17.8663% -Rate for instruction 22231: 17.8658% -Rate for instruction 22232: 17.8657% -Rate for instruction 22233: 17.8651% -Rate for instruction 22234: 17.8651% -Rate for instruction 22235: 17.8652% -Rate for instruction 22236: 17.8649% -Rate for instruction 22237: 17.8653% -Rate for instruction 22238: 17.8648% -Rate for instruction 22239: 17.8654% -Rate for instruction 22240: 17.8653% -Rate for instruction 22241: 17.8655% -Rate for instruction 22242: 17.8656% -Rate for instruction 22243: 17.8662% -Rate for instruction 22244: 17.8664% -Rate for instruction 22245: 17.8672% -Rate for instruction 22246: 17.8676% -Rate for instruction 22247: 17.8669% -Rate for instruction 22248: 17.867% -Rate for instruction 22249: 17.8664% -Rate for instruction 22250: 17.8657% -Rate for instruction 22251: 17.867% -Rate for instruction 22252: 17.8678% -Rate for instruction 22253: 17.8671% -Rate for instruction 22254: 17.8669% -Rate for instruction 22255: 17.8666% -Rate for instruction 22256: 17.8659% -Rate for instruction 22257: 17.8657% -Rate for instruction 22258: 17.865% -Rate for instruction 22259: 17.8646% -Rate for instruction 22260: 17.8648% -Rate for instruction 22261: 17.8652% -Rate for instruction 22262: 17.8654% -Rate for instruction 22263: 17.8659% -Rate for instruction 22264: 17.8661% -Rate for instruction 22265: 17.8661% -Rate for instruction 22266: 17.8666% -Rate for instruction 22267: 17.8666% -Rate for instruction 22268: 17.8667% -Rate for instruction 22269: 17.8671% -Rate for instruction 22270: 17.8673% -Rate for instruction 22271: 17.8672% -Rate for instruction 22272: 17.8666% -Rate for instruction 22273: 17.8672% -Rate for instruction 22274: 17.8674% -Rate for instruction 22275: 17.8673% -Rate for instruction 22276: 17.8673% -Rate for instruction 22277: 17.8679% -Rate for instruction 22278: 17.8687% -Rate for instruction 22279: 17.8694% -Rate for instruction 22280: 17.8695% -Rate for instruction 22281: 17.8699% -Rate for instruction 22282: 17.8708% -Rate for instruction 22283: 17.8714% -Rate for instruction 22284: 17.8713% -Rate for instruction 22285: 17.8717% -Rate for instruction 22286: 17.8721% -Rate for instruction 22287: 17.8725% -Rate for instruction 22288: 17.8729% -Rate for instruction 22289: 17.8733% -Rate for instruction 22290: 17.8737% -Rate for instruction 22291: 17.8734% -Rate for instruction 22292: 17.8733% -Rate for instruction 22293: 17.8727% -Rate for instruction 22294: 17.8721% -Rate for instruction 22295: 17.8714% -Rate for instruction 22296: 17.8708% -Rate for instruction 22297: 17.8707% -Rate for instruction 22298: 17.8704% -Rate for instruction 22299: 17.871% -Rate for instruction 22300: 17.8704% -Rate for instruction 22301: 17.8702% -Rate for instruction 22302: 17.8701% -Rate for instruction 22303: 17.8705% -Rate for instruction 22304: 17.8701% -Rate for instruction 22305: 17.8703% -Rate for instruction 22306: 17.8704% -Rate for instruction 22307: 17.8704% -Rate for instruction 22308: 17.871% -Rate for instruction 22309: 17.8713% -Rate for instruction 22310: 17.8711% -Rate for instruction 22311: 17.871% -Rate for instruction 22312: 17.8704% -Rate for instruction 22313: 17.8701% -Rate for instruction 22314: 17.8697% -Rate for instruction 22315: 17.8694% -Rate for instruction 22316: 17.8693% -Rate for instruction 22317: 17.8688% -Rate for instruction 22318: 17.8687% -Rate for instruction 22319: 17.8684% -Rate for instruction 22320: 17.8678% -Rate for instruction 22321: 17.8679% -Rate for instruction 22322: 17.8679% -Rate for instruction 22323: 17.8681% -Rate for instruction 22324: 17.8687% -Rate for instruction 22325: 17.8681% -Rate for instruction 22326: 17.8688% -Rate for instruction 22327: 17.8693% -Rate for instruction 22328: 17.8698% -Rate for instruction 22329: 17.8694% -Rate for instruction 22330: 17.8698% -Rate for instruction 22331: 17.8691% -Rate for instruction 22332: 17.8701% -Rate for instruction 22333: 17.87% -Rate for instruction 22334: 17.8705% -Rate for instruction 22335: 17.8711% -Rate for instruction 22336: 17.8713% -Rate for instruction 22337: 17.8718% -Rate for instruction 22338: 17.8718% -Rate for instruction 22339: 17.8722% -Rate for instruction 22340: 17.8716% -Rate for instruction 22341: 17.8722% -Rate for instruction 22342: 17.8715% -Rate for instruction 22343: 17.8714% -Rate for instruction 22344: 17.872% -Rate for instruction 22345: 17.8728% -Rate for instruction 22346: 17.8733% -Rate for instruction 22347: 17.8737% -Rate for instruction 22348: 17.8735% -Rate for instruction 22349: 17.8739% -Rate for instruction 22350: 17.8743% -Rate for instruction 22351: 17.8743% -Rate for instruction 22352: 17.8744% -Rate for instruction 22353: 17.8746% -Rate for instruction 22354: 17.8749% -Rate for instruction 22355: 17.8747% -Rate for instruction 22356: 17.8751% -Rate for instruction 22357: 17.875% -Rate for instruction 22358: 17.8748% -Rate for instruction 22359: 17.8743% -Rate for instruction 22360: 17.8745% -Rate for instruction 22361: 17.8749% -Rate for instruction 22362: 17.875% -Rate for instruction 22363: 17.8745% -Rate for instruction 22364: 17.8749% -Rate for instruction 22365: 17.8755% -Rate for instruction 22366: 17.8754% -Rate for instruction 22367: 17.875% -Rate for instruction 22368: 17.875% -Rate for instruction 22369: 17.8752% -Rate for instruction 22370: 17.875% -Rate for instruction 22371: 17.8743% -Rate for instruction 22372: 17.8746% -Rate for instruction 22373: 17.8745% -Rate for instruction 22374: 17.8749% -Rate for instruction 22375: 17.8747% -Rate for instruction 22376: 17.8746% -Rate for instruction 22377: 17.8749% -Rate for instruction 22378: 17.8749% -Rate for instruction 22379: 17.8748% -Rate for instruction 22380: 17.8749% -Rate for instruction 22381: 17.8749% -Rate for instruction 22382: 17.8743% -Rate for instruction 22383: 17.8742% -Rate for instruction 22384: 17.8741% -Rate for instruction 22385: 17.8742% -Rate for instruction 22386: 17.874% -Rate for instruction 22387: 17.8743% -Rate for instruction 22388: 17.8736% -Rate for instruction 22389: 17.8737% -Rate for instruction 22390: 17.8731% -Rate for instruction 22391: 17.8735% -Rate for instruction 22392: 17.8734% -Rate for instruction 22393: 17.8734% -Rate for instruction 22394: 17.8735% -Rate for instruction 22395: 17.8732% -Rate for instruction 22396: 17.8736% -Rate for instruction 22397: 17.8742% -Rate for instruction 22398: 17.8743% -Rate for instruction 22399: 17.874% -Rate for instruction 22400: 17.8735% -Rate for instruction 22401: 17.8732% -Rate for instruction 22402: 17.8728% -Rate for instruction 22403: 17.8723% -Rate for instruction 22404: 17.8722% -Rate for instruction 22405: 17.8718% -Rate for instruction 22406: 17.8715% -Rate for instruction 22407: 17.8717% -Rate for instruction 22408: 17.8713% -Rate for instruction 22409: 17.8717% -Rate for instruction 22410: 17.8712% -Rate for instruction 22411: 17.8716% -Rate for instruction 22412: 17.8717% -Rate for instruction 22413: 17.8717% -Rate for instruction 22414: 17.8716% -Rate for instruction 22415: 17.8712% -Rate for instruction 22416: 17.8714% -Rate for instruction 22417: 17.8708% -Rate for instruction 22418: 17.871% -Rate for instruction 22419: 17.8714% -Rate for instruction 22420: 17.871% -Rate for instruction 22421: 17.8703% -Rate for instruction 22422: 17.87% -Rate for instruction 22423: 17.871% -Rate for instruction 22424: 17.8707% -Rate for instruction 22425: 17.8701% -Rate for instruction 22426: 17.8706% -Rate for instruction 22427: 17.8717% -Rate for instruction 22428: 17.8725% -Rate for instruction 22429: 17.872% -Rate for instruction 22430: 17.8729% -Rate for instruction 22431: 17.8735% -Rate for instruction 22432: 17.8732% -Rate for instruction 22433: 17.8733% -Rate for instruction 22434: 17.874% -Rate for instruction 22435: 17.8744% -Rate for instruction 22436: 17.874% -Rate for instruction 22437: 17.8739% -Rate for instruction 22438: 17.8734% -Rate for instruction 22439: 17.8733% -Rate for instruction 22440: 17.873% -Rate for instruction 22441: 17.8727% -Rate for instruction 22442: 17.8721% -Rate for instruction 22443: 17.8717% -Rate for instruction 22444: 17.8717% -Rate for instruction 22445: 17.8723% -Rate for instruction 22446: 17.872% -Rate for instruction 22447: 17.8719% -Rate for instruction 22448: 17.8721% -Rate for instruction 22449: 17.8725% -Rate for instruction 22450: 17.8719% -Rate for instruction 22451: 17.8718% -Rate for instruction 22452: 17.8713% -Rate for instruction 22453: 17.8709% -Rate for instruction 22454: 17.8713% -Rate for instruction 22455: 17.8719% -Rate for instruction 22456: 17.8735% -Rate for instruction 22457: 17.8744% -Rate for instruction 22458: 17.8738% -Rate for instruction 22459: 17.8742% -Rate for instruction 22460: 17.8741% -Rate for instruction 22461: 17.8738% -Rate for instruction 22462: 17.8732% -Rate for instruction 22463: 17.8727% -Rate for instruction 22464: 17.8721% -Rate for instruction 22465: 17.8733% -Rate for instruction 22466: 17.8727% -Rate for instruction 22467: 17.8729% -Rate for instruction 22468: 17.8725% -Rate for instruction 22469: 17.8722% -Rate for instruction 22470: 17.8721% -Rate for instruction 22471: 17.872% -Rate for instruction 22472: 17.8714% -Rate for instruction 22473: 17.8709% -Rate for instruction 22474: 17.871% -Rate for instruction 22475: 17.8712% -Rate for instruction 22476: 17.8716% -Rate for instruction 22477: 17.871% -Rate for instruction 22478: 17.871% -Rate for instruction 22479: 17.8714% -Rate for instruction 22480: 17.8718% -Rate for instruction 22481: 17.8714% -Rate for instruction 22482: 17.8715% -Rate for instruction 22483: 17.871% -Rate for instruction 22484: 17.8714% -Rate for instruction 22485: 17.8711% -Rate for instruction 22486: 17.8708% -Rate for instruction 22487: 17.8707% -Rate for instruction 22488: 17.8706% -Rate for instruction 22489: 17.871% -Rate for instruction 22490: 17.8707% -Rate for instruction 22491: 17.871% -Rate for instruction 22492: 17.8707% -Rate for instruction 22493: 17.8709% -Rate for instruction 22494: 17.8705% -Rate for instruction 22495: 17.8705% -Rate for instruction 22496: 17.8708% -Rate for instruction 22497: 17.8703% -Rate for instruction 22498: 17.8702% -Rate for instruction 22499: 17.8697% -Rate for instruction 22500: 17.8693% -Rate for instruction 22501: 17.869% -Rate for instruction 22502: 17.8686% -Rate for instruction 22503: 17.869% -Rate for instruction 22504: 17.8683% -Rate for instruction 22505: 17.8682% -Rate for instruction 22506: 17.8678% -Rate for instruction 22507: 17.868% -Rate for instruction 22508: 17.8677% -Rate for instruction 22509: 17.8676% -Rate for instruction 22510: 17.8678% -Rate for instruction 22511: 17.8676% -Rate for instruction 22512: 17.8678% -Rate for instruction 22513: 17.868% -Rate for instruction 22514: 17.8674% -Rate for instruction 22515: 17.8668% -Rate for instruction 22516: 17.8665% -Rate for instruction 22517: 17.8669% -Rate for instruction 22518: 17.867% -Rate for instruction 22519: 17.8669% -Rate for instruction 22520: 17.8664% -Rate for instruction 22521: 17.8665% -Rate for instruction 22522: 17.8665% -Rate for instruction 22523: 17.8659% -Rate for instruction 22524: 17.8654% -Rate for instruction 22525: 17.866% -Rate for instruction 22526: 17.8661% -Rate for instruction 22527: 17.8663% -Rate for instruction 22528: 17.8669% -Rate for instruction 22529: 17.8671% -Rate for instruction 22530: 17.8665% -Rate for instruction 22531: 17.8671% -Rate for instruction 22532: 17.8673% -Rate for instruction 22533: 17.8677% -Rate for instruction 22534: 17.8672% -Rate for instruction 22535: 17.8677% -Rate for instruction 22536: 17.8674% -Rate for instruction 22537: 17.8671% -Rate for instruction 22538: 17.8671% -Rate for instruction 22539: 17.8665% -Rate for instruction 22540: 17.8666% -Rate for instruction 22541: 17.867% -Rate for instruction 22542: 17.8669% -Rate for instruction 22543: 17.8663% -Rate for instruction 22544: 17.8661% -Rate for instruction 22545: 17.8655% -Rate for instruction 22546: 17.8656% -Rate for instruction 22547: 17.8655% -Rate for instruction 22548: 17.8664% -Rate for instruction 22549: 17.8671% -Rate for instruction 22550: 17.868% -Rate for instruction 22551: 17.8678% -Rate for instruction 22552: 17.8685% -Rate for instruction 22553: 17.8691% -Rate for instruction 22554: 17.8702% -Rate for instruction 22555: 17.8695% -Rate for instruction 22556: 17.8708% -Rate for instruction 22557: 17.8719% -Rate for instruction 22558: 17.8713% -Rate for instruction 22559: 17.8708% -Rate for instruction 22560: 17.8704% -Rate for instruction 22561: 17.8713% -Rate for instruction 22562: 17.8708% -Rate for instruction 22563: 17.8704% -Rate for instruction 22564: 17.8709% -Rate for instruction 22565: 17.8703% -Rate for instruction 22566: 17.8699% -Rate for instruction 22567: 17.8698% -Rate for instruction 22568: 17.8696% -Rate for instruction 22569: 17.8702% -Rate for instruction 22570: 17.8704% -Rate for instruction 22571: 17.871% -Rate for instruction 22572: 17.8709% -Rate for instruction 22573: 17.8703% -Rate for instruction 22574: 17.8709% -Rate for instruction 22575: 17.8704% -Rate for instruction 22576: 17.8703% -Rate for instruction 22577: 17.87% -Rate for instruction 22578: 17.8694% -Rate for instruction 22579: 17.8703% -Rate for instruction 22580: 17.8716% -Rate for instruction 22581: 17.8713% -Rate for instruction 22582: 17.8715% -Rate for instruction 22583: 17.8717% -Rate for instruction 22584: 17.8725% -Rate for instruction 22585: 17.8719% -Rate for instruction 22586: 17.8714% -Rate for instruction 22587: 17.8708% -Rate for instruction 22588: 17.8705% -Rate for instruction 22589: 17.8699% -Rate for instruction 22590: 17.8701% -Rate for instruction 22591: 17.8697% -Rate for instruction 22592: 17.8694% -Rate for instruction 22593: 17.8688% -Rate for instruction 22594: 17.8692% -Rate for instruction 22595: 17.8694% -Rate for instruction 22596: 17.8693% -Rate for instruction 22597: 17.8693% -Rate for instruction 22598: 17.8687% -Rate for instruction 22599: 17.8691% -Rate for instruction 22600: 17.869% -Rate for instruction 22601: 17.8696% -Rate for instruction 22602: 17.8696% -Rate for instruction 22603: 17.8694% -Rate for instruction 22604: 17.8687% -Rate for instruction 22605: 17.8686% -Rate for instruction 22606: 17.8687% -Rate for instruction 22607: 17.8689% -Rate for instruction 22608: 17.8688% -Rate for instruction 22609: 17.8682% -Rate for instruction 22610: 17.8683% -Rate for instruction 22611: 17.8676% -Rate for instruction 22612: 17.8679% -Rate for instruction 22613: 17.8676% -Rate for instruction 22614: 17.8675% -Rate for instruction 22615: 17.8674% -Rate for instruction 22616: 17.8676% -Rate for instruction 22617: 17.8685% -Rate for instruction 22618: 17.8679% -Rate for instruction 22619: 17.868% -Rate for instruction 22620: 17.8677% -Rate for instruction 22621: 17.8672% -Rate for instruction 22622: 17.8669% -Rate for instruction 22623: 17.8663% -Rate for instruction 22624: 17.8662% -Rate for instruction 22625: 17.8668% -Rate for instruction 22626: 17.867% -Rate for instruction 22627: 17.8664% -Rate for instruction 22628: 17.8665% -Rate for instruction 22629: 17.8674% -Rate for instruction 22630: 17.8676% -Rate for instruction 22631: 17.8671% -Rate for instruction 22632: 17.8677% -Rate for instruction 22633: 17.8683% -Rate for instruction 22634: 17.8685% -Rate for instruction 22635: 17.8682% -Rate for instruction 22636: 17.8688% -Rate for instruction 22637: 17.869% -Rate for instruction 22638: 17.8684% -Rate for instruction 22639: 17.8681% -Rate for instruction 22640: 17.8685% -Rate for instruction 22641: 17.8684% -Rate for instruction 22642: 17.8688% -Rate for instruction 22643: 17.8689% -Rate for instruction 22644: 17.8684% -Rate for instruction 22645: 17.8683% -Rate for instruction 22646: 17.868% -Rate for instruction 22647: 17.8683% -Rate for instruction 22648: 17.8683% -Rate for instruction 22649: 17.8679% -Rate for instruction 22650: 17.8681% -Rate for instruction 22651: 17.8682% -Rate for instruction 22652: 17.8686% -Rate for instruction 22653: 17.868% -Rate for instruction 22654: 17.8679% -Rate for instruction 22655: 17.8677% -Rate for instruction 22656: 17.8676% -Rate for instruction 22657: 17.867% -Rate for instruction 22658: 17.8671% -Rate for instruction 22659: 17.8668% -Rate for instruction 22660: 17.8665% -Rate for instruction 22661: 17.8662% -Rate for instruction 22662: 17.866% -Rate for instruction 22663: 17.8662% -Rate for instruction 22664: 17.8669% -Rate for instruction 22665: 17.8673% -Rate for instruction 22666: 17.8676% -Rate for instruction 22667: 17.8674% -Rate for instruction 22668: 17.8672% -Rate for instruction 22669: 17.8667% -Rate for instruction 22670: 17.8666% -Rate for instruction 22671: 17.866% -Rate for instruction 22672: 17.8655% -Rate for instruction 22673: 17.8661% -Rate for instruction 22674: 17.8665% -Rate for instruction 22675: 17.8659% -Rate for instruction 22676: 17.866% -Rate for instruction 22677: 17.866% -Rate for instruction 22678: 17.8667% -Rate for instruction 22679: 17.8665% -Rate for instruction 22680: 17.8669% -Rate for instruction 22681: 17.8666% -Rate for instruction 22682: 17.8665% -Rate for instruction 22683: 17.866% -Rate for instruction 22684: 17.8664% -Rate for instruction 22685: 17.867% -Rate for instruction 22686: 17.8671% -Rate for instruction 22687: 17.867% -Rate for instruction 22688: 17.8667% -Rate for instruction 22689: 17.8671% -Rate for instruction 22690: 17.8666% -Rate for instruction 22691: 17.8675% -Rate for instruction 22692: 17.8673% -Rate for instruction 22693: 17.8678% -Rate for instruction 22694: 17.8674% -Rate for instruction 22695: 17.8668% -Rate for instruction 22696: 17.8661% -Rate for instruction 22697: 17.8667% -Rate for instruction 22698: 17.8678% -Rate for instruction 22699: 17.8683% -Rate for instruction 22700: 17.8677% -Rate for instruction 22701: 17.8683% -Rate for instruction 22702: 17.8694% -Rate for instruction 22703: 17.8699% -Rate for instruction 22704: 17.8705% -Rate for instruction 22705: 17.8716% -Rate for instruction 22706: 17.8716% -Rate for instruction 22707: 17.871% -Rate for instruction 22708: 17.8708% -Rate for instruction 22709: 17.8703% -Rate for instruction 22710: 17.8697% -Rate for instruction 22711: 17.8694% -Rate for instruction 22712: 17.869% -Rate for instruction 22713: 17.8689% -Rate for instruction 22714: 17.8691% -Rate for instruction 22715: 17.8685% -Rate for instruction 22716: 17.8682% -Rate for instruction 22717: 17.8682% -Rate for instruction 22718: 17.8678% -Rate for instruction 22719: 17.8675% -Rate for instruction 22720: 17.8671% -Rate for instruction 22721: 17.8665% -Rate for instruction 22722: 17.8663% -Rate for instruction 22723: 17.8671% -Rate for instruction 22724: 17.8673% -Rate for instruction 22725: 17.8679% -Rate for instruction 22726: 17.8673% -Rate for instruction 22727: 17.8678% -Rate for instruction 22728: 17.8687% -Rate for instruction 22729: 17.8688% -Rate for instruction 22730: 17.8682% -Rate for instruction 22731: 17.8679% -Rate for instruction 22732: 17.8673% -Rate for instruction 22733: 17.8668% -Rate for instruction 22734: 17.8662% -Rate for instruction 22735: 17.8661% -Rate for instruction 22736: 17.8655% -Rate for instruction 22737: 17.8657% -Rate for instruction 22738: 17.8653% -Rate for instruction 22739: 17.8647% -Rate for instruction 22740: 17.8644% -Rate for instruction 22741: 17.8643% -Rate for instruction 22742: 17.8642% -Rate for instruction 22743: 17.8639% -Rate for instruction 22744: 17.8633% -Rate for instruction 22745: 17.8638% -Rate for instruction 22746: 17.8634% -Rate for instruction 22747: 17.8641% -Rate for instruction 22748: 17.8647% -Rate for instruction 22749: 17.8642% -Rate for instruction 22750: 17.864% -Rate for instruction 22751: 17.8639% -Rate for instruction 22752: 17.8637% -Rate for instruction 22753: 17.8647% -Rate for instruction 22754: 17.8649% -Rate for instruction 22755: 17.8648% -Rate for instruction 22756: 17.8648% -Rate for instruction 22757: 17.8644% -Rate for instruction 22758: 17.8643% -Rate for instruction 22759: 17.8645% -Rate for instruction 22760: 17.8654% -Rate for instruction 22761: 17.865% -Rate for instruction 22762: 17.8643% -Rate for instruction 22763: 17.8641% -Rate for instruction 22764: 17.8635% -Rate for instruction 22765: 17.8633% -Rate for instruction 22766: 17.8629% -Rate for instruction 22767: 17.863% -Rate for instruction 22768: 17.863% -Rate for instruction 22769: 17.8639% -Rate for instruction 22770: 17.8647% -Rate for instruction 22771: 17.8642% -Rate for instruction 22772: 17.8646% -Rate for instruction 22773: 17.864% -Rate for instruction 22774: 17.8642% -Rate for instruction 22775: 17.8648% -Rate for instruction 22776: 17.8645% -Rate for instruction 22777: 17.8652% -Rate for instruction 22778: 17.865% -Rate for instruction 22779: 17.8655% -Rate for instruction 22780: 17.8653% -Rate for instruction 22781: 17.8653% -Rate for instruction 22782: 17.8652% -Rate for instruction 22783: 17.8659% -Rate for instruction 22784: 17.8653% -Rate for instruction 22785: 17.8654% -Rate for instruction 22786: 17.8656% -Rate for instruction 22787: 17.8655% -Rate for instruction 22788: 17.8661% -Rate for instruction 22789: 17.867% -Rate for instruction 22790: 17.8672% -Rate for instruction 22791: 17.8666% -Rate for instruction 22792: 17.867% -Rate for instruction 22793: 17.8676% -Rate for instruction 22794: 17.8671% -Rate for instruction 22795: 17.8672% -Rate for instruction 22796: 17.8672% -Rate for instruction 22797: 17.8673% -Rate for instruction 22798: 17.8677% -Rate for instruction 22799: 17.8681% -Rate for instruction 22800: 17.8681% -Rate for instruction 22801: 17.8687% -Rate for instruction 22802: 17.8688% -Rate for instruction 22803: 17.8687% -Rate for instruction 22804: 17.8691% -Rate for instruction 22805: 17.8684% -Rate for instruction 22806: 17.8683% -Rate for instruction 22807: 17.8682% -Rate for instruction 22808: 17.8688% -Rate for instruction 22809: 17.8699% -Rate for instruction 22810: 17.8706% -Rate for instruction 22811: 17.87% -Rate for instruction 22812: 17.8697% -Rate for instruction 22813: 17.8701% -Rate for instruction 22814: 17.8703% -Rate for instruction 22815: 17.8704% -Rate for instruction 22816: 17.8699% -Rate for instruction 22817: 17.8697% -Rate for instruction 22818: 17.869% -Rate for instruction 22819: 17.8686% -Rate for instruction 22820: 17.8685% -Rate for instruction 22821: 17.8682% -Rate for instruction 22822: 17.8678% -Rate for instruction 22823: 17.8673% -Rate for instruction 22824: 17.867% -Rate for instruction 22825: 17.8664% -Rate for instruction 22826: 17.8658% -Rate for instruction 22827: 17.866% -Rate for instruction 22828: 17.8658% -Rate for instruction 22829: 17.8653% -Rate for instruction 22830: 17.865% -Rate for instruction 22831: 17.8649% -Rate for instruction 22832: 17.865% -Rate for instruction 22833: 17.8644% -Rate for instruction 22834: 17.8644% -Rate for instruction 22835: 17.8642% -Rate for instruction 22836: 17.8636% -Rate for instruction 22837: 17.8636% -Rate for instruction 22838: 17.8642% -Rate for instruction 22839: 17.8642% -Rate for instruction 22840: 17.8638% -Rate for instruction 22841: 17.8637% -Rate for instruction 22842: 17.8636% -Rate for instruction 22843: 17.8631% -Rate for instruction 22844: 17.8629% -Rate for instruction 22845: 17.8624% -Rate for instruction 22846: 17.8621% -Rate for instruction 22847: 17.8617% -Rate for instruction 22848: 17.8611% -Rate for instruction 22849: 17.8613% -Rate for instruction 22850: 17.8607% -Rate for instruction 22851: 17.8611% -Rate for instruction 22852: 17.8605% -Rate for instruction 22853: 17.8612% -Rate for instruction 22854: 17.8618% -Rate for instruction 22855: 17.8612% -Rate for instruction 22856: 17.8605% -Rate for instruction 22857: 17.8601% -Rate for instruction 22858: 17.8595% -Rate for instruction 22859: 17.8594% -Rate for instruction 22860: 17.8596% -Rate for instruction 22861: 17.86% -Rate for instruction 22862: 17.8594% -Rate for instruction 22863: 17.8589% -Rate for instruction 22864: 17.859% -Rate for instruction 22865: 17.8592% -Rate for instruction 22866: 17.8596% -Rate for instruction 22867: 17.8602% -Rate for instruction 22868: 17.8597% -Rate for instruction 22869: 17.86% -Rate for instruction 22870: 17.8597% -Rate for instruction 22871: 17.8593% -Rate for instruction 22872: 17.8591% -Rate for instruction 22873: 17.8592% -Rate for instruction 22874: 17.8596% -Rate for instruction 22875: 17.8595% -Rate for instruction 22876: 17.8594% -Rate for instruction 22877: 17.8594% -Rate for instruction 22878: 17.859% -Rate for instruction 22879: 17.8586% -Rate for instruction 22880: 17.8588% -Rate for instruction 22881: 17.8592% -Rate for instruction 22882: 17.8587% -Rate for instruction 22883: 17.8595% -Rate for instruction 22884: 17.8592% -Rate for instruction 22885: 17.8594% -Rate for instruction 22886: 17.8595% -Rate for instruction 22887: 17.8595% -Rate for instruction 22888: 17.8589% -Rate for instruction 22889: 17.8588% -Rate for instruction 22890: 17.8584% -Rate for instruction 22891: 17.8589% -Rate for instruction 22892: 17.8587% -Rate for instruction 22893: 17.8589% -Rate for instruction 22894: 17.8591% -Rate for instruction 22895: 17.859% -Rate for instruction 22896: 17.8592% -Rate for instruction 22897: 17.8591% -Rate for instruction 22898: 17.859% -Rate for instruction 22899: 17.8593% -Rate for instruction 22900: 17.859% -Rate for instruction 22901: 17.8589% -Rate for instruction 22902: 17.8591% -Rate for instruction 22903: 17.8588% -Rate for instruction 22904: 17.8589% -Rate for instruction 22905: 17.8586% -Rate for instruction 22906: 17.8588% -Rate for instruction 22907: 17.8584% -Rate for instruction 22908: 17.8583% -Rate for instruction 22909: 17.8588% -Rate for instruction 22910: 17.8584% -Rate for instruction 22911: 17.8586% -Rate for instruction 22912: 17.8582% -Rate for instruction 22913: 17.8576% -Rate for instruction 22914: 17.858% -Rate for instruction 22915: 17.8575% -Rate for instruction 22916: 17.8576% -Rate for instruction 22917: 17.8573% -Rate for instruction 22918: 17.8577% -Rate for instruction 22919: 17.8574% -Rate for instruction 22920: 17.8577% -Rate for instruction 22921: 17.8574% -Rate for instruction 22922: 17.8583% -Rate for instruction 22923: 17.8583% -Rate for instruction 22924: 17.8577% -Rate for instruction 22925: 17.8576% -Rate for instruction 22926: 17.858% -Rate for instruction 22927: 17.8579% -Rate for instruction 22928: 17.8583% -Rate for instruction 22929: 17.858% -Rate for instruction 22930: 17.8579% -Rate for instruction 22931: 17.8576% -Rate for instruction 22932: 17.8572% -Rate for instruction 22933: 17.8571% -Rate for instruction 22934: 17.8573% -Rate for instruction 22935: 17.8574% -Rate for instruction 22936: 17.8571% -Rate for instruction 22937: 17.8568% -Rate for instruction 22938: 17.8566% -Rate for instruction 22939: 17.8561% -Rate for instruction 22940: 17.8555% -Rate for instruction 22941: 17.8562% -Rate for instruction 22942: 17.8568% -Rate for instruction 22943: 17.8565% -Rate for instruction 22944: 17.8562% -Rate for instruction 22945: 17.8556% -Rate for instruction 22946: 17.8557% -Rate for instruction 22947: 17.8551% -Rate for instruction 22948: 17.8546% -Rate for instruction 22949: 17.8545% -Rate for instruction 22950: 17.8539% -Rate for instruction 22951: 17.8535% -Rate for instruction 22952: 17.8529% -Rate for instruction 22953: 17.8526% -Rate for instruction 22954: 17.8522% -Rate for instruction 22955: 17.8519% -Rate for instruction 22956: 17.8518% -Rate for instruction 22957: 17.852% -Rate for instruction 22958: 17.8522% -Rate for instruction 22959: 17.8518% -Rate for instruction 22960: 17.8512% -Rate for instruction 22961: 17.8511% -Rate for instruction 22962: 17.8513% -Rate for instruction 22963: 17.852% -Rate for instruction 22964: 17.8526% -Rate for instruction 22965: 17.8523% -Rate for instruction 22966: 17.8527% -Rate for instruction 22967: 17.8529% -Rate for instruction 22968: 17.8532% -Rate for instruction 22969: 17.8541% -Rate for instruction 22970: 17.8536% -Rate for instruction 22971: 17.8533% -Rate for instruction 22972: 17.8529% -Rate for instruction 22973: 17.8523% -Rate for instruction 22974: 17.8517% -Rate for instruction 22975: 17.8517% -Rate for instruction 22976: 17.852% -Rate for instruction 22977: 17.8519% -Rate for instruction 22978: 17.8514% -Rate for instruction 22979: 17.8526% -Rate for instruction 22980: 17.8542% -Rate for instruction 22981: 17.8539% -Rate for instruction 22982: 17.8547% -Rate for instruction 22983: 17.8546% -Rate for instruction 22984: 17.8546% -Rate for instruction 22985: 17.8548% -Rate for instruction 22986: 17.8549% -Rate for instruction 22987: 17.8548% -Rate for instruction 22988: 17.8544% -Rate for instruction 22989: 17.8544% -Rate for instruction 22990: 17.854% -Rate for instruction 22991: 17.8547% -Rate for instruction 22992: 17.8554% -Rate for instruction 22993: 17.8562% -Rate for instruction 22994: 17.8569% -Rate for instruction 22995: 17.8576% -Rate for instruction 22996: 17.8585% -Rate for instruction 22997: 17.8596% -Rate for instruction 22998: 17.859% -Rate for instruction 22999: 17.8584% -Rate for instruction 23000: 17.8588% -Rate for instruction 23001: 17.8586% -Rate for instruction 23002: 17.8589% -Rate for instruction 23003: 17.8591% -Rate for instruction 23004: 17.859% -Rate for instruction 23005: 17.8584% -Rate for instruction 23006: 17.8581% -Rate for instruction 23007: 17.8578% -Rate for instruction 23008: 17.8581% -Rate for instruction 23009: 17.8578% -Rate for instruction 23010: 17.8585% -Rate for instruction 23011: 17.8581% -Rate for instruction 23012: 17.8586% -Rate for instruction 23013: 17.858% -Rate for instruction 23014: 17.8578% -Rate for instruction 23015: 17.8575% -Rate for instruction 23016: 17.857% -Rate for instruction 23017: 17.8569% -Rate for instruction 23018: 17.8567% -Rate for instruction 23019: 17.8562% -Rate for instruction 23020: 17.8558% -Rate for instruction 23021: 17.8557% -Rate for instruction 23022: 17.8551% -Rate for instruction 23023: 17.8544% -Rate for instruction 23024: 17.8542% -Rate for instruction 23025: 17.8542% -Rate for instruction 23026: 17.854% -Rate for instruction 23027: 17.8542% -Rate for instruction 23028: 17.8536% -Rate for instruction 23029: 17.8536% -Rate for instruction 23030: 17.8539% -Rate for instruction 23031: 17.8544% -Rate for instruction 23032: 17.8541% -Rate for instruction 23033: 17.855% -Rate for instruction 23034: 17.8556% -Rate for instruction 23035: 17.8565% -Rate for instruction 23036: 17.8559% -Rate for instruction 23037: 17.856% -Rate for instruction 23038: 17.8553% -Rate for instruction 23039: 17.8557% -Rate for instruction 23040: 17.8553% -Rate for instruction 23041: 17.8547% -Rate for instruction 23042: 17.8546% -Rate for instruction 23043: 17.854% -Rate for instruction 23044: 17.8535% -Rate for instruction 23045: 17.8529% -Rate for instruction 23046: 17.8526% -Rate for instruction 23047: 17.8527% -Rate for instruction 23048: 17.8528% -Rate for instruction 23049: 17.8522% -Rate for instruction 23050: 17.8516% -Rate for instruction 23051: 17.8509% -Rate for instruction 23052: 17.851% -Rate for instruction 23053: 17.8506% -Rate for instruction 23054: 17.8506% -Rate for instruction 23055: 17.8505% -Rate for instruction 23056: 17.8509% -Rate for instruction 23057: 17.851% -Rate for instruction 23058: 17.8507% -Rate for instruction 23059: 17.8508% -Rate for instruction 23060: 17.8508% -Rate for instruction 23061: 17.8509% -Rate for instruction 23062: 17.8506% -Rate for instruction 23063: 17.85% -Rate for instruction 23064: 17.8504% -Rate for instruction 23065: 17.8506% -Rate for instruction 23066: 17.85% -Rate for instruction 23067: 17.8504% -Rate for instruction 23068: 17.8503% -Rate for instruction 23069: 17.8507% -Rate for instruction 23070: 17.8501% -Rate for instruction 23071: 17.85% -Rate for instruction 23072: 17.8494% -Rate for instruction 23073: 17.8491% -Rate for instruction 23074: 17.8487% -Rate for instruction 23075: 17.8489% -Rate for instruction 23076: 17.8493% -Rate for instruction 23077: 17.8487% -Rate for instruction 23078: 17.8491% -Rate for instruction 23079: 17.8491% -Rate for instruction 23080: 17.8485% -Rate for instruction 23081: 17.8486% -Rate for instruction 23082: 17.8486% -Rate for instruction 23083: 17.8482% -Rate for instruction 23084: 17.8484% -Rate for instruction 23085: 17.8483% -Rate for instruction 23086: 17.8485% -Rate for instruction 23087: 17.8486% -Rate for instruction 23088: 17.8487% -Rate for instruction 23089: 17.8482% -Rate for instruction 23090: 17.8478% -Rate for instruction 23091: 17.8478% -Rate for instruction 23092: 17.8474% -Rate for instruction 23093: 17.8471% -Rate for instruction 23094: 17.8472% -Rate for instruction 23095: 17.8476% -Rate for instruction 23096: 17.847% -Rate for instruction 23097: 17.8472% -Rate for instruction 23098: 17.8468% -Rate for instruction 23099: 17.8465% -Rate for instruction 23100: 17.847% -Rate for instruction 23101: 17.8479% -Rate for instruction 23102: 17.8482% -Rate for instruction 23103: 17.8476% -Rate for instruction 23104: 17.8471% -Rate for instruction 23105: 17.8473% -Rate for instruction 23106: 17.8479% -Rate for instruction 23107: 17.8486% -Rate for instruction 23108: 17.8484% -Rate for instruction 23109: 17.8479% -Rate for instruction 23110: 17.8483% -Rate for instruction 23111: 17.8484% -Rate for instruction 23112: 17.8483% -Rate for instruction 23113: 17.8482% -Rate for instruction 23114: 17.8481% -Rate for instruction 23115: 17.8476% -Rate for instruction 23116: 17.8472% -Rate for instruction 23117: 17.8474% -Rate for instruction 23118: 17.8476% -Rate for instruction 23119: 17.8474% -Rate for instruction 23120: 17.8474% -Rate for instruction 23121: 17.8468% -Rate for instruction 23122: 17.8469% -Rate for instruction 23123: 17.8464% -Rate for instruction 23124: 17.846% -Rate for instruction 23125: 17.8459% -Rate for instruction 23126: 17.8458% -Rate for instruction 23127: 17.8457% -Rate for instruction 23128: 17.8456% -Rate for instruction 23129: 17.8461% -Rate for instruction 23130: 17.8455% -Rate for instruction 23131: 17.8451% -Rate for instruction 23132: 17.8458% -Rate for instruction 23133: 17.8464% -Rate for instruction 23134: 17.8458% -Rate for instruction 23135: 17.8453% -Rate for instruction 23136: 17.8455% -Rate for instruction 23137: 17.8449% -Rate for instruction 23138: 17.845% -Rate for instruction 23139: 17.8451% -Rate for instruction 23140: 17.8456% -Rate for instruction 23141: 17.8458% -Rate for instruction 23142: 17.8457% -Rate for instruction 23143: 17.8451% -Rate for instruction 23144: 17.8455% -Rate for instruction 23145: 17.8457% -Rate for instruction 23146: 17.8455% -Rate for instruction 23147: 17.845% -Rate for instruction 23148: 17.8454% -Rate for instruction 23149: 17.8457% -Rate for instruction 23150: 17.8451% -Rate for instruction 23151: 17.8454% -Rate for instruction 23152: 17.845% -Rate for instruction 23153: 17.8449% -Rate for instruction 23154: 17.8451% -Rate for instruction 23155: 17.8447% -Rate for instruction 23156: 17.8447% -Rate for instruction 23157: 17.845% -Rate for instruction 23158: 17.8449% -Rate for instruction 23159: 17.8451% -Rate for instruction 23160: 17.845% -Rate for instruction 23161: 17.8449% -Rate for instruction 23162: 17.8446% -Rate for instruction 23163: 17.845% -Rate for instruction 23164: 17.8451% -Rate for instruction 23165: 17.845% -Rate for instruction 23166: 17.8443% -Rate for instruction 23167: 17.8442% -Rate for instruction 23168: 17.8436% -Rate for instruction 23169: 17.8434% -Rate for instruction 23170: 17.8433% -Rate for instruction 23171: 17.8432% -Rate for instruction 23172: 17.8425% -Rate for instruction 23173: 17.8431% -Rate for instruction 23174: 17.8433% -Rate for instruction 23175: 17.8434% -Rate for instruction 23176: 17.8438% -Rate for instruction 23177: 17.844% -Rate for instruction 23178: 17.8439% -Rate for instruction 23179: 17.8436% -Rate for instruction 23180: 17.8435% -Rate for instruction 23181: 17.8431% -Rate for instruction 23182: 17.8425% -Rate for instruction 23183: 17.8422% -Rate for instruction 23184: 17.8428% -Rate for instruction 23185: 17.8425% -Rate for instruction 23186: 17.8421% -Rate for instruction 23187: 17.8416% -Rate for instruction 23188: 17.8422% -Rate for instruction 23189: 17.8426% -Rate for instruction 23190: 17.843% -Rate for instruction 23191: 17.8437% -Rate for instruction 23192: 17.8439% -Rate for instruction 23193: 17.8435% -Rate for instruction 23194: 17.8435% -Rate for instruction 23195: 17.8443% -Rate for instruction 23196: 17.8442% -Rate for instruction 23197: 17.8442% -Rate for instruction 23198: 17.8443% -Rate for instruction 23199: 17.8438% -Rate for instruction 23200: 17.8442% -Rate for instruction 23201: 17.844% -Rate for instruction 23202: 17.844% -Rate for instruction 23203: 17.8439% -Rate for instruction 23204: 17.8435% -Rate for instruction 23205: 17.8432% -Rate for instruction 23206: 17.8438% -Rate for instruction 23207: 17.844% -Rate for instruction 23208: 17.844% -Rate for instruction 23209: 17.8443% -Rate for instruction 23210: 17.8437% -Rate for instruction 23211: 17.8434% -Rate for instruction 23212: 17.8434% -Rate for instruction 23213: 17.843% -Rate for instruction 23214: 17.8426% -Rate for instruction 23215: 17.8425% -Rate for instruction 23216: 17.843% -Rate for instruction 23217: 17.8426% -Rate for instruction 23218: 17.843% -Rate for instruction 23219: 17.8424% -Rate for instruction 23220: 17.8424% -Rate for instruction 23221: 17.8423% -Rate for instruction 23222: 17.8426% -Rate for instruction 23223: 17.8423% -Rate for instruction 23224: 17.8418% -Rate for instruction 23225: 17.8417% -Rate for instruction 23226: 17.842% -Rate for instruction 23227: 17.842% -Rate for instruction 23228: 17.8419% -Rate for instruction 23229: 17.8421% -Rate for instruction 23230: 17.8415% -Rate for instruction 23231: 17.8409% -Rate for instruction 23232: 17.8405% -Rate for instruction 23233: 17.8407% -Rate for instruction 23234: 17.8401% -Rate for instruction 23235: 17.8399% -Rate for instruction 23236: 17.8396% -Rate for instruction 23237: 17.84% -Rate for instruction 23238: 17.8402% -Rate for instruction 23239: 17.8404% -Rate for instruction 23240: 17.8403% -Rate for instruction 23241: 17.8405% -Rate for instruction 23242: 17.8408% -Rate for instruction 23243: 17.8403% -Rate for instruction 23244: 17.8407% -Rate for instruction 23245: 17.8411% -Rate for instruction 23246: 17.8417% -Rate for instruction 23247: 17.8414% -Rate for instruction 23248: 17.8408% -Rate for instruction 23249: 17.8404% -Rate for instruction 23250: 17.8401% -Rate for instruction 23251: 17.8397% -Rate for instruction 23252: 17.8392% -Rate for instruction 23253: 17.8388% -Rate for instruction 23254: 17.8383% -Rate for instruction 23255: 17.8389% -Rate for instruction 23256: 17.8388% -Rate for instruction 23257: 17.8382% -Rate for instruction 23258: 17.8378% -Rate for instruction 23259: 17.8377% -Rate for instruction 23260: 17.8374% -Rate for instruction 23261: 17.8368% -Rate for instruction 23262: 17.8365% -Rate for instruction 23263: 17.8361% -Rate for instruction 23264: 17.8361% -Rate for instruction 23265: 17.836% -Rate for instruction 23266: 17.8354% -Rate for instruction 23267: 17.835% -Rate for instruction 23268: 17.8344% -Rate for instruction 23269: 17.8346% -Rate for instruction 23270: 17.8345% -Rate for instruction 23271: 17.8344% -Rate for instruction 23272: 17.835% -Rate for instruction 23273: 17.8349% -Rate for instruction 23274: 17.8343% -Rate for instruction 23275: 17.8351% -Rate for instruction 23276: 17.8359% -Rate for instruction 23277: 17.8367% -Rate for instruction 23278: 17.837% -Rate for instruction 23279: 17.8372% -Rate for instruction 23280: 17.8376% -Rate for instruction 23281: 17.837% -Rate for instruction 23282: 17.8366% -Rate for instruction 23283: 17.836% -Rate for instruction 23284: 17.8355% -Rate for instruction 23285: 17.8352% -Rate for instruction 23286: 17.835% -Rate for instruction 23287: 17.8349% -Rate for instruction 23288: 17.8346% -Rate for instruction 23289: 17.834% -Rate for instruction 23290: 17.8339% -Rate for instruction 23291: 17.8333% -Rate for instruction 23292: 17.833% -Rate for instruction 23293: 17.8328% -Rate for instruction 23294: 17.8322% -Rate for instruction 23295: 17.8319% -Rate for instruction 23296: 17.8318% -Rate for instruction 23297: 17.8313% -Rate for instruction 23298: 17.8311% -Rate for instruction 23299: 17.8306% -Rate for instruction 23300: 17.8309% -Rate for instruction 23301: 17.8313% -Rate for instruction 23302: 17.8307% -Rate for instruction 23303: 17.8302% -Rate for instruction 23304: 17.8308% -Rate for instruction 23305: 17.8308% -Rate for instruction 23306: 17.8306% -Rate for instruction 23307: 17.8311% -Rate for instruction 23308: 17.8307% -Rate for instruction 23309: 17.8301% -Rate for instruction 23310: 17.8303% -Rate for instruction 23311: 17.8305% -Rate for instruction 23312: 17.8306% -Rate for instruction 23313: 17.8308% -Rate for instruction 23314: 17.8309% -Rate for instruction 23315: 17.8308% -Rate for instruction 23316: 17.8307% -Rate for instruction 23317: 17.8317% -Rate for instruction 23318: 17.8324% -Rate for instruction 23319: 17.8332% -Rate for instruction 23320: 17.8344% -Rate for instruction 23321: 17.8349% -Rate for instruction 23322: 17.835% -Rate for instruction 23323: 17.8349% -Rate for instruction 23324: 17.8349% -Rate for instruction 23325: 17.8345% -Rate for instruction 23326: 17.8339% -Rate for instruction 23327: 17.8336% -Rate for instruction 23328: 17.8337% -Rate for instruction 23329: 17.8333% -Rate for instruction 23330: 17.8333% -Rate for instruction 23331: 17.8331% -Rate for instruction 23332: 17.8331% -Rate for instruction 23333: 17.833% -Rate for instruction 23334: 17.8329% -Rate for instruction 23335: 17.8335% -Rate for instruction 23336: 17.8338% -Rate for instruction 23337: 17.8344% -Rate for instruction 23338: 17.8346% -Rate for instruction 23339: 17.8347% -Rate for instruction 23340: 17.8349% -Rate for instruction 23341: 17.8351% -Rate for instruction 23342: 17.8349% -Rate for instruction 23343: 17.8346% -Rate for instruction 23344: 17.8348% -Rate for instruction 23345: 17.8347% -Rate for instruction 23346: 17.8343% -Rate for instruction 23347: 17.8342% -Rate for instruction 23348: 17.8342% -Rate for instruction 23349: 17.8336% -Rate for instruction 23350: 17.8334% -Rate for instruction 23351: 17.8331% -Rate for instruction 23352: 17.8332% -Rate for instruction 23353: 17.8326% -Rate for instruction 23354: 17.832% -Rate for instruction 23355: 17.8319% -Rate for instruction 23356: 17.8314% -Rate for instruction 23357: 17.831% -Rate for instruction 23358: 17.8307% -Rate for instruction 23359: 17.8303% -Rate for instruction 23360: 17.8303% -Rate for instruction 23361: 17.8302% -Rate for instruction 23362: 17.83% -Rate for instruction 23363: 17.8305% -Rate for instruction 23364: 17.8314% -Rate for instruction 23365: 17.831% -Rate for instruction 23366: 17.8307% -Rate for instruction 23367: 17.8311% -Rate for instruction 23368: 17.8316% -Rate for instruction 23369: 17.8317% -Rate for instruction 23370: 17.8316% -Rate for instruction 23371: 17.8313% -Rate for instruction 23372: 17.8312% -Rate for instruction 23373: 17.8314% -Rate for instruction 23374: 17.8318% -Rate for instruction 23375: 17.8316% -Rate for instruction 23376: 17.8313% -Rate for instruction 23377: 17.8312% -Rate for instruction 23378: 17.8309% -Rate for instruction 23379: 17.8307% -Rate for instruction 23380: 17.8314% -Rate for instruction 23381: 17.8323% -Rate for instruction 23382: 17.8323% -Rate for instruction 23383: 17.8319% -Rate for instruction 23384: 17.8316% -Rate for instruction 23385: 17.831% -Rate for instruction 23386: 17.8316% -Rate for instruction 23387: 17.8311% -Rate for instruction 23388: 17.8312% -Rate for instruction 23389: 17.8308% -Rate for instruction 23390: 17.8302% -Rate for instruction 23391: 17.8302% -Rate for instruction 23392: 17.8306% -Rate for instruction 23393: 17.8313% -Rate for instruction 23394: 17.8319% -Rate for instruction 23395: 17.8313% -Rate for instruction 23396: 17.8312% -Rate for instruction 23397: 17.8311% -Rate for instruction 23398: 17.8306% -Rate for instruction 23399: 17.8305% -Rate for instruction 23400: 17.8303% -Rate for instruction 23401: 17.8302% -Rate for instruction 23402: 17.8307% -Rate for instruction 23403: 17.8301% -Rate for instruction 23404: 17.8299% -Rate for instruction 23405: 17.8299% -Rate for instruction 23406: 17.8301% -Rate for instruction 23407: 17.83% -Rate for instruction 23408: 17.8294% -Rate for instruction 23409: 17.8292% -Rate for instruction 23410: 17.8291% -Rate for instruction 23411: 17.8296% -Rate for instruction 23412: 17.8297% -Rate for instruction 23413: 17.8302% -Rate for instruction 23414: 17.8309% -Rate for instruction 23415: 17.8318% -Rate for instruction 23416: 17.8312% -Rate for instruction 23417: 17.8321% -Rate for instruction 23418: 17.8332% -Rate for instruction 23419: 17.8332% -Rate for instruction 23420: 17.8334% -Rate for instruction 23421: 17.8328% -Rate for instruction 23422: 17.8327% -Rate for instruction 23423: 17.8323% -Rate for instruction 23424: 17.8317% -Rate for instruction 23425: 17.8313% -Rate for instruction 23426: 17.831% -Rate for instruction 23427: 17.8306% -Rate for instruction 23428: 17.8301% -Rate for instruction 23429: 17.8295% -Rate for instruction 23430: 17.8291% -Rate for instruction 23431: 17.829% -Rate for instruction 23432: 17.8286% -Rate for instruction 23433: 17.829% -Rate for instruction 23434: 17.8284% -Rate for instruction 23435: 17.8288% -Rate for instruction 23436: 17.8282% -Rate for instruction 23437: 17.8287% -Rate for instruction 23438: 17.8293% -Rate for instruction 23439: 17.8293% -Rate for instruction 23440: 17.8302% -Rate for instruction 23441: 17.8311% -Rate for instruction 23442: 17.8311% -Rate for instruction 23443: 17.8305% -Rate for instruction 23444: 17.8308% -Rate for instruction 23445: 17.8302% -Rate for instruction 23446: 17.8302% -Rate for instruction 23447: 17.8314% -Rate for instruction 23448: 17.8318% -Rate for instruction 23449: 17.8325% -Rate for instruction 23450: 17.8324% -Rate for instruction 23451: 17.832% -Rate for instruction 23452: 17.8314% -Rate for instruction 23453: 17.8311% -Rate for instruction 23454: 17.8305% -Rate for instruction 23455: 17.8301% -Rate for instruction 23456: 17.8295% -Rate for instruction 23457: 17.8306% -Rate for instruction 23458: 17.8305% -Rate for instruction 23459: 17.8305% -Rate for instruction 23460: 17.8301% -Rate for instruction 23461: 17.8298% -Rate for instruction 23462: 17.8294% -Rate for instruction 23463: 17.8289% -Rate for instruction 23464: 17.8287% -Rate for instruction 23465: 17.8286% -Rate for instruction 23466: 17.8285% -Rate for instruction 23467: 17.8279% -Rate for instruction 23468: 17.8281% -Rate for instruction 23469: 17.8277% -Rate for instruction 23470: 17.8272% -Rate for instruction 23471: 17.827% -Rate for instruction 23472: 17.8278% -Rate for instruction 23473: 17.8276% -Rate for instruction 23474: 17.8273% -Rate for instruction 23475: 17.8267% -Rate for instruction 23476: 17.8269% -Rate for instruction 23477: 17.8267% -Rate for instruction 23478: 17.8266% -Rate for instruction 23479: 17.8273% -Rate for instruction 23480: 17.8283% -Rate for instruction 23481: 17.829% -Rate for instruction 23482: 17.8288% -Rate for instruction 23483: 17.8282% -Rate for instruction 23484: 17.8277% -Rate for instruction 23485: 17.8273% -Rate for instruction 23486: 17.8272% -Rate for instruction 23487: 17.8274% -Rate for instruction 23488: 17.8272% -Rate for instruction 23489: 17.8266% -Rate for instruction 23490: 17.8263% -Rate for instruction 23491: 17.8259% -Rate for instruction 23492: 17.8256% -Rate for instruction 23493: 17.8252% -Rate for instruction 23494: 17.8249% -Rate for instruction 23495: 17.8248% -Rate for instruction 23496: 17.8247% -Rate for instruction 23497: 17.8243% -Rate for instruction 23498: 17.8242% -Rate for instruction 23499: 17.8237% -Rate for instruction 23500: 17.8241% -Rate for instruction 23501: 17.8242% -Rate for instruction 23502: 17.8236% -Rate for instruction 23503: 17.8236% -Rate for instruction 23504: 17.8232% -Rate for instruction 23505: 17.8239% -Rate for instruction 23506: 17.824% -Rate for instruction 23507: 17.8249% -Rate for instruction 23508: 17.8257% -Rate for instruction 23509: 17.8268% -Rate for instruction 23510: 17.8268% -Rate for instruction 23511: 17.8266% -Rate for instruction 23512: 17.8276% -Rate for instruction 23513: 17.8273% -Rate for instruction 23514: 17.8269% -Rate for instruction 23515: 17.828% -Rate for instruction 23516: 17.8277% -Rate for instruction 23517: 17.8274% -Rate for instruction 23518: 17.8278% -Rate for instruction 23519: 17.8272% -Rate for instruction 23520: 17.8268% -Rate for instruction 23521: 17.8267% -Rate for instruction 23522: 17.8272% -Rate for instruction 23523: 17.8273% -Rate for instruction 23524: 17.8282% -Rate for instruction 23525: 17.8279% -Rate for instruction 23526: 17.8281% -Rate for instruction 23527: 17.8288% -Rate for instruction 23528: 17.8286% -Rate for instruction 23529: 17.829% -Rate for instruction 23530: 17.8285% -Rate for instruction 23531: 17.8294% -Rate for instruction 23532: 17.83% -Rate for instruction 23533: 17.8297% -Rate for instruction 23534: 17.8302% -Rate for instruction 23535: 17.8308% -Rate for instruction 23536: 17.8307% -Rate for instruction 23537: 17.8316% -Rate for instruction 23538: 17.8323% -Rate for instruction 23539: 17.8333% -Rate for instruction 23540: 17.8332% -Rate for instruction 23541: 17.8341% -Rate for instruction 23542: 17.8348% -Rate for instruction 23543: 17.8353% -Rate for instruction 23544: 17.8352% -Rate for instruction 23545: 17.836% -Rate for instruction 23546: 17.8354% -Rate for instruction 23547: 17.8349% -Rate for instruction 23548: 17.8343% -Rate for instruction 23549: 17.835% -Rate for instruction 23550: 17.8354% -Rate for instruction 23551: 17.8358% -Rate for instruction 23552: 17.8356% -Rate for instruction 23553: 17.8356% -Rate for instruction 23554: 17.8353% -Rate for instruction 23555: 17.8349% -Rate for instruction 23556: 17.8348% -Rate for instruction 23557: 17.8357% -Rate for instruction 23558: 17.8353% -Rate for instruction 23559: 17.8352% -Rate for instruction 23560: 17.8346% -Rate for instruction 23561: 17.8345% -Rate for instruction 23562: 17.8342% -Rate for instruction 23563: 17.8352% -Rate for instruction 23564: 17.8348% -Rate for instruction 23565: 17.8358% -Rate for instruction 23566: 17.8362% -Rate for instruction 23567: 17.8361% -Rate for instruction 23568: 17.8372% -Rate for instruction 23569: 17.8366% -Rate for instruction 23570: 17.8369% -Rate for instruction 23571: 17.8367% -Rate for instruction 23572: 17.8369% -Rate for instruction 23573: 17.8363% -Rate for instruction 23574: 17.836% -Rate for instruction 23575: 17.8369% -Rate for instruction 23576: 17.8378% -Rate for instruction 23577: 17.8382% -Rate for instruction 23578: 17.8376% -Rate for instruction 23579: 17.8378% -Rate for instruction 23580: 17.8384% -Rate for instruction 23581: 17.8384% -Rate for instruction 23582: 17.8388% -Rate for instruction 23583: 17.8392% -Rate for instruction 23584: 17.8394% -Rate for instruction 23585: 17.8401% -Rate for instruction 23586: 17.8407% -Rate for instruction 23587: 17.8401% -Rate for instruction 23588: 17.8398% -Rate for instruction 23589: 17.8405% -Rate for instruction 23590: 17.8401% -Rate for instruction 23591: 17.8397% -Rate for instruction 23592: 17.8402% -Rate for instruction 23593: 17.8399% -Rate for instruction 23594: 17.8406% -Rate for instruction 23595: 17.8404% -Rate for instruction 23596: 17.8403% -Rate for instruction 23597: 17.84% -Rate for instruction 23598: 17.8397% -Rate for instruction 23599: 17.8391% -Rate for instruction 23600: 17.8387% -Rate for instruction 23601: 17.8384% -Rate for instruction 23602: 17.8393% -Rate for instruction 23603: 17.84% -Rate for instruction 23604: 17.8399% -Rate for instruction 23605: 17.841% -Rate for instruction 23606: 17.8415% -Rate for instruction 23607: 17.8421% -Rate for instruction 23608: 17.8429% -Rate for instruction 23609: 17.8428% -Rate for instruction 23610: 17.8422% -Rate for instruction 23611: 17.842% -Rate for instruction 23612: 17.842% -Rate for instruction 23613: 17.8418% -Rate for instruction 23614: 17.8421% -Rate for instruction 23615: 17.8424% -Rate for instruction 23616: 17.8418% -Rate for instruction 23617: 17.8417% -Rate for instruction 23618: 17.8411% -Rate for instruction 23619: 17.8416% -Rate for instruction 23620: 17.8428% -Rate for instruction 23621: 17.8435% -Rate for instruction 23622: 17.8442% -Rate for instruction 23623: 17.844% -Rate for instruction 23624: 17.8435% -Rate for instruction 23625: 17.8444% -Rate for instruction 23626: 17.8438% -Rate for instruction 23627: 17.8441% -Rate for instruction 23628: 17.8446% -Rate for instruction 23629: 17.8447% -Rate for instruction 23630: 17.8442% -Rate for instruction 23631: 17.8436% -Rate for instruction 23632: 17.8434% -Rate for instruction 23633: 17.8428% -Rate for instruction 23634: 17.8423% -Rate for instruction 23635: 17.8418% -Rate for instruction 23636: 17.842% -Rate for instruction 23637: 17.8414% -Rate for instruction 23638: 17.8411% -Rate for instruction 23639: 17.841% -Rate for instruction 23640: 17.8409% -Rate for instruction 23641: 17.8405% -Rate for instruction 23642: 17.8399% -Rate for instruction 23643: 17.8403% -Rate for instruction 23644: 17.8402% -Rate for instruction 23645: 17.8397% -Rate for instruction 23646: 17.8391% -Rate for instruction 23647: 17.8395% -Rate for instruction 23648: 17.8394% -Rate for instruction 23649: 17.839% -Rate for instruction 23650: 17.8391% -Rate for instruction 23651: 17.8388% -Rate for instruction 23652: 17.8385% -Rate for instruction 23653: 17.8383% -Rate for instruction 23654: 17.8377% -Rate for instruction 23655: 17.8377% -Rate for instruction 23656: 17.8378% -Rate for instruction 23657: 17.8374% -Rate for instruction 23658: 17.8371% -Rate for instruction 23659: 17.8371% -Rate for instruction 23660: 17.8367% -Rate for instruction 23661: 17.8361% -Rate for instruction 23662: 17.8363% -Rate for instruction 23663: 17.8361% -Rate for instruction 23664: 17.836% -Rate for instruction 23665: 17.836% -Rate for instruction 23666: 17.8356% -Rate for instruction 23667: 17.8352% -Rate for instruction 23668: 17.8349% -Rate for instruction 23669: 17.8353% -Rate for instruction 23670: 17.8352% -Rate for instruction 23671: 17.8351% -Rate for instruction 23672: 17.8347% -Rate for instruction 23673: 17.8347% -Rate for instruction 23674: 17.8345% -Rate for instruction 23675: 17.8344% -Rate for instruction 23676: 17.8339% -Rate for instruction 23677: 17.8335% -Rate for instruction 23678: 17.834% -Rate for instruction 23679: 17.8336% -Rate for instruction 23680: 17.8335% -Rate for instruction 23681: 17.8332% -Rate for instruction 23682: 17.8338% -Rate for instruction 23683: 17.8332% -Rate for instruction 23684: 17.8329% -Rate for instruction 23685: 17.8332% -Rate for instruction 23686: 17.8335% -Rate for instruction 23687: 17.8341% -Rate for instruction 23688: 17.8345% -Rate for instruction 23689: 17.8342% -Rate for instruction 23690: 17.8349% -Rate for instruction 23691: 17.8348% -Rate for instruction 23692: 17.8345% -Rate for instruction 23693: 17.8344% -Rate for instruction 23694: 17.8342% -Rate for instruction 23695: 17.8337% -Rate for instruction 23696: 17.8338% -Rate for instruction 23697: 17.8344% -Rate for instruction 23698: 17.8338% -Rate for instruction 23699: 17.834% -Rate for instruction 23700: 17.8336% -Rate for instruction 23701: 17.833% -Rate for instruction 23702: 17.833% -Rate for instruction 23703: 17.8331% -Rate for instruction 23704: 17.8331% -Rate for instruction 23705: 17.8334% -Rate for instruction 23706: 17.8331% -Rate for instruction 23707: 17.833% -Rate for instruction 23708: 17.8334% -Rate for instruction 23709: 17.8341% -Rate for instruction 23710: 17.834% -Rate for instruction 23711: 17.834% -Rate for instruction 23712: 17.8336% -Rate for instruction 23713: 17.8332% -Rate for instruction 23714: 17.8326% -Rate for instruction 23715: 17.8325% -Rate for instruction 23716: 17.8326% -Rate for instruction 23717: 17.8321% -Rate for instruction 23718: 17.8315% -Rate for instruction 23719: 17.8322% -Rate for instruction 23720: 17.8333% -Rate for instruction 23721: 17.8332% -Rate for instruction 23722: 17.8332% -Rate for instruction 23723: 17.833% -Rate for instruction 23724: 17.8335% -Rate for instruction 23725: 17.8336% -Rate for instruction 23726: 17.8338% -Rate for instruction 23727: 17.8337% -Rate for instruction 23728: 17.8333% -Rate for instruction 23729: 17.8327% -Rate for instruction 23730: 17.8324% -Rate for instruction 23731: 17.8326% -Rate for instruction 23732: 17.8327% -Rate for instruction 23733: 17.8327% -Rate for instruction 23734: 17.8328% -Rate for instruction 23735: 17.8322% -Rate for instruction 23736: 17.8319% -Rate for instruction 23737: 17.8318% -Rate for instruction 23738: 17.8316% -Rate for instruction 23739: 17.8316% -Rate for instruction 23740: 17.8314% -Rate for instruction 23741: 17.8313% -Rate for instruction 23742: 17.8308% -Rate for instruction 23743: 17.8311% -Rate for instruction 23744: 17.8314% -Rate for instruction 23745: 17.8313% -Rate for instruction 23746: 17.8309% -Rate for instruction 23747: 17.8315% -Rate for instruction 23748: 17.8309% -Rate for instruction 23749: 17.8311% -Rate for instruction 23750: 17.8315% -Rate for instruction 23751: 17.8315% -Rate for instruction 23752: 17.8321% -Rate for instruction 23753: 17.8328% -Rate for instruction 23754: 17.8337% -Rate for instruction 23755: 17.8337% -Rate for instruction 23756: 17.8334% -Rate for instruction 23757: 17.8329% -Rate for instruction 23758: 17.8326% -Rate for instruction 23759: 17.8322% -Rate for instruction 23760: 17.8329% -Rate for instruction 23761: 17.8334% -Rate for instruction 23762: 17.8332% -Rate for instruction 23763: 17.8329% -Rate for instruction 23764: 17.8325% -Rate for instruction 23765: 17.832% -Rate for instruction 23766: 17.8318% -Rate for instruction 23767: 17.8323% -Rate for instruction 23768: 17.8327% -Rate for instruction 23769: 17.8321% -Rate for instruction 23770: 17.833% -Rate for instruction 23771: 17.8332% -Rate for instruction 23772: 17.8326% -Rate for instruction 23773: 17.8328% -Rate for instruction 23774: 17.8326% -Rate for instruction 23775: 17.832% -Rate for instruction 23776: 17.8316% -Rate for instruction 23777: 17.8323% -Rate for instruction 23778: 17.8318% -Rate for instruction 23779: 17.8324% -Rate for instruction 23780: 17.8331% -Rate for instruction 23781: 17.8335% -Rate for instruction 23782: 17.8335% -Rate for instruction 23783: 17.8334% -Rate for instruction 23784: 17.8328% -Rate for instruction 23785: 17.8324% -Rate for instruction 23786: 17.8318% -Rate for instruction 23787: 17.8319% -Rate for instruction 23788: 17.8313% -Rate for instruction 23789: 17.8309% -Rate for instruction 23790: 17.8303% -Rate for instruction 23791: 17.8303% -Rate for instruction 23792: 17.8301% -Rate for instruction 23793: 17.8295% -Rate for instruction 23794: 17.8292% -Rate for instruction 23795: 17.8288% -Rate for instruction 23796: 17.8285% -Rate for instruction 23797: 17.8286% -Rate for instruction 23798: 17.8283% -Rate for instruction 23799: 17.8285% -Rate for instruction 23800: 17.8284% -Rate for instruction 23801: 17.8283% -Rate for instruction 23802: 17.8282% -Rate for instruction 23803: 17.8281% -Rate for instruction 23804: 17.828% -Rate for instruction 23805: 17.8282% -Rate for instruction 23806: 17.8278% -Rate for instruction 23807: 17.828% -Rate for instruction 23808: 17.8278% -Rate for instruction 23809: 17.8275% -Rate for instruction 23810: 17.8269% -Rate for instruction 23811: 17.8265% -Rate for instruction 23812: 17.8267% -Rate for instruction 23813: 17.8266% -Rate for instruction 23814: 17.8265% -Rate for instruction 23815: 17.8266% -Rate for instruction 23816: 17.8265% -Rate for instruction 23817: 17.8267% -Rate for instruction 23818: 17.8268% -Rate for instruction 23819: 17.827% -Rate for instruction 23820: 17.8265% -Rate for instruction 23821: 17.8261% -Rate for instruction 23822: 17.8257% -Rate for instruction 23823: 17.8254% -Rate for instruction 23824: 17.8252% -Rate for instruction 23825: 17.8252% -Rate for instruction 23826: 17.8253% -Rate for instruction 23827: 17.8253% -Rate for instruction 23828: 17.8254% -Rate for instruction 23829: 17.8259% -Rate for instruction 23830: 17.8258% -Rate for instruction 23831: 17.8259% -Rate for instruction 23832: 17.826% -Rate for instruction 23833: 17.8259% -Rate for instruction 23834: 17.8256% -Rate for instruction 23835: 17.8258% -Rate for instruction 23836: 17.8264% -Rate for instruction 23837: 17.8267% -Rate for instruction 23838: 17.8265% -Rate for instruction 23839: 17.8269% -Rate for instruction 23840: 17.8264% -Rate for instruction 23841: 17.826% -Rate for instruction 23842: 17.8257% -Rate for instruction 23843: 17.8253% -Rate for instruction 23844: 17.8249% -Rate for instruction 23845: 17.8248% -Rate for instruction 23846: 17.8249% -Rate for instruction 23847: 17.8249% -Rate for instruction 23848: 17.8248% -Rate for instruction 23849: 17.8244% -Rate for instruction 23850: 17.8243% -Rate for instruction 23851: 17.8239% -Rate for instruction 23852: 17.8234% -Rate for instruction 23853: 17.8235% -Rate for instruction 23854: 17.8239% -Rate for instruction 23855: 17.8236% -Rate for instruction 23856: 17.8237% -Rate for instruction 23857: 17.8239% -Rate for instruction 23858: 17.8235% -Rate for instruction 23859: 17.8232% -Rate for instruction 23860: 17.8228% -Rate for instruction 23861: 17.823% -Rate for instruction 23862: 17.8239% -Rate for instruction 23863: 17.8244% -Rate for instruction 23864: 17.8246% -Rate for instruction 23865: 17.826% -Rate for instruction 23866: 17.8273% -Rate for instruction 23867: 17.8272% -Rate for instruction 23868: 17.8268% -Rate for instruction 23869: 17.8273% -Rate for instruction 23870: 17.828% -Rate for instruction 23871: 17.8276% -Rate for instruction 23872: 17.827% -Rate for instruction 23873: 17.8281% -Rate for instruction 23874: 17.8288% -Rate for instruction 23875: 17.8299% -Rate for instruction 23876: 17.8311% -Rate for instruction 23877: 17.8313% -Rate for instruction 23878: 17.8317% -Rate for instruction 23879: 17.8328% -Rate for instruction 23880: 17.8335% -Rate for instruction 23881: 17.8337% -Rate for instruction 23882: 17.8331% -Rate for instruction 23883: 17.8327% -Rate for instruction 23884: 17.8326% -Rate for instruction 23885: 17.832% -Rate for instruction 23886: 17.8317% -Rate for instruction 23887: 17.8311% -Rate for instruction 23888: 17.831% -Rate for instruction 23889: 17.8308% -Rate for instruction 23890: 17.8305% -Rate for instruction 23891: 17.8304% -Rate for instruction 23892: 17.8305% -Rate for instruction 23893: 17.8302% -Rate for instruction 23894: 17.8306% -Rate for instruction 23895: 17.8301% -Rate for instruction 23896: 17.8307% -Rate for instruction 23897: 17.8316% -Rate for instruction 23898: 17.8321% -Rate for instruction 23899: 17.8326% -Rate for instruction 23900: 17.8327% -Rate for instruction 23901: 17.8329% -Rate for instruction 23902: 17.8331% -Rate for instruction 23903: 17.8334% -Rate for instruction 23904: 17.8339% -Rate for instruction 23905: 17.8344% -Rate for instruction 23906: 17.8347% -Rate for instruction 23907: 17.8346% -Rate for instruction 23908: 17.8343% -Rate for instruction 23909: 17.834% -Rate for instruction 23910: 17.835% -Rate for instruction 23911: 17.8358% -Rate for instruction 23912: 17.8355% -Rate for instruction 23913: 17.8357% -Rate for instruction 23914: 17.8351% -Rate for instruction 23915: 17.8349% -Rate for instruction 23916: 17.8343% -Rate for instruction 23917: 17.8338% -Rate for instruction 23918: 17.8333% -Rate for instruction 23919: 17.8335% -Rate for instruction 23920: 17.834% -Rate for instruction 23921: 17.8344% -Rate for instruction 23922: 17.8349% -Rate for instruction 23923: 17.8353% -Rate for instruction 23924: 17.8355% -Rate for instruction 23925: 17.8356% -Rate for instruction 23926: 17.835% -Rate for instruction 23927: 17.8356% -Rate for instruction 23928: 17.8351% -Rate for instruction 23929: 17.8349% -Rate for instruction 23930: 17.8349% -Rate for instruction 23931: 17.8343% -Rate for instruction 23932: 17.8346% -Rate for instruction 23933: 17.834% -Rate for instruction 23934: 17.8336% -Rate for instruction 23935: 17.8331% -Rate for instruction 23936: 17.8329% -Rate for instruction 23937: 17.8328% -Rate for instruction 23938: 17.8322% -Rate for instruction 23939: 17.8316% -Rate for instruction 23940: 17.8317% -Rate for instruction 23941: 17.8322% -Rate for instruction 23942: 17.8319% -Rate for instruction 23943: 17.8314% -Rate for instruction 23944: 17.8314% -Rate for instruction 23945: 17.8313% -Rate for instruction 23946: 17.8315% -Rate for instruction 23947: 17.8313% -Rate for instruction 23948: 17.8316% -Rate for instruction 23949: 17.8312% -Rate for instruction 23950: 17.8316% -Rate for instruction 23951: 17.831% -Rate for instruction 23952: 17.8304% -Rate for instruction 23953: 17.8306% -Rate for instruction 23954: 17.8304% -Rate for instruction 23955: 17.8303% -Rate for instruction 23956: 17.8307% -Rate for instruction 23957: 17.8309% -Rate for instruction 23958: 17.8308% -Rate for instruction 23959: 17.8307% -Rate for instruction 23960: 17.8311% -Rate for instruction 23961: 17.8305% -Rate for instruction 23962: 17.8309% -Rate for instruction 23963: 17.8309% -Rate for instruction 23964: 17.8307% -Rate for instruction 23965: 17.8305% -Rate for instruction 23966: 17.8303% -Rate for instruction 23967: 17.8302% -Rate for instruction 23968: 17.8296% -Rate for instruction 23969: 17.8292% -Rate for instruction 23970: 17.8296% -Rate for instruction 23971: 17.829% -Rate for instruction 23972: 17.8294% -Rate for instruction 23973: 17.8289% -Rate for instruction 23974: 17.8293% -Rate for instruction 23975: 17.8298% -Rate for instruction 23976: 17.8304% -Rate for instruction 23977: 17.8306% -Rate for instruction 23978: 17.83% -Rate for instruction 23979: 17.8299% -Rate for instruction 23980: 17.8301% -Rate for instruction 23981: 17.8297% -Rate for instruction 23982: 17.8295% -Rate for instruction 23983: 17.8294% -Rate for instruction 23984: 17.8299% -Rate for instruction 23985: 17.8304% -Rate for instruction 23986: 17.8303% -Rate for instruction 23987: 17.8299% -Rate for instruction 23988: 17.8295% -Rate for instruction 23989: 17.8303% -Rate for instruction 23990: 17.8312% -Rate for instruction 23991: 17.8317% -Rate for instruction 23992: 17.8313% -Rate for instruction 23993: 17.8314% -Rate for instruction 23994: 17.8313% -Rate for instruction 23995: 17.8312% -Rate for instruction 23996: 17.8306% -Rate for instruction 23997: 17.8302% -Rate for instruction 23998: 17.8309% -Rate for instruction 23999: 17.8311% -Rate for instruction 24000: 17.8313% -Rate for instruction 24001: 17.8317% -Rate for instruction 24002: 17.8325% -Rate for instruction 24003: 17.832% -Rate for instruction 24004: 17.8323% -Rate for instruction 24005: 17.8319% -Rate for instruction 24006: 17.8315% -Rate for instruction 24007: 17.8322% -Rate for instruction 24008: 17.8324% -Rate for instruction 24009: 17.8328% -Rate for instruction 24010: 17.833% -Rate for instruction 24011: 17.8326% -Rate for instruction 24012: 17.8326% -Rate for instruction 24013: 17.8322% -Rate for instruction 24014: 17.8323% -Rate for instruction 24015: 17.8317% -Rate for instruction 24016: 17.8316% -Rate for instruction 24017: 17.832% -Rate for instruction 24018: 17.8325% -Rate for instruction 24019: 17.8324% -Rate for instruction 24020: 17.8318% -Rate for instruction 24021: 17.8314% -Rate for instruction 24022: 17.8328% -Rate for instruction 24023: 17.8331% -Rate for instruction 24024: 17.8337% -Rate for instruction 24025: 17.8337% -Rate for instruction 24026: 17.8341% -Rate for instruction 24027: 17.8351% -Rate for instruction 24028: 17.836% -Rate for instruction 24029: 17.837% -Rate for instruction 24030: 17.8377% -Rate for instruction 24031: 17.8382% -Rate for instruction 24032: 17.8381% -Rate for instruction 24033: 17.8376% -Rate for instruction 24034: 17.8387% -Rate for instruction 24035: 17.8393% -Rate for instruction 24036: 17.84% -Rate for instruction 24037: 17.8405% -Rate for instruction 24038: 17.8417% -Rate for instruction 24039: 17.8424% -Rate for instruction 24040: 17.8426% -Rate for instruction 24041: 17.8431% -Rate for instruction 24042: 17.8426% -Rate for instruction 24043: 17.8431% -Rate for instruction 24044: 17.8428% -Rate for instruction 24045: 17.8426% -Rate for instruction 24046: 17.842% -Rate for instruction 24047: 17.8419% -Rate for instruction 24048: 17.8416% -Rate for instruction 24049: 17.8412% -Rate for instruction 24050: 17.8408% -Rate for instruction 24051: 17.8405% -Rate for instruction 24052: 17.8401% -Rate for instruction 24053: 17.84% -Rate for instruction 24054: 17.8402% -Rate for instruction 24055: 17.8406% -Rate for instruction 24056: 17.8402% -Rate for instruction 24057: 17.8407% -Rate for instruction 24058: 17.8401% -Rate for instruction 24059: 17.8403% -Rate for instruction 24060: 17.8398% -Rate for instruction 24061: 17.8405% -Rate for instruction 24062: 17.8408% -Rate for instruction 24063: 17.841% -Rate for instruction 24064: 17.8405% -Rate for instruction 24065: 17.8404% -Rate for instruction 24066: 17.8399% -Rate for instruction 24067: 17.8403% -Rate for instruction 24068: 17.8402% -Rate for instruction 24069: 17.84% -Rate for instruction 24070: 17.84% -Rate for instruction 24071: 17.8404% -Rate for instruction 24072: 17.84% -Rate for instruction 24073: 17.841% -Rate for instruction 24074: 17.8414% -Rate for instruction 24075: 17.8421% -Rate for instruction 24076: 17.8421% -Rate for instruction 24077: 17.8423% -Rate for instruction 24078: 17.8419% -Rate for instruction 24079: 17.8413% -Rate for instruction 24080: 17.8409% -Rate for instruction 24081: 17.8406% -Rate for instruction 24082: 17.8405% -Rate for instruction 24083: 17.8409% -Rate for instruction 24084: 17.8405% -Rate for instruction 24085: 17.8399% -Rate for instruction 24086: 17.8398% -Rate for instruction 24087: 17.8392% -Rate for instruction 24088: 17.8388% -Rate for instruction 24089: 17.8382% -Rate for instruction 24090: 17.838% -Rate for instruction 24091: 17.8384% -Rate for instruction 24092: 17.8378% -Rate for instruction 24093: 17.8375% -Rate for instruction 24094: 17.8369% -Rate for instruction 24095: 17.8365% -Rate for instruction 24096: 17.8359% -Rate for instruction 24097: 17.8365% -Rate for instruction 24098: 17.837% -Rate for instruction 24099: 17.8372% -Rate for instruction 24100: 17.8371% -Rate for instruction 24101: 17.8369% -Rate for instruction 24102: 17.8368% -Rate for instruction 24103: 17.8368% -Rate for instruction 24104: 17.8367% -Rate for instruction 24105: 17.8369% -Rate for instruction 24106: 17.8367% -Rate for instruction 24107: 17.8364% -Rate for instruction 24108: 17.8365% -Rate for instruction 24109: 17.836% -Rate for instruction 24110: 17.8356% -Rate for instruction 24111: 17.8358% -Rate for instruction 24112: 17.8359% -Rate for instruction 24113: 17.8356% -Rate for instruction 24114: 17.8351% -Rate for instruction 24115: 17.8354% -Rate for instruction 24116: 17.8353% -Rate for instruction 24117: 17.8354% -Rate for instruction 24118: 17.835% -Rate for instruction 24119: 17.8344% -Rate for instruction 24120: 17.834% -Rate for instruction 24121: 17.8339% -Rate for instruction 24122: 17.8334% -Rate for instruction 24123: 17.833% -Rate for instruction 24124: 17.8337% -Rate for instruction 24125: 17.8344% -Rate for instruction 24126: 17.8346% -Rate for instruction 24127: 17.8344% -Rate for instruction 24128: 17.8346% -Rate for instruction 24129: 17.8348% -Rate for instruction 24130: 17.8344% -Rate for instruction 24131: 17.834% -Rate for instruction 24132: 17.8337% -Rate for instruction 24133: 17.8338% -Rate for instruction 24134: 17.834% -Rate for instruction 24135: 17.8336% -Rate for instruction 24136: 17.8343% -Rate for instruction 24137: 17.8345% -Rate for instruction 24138: 17.8347% -Rate for instruction 24139: 17.8349% -Rate for instruction 24140: 17.8351% -Rate for instruction 24141: 17.8353% -Rate for instruction 24142: 17.8348% -Rate for instruction 24143: 17.835% -Rate for instruction 24144: 17.835% -Rate for instruction 24145: 17.8348% -Rate for instruction 24146: 17.8342% -Rate for instruction 24147: 17.8341% -Rate for instruction 24148: 17.834% -Rate for instruction 24149: 17.8337% -Rate for instruction 24150: 17.8344% -Rate for instruction 24151: 17.834% -Rate for instruction 24152: 17.8339% -Rate for instruction 24153: 17.8336% -Rate for instruction 24154: 17.8335% -Rate for instruction 24155: 17.8333% -Rate for instruction 24156: 17.8329% -Rate for instruction 24157: 17.8328% -Rate for instruction 24158: 17.8328% -Rate for instruction 24159: 17.833% -Rate for instruction 24160: 17.8331% -Rate for instruction 24161: 17.8332% -Rate for instruction 24162: 17.8329% -Rate for instruction 24163: 17.8325% -Rate for instruction 24164: 17.8322% -Rate for instruction 24165: 17.832% -Rate for instruction 24166: 17.8317% -Rate for instruction 24167: 17.8314% -Rate for instruction 24168: 17.8309% -Rate for instruction 24169: 17.8308% -Rate for instruction 24170: 17.8302% -Rate for instruction 24171: 17.8301% -Rate for instruction 24172: 17.8297% -Rate for instruction 24173: 17.83% -Rate for instruction 24174: 17.8304% -Rate for instruction 24175: 17.8306% -Rate for instruction 24176: 17.8304% -Rate for instruction 24177: 17.8303% -Rate for instruction 24178: 17.8297% -Rate for instruction 24179: 17.8294% -Rate for instruction 24180: 17.8301% -Rate for instruction 24181: 17.8305% -Rate for instruction 24182: 17.8299% -Rate for instruction 24183: 17.83% -Rate for instruction 24184: 17.8299% -Rate for instruction 24185: 17.8307% -Rate for instruction 24186: 17.8313% -Rate for instruction 24187: 17.8318% -Rate for instruction 24188: 17.8318% -Rate for instruction 24189: 17.8322% -Rate for instruction 24190: 17.8329% -Rate for instruction 24191: 17.8331% -Rate for instruction 24192: 17.8334% -Rate for instruction 24193: 17.8329% -Rate for instruction 24194: 17.8324% -Rate for instruction 24195: 17.8334% -Rate for instruction 24196: 17.8329% -Rate for instruction 24197: 17.8333% -Rate for instruction 24198: 17.8327% -Rate for instruction 24199: 17.8323% -Rate for instruction 24200: 17.8324% -Rate for instruction 24201: 17.8331% -Rate for instruction 24202: 17.8339% -Rate for instruction 24203: 17.8338% -Rate for instruction 24204: 17.835% -Rate for instruction 24205: 17.8347% -Rate for instruction 24206: 17.8343% -Rate for instruction 24207: 17.8353% -Rate for instruction 24208: 17.8362% -Rate for instruction 24209: 17.8369% -Rate for instruction 24210: 17.8373% -Rate for instruction 24211: 17.8373% -Rate for instruction 24212: 17.8375% -Rate for instruction 24213: 17.8376% -Rate for instruction 24214: 17.8378% -Rate for instruction 24215: 17.838% -Rate for instruction 24216: 17.8376% -Rate for instruction 24217: 17.8375% -Rate for instruction 24218: 17.8369% -Rate for instruction 24219: 17.8371% -Rate for instruction 24220: 17.8366% -Rate for instruction 24221: 17.8361% -Rate for instruction 24222: 17.8356% -Rate for instruction 24223: 17.8358% -Rate for instruction 24224: 17.8358% -Rate for instruction 24225: 17.8359% -Rate for instruction 24226: 17.8358% -Rate for instruction 24227: 17.8362% -Rate for instruction 24228: 17.8359% -Rate for instruction 24229: 17.8353% -Rate for instruction 24230: 17.8354% -Rate for instruction 24231: 17.8354% -Rate for instruction 24232: 17.8349% -Rate for instruction 24233: 17.8348% -Rate for instruction 24234: 17.8342% -Rate for instruction 24235: 17.8347% -Rate for instruction 24236: 17.8346% -Rate for instruction 24237: 17.834% -Rate for instruction 24238: 17.8344% -Rate for instruction 24239: 17.8342% -Rate for instruction 24240: 17.8347% -Rate for instruction 24241: 17.8344% -Rate for instruction 24242: 17.8351% -Rate for instruction 24243: 17.8353% -Rate for instruction 24244: 17.8356% -Rate for instruction 24245: 17.8356% -Rate for instruction 24246: 17.8352% -Rate for instruction 24247: 17.8346% -Rate for instruction 24248: 17.8359% -Rate for instruction 24249: 17.8366% -Rate for instruction 24250: 17.837% -Rate for instruction 24251: 17.8364% -Rate for instruction 24252: 17.8367% -Rate for instruction 24253: 17.8366% -Rate for instruction 24254: 17.836% -Rate for instruction 24255: 17.8357% -Rate for instruction 24256: 17.8366% -Rate for instruction 24257: 17.836% -Rate for instruction 24258: 17.8357% -Rate for instruction 24259: 17.8358% -Rate for instruction 24260: 17.8357% -Rate for instruction 24261: 17.8351% -Rate for instruction 24262: 17.8347% -Rate for instruction 24263: 17.8341% -Rate for instruction 24264: 17.8339% -Rate for instruction 24265: 17.8333% -Rate for instruction 24266: 17.8329% -Rate for instruction 24267: 17.8336% -Rate for instruction 24268: 17.8331% -Rate for instruction 24269: 17.833% -Rate for instruction 24270: 17.8337% -Rate for instruction 24271: 17.8331% -Rate for instruction 24272: 17.8326% -Rate for instruction 24273: 17.8323% -Rate for instruction 24274: 17.8319% -Rate for instruction 24275: 17.8313% -Rate for instruction 24276: 17.8322% -Rate for instruction 24277: 17.8327% -Rate for instruction 24278: 17.8328% -Rate for instruction 24279: 17.8327% -Rate for instruction 24280: 17.833% -Rate for instruction 24281: 17.8326% -Rate for instruction 24282: 17.8325% -Rate for instruction 24283: 17.8324% -Rate for instruction 24284: 17.8325% -Rate for instruction 24285: 17.8327% -Rate for instruction 24286: 17.8331% -Rate for instruction 24287: 17.833% -Rate for instruction 24288: 17.8335% -Rate for instruction 24289: 17.834% -Rate for instruction 24290: 17.8336% -Rate for instruction 24291: 17.834% -Rate for instruction 24292: 17.8347% -Rate for instruction 24293: 17.8354% -Rate for instruction 24294: 17.8351% -Rate for instruction 24295: 17.835% -Rate for instruction 24296: 17.8352% -Rate for instruction 24297: 17.8346% -Rate for instruction 24298: 17.8341% -Rate for instruction 24299: 17.8338% -Rate for instruction 24300: 17.8337% -Rate for instruction 24301: 17.8333% -Rate for instruction 24302: 17.8329% -Rate for instruction 24303: 17.8328% -Rate for instruction 24304: 17.833% -Rate for instruction 24305: 17.8335% -Rate for instruction 24306: 17.8344% -Rate for instruction 24307: 17.8351% -Rate for instruction 24308: 17.8348% -Rate for instruction 24309: 17.8353% -Rate for instruction 24310: 17.8351% -Rate for instruction 24311: 17.8348% -Rate for instruction 24312: 17.8342% -Rate for instruction 24313: 17.8343% -Rate for instruction 24314: 17.8347% -Rate for instruction 24315: 17.8354% -Rate for instruction 24316: 17.8359% -Rate for instruction 24317: 17.8367% -Rate for instruction 24318: 17.8374% -Rate for instruction 24319: 17.8372% -Rate for instruction 24320: 17.8377% -Rate for instruction 24321: 17.8373% -Rate for instruction 24322: 17.8378% -Rate for instruction 24323: 17.8385% -Rate for instruction 24324: 17.8381% -Rate for instruction 24325: 17.8386% -Rate for instruction 24326: 17.8384% -Rate for instruction 24327: 17.8384% -Rate for instruction 24328: 17.8386% -Rate for instruction 24329: 17.839% -Rate for instruction 24330: 17.8391% -Rate for instruction 24331: 17.839% -Rate for instruction 24332: 17.8389% -Rate for instruction 24333: 17.8384% -Rate for instruction 24334: 17.8385% -Rate for instruction 24335: 17.8382% -Rate for instruction 24336: 17.838% -Rate for instruction 24337: 17.8377% -Rate for instruction 24338: 17.8372% -Rate for instruction 24339: 17.8369% -Rate for instruction 24340: 17.8371% -Rate for instruction 24341: 17.8372% -Rate for instruction 24342: 17.8369% -Rate for instruction 24343: 17.8363% -Rate for instruction 24344: 17.8358% -Rate for instruction 24345: 17.8361% -Rate for instruction 24346: 17.8363% -Rate for instruction 24347: 17.8366% -Rate for instruction 24348: 17.8363% -Rate for instruction 24349: 17.8364% -Rate for instruction 24350: 17.8358% -Rate for instruction 24351: 17.8362% -Rate for instruction 24352: 17.8362% -Rate for instruction 24353: 17.8367% -Rate for instruction 24354: 17.8368% -Rate for instruction 24355: 17.8373% -Rate for instruction 24356: 17.8374% -Rate for instruction 24357: 17.8384% -Rate for instruction 24358: 17.8397% -Rate for instruction 24359: 17.8396% -Rate for instruction 24360: 17.839% -Rate for instruction 24361: 17.8394% -Rate for instruction 24362: 17.8396% -Rate for instruction 24363: 17.8403% -Rate for instruction 24364: 17.8402% -Rate for instruction 24365: 17.8396% -Rate for instruction 24366: 17.8402% -Rate for instruction 24367: 17.8399% -Rate for instruction 24368: 17.8398% -Rate for instruction 24369: 17.8396% -Rate for instruction 24370: 17.8395% -Rate for instruction 24371: 17.8389% -Rate for instruction 24372: 17.8393% -Rate for instruction 24373: 17.8387% -Rate for instruction 24374: 17.8391% -Rate for instruction 24375: 17.8396% -Rate for instruction 24376: 17.8401% -Rate for instruction 24377: 17.8406% -Rate for instruction 24378: 17.841% -Rate for instruction 24379: 17.8422% -Rate for instruction 24380: 17.8435% -Rate for instruction 24381: 17.8429% -Rate for instruction 24382: 17.8427% -Rate for instruction 24383: 17.8435% -Rate for instruction 24384: 17.8429% -Rate for instruction 24385: 17.8435% -Rate for instruction 24386: 17.8432% -Rate for instruction 24387: 17.8431% -Rate for instruction 24388: 17.843% -Rate for instruction 24389: 17.8426% -Rate for instruction 24390: 17.842% -Rate for instruction 24391: 17.8418% -Rate for instruction 24392: 17.8415% -Rate for instruction 24393: 17.8414% -Rate for instruction 24394: 17.8408% -Rate for instruction 24395: 17.8414% -Rate for instruction 24396: 17.8408% -Rate for instruction 24397: 17.8408% -Rate for instruction 24398: 17.8404% -Rate for instruction 24399: 17.8402% -Rate for instruction 24400: 17.8401% -Rate for instruction 24401: 17.8403% -Rate for instruction 24402: 17.8407% -Rate for instruction 24403: 17.8402% -Rate for instruction 24404: 17.8404% -Rate for instruction 24405: 17.8418% -Rate for instruction 24406: 17.8429% -Rate for instruction 24407: 17.8431% -Rate for instruction 24408: 17.843% -Rate for instruction 24409: 17.8429% -Rate for instruction 24410: 17.8435% -Rate for instruction 24411: 17.8435% -Rate for instruction 24412: 17.8436% -Rate for instruction 24413: 17.843% -Rate for instruction 24414: 17.8426% -Rate for instruction 24415: 17.8422% -Rate for instruction 24416: 17.8416% -Rate for instruction 24417: 17.8415% -Rate for instruction 24418: 17.8409% -Rate for instruction 24419: 17.8413% -Rate for instruction 24420: 17.841% -Rate for instruction 24421: 17.8406% -Rate for instruction 24422: 17.8402% -Rate for instruction 24423: 17.8398% -Rate for instruction 24424: 17.8397% -Rate for instruction 24425: 17.8393% -Rate for instruction 24426: 17.8398% -Rate for instruction 24427: 17.8402% -Rate for instruction 24428: 17.8404% -Rate for instruction 24429: 17.8411% -Rate for instruction 24430: 17.841% -Rate for instruction 24431: 17.8407% -Rate for instruction 24432: 17.8408% -Rate for instruction 24433: 17.8402% -Rate for instruction 24434: 17.8398% -Rate for instruction 24435: 17.8405% -Rate for instruction 24436: 17.841% -Rate for instruction 24437: 17.8406% -Rate for instruction 24438: 17.8413% -Rate for instruction 24439: 17.8412% -Rate for instruction 24440: 17.8417% -Rate for instruction 24441: 17.8416% -Rate for instruction 24442: 17.8426% -Rate for instruction 24443: 17.8435% -Rate for instruction 24444: 17.8445% -Rate for instruction 24445: 17.8448% -Rate for instruction 24446: 17.8446% -Rate for instruction 24447: 17.8448% -Rate for instruction 24448: 17.8445% -Rate for instruction 24449: 17.8443% -Rate for instruction 24450: 17.8437% -Rate for instruction 24451: 17.8441% -Rate for instruction 24452: 17.8449% -Rate for instruction 24453: 17.8454% -Rate for instruction 24454: 17.8457% -Rate for instruction 24455: 17.846% -Rate for instruction 24456: 17.8459% -Rate for instruction 24457: 17.8468% -Rate for instruction 24458: 17.8468% -Rate for instruction 24459: 17.8462% -Rate for instruction 24460: 17.8463% -Rate for instruction 24461: 17.8468% -Rate for instruction 24462: 17.8475% -Rate for instruction 24463: 17.8474% -Rate for instruction 24464: 17.847% -Rate for instruction 24465: 17.8467% -Rate for instruction 24466: 17.8463% -Rate for instruction 24467: 17.8465% -Rate for instruction 24468: 17.8464% -Rate for instruction 24469: 17.8465% -Rate for instruction 24470: 17.8467% -Rate for instruction 24471: 17.8471% -Rate for instruction 24472: 17.8473% -Rate for instruction 24473: 17.8478% -Rate for instruction 24474: 17.8476% -Rate for instruction 24475: 17.847% -Rate for instruction 24476: 17.8474% -Rate for instruction 24477: 17.8477% -Rate for instruction 24478: 17.8481% -Rate for instruction 24479: 17.8477% -Rate for instruction 24480: 17.8476% -Rate for instruction 24481: 17.8476% -Rate for instruction 24482: 17.8475% -Rate for instruction 24483: 17.8473% -Rate for instruction 24484: 17.8472% -Rate for instruction 24485: 17.8466% -Rate for instruction 24486: 17.846% -Rate for instruction 24487: 17.847% -Rate for instruction 24488: 17.848% -Rate for instruction 24489: 17.8481% -Rate for instruction 24490: 17.8477% -Rate for instruction 24491: 17.8474% -Rate for instruction 24492: 17.8475% -Rate for instruction 24493: 17.8471% -Rate for instruction 24494: 17.8468% -Rate for instruction 24495: 17.8466% -Rate for instruction 24496: 17.8472% -Rate for instruction 24497: 17.8476% -Rate for instruction 24498: 17.848% -Rate for instruction 24499: 17.8476% -Rate for instruction 24500: 17.8478% -Rate for instruction 24501: 17.8475% -Rate for instruction 24502: 17.8481% -Rate for instruction 24503: 17.8479% -Rate for instruction 24504: 17.8478% -Rate for instruction 24505: 17.8474% -Rate for instruction 24506: 17.8475% -Rate for instruction 24507: 17.8477% -Rate for instruction 24508: 17.8471% -Rate for instruction 24509: 17.8475% -Rate for instruction 24510: 17.8472% -Rate for instruction 24511: 17.8475% -Rate for instruction 24512: 17.8472% -Rate for instruction 24513: 17.8474% -Rate for instruction 24514: 17.8478% -Rate for instruction 24515: 17.8475% -Rate for instruction 24516: 17.8476% -Rate for instruction 24517: 17.8475% -Rate for instruction 24518: 17.8482% -Rate for instruction 24519: 17.8481% -Rate for instruction 24520: 17.8486% -Rate for instruction 24521: 17.8491% -Rate for instruction 24522: 17.8495% -Rate for instruction 24523: 17.8497% -Rate for instruction 24524: 17.8504% -Rate for instruction 24525: 17.85% -Rate for instruction 24526: 17.8494% -Rate for instruction 24527: 17.8493% -Rate for instruction 24528: 17.8489% -Rate for instruction 24529: 17.8485% -Rate for instruction 24530: 17.8488% -Rate for instruction 24531: 17.8489% -Rate for instruction 24532: 17.849% -Rate for instruction 24533: 17.849% -Rate for instruction 24534: 17.8491% -Rate for instruction 24535: 17.8491% -Rate for instruction 24536: 17.849% -Rate for instruction 24537: 17.8488% -Rate for instruction 24538: 17.8484% -Rate for instruction 24539: 17.8481% -Rate for instruction 24540: 17.8475% -Rate for instruction 24541: 17.8474% -Rate for instruction 24542: 17.8472% -Rate for instruction 24543: 17.8468% -Rate for instruction 24544: 17.8467% -Rate for instruction 24545: 17.8464% -Rate for instruction 24546: 17.8466% -Rate for instruction 24547: 17.8464% -Rate for instruction 24548: 17.8467% -Rate for instruction 24549: 17.8469% -Rate for instruction 24550: 17.8467% -Rate for instruction 24551: 17.8464% -Rate for instruction 24552: 17.8468% -Rate for instruction 24553: 17.8483% -Rate for instruction 24554: 17.8482% -Rate for instruction 24555: 17.8479% -Rate for instruction 24556: 17.8483% -Rate for instruction 24557: 17.849% -Rate for instruction 24558: 17.8484% -Rate for instruction 24559: 17.8486% -Rate for instruction 24560: 17.8488% -Rate for instruction 24561: 17.8496% -Rate for instruction 24562: 17.8503% -Rate for instruction 24563: 17.8505% -Rate for instruction 24564: 17.8506% -Rate for instruction 24565: 17.8505% -Rate for instruction 24566: 17.8509% -Rate for instruction 24567: 17.8517% -Rate for instruction 24568: 17.8513% -Rate for instruction 24569: 17.8515% -Rate for instruction 24570: 17.8509% -Rate for instruction 24571: 17.8519% -Rate for instruction 24572: 17.8528% -Rate for instruction 24573: 17.8522% -Rate for instruction 24574: 17.853% -Rate for instruction 24575: 17.8534% -Rate for instruction 24576: 17.8532% -Rate for instruction 24577: 17.8535% -Rate for instruction 24578: 17.8542% -Rate for instruction 24579: 17.8546% -Rate for instruction 24580: 17.8546% -Rate for instruction 24581: 17.8541% -Rate for instruction 24582: 17.854% -Rate for instruction 24583: 17.8535% -Rate for instruction 24584: 17.8542% -Rate for instruction 24585: 17.8551% -Rate for instruction 24586: 17.8557% -Rate for instruction 24587: 17.8563% -Rate for instruction 24588: 17.8563% -Rate for instruction 24589: 17.8569% -Rate for instruction 24590: 17.8577% -Rate for instruction 24591: 17.8573% -Rate for instruction 24592: 17.857% -Rate for instruction 24593: 17.8571% -Rate for instruction 24594: 17.8581% -Rate for instruction 24595: 17.8577% -Rate for instruction 24596: 17.8571% -Rate for instruction 24597: 17.8579% -Rate for instruction 24598: 17.8581% -Rate for instruction 24599: 17.8583% -Rate for instruction 24600: 17.8586% -Rate for instruction 24601: 17.8585% -Rate for instruction 24602: 17.8585% -Rate for instruction 24603: 17.859% -Rate for instruction 24604: 17.8588% -Rate for instruction 24605: 17.859% -Rate for instruction 24606: 17.8597% -Rate for instruction 24607: 17.8599% -Rate for instruction 24608: 17.8609% -Rate for instruction 24609: 17.8605% -Rate for instruction 24610: 17.8602% -Rate for instruction 24611: 17.8601% -Rate for instruction 24612: 17.8599% -Rate for instruction 24613: 17.8593% -Rate for instruction 24614: 17.859% -Rate for instruction 24615: 17.8594% -Rate for instruction 24616: 17.8598% -Rate for instruction 24617: 17.8592% -Rate for instruction 24618: 17.8588% -Rate for instruction 24619: 17.8582% -Rate for instruction 24620: 17.858% -Rate for instruction 24621: 17.8574% -Rate for instruction 24622: 17.857% -Rate for instruction 24623: 17.8564% -Rate for instruction 24624: 17.8566% -Rate for instruction 24625: 17.8564% -Rate for instruction 24626: 17.8563% -Rate for instruction 24627: 17.8569% -Rate for instruction 24628: 17.8576% -Rate for instruction 24629: 17.8585% -Rate for instruction 24630: 17.8584% -Rate for instruction 24631: 17.8581% -Rate for instruction 24632: 17.8578% -Rate for instruction 24633: 17.8579% -Rate for instruction 24634: 17.8573% -Rate for instruction 24635: 17.8577% -Rate for instruction 24636: 17.8576% -Rate for instruction 24637: 17.8581% -Rate for instruction 24638: 17.8585% -Rate for instruction 24639: 17.8579% -Rate for instruction 24640: 17.8577% -Rate for instruction 24641: 17.8582% -Rate for instruction 24642: 17.8589% -Rate for instruction 24643: 17.8594% -Rate for instruction 24644: 17.8596% -Rate for instruction 24645: 17.8597% -Rate for instruction 24646: 17.8592% -Rate for instruction 24647: 17.859% -Rate for instruction 24648: 17.8589% -Rate for instruction 24649: 17.8583% -Rate for instruction 24650: 17.8587% -Rate for instruction 24651: 17.8583% -Rate for instruction 24652: 17.8579% -Rate for instruction 24653: 17.8581% -Rate for instruction 24654: 17.8583% -Rate for instruction 24655: 17.8579% -Rate for instruction 24656: 17.8575% -Rate for instruction 24657: 17.8571% -Rate for instruction 24658: 17.8574% -Rate for instruction 24659: 17.8575% -Rate for instruction 24660: 17.8572% -Rate for instruction 24661: 17.857% -Rate for instruction 24662: 17.857% -Rate for instruction 24663: 17.8565% -Rate for instruction 24664: 17.8564% -Rate for instruction 24665: 17.8567% -Rate for instruction 24666: 17.8568% -Rate for instruction 24667: 17.8565% -Rate for instruction 24668: 17.856% -Rate for instruction 24669: 17.8555% -Rate for instruction 24670: 17.8559% -Rate for instruction 24671: 17.8564% -Rate for instruction 24672: 17.8559% -Rate for instruction 24673: 17.8561% -Rate for instruction 24674: 17.8564% -Rate for instruction 24675: 17.8563% -Rate for instruction 24676: 17.8566% -Rate for instruction 24677: 17.8565% -Rate for instruction 24678: 17.8568% -Rate for instruction 24679: 17.857% -Rate for instruction 24680: 17.8576% -Rate for instruction 24681: 17.8571% -Rate for instruction 24682: 17.8578% -Rate for instruction 24683: 17.8585% -Rate for instruction 24684: 17.8589% -Rate for instruction 24685: 17.8591% -Rate for instruction 24686: 17.8598% -Rate for instruction 24687: 17.8595% -Rate for instruction 24688: 17.8599% -Rate for instruction 24689: 17.8602% -Rate for instruction 24690: 17.8603% -Rate for instruction 24691: 17.8611% -Rate for instruction 24692: 17.8618% -Rate for instruction 24693: 17.8614% -Rate for instruction 24694: 17.8624% -Rate for instruction 24695: 17.8618% -Rate for instruction 24696: 17.8619% -Rate for instruction 24697: 17.8618% -Rate for instruction 24698: 17.8618% -Rate for instruction 24699: 17.8623% -Rate for instruction 24700: 17.8619% -Rate for instruction 24701: 17.8621% -Rate for instruction 24702: 17.8617% -Rate for instruction 24703: 17.8618% -Rate for instruction 24704: 17.8612% -Rate for instruction 24705: 17.8616% -Rate for instruction 24706: 17.8615% -Rate for instruction 24707: 17.8614% -Rate for instruction 24708: 17.8618% -Rate for instruction 24709: 17.8624% -Rate for instruction 24710: 17.8628% -Rate for instruction 24711: 17.8627% -Rate for instruction 24712: 17.8624% -Rate for instruction 24713: 17.8627% -Rate for instruction 24714: 17.863% -Rate for instruction 24715: 17.8628% -Rate for instruction 24716: 17.8631% -Rate for instruction 24717: 17.8632% -Rate for instruction 24718: 17.8634% -Rate for instruction 24719: 17.8635% -Rate for instruction 24720: 17.8643% -Rate for instruction 24721: 17.8648% -Rate for instruction 24722: 17.8652% -Rate for instruction 24723: 17.8651% -Rate for instruction 24724: 17.8658% -Rate for instruction 24725: 17.8663% -Rate for instruction 24726: 17.8665% -Rate for instruction 24727: 17.8679% -Rate for instruction 24728: 17.8686% -Rate for instruction 24729: 17.8693% -Rate for instruction 24730: 17.8698% -Rate for instruction 24731: 17.8696% -Rate for instruction 24732: 17.8701% -Rate for instruction 24733: 17.8703% -Rate for instruction 24734: 17.8705% -Rate for instruction 24735: 17.8709% -Rate for instruction 24736: 17.8714% -Rate for instruction 24737: 17.8713% -Rate for instruction 24738: 17.8712% -Rate for instruction 24739: 17.8714% -Rate for instruction 24740: 17.8722% -Rate for instruction 24741: 17.8726% -Rate for instruction 24742: 17.8722% -Rate for instruction 24743: 17.8727% -Rate for instruction 24744: 17.8735% -Rate for instruction 24745: 17.8742% -Rate for instruction 24746: 17.8746% -Rate for instruction 24747: 17.874% -Rate for instruction 24748: 17.875% -Rate for instruction 24749: 17.8757% -Rate for instruction 24750: 17.8757% -Rate for instruction 24751: 17.8753% -Rate for instruction 24752: 17.8748% -Rate for instruction 24753: 17.875% -Rate for instruction 24754: 17.8758% -Rate for instruction 24755: 17.8759% -Rate for instruction 24756: 17.8759% -Rate for instruction 24757: 17.8763% -Rate for instruction 24758: 17.8769% -Rate for instruction 24759: 17.8776% -Rate for instruction 24760: 17.8781% -Rate for instruction 24761: 17.8785% -Rate for instruction 24762: 17.8789% -Rate for instruction 24763: 17.8796% -Rate for instruction 24764: 17.8799% -Rate for instruction 24765: 17.8798% -Rate for instruction 24766: 17.8805% -Rate for instruction 24767: 17.8805% -Rate for instruction 24768: 17.8811% -Rate for instruction 24769: 17.8811% -Rate for instruction 24770: 17.8818% -Rate for instruction 24771: 17.8817% -Rate for instruction 24772: 17.8827% -Rate for instruction 24773: 17.8832% -Rate for instruction 24774: 17.8839% -Rate for instruction 24775: 17.8847% -Rate for instruction 24776: 17.8858% -Rate for instruction 24777: 17.8867% -Rate for instruction 24778: 17.8872% -Rate for instruction 24779: 17.888% -Rate for instruction 24780: 17.8892% -Rate for instruction 24781: 17.8895% -Rate for instruction 24782: 17.8902% -Rate for instruction 24783: 17.89% -Rate for instruction 24784: 17.8911% -Rate for instruction 24785: 17.8907% -Rate for instruction 24786: 17.891% -Rate for instruction 24787: 17.8913% -Rate for instruction 24788: 17.8912% -Rate for instruction 24789: 17.892% -Rate for instruction 24790: 17.8933% -Rate for instruction 24791: 17.894% -Rate for instruction 24792: 17.8945% -Rate for instruction 24793: 17.8945% -Rate for instruction 24794: 17.8946% -Rate for instruction 24795: 17.8948% -Rate for instruction 24796: 17.8952% -Rate for instruction 24797: 17.8955% -Rate for instruction 24798: 17.8957% -Rate for instruction 24799: 17.8962% -Rate for instruction 24800: 17.8968% -Rate for instruction 24801: 17.8971% -Rate for instruction 24802: 17.8975% -Rate for instruction 24803: 17.898% -Rate for instruction 24804: 17.899% -Rate for instruction 24805: 17.8995% -Rate for instruction 24806: 17.9003% -Rate for instruction 24807: 17.8999% -Rate for instruction 24808: 17.9% -Rate for instruction 24809: 17.9004% -Rate for instruction 24810: 17.9009% -Rate for instruction 24811: 17.9012% -Rate for instruction 24812: 17.9008% -Rate for instruction 24813: 17.9003% -Rate for instruction 24814: 17.9003% -Rate for instruction 24815: 17.8997% -Rate for instruction 24816: 17.9004% -Rate for instruction 24817: 17.9014% -Rate for instruction 24818: 17.9013% -Rate for instruction 24819: 17.9007% -Rate for instruction 24820: 17.9014% -Rate for instruction 24821: 17.9008% -Rate for instruction 24822: 17.9012% -Rate for instruction 24823: 17.9017% -Rate for instruction 24824: 17.9022% -Rate for instruction 24825: 17.9024% -Rate for instruction 24826: 17.9025% -Rate for instruction 24827: 17.9026% -Rate for instruction 24828: 17.9037% -Rate for instruction 24829: 17.9044% -Rate for instruction 24830: 17.9052% -Rate for instruction 24831: 17.9062% -Rate for instruction 24832: 17.9072% -Rate for instruction 24833: 17.9077% -Rate for instruction 24834: 17.9076% -Rate for instruction 24835: 17.9086% -Rate for instruction 24836: 17.9085% -Rate for instruction 24837: 17.9088% -Rate for instruction 24838: 17.9095% -Rate for instruction 24839: 17.9099% -Rate for instruction 24840: 17.9094% -Rate for instruction 24841: 17.9089% -Rate for instruction 24842: 17.9083% -Rate for instruction 24843: 17.9079% -Rate for instruction 24844: 17.9078% -Rate for instruction 24845: 17.9074% -Rate for instruction 24846: 17.9079% -Rate for instruction 24847: 17.909% -Rate for instruction 24848: 17.9086% -Rate for instruction 24849: 17.9085% -Rate for instruction 24850: 17.9081% -Rate for instruction 24851: 17.9089% -Rate for instruction 24852: 17.9088% -Rate for instruction 24853: 17.9084% -Rate for instruction 24854: 17.9079% -Rate for instruction 24855: 17.9085% -Rate for instruction 24856: 17.908% -Rate for instruction 24857: 17.9079% -Rate for instruction 24858: 17.9073% -Rate for instruction 24859: 17.9074% -Rate for instruction 24860: 17.9079% -Rate for instruction 24861: 17.9082% -Rate for instruction 24862: 17.9089% -Rate for instruction 24863: 17.9083% -Rate for instruction 24864: 17.9086% -Rate for instruction 24865: 17.9088% -Rate for instruction 24866: 17.9082% -Rate for instruction 24867: 17.9079% -Rate for instruction 24868: 17.9075% -Rate for instruction 24869: 17.908% -Rate for instruction 24870: 17.9079% -Rate for instruction 24871: 17.9082% -Rate for instruction 24872: 17.9076% -Rate for instruction 24873: 17.9072% -Rate for instruction 24874: 17.908% -Rate for instruction 24875: 17.9076% -Rate for instruction 24876: 17.907% -Rate for instruction 24877: 17.9066% -Rate for instruction 24878: 17.907% -Rate for instruction 24879: 17.9066% -Rate for instruction 24880: 17.9068% -Rate for instruction 24881: 17.9062% -Rate for instruction 24882: 17.9066% -Rate for instruction 24883: 17.9069% -Rate for instruction 24884: 17.9065% -Rate for instruction 24885: 17.9063% -Rate for instruction 24886: 17.9065% -Rate for instruction 24887: 17.9059% -Rate for instruction 24888: 17.906% -Rate for instruction 24889: 17.9054% -Rate for instruction 24890: 17.9058% -Rate for instruction 24891: 17.9063% -Rate for instruction 24892: 17.9057% -Rate for instruction 24893: 17.9056% -Rate for instruction 24894: 17.905% -Rate for instruction 24895: 17.9049% -Rate for instruction 24896: 17.9058% -Rate for instruction 24897: 17.9052% -Rate for instruction 24898: 17.906% -Rate for instruction 24899: 17.9067% -Rate for instruction 24900: 17.908% -Rate for instruction 24901: 17.9082% -Rate for instruction 24902: 17.9076% -Rate for instruction 24903: 17.9072% -Rate for instruction 24904: 17.9068% -Rate for instruction 24905: 17.9075% -Rate for instruction 24906: 17.9078% -Rate for instruction 24907: 17.9073% -Rate for instruction 24908: 17.9078% -Rate for instruction 24909: 17.9075% -Rate for instruction 24910: 17.9073% -Rate for instruction 24911: 17.9072% -Rate for instruction 24912: 17.9066% -Rate for instruction 24913: 17.9067% -Rate for instruction 24914: 17.9064% -Rate for instruction 24915: 17.9062% -Rate for instruction 24916: 17.9059% -Rate for instruction 24917: 17.9055% -Rate for instruction 24918: 17.9057% -Rate for instruction 24919: 17.9051% -Rate for instruction 24920: 17.9047% -Rate for instruction 24921: 17.9042% -Rate for instruction 24922: 17.9041% -Rate for instruction 24923: 17.9041% -Rate for instruction 24924: 17.9049% -Rate for instruction 24925: 17.9052% -Rate for instruction 24926: 17.9047% -Rate for instruction 24927: 17.9051% -Rate for instruction 24928: 17.9059% -Rate for instruction 24929: 17.9061% -Rate for instruction 24930: 17.9059% -Rate for instruction 24931: 17.9067% -Rate for instruction 24932: 17.9061% -Rate for instruction 24933: 17.907% -Rate for instruction 24934: 17.907% -Rate for instruction 24935: 17.9078% -Rate for instruction 24936: 17.9081% -Rate for instruction 24937: 17.9089% -Rate for instruction 24938: 17.9088% -Rate for instruction 24939: 17.9087% -Rate for instruction 24940: 17.9083% -Rate for instruction 24941: 17.9077% -Rate for instruction 24942: 17.9082% -Rate for instruction 24943: 17.9081% -Rate for instruction 24944: 17.9086% -Rate for instruction 24945: 17.9093% -Rate for instruction 24946: 17.9103% -Rate for instruction 24947: 17.9116% -Rate for instruction 24948: 17.9125% -Rate for instruction 24949: 17.9129% -Rate for instruction 24950: 17.9134% -Rate for instruction 24951: 17.9135% -Rate for instruction 24952: 17.9132% -Rate for instruction 24953: 17.9139% -Rate for instruction 24954: 17.9141% -Rate for instruction 24955: 17.9137% -Rate for instruction 24956: 17.9131% -Rate for instruction 24957: 17.9129% -Rate for instruction 24958: 17.9123% -Rate for instruction 24959: 17.9119% -Rate for instruction 24960: 17.9113% -Rate for instruction 24961: 17.9112% -Rate for instruction 24962: 17.9117% -Rate for instruction 24963: 17.9113% -Rate for instruction 24964: 17.912% -Rate for instruction 24965: 17.9114% -Rate for instruction 24966: 17.9112% -Rate for instruction 24967: 17.9108% -Rate for instruction 24968: 17.9102% -Rate for instruction 24969: 17.9107% -Rate for instruction 24970: 17.9115% -Rate for instruction 24971: 17.9114% -Rate for instruction 24972: 17.9117% -Rate for instruction 24973: 17.9117% -Rate for instruction 24974: 17.9122% -Rate for instruction 24975: 17.9118% -Rate for instruction 24976: 17.9128% -Rate for instruction 24977: 17.9139% -Rate for instruction 24978: 17.9147% -Rate for instruction 24979: 17.9142% -Rate for instruction 24980: 17.9136% -Rate for instruction 24981: 17.9134% -Rate for instruction 24982: 17.914% -Rate for instruction 24983: 17.9135% -Rate for instruction 24984: 17.9129% -Rate for instruction 24985: 17.9134% -Rate for instruction 24986: 17.9129% -Rate for instruction 24987: 17.9131% -Rate for instruction 24988: 17.9134% -Rate for instruction 24989: 17.9129% -Rate for instruction 24990: 17.9124% -Rate for instruction 24991: 17.9122% -Rate for instruction 24992: 17.9119% -Rate for instruction 24993: 17.9128% -Rate for instruction 24994: 17.9122% -Rate for instruction 24995: 17.9119% -Rate for instruction 24996: 17.9118% -Rate for instruction 24997: 17.9117% -Rate for instruction 24998: 17.9118% -Rate for instruction 24999: 17.912% -Rate for instruction 25000: 17.9128% -Rate for instruction 25001: 17.9124% -Rate for instruction 25002: 17.9122% -Rate for instruction 25003: 17.9121% -Rate for instruction 25004: 17.9118% -Rate for instruction 25005: 17.9122% -Rate for instruction 25006: 17.9118% -Rate for instruction 25007: 17.9121% -Rate for instruction 25008: 17.9125% -Rate for instruction 25009: 17.9124% -Rate for instruction 25010: 17.9132% -Rate for instruction 25011: 17.9131% -Rate for instruction 25012: 17.9135% -Rate for instruction 25013: 17.914% -Rate for instruction 25014: 17.9146% -Rate for instruction 25015: 17.915% -Rate for instruction 25016: 17.915% -Rate for instruction 25017: 17.9153% -Rate for instruction 25018: 17.9164% -Rate for instruction 25019: 17.9163% -Rate for instruction 25020: 17.9166% -Rate for instruction 25021: 17.9176% -Rate for instruction 25022: 17.9171% -Rate for instruction 25023: 17.9171% -Rate for instruction 25024: 17.9165% -Rate for instruction 25025: 17.9163% -Rate for instruction 25026: 17.916% -Rate for instruction 25027: 17.9161% -Rate for instruction 25028: 17.916% -Rate for instruction 25029: 17.916% -Rate for instruction 25030: 17.9156% -Rate for instruction 25031: 17.9161% -Rate for instruction 25032: 17.9159% -Rate for instruction 25033: 17.9162% -Rate for instruction 25034: 17.9157% -Rate for instruction 25035: 17.9159% -Rate for instruction 25036: 17.9153% -Rate for instruction 25037: 17.9157% -Rate for instruction 25038: 17.9164% -Rate for instruction 25039: 17.9166% -Rate for instruction 25040: 17.9168% -Rate for instruction 25041: 17.9162% -Rate for instruction 25042: 17.917% -Rate for instruction 25043: 17.9165% -Rate for instruction 25044: 17.9161% -Rate for instruction 25045: 17.9155% -Rate for instruction 25046: 17.9152% -Rate for instruction 25047: 17.9156% -Rate for instruction 25048: 17.9163% -Rate for instruction 25049: 17.9159% -Rate for instruction 25050: 17.9165% -Rate for instruction 25051: 17.9172% -Rate for instruction 25052: 17.9177% -Rate for instruction 25053: 17.9178% -Rate for instruction 25054: 17.9177% -Rate for instruction 25055: 17.9182% -Rate for instruction 25056: 17.9187% -Rate for instruction 25057: 17.9187% -Rate for instruction 25058: 17.9188% -Rate for instruction 25059: 17.9193% -Rate for instruction 25060: 17.9189% -Rate for instruction 25061: 17.9197% -Rate for instruction 25062: 17.9195% -Rate for instruction 25063: 17.9191% -Rate for instruction 25064: 17.9186% -Rate for instruction 25065: 17.9193% -Rate for instruction 25066: 17.9187% -Rate for instruction 25067: 17.9196% -Rate for instruction 25068: 17.9195% -Rate for instruction 25069: 17.92% -Rate for instruction 25070: 17.9194% -Rate for instruction 25071: 17.9193% -Rate for instruction 25072: 17.9188% -Rate for instruction 25073: 17.9194% -Rate for instruction 25074: 17.9192% -Rate for instruction 25075: 17.9201% -Rate for instruction 25076: 17.9207% -Rate for instruction 25077: 17.9202% -Rate for instruction 25078: 17.9201% -Rate for instruction 25079: 17.9199% -Rate for instruction 25080: 17.9198% -Rate for instruction 25081: 17.9195% -Rate for instruction 25082: 17.9193% -Rate for instruction 25083: 17.9196% -Rate for instruction 25084: 17.9203% -Rate for instruction 25085: 17.9205% -Rate for instruction 25086: 17.9204% -Rate for instruction 25087: 17.9206% -Rate for instruction 25088: 17.9208% -Rate for instruction 25089: 17.9204% -Rate for instruction 25090: 17.9211% -Rate for instruction 25091: 17.9217% -Rate for instruction 25092: 17.9224% -Rate for instruction 25093: 17.9223% -Rate for instruction 25094: 17.9227% -Rate for instruction 25095: 17.9233% -Rate for instruction 25096: 17.9228% -Rate for instruction 25097: 17.923% -Rate for instruction 25098: 17.923% -Rate for instruction 25099: 17.9225% -Rate for instruction 25100: 17.9231% -Rate for instruction 25101: 17.9238% -Rate for instruction 25102: 17.9237% -Rate for instruction 25103: 17.9239% -Rate for instruction 25104: 17.9243% -Rate for instruction 25105: 17.9242% -Rate for instruction 25106: 17.9241% -Rate for instruction 25107: 17.9236% -Rate for instruction 25108: 17.9232% -Rate for instruction 25109: 17.9231% -Rate for instruction 25110: 17.9227% -Rate for instruction 25111: 17.9225% -Rate for instruction 25112: 17.9221% -Rate for instruction 25113: 17.9218% -Rate for instruction 25114: 17.9216% -Rate for instruction 25115: 17.9222% -Rate for instruction 25116: 17.9232% -Rate for instruction 25117: 17.924% -Rate for instruction 25118: 17.9242% -Rate for instruction 25119: 17.9252% -Rate for instruction 25120: 17.9249% -Rate for instruction 25121: 17.9256% -Rate for instruction 25122: 17.9267% -Rate for instruction 25123: 17.9266% -Rate for instruction 25124: 17.9264% -Rate for instruction 25125: 17.926% -Rate for instruction 25126: 17.9254% -Rate for instruction 25127: 17.9248% -Rate for instruction 25128: 17.9244% -Rate for instruction 25129: 17.9245% -Rate for instruction 25130: 17.9239% -Rate for instruction 25131: 17.9241% -Rate for instruction 25132: 17.9236% -Rate for instruction 25133: 17.9245% -Rate for instruction 25134: 17.924% -Rate for instruction 25135: 17.9253% -Rate for instruction 25136: 17.9256% -Rate for instruction 25137: 17.9263% -Rate for instruction 25138: 17.9276% -Rate for instruction 25139: 17.9285% -Rate for instruction 25140: 17.9281% -Rate for instruction 25141: 17.928% -Rate for instruction 25142: 17.9285% -Rate for instruction 25143: 17.9292% -Rate for instruction 25144: 17.93% -Rate for instruction 25145: 17.9307% -Rate for instruction 25146: 17.9307% -Rate for instruction 25147: 17.9318% -Rate for instruction 25148: 17.9325% -Rate for instruction 25149: 17.9327% -Rate for instruction 25150: 17.9337% -Rate for instruction 25151: 17.9339% -Rate for instruction 25152: 17.9347% -Rate for instruction 25153: 17.9348% -Rate for instruction 25154: 17.9357% -Rate for instruction 25155: 17.9362% -Rate for instruction 25156: 17.9357% -Rate for instruction 25157: 17.9353% -Rate for instruction 25158: 17.9349% -Rate for instruction 25159: 17.9351% -Rate for instruction 25160: 17.9347% -Rate for instruction 25161: 17.9341% -Rate for instruction 25162: 17.9345% -Rate for instruction 25163: 17.9344% -Rate for instruction 25164: 17.9338% -Rate for instruction 25165: 17.9337% -Rate for instruction 25166: 17.9337% -Rate for instruction 25167: 17.9338% -Rate for instruction 25168: 17.9334% -Rate for instruction 25169: 17.9328% -Rate for instruction 25170: 17.9335% -Rate for instruction 25171: 17.9342% -Rate for instruction 25172: 17.9341% -Rate for instruction 25173: 17.9346% -Rate for instruction 25174: 17.9348% -Rate for instruction 25175: 17.9357% -Rate for instruction 25176: 17.9353% -Rate for instruction 25177: 17.9348% -Rate for instruction 25178: 17.9344% -Rate for instruction 25179: 17.9344% -Rate for instruction 25180: 17.9339% -Rate for instruction 25181: 17.9334% -Rate for instruction 25182: 17.934% -Rate for instruction 25183: 17.9334% -Rate for instruction 25184: 17.9331% -Rate for instruction 25185: 17.9333% -Rate for instruction 25186: 17.9334% -Rate for instruction 25187: 17.9339% -Rate for instruction 25188: 17.9335% -Rate for instruction 25189: 17.9337% -Rate for instruction 25190: 17.9338% -Rate for instruction 25191: 17.9338% -Rate for instruction 25192: 17.934% -Rate for instruction 25193: 17.9336% -Rate for instruction 25194: 17.9332% -Rate for instruction 25195: 17.9329% -Rate for instruction 25196: 17.9324% -Rate for instruction 25197: 17.9321% -Rate for instruction 25198: 17.9319% -Rate for instruction 25199: 17.9319% -Rate for instruction 25200: 17.9318% -Rate for instruction 25201: 17.932% -Rate for instruction 25202: 17.9325% -Rate for instruction 25203: 17.9324% -Rate for instruction 25204: 17.9322% -Rate for instruction 25205: 17.9318% -Rate for instruction 25206: 17.9317% -Rate for instruction 25207: 17.9319% -Rate for instruction 25208: 17.9322% -Rate for instruction 25209: 17.9317% -Rate for instruction 25210: 17.9313% -Rate for instruction 25211: 17.931% -Rate for instruction 25212: 17.9309% -Rate for instruction 25213: 17.931% -Rate for instruction 25214: 17.9307% -Rate for instruction 25215: 17.9303% -Rate for instruction 25216: 17.9302% -Rate for instruction 25217: 17.9297% -Rate for instruction 25218: 17.9297% -Rate for instruction 25219: 17.9302% -Rate for instruction 25220: 17.9303% -Rate for instruction 25221: 17.93% -Rate for instruction 25222: 17.9301% -Rate for instruction 25223: 17.9297% -Rate for instruction 25224: 17.93% -Rate for instruction 25225: 17.9302% -Rate for instruction 25226: 17.9297% -Rate for instruction 25227: 17.9294% -Rate for instruction 25228: 17.9288% -Rate for instruction 25229: 17.9287% -Rate for instruction 25230: 17.9286% -Rate for instruction 25231: 17.929% -Rate for instruction 25232: 17.9284% -Rate for instruction 25233: 17.9283% -Rate for instruction 25234: 17.9282% -Rate for instruction 25235: 17.9278% -Rate for instruction 25236: 17.9276% -Rate for instruction 25237: 17.9278% -Rate for instruction 25238: 17.9272% -Rate for instruction 25239: 17.9277% -Rate for instruction 25240: 17.9273% -Rate for instruction 25241: 17.9277% -Rate for instruction 25242: 17.9276% -Rate for instruction 25243: 17.9278% -Rate for instruction 25244: 17.9278% -Rate for instruction 25245: 17.9277% -Rate for instruction 25246: 17.9273% -Rate for instruction 25247: 17.9285% -Rate for instruction 25248: 17.9285% -Rate for instruction 25249: 17.9284% -Rate for instruction 25250: 17.9289% -Rate for instruction 25251: 17.9287% -Rate for instruction 25252: 17.9292% -Rate for instruction 25253: 17.9297% -Rate for instruction 25254: 17.9303% -Rate for instruction 25255: 17.9302% -Rate for instruction 25256: 17.93% -Rate for instruction 25257: 17.931% -Rate for instruction 25258: 17.9304% -Rate for instruction 25259: 17.9311% -Rate for instruction 25260: 17.9311% -Rate for instruction 25261: 17.9321% -Rate for instruction 25262: 17.9329% -Rate for instruction 25263: 17.9337% -Rate for instruction 25264: 17.9341% -Rate for instruction 25265: 17.9343% -Rate for instruction 25266: 17.934% -Rate for instruction 25267: 17.9347% -Rate for instruction 25268: 17.9341% -Rate for instruction 25269: 17.9345% -Rate for instruction 25270: 17.9339% -Rate for instruction 25271: 17.9343% -Rate for instruction 25272: 17.9337% -Rate for instruction 25273: 17.9333% -Rate for instruction 25274: 17.9329% -Rate for instruction 25275: 17.9323% -Rate for instruction 25276: 17.9319% -Rate for instruction 25277: 17.9321% -Rate for instruction 25278: 17.9328% -Rate for instruction 25279: 17.9327% -Rate for instruction 25280: 17.9321% -Rate for instruction 25281: 17.9328% -Rate for instruction 25282: 17.9333% -Rate for instruction 25283: 17.9335% -Rate for instruction 25284: 17.9336% -Rate for instruction 25285: 17.9341% -Rate for instruction 25286: 17.9349% -Rate for instruction 25287: 17.9345% -Rate for instruction 25288: 17.9347% -Rate for instruction 25289: 17.9353% -Rate for instruction 25290: 17.936% -Rate for instruction 25291: 17.9359% -Rate for instruction 25292: 17.9359% -Rate for instruction 25293: 17.9354% -Rate for instruction 25294: 17.9348% -Rate for instruction 25295: 17.9344% -Rate for instruction 25296: 17.9339% -Rate for instruction 25297: 17.9335% -Rate for instruction 25298: 17.9329% -Rate for instruction 25299: 17.9331% -Rate for instruction 25300: 17.9333% -Rate for instruction 25301: 17.9328% -Rate for instruction 25302: 17.9322% -Rate for instruction 25303: 17.9326% -Rate for instruction 25304: 17.9322% -Rate for instruction 25305: 17.9317% -Rate for instruction 25306: 17.9318% -Rate for instruction 25307: 17.9315% -Rate for instruction 25308: 17.9311% -Rate for instruction 25309: 17.9307% -Rate for instruction 25310: 17.9311% -Rate for instruction 25311: 17.9314% -Rate for instruction 25312: 17.9315% -Rate for instruction 25313: 17.9311% -Rate for instruction 25314: 17.9307% -Rate for instruction 25315: 17.9309% -Rate for instruction 25316: 17.9305% -Rate for instruction 25317: 17.9304% -Rate for instruction 25318: 17.9306% -Rate for instruction 25319: 17.9309% -Rate for instruction 25320: 17.931% -Rate for instruction 25321: 17.9309% -Rate for instruction 25322: 17.9313% -Rate for instruction 25323: 17.9308% -Rate for instruction 25324: 17.9309% -Rate for instruction 25325: 17.9311% -Rate for instruction 25326: 17.9307% -Rate for instruction 25327: 17.9307% -Rate for instruction 25328: 17.9303% -Rate for instruction 25329: 17.9305% -Rate for instruction 25330: 17.9306% -Rate for instruction 25331: 17.9302% -Rate for instruction 25332: 17.9305% -Rate for instruction 25333: 17.9309% -Rate for instruction 25334: 17.9303% -Rate for instruction 25335: 17.9306% -Rate for instruction 25336: 17.93% -Rate for instruction 25337: 17.9305% -Rate for instruction 25338: 17.9307% -Rate for instruction 25339: 17.9308% -Rate for instruction 25340: 17.9307% -Rate for instruction 25341: 17.9312% -Rate for instruction 25342: 17.9318% -Rate for instruction 25343: 17.9313% -Rate for instruction 25344: 17.931% -Rate for instruction 25345: 17.9305% -Rate for instruction 25346: 17.9304% -Rate for instruction 25347: 17.9309% -Rate for instruction 25348: 17.9315% -Rate for instruction 25349: 17.9317% -Rate for instruction 25350: 17.9321% -Rate for instruction 25351: 17.9315% -Rate for instruction 25352: 17.9322% -Rate for instruction 25353: 17.9318% -Rate for instruction 25354: 17.9318% -Rate for instruction 25355: 17.932% -Rate for instruction 25356: 17.9321% -Rate for instruction 25357: 17.932% -Rate for instruction 25358: 17.9323% -Rate for instruction 25359: 17.9325% -Rate for instruction 25360: 17.9323% -Rate for instruction 25361: 17.9325% -Rate for instruction 25362: 17.933% -Rate for instruction 25363: 17.9334% -Rate for instruction 25364: 17.9333% -Rate for instruction 25365: 17.9339% -Rate for instruction 25366: 17.9347% -Rate for instruction 25367: 17.9345% -Rate for instruction 25368: 17.9341% -Rate for instruction 25369: 17.934% -Rate for instruction 25370: 17.9337% -Rate for instruction 25371: 17.9345% -Rate for instruction 25372: 17.9355% -Rate for instruction 25373: 17.936% -Rate for instruction 25374: 17.9354% -Rate for instruction 25375: 17.9358% -Rate for instruction 25376: 17.9352% -Rate for instruction 25377: 17.9356% -Rate for instruction 25378: 17.9361% -Rate for instruction 25379: 17.9357% -Rate for instruction 25380: 17.9363% -Rate for instruction 25381: 17.9362% -Rate for instruction 25382: 17.9357% -Rate for instruction 25383: 17.9354% -Rate for instruction 25384: 17.9353% -Rate for instruction 25385: 17.9357% -Rate for instruction 25386: 17.9353% -Rate for instruction 25387: 17.9353% -Rate for instruction 25388: 17.9352% -Rate for instruction 25389: 17.9356% -Rate for instruction 25390: 17.935% -Rate for instruction 25391: 17.9351% -Rate for instruction 25392: 17.9353% -Rate for instruction 25393: 17.9349% -Rate for instruction 25394: 17.9351% -Rate for instruction 25395: 17.9345% -Rate for instruction 25396: 17.9344% -Rate for instruction 25397: 17.9343% -Rate for instruction 25398: 17.9342% -Rate for instruction 25399: 17.9346% -Rate for instruction 25400: 17.9355% -Rate for instruction 25401: 17.9351% -Rate for instruction 25402: 17.9347% -Rate for instruction 25403: 17.9343% -Rate for instruction 25404: 17.9339% -Rate for instruction 25405: 17.9337% -Rate for instruction 25406: 17.9333% -Rate for instruction 25407: 17.933% -Rate for instruction 25408: 17.9328% -Rate for instruction 25409: 17.9327% -Rate for instruction 25410: 17.9324% -Rate for instruction 25411: 17.9331% -Rate for instruction 25412: 17.9328% -Rate for instruction 25413: 17.9326% -Rate for instruction 25414: 17.9329% -Rate for instruction 25415: 17.9327% -Rate for instruction 25416: 17.9321% -Rate for instruction 25417: 17.932% -Rate for instruction 25418: 17.9316% -Rate for instruction 25419: 17.9315% -Rate for instruction 25420: 17.9314% -Rate for instruction 25421: 17.9319% -Rate for instruction 25422: 17.9321% -Rate for instruction 25423: 17.9319% -Rate for instruction 25424: 17.9316% -Rate for instruction 25425: 17.9311% -Rate for instruction 25426: 17.9319% -Rate for instruction 25427: 17.9328% -Rate for instruction 25428: 17.9327% -Rate for instruction 25429: 17.9323% -Rate for instruction 25430: 17.9321% -Rate for instruction 25431: 17.932% -Rate for instruction 25432: 17.9314% -Rate for instruction 25433: 17.9319% -Rate for instruction 25434: 17.9327% -Rate for instruction 25435: 17.9326% -Rate for instruction 25436: 17.9331% -Rate for instruction 25437: 17.9336% -Rate for instruction 25438: 17.9343% -Rate for instruction 25439: 17.9342% -Rate for instruction 25440: 17.9341% -Rate for instruction 25441: 17.9339% -Rate for instruction 25442: 17.9333% -Rate for instruction 25443: 17.9333% -Rate for instruction 25444: 17.9329% -Rate for instruction 25445: 17.9324% -Rate for instruction 25446: 17.9321% -Rate for instruction 25447: 17.9322% -Rate for instruction 25448: 17.9321% -Rate for instruction 25449: 17.9317% -Rate for instruction 25450: 17.9317% -Rate for instruction 25451: 17.9315% -Rate for instruction 25452: 17.932% -Rate for instruction 25453: 17.9328% -Rate for instruction 25454: 17.9333% -Rate for instruction 25455: 17.9337% -Rate for instruction 25456: 17.9337% -Rate for instruction 25457: 17.9338% -Rate for instruction 25458: 17.9337% -Rate for instruction 25459: 17.9334% -Rate for instruction 25460: 17.9332% -Rate for instruction 25461: 17.9337% -Rate for instruction 25462: 17.9343% -Rate for instruction 25463: 17.9348% -Rate for instruction 25464: 17.9346% -Rate for instruction 25465: 17.9345% -Rate for instruction 25466: 17.9342% -Rate for instruction 25467: 17.935% -Rate for instruction 25468: 17.9358% -Rate for instruction 25469: 17.9368% -Rate for instruction 25470: 17.9376% -Rate for instruction 25471: 17.9386% -Rate for instruction 25472: 17.9391% -Rate for instruction 25473: 17.9396% -Rate for instruction 25474: 17.9395% -Rate for instruction 25475: 17.9391% -Rate for instruction 25476: 17.939% -Rate for instruction 25477: 17.9384% -Rate for instruction 25478: 17.938% -Rate for instruction 25479: 17.9374% -Rate for instruction 25480: 17.9373% -Rate for instruction 25481: 17.9368% -Rate for instruction 25482: 17.9364% -Rate for instruction 25483: 17.9358% -Rate for instruction 25484: 17.9359% -Rate for instruction 25485: 17.9353% -Rate for instruction 25486: 17.9351% -Rate for instruction 25487: 17.935% -Rate for instruction 25488: 17.9347% -Rate for instruction 25489: 17.9345% -Rate for instruction 25490: 17.9339% -Rate for instruction 25491: 17.9335% -Rate for instruction 25492: 17.933% -Rate for instruction 25493: 17.9329% -Rate for instruction 25494: 17.9329% -Rate for instruction 25495: 17.9328% -Rate for instruction 25496: 17.9329% -Rate for instruction 25497: 17.9328% -Rate for instruction 25498: 17.9325% -Rate for instruction 25499: 17.9324% -Rate for instruction 25500: 17.9322% -Rate for instruction 25501: 17.9319% -Rate for instruction 25502: 17.9314% -Rate for instruction 25503: 17.9314% -Rate for instruction 25504: 17.9315% -Rate for instruction 25505: 17.9311% -Rate for instruction 25506: 17.9308% -Rate for instruction 25507: 17.9304% -Rate for instruction 25508: 17.9303% -Rate for instruction 25509: 17.9302% -Rate for instruction 25510: 17.9304% -Rate for instruction 25511: 17.9305% -Rate for instruction 25512: 17.9301% -Rate for instruction 25513: 17.9298% -Rate for instruction 25514: 17.9294% -Rate for instruction 25515: 17.9293% -Rate for instruction 25516: 17.9291% -Rate for instruction 25517: 17.9287% -Rate for instruction 25518: 17.9284% -Rate for instruction 25519: 17.9282% -Rate for instruction 25520: 17.9278% -Rate for instruction 25521: 17.9278% -Rate for instruction 25522: 17.9274% -Rate for instruction 25523: 17.9276% -Rate for instruction 25524: 17.9274% -Rate for instruction 25525: 17.9282% -Rate for instruction 25526: 17.9285% -Rate for instruction 25527: 17.9284% -Rate for instruction 25528: 17.9283% -Rate for instruction 25529: 17.9284% -Rate for instruction 25530: 17.928% -Rate for instruction 25531: 17.928% -Rate for instruction 25532: 17.9284% -Rate for instruction 25533: 17.9289% -Rate for instruction 25534: 17.9289% -Rate for instruction 25535: 17.9287% -Rate for instruction 25536: 17.9287% -Rate for instruction 25537: 17.9285% -Rate for instruction 25538: 17.929% -Rate for instruction 25539: 17.9298% -Rate for instruction 25540: 17.9297% -Rate for instruction 25541: 17.9297% -Rate for instruction 25542: 17.9301% -Rate for instruction 25543: 17.9295% -Rate for instruction 25544: 17.9302% -Rate for instruction 25545: 17.9302% -Rate for instruction 25546: 17.9306% -Rate for instruction 25547: 17.9308% -Rate for instruction 25548: 17.9307% -Rate for instruction 25549: 17.9302% -Rate for instruction 25550: 17.9301% -Rate for instruction 25551: 17.9303% -Rate for instruction 25552: 17.93% -Rate for instruction 25553: 17.9298% -Rate for instruction 25554: 17.9301% -Rate for instruction 25555: 17.9306% -Rate for instruction 25556: 17.9304% -Rate for instruction 25557: 17.93% -Rate for instruction 25558: 17.9299% -Rate for instruction 25559: 17.9296% -Rate for instruction 25560: 17.9292% -Rate for instruction 25561: 17.9293% -Rate for instruction 25562: 17.9293% -Rate for instruction 25563: 17.9291% -Rate for instruction 25564: 17.9288% -Rate for instruction 25565: 17.929% -Rate for instruction 25566: 17.9285% -Rate for instruction 25567: 17.9285% -Rate for instruction 25568: 17.9289% -Rate for instruction 25569: 17.9283% -Rate for instruction 25570: 17.9278% -Rate for instruction 25571: 17.9278% -Rate for instruction 25572: 17.9273% -Rate for instruction 25573: 17.9273% -Rate for instruction 25574: 17.9272% -Rate for instruction 25575: 17.9276% -Rate for instruction 25576: 17.9278% -Rate for instruction 25577: 17.9277% -Rate for instruction 25578: 17.9283% -Rate for instruction 25579: 17.9279% -Rate for instruction 25580: 17.9275% -Rate for instruction 25581: 17.9279% -Rate for instruction 25582: 17.9273% -Rate for instruction 25583: 17.9272% -Rate for instruction 25584: 17.9279% -Rate for instruction 25585: 17.9282% -Rate for instruction 25586: 17.9286% -Rate for instruction 25587: 17.928% -Rate for instruction 25588: 17.9275% -Rate for instruction 25589: 17.9281% -Rate for instruction 25590: 17.9277% -Rate for instruction 25591: 17.9284% -Rate for instruction 25592: 17.9289% -Rate for instruction 25593: 17.9295% -Rate for instruction 25594: 17.93% -Rate for instruction 25595: 17.9298% -Rate for instruction 25596: 17.9303% -Rate for instruction 25597: 17.9299% -Rate for instruction 25598: 17.9305% -Rate for instruction 25599: 17.931% -Rate for instruction 25600: 17.9306% -Rate for instruction 25601: 17.931% -Rate for instruction 25602: 17.9316% -Rate for instruction 25603: 17.9312% -Rate for instruction 25604: 17.9319% -Rate for instruction 25605: 17.9327% -Rate for instruction 25606: 17.9323% -Rate for instruction 25607: 17.932% -Rate for instruction 25608: 17.9315% -Rate for instruction 25609: 17.9317% -Rate for instruction 25610: 17.9311% -Rate for instruction 25611: 17.9307% -Rate for instruction 25612: 17.9311% -Rate for instruction 25613: 17.9305% -Rate for instruction 25614: 17.9309% -Rate for instruction 25615: 17.9316% -Rate for instruction 25616: 17.9319% -Rate for instruction 25617: 17.9327% -Rate for instruction 25618: 17.9322% -Rate for instruction 25619: 17.9325% -Rate for instruction 25620: 17.933% -Rate for instruction 25621: 17.9331% -Rate for instruction 25622: 17.933% -Rate for instruction 25623: 17.9324% -Rate for instruction 25624: 17.932% -Rate for instruction 25625: 17.9315% -Rate for instruction 25626: 17.9312% -Rate for instruction 25627: 17.9307% -Rate for instruction 25628: 17.9312% -Rate for instruction 25629: 17.9309% -Rate for instruction 25630: 17.9308% -Rate for instruction 25631: 17.9306% -Rate for instruction 25632: 17.9305% -Rate for instruction 25633: 17.9299% -Rate for instruction 25634: 17.9297% -Rate for instruction 25635: 17.9297% -Rate for instruction 25636: 17.9296% -Rate for instruction 25637: 17.9301% -Rate for instruction 25638: 17.9308% -Rate for instruction 25639: 17.9304% -Rate for instruction 25640: 17.9301% -Rate for instruction 25641: 17.9296% -Rate for instruction 25642: 17.9293% -Rate for instruction 25643: 17.9289% -Rate for instruction 25644: 17.9288% -Rate for instruction 25645: 17.9283% -Rate for instruction 25646: 17.928% -Rate for instruction 25647: 17.9281% -Rate for instruction 25648: 17.928% -Rate for instruction 25649: 17.9282% -Rate for instruction 25650: 17.9279% -Rate for instruction 25651: 17.9281% -Rate for instruction 25652: 17.9282% -Rate for instruction 25653: 17.9276% -Rate for instruction 25654: 17.9274% -Rate for instruction 25655: 17.9271% -Rate for instruction 25656: 17.9269% -Rate for instruction 25657: 17.9269% -Rate for instruction 25658: 17.9267% -Rate for instruction 25659: 17.9267% -Rate for instruction 25660: 17.9262% -Rate for instruction 25661: 17.9264% -Rate for instruction 25662: 17.9267% -Rate for instruction 25663: 17.9268% -Rate for instruction 25664: 17.9264% -Rate for instruction 25665: 17.926% -Rate for instruction 25666: 17.9257% -Rate for instruction 25667: 17.9258% -Rate for instruction 25668: 17.9255% -Rate for instruction 25669: 17.9256% -Rate for instruction 25670: 17.9258% -Rate for instruction 25671: 17.9258% -Rate for instruction 25672: 17.9265% -Rate for instruction 25673: 17.9271% -Rate for instruction 25674: 17.9266% -Rate for instruction 25675: 17.9271% -Rate for instruction 25676: 17.9265% -Rate for instruction 25677: 17.9266% -Rate for instruction 25678: 17.9268% -Rate for instruction 25679: 17.9276% -Rate for instruction 25680: 17.9282% -Rate for instruction 25681: 17.928% -Rate for instruction 25682: 17.9288% -Rate for instruction 25683: 17.9293% -Rate for instruction 25684: 17.9294% -Rate for instruction 25685: 17.9296% -Rate for instruction 25686: 17.9292% -Rate for instruction 25687: 17.9292% -Rate for instruction 25688: 17.929% -Rate for instruction 25689: 17.9284% -Rate for instruction 25690: 17.9282% -Rate for instruction 25691: 17.9282% -Rate for instruction 25692: 17.928% -Rate for instruction 25693: 17.9282% -Rate for instruction 25694: 17.9284% -Rate for instruction 25695: 17.9287% -Rate for instruction 25696: 17.9285% -Rate for instruction 25697: 17.9284% -Rate for instruction 25698: 17.9284% -Rate for instruction 25699: 17.9288% -Rate for instruction 25700: 17.9282% -Rate for instruction 25701: 17.9278% -Rate for instruction 25702: 17.9276% -Rate for instruction 25703: 17.9275% -Rate for instruction 25704: 17.9271% -Rate for instruction 25705: 17.9265% -Rate for instruction 25706: 17.9264% -Rate for instruction 25707: 17.926% -Rate for instruction 25708: 17.9262% -Rate for instruction 25709: 17.9257% -Rate for instruction 25710: 17.9253% -Rate for instruction 25711: 17.9259% -Rate for instruction 25712: 17.9263% -Rate for instruction 25713: 17.9268% -Rate for instruction 25714: 17.9271% -Rate for instruction 25715: 17.9267% -Rate for instruction 25716: 17.9274% -Rate for instruction 25717: 17.9274% -Rate for instruction 25718: 17.9282% -Rate for instruction 25719: 17.9277% -Rate for instruction 25720: 17.928% -Rate for instruction 25721: 17.9281% -Rate for instruction 25722: 17.9287% -Rate for instruction 25723: 17.9285% -Rate for instruction 25724: 17.9279% -Rate for instruction 25725: 17.928% -Rate for instruction 25726: 17.9285% -Rate for instruction 25727: 17.9285% -Rate for instruction 25728: 17.928% -Rate for instruction 25729: 17.9283% -Rate for instruction 25730: 17.9291% -Rate for instruction 25731: 17.9298% -Rate for instruction 25732: 17.9297% -Rate for instruction 25733: 17.9294% -Rate for instruction 25734: 17.9298% -Rate for instruction 25735: 17.93% -Rate for instruction 25736: 17.9302% -Rate for instruction 25737: 17.9301% -Rate for instruction 25738: 17.9297% -Rate for instruction 25739: 17.9297% -Rate for instruction 25740: 17.9295% -Rate for instruction 25741: 17.9289% -Rate for instruction 25742: 17.9284% -Rate for instruction 25743: 17.9279% -Rate for instruction 25744: 17.9279% -Rate for instruction 25745: 17.928% -Rate for instruction 25746: 17.9279% -Rate for instruction 25747: 17.9276% -Rate for instruction 25748: 17.9271% -Rate for instruction 25749: 17.9271% -Rate for instruction 25750: 17.927% -Rate for instruction 25751: 17.9268% -Rate for instruction 25752: 17.9267% -Rate for instruction 25753: 17.9266% -Rate for instruction 25754: 17.9263% -Rate for instruction 25755: 17.9264% -Rate for instruction 25756: 17.9264% -Rate for instruction 25757: 17.9266% -Rate for instruction 25758: 17.9268% -Rate for instruction 25759: 17.9264% -Rate for instruction 25760: 17.9268% -Rate for instruction 25761: 17.9273% -Rate for instruction 25762: 17.9273% -Rate for instruction 25763: 17.9271% -Rate for instruction 25764: 17.9265% -Rate for instruction 25765: 17.9263% -Rate for instruction 25766: 17.9259% -Rate for instruction 25767: 17.9267% -Rate for instruction 25768: 17.9275% -Rate for instruction 25769: 17.9269% -Rate for instruction 25770: 17.9267% -Rate for instruction 25771: 17.9261% -Rate for instruction 25772: 17.9265% -Rate for instruction 25773: 17.9274% -Rate for instruction 25774: 17.9285% -Rate for instruction 25775: 17.9292% -Rate for instruction 25776: 17.9301% -Rate for instruction 25777: 17.9303% -Rate for instruction 25778: 17.9314% -Rate for instruction 25779: 17.931% -Rate for instruction 25780: 17.932% -Rate for instruction 25781: 17.9323% -Rate for instruction 25782: 17.9319% -Rate for instruction 25783: 17.9324% -Rate for instruction 25784: 17.9331% -Rate for instruction 25785: 17.9334% -Rate for instruction 25786: 17.9332% -Rate for instruction 25787: 17.9332% -Rate for instruction 25788: 17.9327% -Rate for instruction 25789: 17.9324% -Rate for instruction 25790: 17.9319% -Rate for instruction 25791: 17.9315% -Rate for instruction 25792: 17.9309% -Rate for instruction 25793: 17.9308% -Rate for instruction 25794: 17.9303% -Rate for instruction 25795: 17.9308% -Rate for instruction 25796: 17.9313% -Rate for instruction 25797: 17.9318% -Rate for instruction 25798: 17.9312% -Rate for instruction 25799: 17.931% -Rate for instruction 25800: 17.9306% -Rate for instruction 25801: 17.9308% -Rate for instruction 25802: 17.9313% -Rate for instruction 25803: 17.931% -Rate for instruction 25804: 17.9314% -Rate for instruction 25805: 17.9308% -Rate for instruction 25806: 17.9315% -Rate for instruction 25807: 17.932% -Rate for instruction 25808: 17.9316% -Rate for instruction 25809: 17.9322% -Rate for instruction 25810: 17.9333% -Rate for instruction 25811: 17.934% -Rate for instruction 25812: 17.9343% -Rate for instruction 25813: 17.935% -Rate for instruction 25814: 17.9347% -Rate for instruction 25815: 17.9345% -Rate for instruction 25816: 17.9339% -Rate for instruction 25817: 17.934% -Rate for instruction 25818: 17.9342% -Rate for instruction 25819: 17.9336% -Rate for instruction 25820: 17.9338% -Rate for instruction 25821: 17.9339% -Rate for instruction 25822: 17.9335% -Rate for instruction 25823: 17.9337% -Rate for instruction 25824: 17.9342% -Rate for instruction 25825: 17.9338% -Rate for instruction 25826: 17.9338% -Rate for instruction 25827: 17.9343% -Rate for instruction 25828: 17.9344% -Rate for instruction 25829: 17.9344% -Rate for instruction 25830: 17.9351% -Rate for instruction 25831: 17.9351% -Rate for instruction 25832: 17.9352% -Rate for instruction 25833: 17.9349% -Rate for instruction 25834: 17.9344% -Rate for instruction 25835: 17.9341% -Rate for instruction 25836: 17.9343% -Rate for instruction 25837: 17.9338% -Rate for instruction 25838: 17.9334% -Rate for instruction 25839: 17.933% -Rate for instruction 25840: 17.9326% -Rate for instruction 25841: 17.9329% -Rate for instruction 25842: 17.9327% -Rate for instruction 25843: 17.9329% -Rate for instruction 25844: 17.9323% -Rate for instruction 25845: 17.9324% -Rate for instruction 25846: 17.9327% -Rate for instruction 25847: 17.9328% -Rate for instruction 25848: 17.9327% -Rate for instruction 25849: 17.9329% -Rate for instruction 25850: 17.9329% -Rate for instruction 25851: 17.9334% -Rate for instruction 25852: 17.9338% -Rate for instruction 25853: 17.9334% -Rate for instruction 25854: 17.9337% -Rate for instruction 25855: 17.9342% -Rate for instruction 25856: 17.9344% -Rate for instruction 25857: 17.9343% -Rate for instruction 25858: 17.9345% -Rate for instruction 25859: 17.9353% -Rate for instruction 25860: 17.9361% -Rate for instruction 25861: 17.9369% -Rate for instruction 25862: 17.9364% -Rate for instruction 25863: 17.9364% -Rate for instruction 25864: 17.9359% -Rate for instruction 25865: 17.9358% -Rate for instruction 25866: 17.9358% -Rate for instruction 25867: 17.9353% -Rate for instruction 25868: 17.9349% -Rate for instruction 25869: 17.9345% -Rate for instruction 25870: 17.9351% -Rate for instruction 25871: 17.9358% -Rate for instruction 25872: 17.9352% -Rate for instruction 25873: 17.9359% -Rate for instruction 25874: 17.9361% -Rate for instruction 25875: 17.9355% -Rate for instruction 25876: 17.9357% -Rate for instruction 25877: 17.9362% -Rate for instruction 25878: 17.9364% -Rate for instruction 25879: 17.9366% -Rate for instruction 25880: 17.9365% -Rate for instruction 25881: 17.9372% -Rate for instruction 25882: 17.9375% -Rate for instruction 25883: 17.9376% -Rate for instruction 25884: 17.937% -Rate for instruction 25885: 17.9366% -Rate for instruction 25886: 17.9362% -Rate for instruction 25887: 17.9369% -Rate for instruction 25888: 17.9366% -Rate for instruction 25889: 17.9371% -Rate for instruction 25890: 17.9378% -Rate for instruction 25891: 17.9387% -Rate for instruction 25892: 17.9394% -Rate for instruction 25893: 17.94% -Rate for instruction 25894: 17.9405% -Rate for instruction 25895: 17.941% -Rate for instruction 25896: 17.9406% -Rate for instruction 25897: 17.9414% -Rate for instruction 25898: 17.941% -Rate for instruction 25899: 17.9405% -Rate for instruction 25900: 17.9404% -Rate for instruction 25901: 17.9408% -Rate for instruction 25902: 17.9409% -Rate for instruction 25903: 17.9412% -Rate for instruction 25904: 17.9407% -Rate for instruction 25905: 17.9406% -Rate for instruction 25906: 17.9418% -Rate for instruction 25907: 17.9422% -Rate for instruction 25908: 17.9428% -Rate for instruction 25909: 17.9435% -Rate for instruction 25910: 17.9438% -Rate for instruction 25911: 17.9442% -Rate for instruction 25912: 17.9444% -Rate for instruction 25913: 17.945% -Rate for instruction 25914: 17.9455% -Rate for instruction 25915: 17.946% -Rate for instruction 25916: 17.9465% -Rate for instruction 25917: 17.9461% -Rate for instruction 25918: 17.9464% -Rate for instruction 25919: 17.946% -Rate for instruction 25920: 17.9457% -Rate for instruction 25921: 17.9453% -Rate for instruction 25922: 17.946% -Rate for instruction 25923: 17.9455% -Rate for instruction 25924: 17.9451% -Rate for instruction 25925: 17.9456% -Rate for instruction 25926: 17.9459% -Rate for instruction 25927: 17.9464% -Rate for instruction 25928: 17.9459% -Rate for instruction 25929: 17.9459% -Rate for instruction 25930: 17.9457% -Rate for instruction 25931: 17.9459% -Rate for instruction 25932: 17.9454% -Rate for instruction 25933: 17.9459% -Rate for instruction 25934: 17.9462% -Rate for instruction 25935: 17.947% -Rate for instruction 25936: 17.9473% -Rate for instruction 25937: 17.9477% -Rate for instruction 25938: 17.9479% -Rate for instruction 25939: 17.9479% -Rate for instruction 25940: 17.9477% -Rate for instruction 25941: 17.9476% -Rate for instruction 25942: 17.9476% -Rate for instruction 25943: 17.9471% -Rate for instruction 25944: 17.9467% -Rate for instruction 25945: 17.9461% -Rate for instruction 25946: 17.9459% -Rate for instruction 25947: 17.9454% -Rate for instruction 25948: 17.945% -Rate for instruction 25949: 17.9447% -Rate for instruction 25950: 17.9442% -Rate for instruction 25951: 17.9438% -Rate for instruction 25952: 17.9435% -Rate for instruction 25953: 17.9431% -Rate for instruction 25954: 17.9426% -Rate for instruction 25955: 17.942% -Rate for instruction 25956: 17.9418% -Rate for instruction 25957: 17.9413% -Rate for instruction 25958: 17.9412% -Rate for instruction 25959: 17.9412% -Rate for instruction 25960: 17.9408% -Rate for instruction 25961: 17.9407% -Rate for instruction 25962: 17.9408% -Rate for instruction 25963: 17.9405% -Rate for instruction 25964: 17.9406% -Rate for instruction 25965: 17.9402% -Rate for instruction 25966: 17.9404% -Rate for instruction 25967: 17.9403% -Rate for instruction 25968: 17.9397% -Rate for instruction 25969: 17.9398% -Rate for instruction 25970: 17.9394% -Rate for instruction 25971: 17.9393% -Rate for instruction 25972: 17.939% -Rate for instruction 25973: 17.9386% -Rate for instruction 25974: 17.9386% -Rate for instruction 25975: 17.9383% -Rate for instruction 25976: 17.9379% -Rate for instruction 25977: 17.9375% -Rate for instruction 25978: 17.9374% -Rate for instruction 25979: 17.937% -Rate for instruction 25980: 17.9365% -Rate for instruction 25981: 17.9362% -Rate for instruction 25982: 17.9361% -Rate for instruction 25983: 17.9356% -Rate for instruction 25984: 17.9353% -Rate for instruction 25985: 17.9352% -Rate for instruction 25986: 17.9353% -Rate for instruction 25987: 17.9353% -Rate for instruction 25988: 17.9351% -Rate for instruction 25989: 17.9353% -Rate for instruction 25990: 17.9352% -Rate for instruction 25991: 17.9351% -Rate for instruction 25992: 17.9347% -Rate for instruction 25993: 17.9345% -Rate for instruction 25994: 17.9345% -Rate for instruction 25995: 17.9343% -Rate for instruction 25996: 17.9345% -Rate for instruction 25997: 17.9339% -Rate for instruction 25998: 17.9338% -Rate for instruction 25999: 17.9333% -Rate for instruction 26000: 17.9341% -Rate for instruction 26001: 17.9346% -Rate for instruction 26002: 17.9348% -Rate for instruction 26003: 17.9342% -Rate for instruction 26004: 17.9344% -Rate for instruction 26005: 17.9346% -Rate for instruction 26006: 17.9341% -Rate for instruction 26007: 17.9347% -Rate for instruction 26008: 17.9342% -Rate for instruction 26009: 17.9342% -Rate for instruction 26010: 17.9341% -Rate for instruction 26011: 17.9343% -Rate for instruction 26012: 17.9354% -Rate for instruction 26013: 17.9359% -Rate for instruction 26014: 17.936% -Rate for instruction 26015: 17.9362% -Rate for instruction 26016: 17.9368% -Rate for instruction 26017: 17.9371% -Rate for instruction 26018: 17.9366% -Rate for instruction 26019: 17.9377% -Rate for instruction 26020: 17.9377% -Rate for instruction 26021: 17.9375% -Rate for instruction 26022: 17.9375% -Rate for instruction 26023: 17.9371% -Rate for instruction 26024: 17.9366% -Rate for instruction 26025: 17.9364% -Rate for instruction 26026: 17.9363% -Rate for instruction 26027: 17.9357% -Rate for instruction 26028: 17.9367% -Rate for instruction 26029: 17.9368% -Rate for instruction 26030: 17.9375% -Rate for instruction 26031: 17.9375% -Rate for instruction 26032: 17.937% -Rate for instruction 26033: 17.9376% -Rate for instruction 26034: 17.9384% -Rate for instruction 26035: 17.9392% -Rate for instruction 26036: 17.9399% -Rate for instruction 26037: 17.9393% -Rate for instruction 26038: 17.9401% -Rate for instruction 26039: 17.9409% -Rate for instruction 26040: 17.9403% -Rate for instruction 26041: 17.9411% -Rate for instruction 26042: 17.9413% -Rate for instruction 26043: 17.9418% -Rate for instruction 26044: 17.942% -Rate for instruction 26045: 17.9418% -Rate for instruction 26046: 17.9421% -Rate for instruction 26047: 17.9417% -Rate for instruction 26048: 17.9419% -Rate for instruction 26049: 17.9414% -Rate for instruction 26050: 17.9413% -Rate for instruction 26051: 17.9407% -Rate for instruction 26052: 17.9409% -Rate for instruction 26053: 17.9404% -Rate for instruction 26054: 17.9403% -Rate for instruction 26055: 17.9408% -Rate for instruction 26056: 17.9413% -Rate for instruction 26057: 17.9416% -Rate for instruction 26058: 17.9421% -Rate for instruction 26059: 17.9423% -Rate for instruction 26060: 17.9424% -Rate for instruction 26061: 17.9433% -Rate for instruction 26062: 17.9429% -Rate for instruction 26063: 17.9427% -Rate for instruction 26064: 17.9432% -Rate for instruction 26065: 17.9428% -Rate for instruction 26066: 17.9427% -Rate for instruction 26067: 17.9427% -Rate for instruction 26068: 17.9428% -Rate for instruction 26069: 17.9434% -Rate for instruction 26070: 17.9438% -Rate for instruction 26071: 17.9441% -Rate for instruction 26072: 17.9441% -Rate for instruction 26073: 17.9448% -Rate for instruction 26074: 17.9456% -Rate for instruction 26075: 17.9455% -Rate for instruction 26076: 17.9449% -Rate for instruction 26077: 17.9445% -Rate for instruction 26078: 17.9449% -Rate for instruction 26079: 17.9443% -Rate for instruction 26080: 17.9439% -Rate for instruction 26081: 17.9434% -Rate for instruction 26082: 17.9432% -Rate for instruction 26083: 17.9435% -Rate for instruction 26084: 17.9431% -Rate for instruction 26085: 17.9432% -Rate for instruction 26086: 17.9431% -Rate for instruction 26087: 17.9428% -Rate for instruction 26088: 17.9426% -Rate for instruction 26089: 17.9422% -Rate for instruction 26090: 17.9418% -Rate for instruction 26091: 17.9418% -Rate for instruction 26092: 17.9416% -Rate for instruction 26093: 17.9413% -Rate for instruction 26094: 17.9418% -Rate for instruction 26095: 17.9423% -Rate for instruction 26096: 17.9422% -Rate for instruction 26097: 17.9421% -Rate for instruction 26098: 17.9422% -Rate for instruction 26099: 17.9428% -Rate for instruction 26100: 17.9426% -Rate for instruction 26101: 17.9429% -Rate for instruction 26102: 17.9436% -Rate for instruction 26103: 17.9433% -Rate for instruction 26104: 17.9435% -Rate for instruction 26105: 17.9431% -Rate for instruction 26106: 17.9429% -Rate for instruction 26107: 17.9426% -Rate for instruction 26108: 17.9424% -Rate for instruction 26109: 17.9421% -Rate for instruction 26110: 17.942% -Rate for instruction 26111: 17.9421% -Rate for instruction 26112: 17.9417% -Rate for instruction 26113: 17.9413% -Rate for instruction 26114: 17.9416% -Rate for instruction 26115: 17.9413% -Rate for instruction 26116: 17.941% -Rate for instruction 26117: 17.9406% -Rate for instruction 26118: 17.9402% -Rate for instruction 26119: 17.9397% -Rate for instruction 26120: 17.9393% -Rate for instruction 26121: 17.939% -Rate for instruction 26122: 17.9388% -Rate for instruction 26123: 17.9386% -Rate for instruction 26124: 17.9388% -Rate for instruction 26125: 17.9391% -Rate for instruction 26126: 17.9387% -Rate for instruction 26127: 17.9385% -Rate for instruction 26128: 17.939% -Rate for instruction 26129: 17.9399% -Rate for instruction 26130: 17.9398% -Rate for instruction 26131: 17.9397% -Rate for instruction 26132: 17.9393% -Rate for instruction 26133: 17.9405% -Rate for instruction 26134: 17.9415% -Rate for instruction 26135: 17.9415% -Rate for instruction 26136: 17.9411% -Rate for instruction 26137: 17.9415% -Rate for instruction 26138: 17.9414% -Rate for instruction 26139: 17.9419% -Rate for instruction 26140: 17.9428% -Rate for instruction 26141: 17.9424% -Rate for instruction 26142: 17.9419% -Rate for instruction 26143: 17.9416% -Rate for instruction 26144: 17.9412% -Rate for instruction 26145: 17.9411% -Rate for instruction 26146: 17.9407% -Rate for instruction 26147: 17.9405% -Rate for instruction 26148: 17.941% -Rate for instruction 26149: 17.9404% -Rate for instruction 26150: 17.94% -Rate for instruction 26151: 17.9401% -Rate for instruction 26152: 17.9404% -Rate for instruction 26153: 17.9406% -Rate for instruction 26154: 17.9408% -Rate for instruction 26155: 17.9418% -Rate for instruction 26156: 17.9424% -Rate for instruction 26157: 17.9419% -Rate for instruction 26158: 17.9426% -Rate for instruction 26159: 17.9425% -Rate for instruction 26160: 17.9423% -Rate for instruction 26161: 17.9419% -Rate for instruction 26162: 17.9421% -Rate for instruction 26163: 17.9419% -Rate for instruction 26164: 17.9419% -Rate for instruction 26165: 17.9415% -Rate for instruction 26166: 17.9423% -Rate for instruction 26167: 17.9428% -Rate for instruction 26168: 17.9425% -Rate for instruction 26169: 17.9432% -Rate for instruction 26170: 17.9437% -Rate for instruction 26171: 17.9437% -Rate for instruction 26172: 17.9433% -Rate for instruction 26173: 17.9429% -Rate for instruction 26174: 17.9427% -Rate for instruction 26175: 17.9433% -Rate for instruction 26176: 17.944% -Rate for instruction 26177: 17.9443% -Rate for instruction 26178: 17.9449% -Rate for instruction 26179: 17.9457% -Rate for instruction 26180: 17.9455% -Rate for instruction 26181: 17.946% -Rate for instruction 26182: 17.9457% -Rate for instruction 26183: 17.9465% -Rate for instruction 26184: 17.9466% -Rate for instruction 26185: 17.9468% -Rate for instruction 26186: 17.9462% -Rate for instruction 26187: 17.9458% -Rate for instruction 26188: 17.9454% -Rate for instruction 26189: 17.9449% -Rate for instruction 26190: 17.9449% -Rate for instruction 26191: 17.9444% -Rate for instruction 26192: 17.9446% -Rate for instruction 26193: 17.9448% -Rate for instruction 26194: 17.9446% -Rate for instruction 26195: 17.9443% -Rate for instruction 26196: 17.9441% -Rate for instruction 26197: 17.9438% -Rate for instruction 26198: 17.9436% -Rate for instruction 26199: 17.9435% -Rate for instruction 26200: 17.9432% -Rate for instruction 26201: 17.9433% -Rate for instruction 26202: 17.9436% -Rate for instruction 26203: 17.9434% -Rate for instruction 26204: 17.944% -Rate for instruction 26205: 17.9435% -Rate for instruction 26206: 17.9431% -Rate for instruction 26207: 17.9427% -Rate for instruction 26208: 17.9433% -Rate for instruction 26209: 17.9432% -Rate for instruction 26210: 17.943% -Rate for instruction 26211: 17.9436% -Rate for instruction 26212: 17.9437% -Rate for instruction 26213: 17.9445% -Rate for instruction 26214: 17.9442% -Rate for instruction 26215: 17.9437% -Rate for instruction 26216: 17.9436% -Rate for instruction 26217: 17.9433% -Rate for instruction 26218: 17.9431% -Rate for instruction 26219: 17.943% -Rate for instruction 26220: 17.9428% -Rate for instruction 26221: 17.9428% -Rate for instruction 26222: 17.9431% -Rate for instruction 26223: 17.943% -Rate for instruction 26224: 17.9425% -Rate for instruction 26225: 17.9424% -Rate for instruction 26226: 17.9422% -Rate for instruction 26227: 17.9419% -Rate for instruction 26228: 17.9418% -Rate for instruction 26229: 17.9413% -Rate for instruction 26230: 17.9412% -Rate for instruction 26231: 17.9407% -Rate for instruction 26232: 17.941% -Rate for instruction 26233: 17.9406% -Rate for instruction 26234: 17.9407% -Rate for instruction 26235: 17.9407% -Rate for instruction 26236: 17.941% -Rate for instruction 26237: 17.9414% -Rate for instruction 26238: 17.9419% -Rate for instruction 26239: 17.9413% -Rate for instruction 26240: 17.9417% -Rate for instruction 26241: 17.9417% -Rate for instruction 26242: 17.9422% -Rate for instruction 26243: 17.9426% -Rate for instruction 26244: 17.9429% -Rate for instruction 26245: 17.9424% -Rate for instruction 26246: 17.9431% -Rate for instruction 26247: 17.9441% -Rate for instruction 26248: 17.9444% -Rate for instruction 26249: 17.944% -Rate for instruction 26250: 17.9445% -Rate for instruction 26251: 17.9443% -Rate for instruction 26252: 17.9449% -Rate for instruction 26253: 17.9447% -Rate for instruction 26254: 17.9453% -Rate for instruction 26255: 17.9453% -Rate for instruction 26256: 17.9451% -Rate for instruction 26257: 17.9454% -Rate for instruction 26258: 17.9455% -Rate for instruction 26259: 17.9458% -Rate for instruction 26260: 17.9465% -Rate for instruction 26261: 17.9462% -Rate for instruction 26262: 17.9458% -Rate for instruction 26263: 17.9456% -Rate for instruction 26264: 17.9453% -Rate for instruction 26265: 17.9451% -Rate for instruction 26266: 17.9459% -Rate for instruction 26267: 17.9455% -Rate for instruction 26268: 17.945% -Rate for instruction 26269: 17.9452% -Rate for instruction 26270: 17.9449% -Rate for instruction 26271: 17.9445% -Rate for instruction 26272: 17.9443% -Rate for instruction 26273: 17.9446% -Rate for instruction 26274: 17.9453% -Rate for instruction 26275: 17.9454% -Rate for instruction 26276: 17.9451% -Rate for instruction 26277: 17.9451% -Rate for instruction 26278: 17.9454% -Rate for instruction 26279: 17.9458% -Rate for instruction 26280: 17.946% -Rate for instruction 26281: 17.9463% -Rate for instruction 26282: 17.9462% -Rate for instruction 26283: 17.9463% -Rate for instruction 26284: 17.946% -Rate for instruction 26285: 17.9459% -Rate for instruction 26286: 17.9455% -Rate for instruction 26287: 17.945% -Rate for instruction 26288: 17.9446% -Rate for instruction 26289: 17.9453% -Rate for instruction 26290: 17.9456% -Rate for instruction 26291: 17.9458% -Rate for instruction 26292: 17.9466% -Rate for instruction 26293: 17.9474% -Rate for instruction 26294: 17.9474% -Rate for instruction 26295: 17.9469% -Rate for instruction 26296: 17.9471% -Rate for instruction 26297: 17.947% -Rate for instruction 26298: 17.948% -Rate for instruction 26299: 17.9488% -Rate for instruction 26300: 17.9486% -Rate for instruction 26301: 17.948% -Rate for instruction 26302: 17.9478% -Rate for instruction 26303: 17.9483% -Rate for instruction 26304: 17.948% -Rate for instruction 26305: 17.9476% -Rate for instruction 26306: 17.9475% -Rate for instruction 26307: 17.9482% -Rate for instruction 26308: 17.9478% -Rate for instruction 26309: 17.948% -Rate for instruction 26310: 17.9476% -Rate for instruction 26311: 17.9481% -Rate for instruction 26312: 17.9487% -Rate for instruction 26313: 17.9489% -Rate for instruction 26314: 17.9484% -Rate for instruction 26315: 17.9486% -Rate for instruction 26316: 17.948% -Rate for instruction 26317: 17.9479% -Rate for instruction 26318: 17.9475% -Rate for instruction 26319: 17.9475% -Rate for instruction 26320: 17.9469% -Rate for instruction 26321: 17.9473% -Rate for instruction 26322: 17.947% -Rate for instruction 26323: 17.9469% -Rate for instruction 26324: 17.9474% -Rate for instruction 26325: 17.947% -Rate for instruction 26326: 17.9472% -Rate for instruction 26327: 17.9474% -Rate for instruction 26328: 17.9469% -Rate for instruction 26329: 17.9465% -Rate for instruction 26330: 17.9465% -Rate for instruction 26331: 17.947% -Rate for instruction 26332: 17.9478% -Rate for instruction 26333: 17.9483% -Rate for instruction 26334: 17.9491% -Rate for instruction 26335: 17.9497% -Rate for instruction 26336: 17.9499% -Rate for instruction 26337: 17.9504% -Rate for instruction 26338: 17.9506% -Rate for instruction 26339: 17.9503% -Rate for instruction 26340: 17.9498% -Rate for instruction 26341: 17.9494% -Rate for instruction 26342: 17.9489% -Rate for instruction 26343: 17.9485% -Rate for instruction 26344: 17.9482% -Rate for instruction 26345: 17.9481% -Rate for instruction 26346: 17.9479% -Rate for instruction 26347: 17.9475% -Rate for instruction 26348: 17.9473% -Rate for instruction 26349: 17.9469% -Rate for instruction 26350: 17.9476% -Rate for instruction 26351: 17.9471% -Rate for instruction 26352: 17.9482% -Rate for instruction 26353: 17.9476% -Rate for instruction 26354: 17.9474% -Rate for instruction 26355: 17.9479% -Rate for instruction 26356: 17.9478% -Rate for instruction 26357: 17.9476% -Rate for instruction 26358: 17.9475% -Rate for instruction 26359: 17.9479% -Rate for instruction 26360: 17.9481% -Rate for instruction 26361: 17.9482% -Rate for instruction 26362: 17.9482% -Rate for instruction 26363: 17.9481% -Rate for instruction 26364: 17.9488% -Rate for instruction 26365: 17.9484% -Rate for instruction 26366: 17.9478% -Rate for instruction 26367: 17.9475% -Rate for instruction 26368: 17.9469% -Rate for instruction 26369: 17.947% -Rate for instruction 26370: 17.9464% -Rate for instruction 26371: 17.946% -Rate for instruction 26372: 17.9455% -Rate for instruction 26373: 17.9457% -Rate for instruction 26374: 17.9452% -Rate for instruction 26375: 17.9446% -Rate for instruction 26376: 17.9442% -Rate for instruction 26377: 17.9437% -Rate for instruction 26378: 17.9433% -Rate for instruction 26379: 17.9434% -Rate for instruction 26380: 17.9436% -Rate for instruction 26381: 17.943% -Rate for instruction 26382: 17.9426% -Rate for instruction 26383: 17.9436% -Rate for instruction 26384: 17.9443% -Rate for instruction 26385: 17.9445% -Rate for instruction 26386: 17.9446% -Rate for instruction 26387: 17.9441% -Rate for instruction 26388: 17.9437% -Rate for instruction 26389: 17.9434% -Rate for instruction 26390: 17.9438% -Rate for instruction 26391: 17.944% -Rate for instruction 26392: 17.9436% -Rate for instruction 26393: 17.9435% -Rate for instruction 26394: 17.9432% -Rate for instruction 26395: 17.9433% -Rate for instruction 26396: 17.9436% -Rate for instruction 26397: 17.9437% -Rate for instruction 26398: 17.9439% -Rate for instruction 26399: 17.9442% -Rate for instruction 26400: 17.9437% -Rate for instruction 26401: 17.9436% -Rate for instruction 26402: 17.9438% -Rate for instruction 26403: 17.9435% -Rate for instruction 26404: 17.9436% -Rate for instruction 26405: 17.9435% -Rate for instruction 26406: 17.9431% -Rate for instruction 26407: 17.9431% -Rate for instruction 26408: 17.9429% -Rate for instruction 26409: 17.9424% -Rate for instruction 26410: 17.9426% -Rate for instruction 26411: 17.9432% -Rate for instruction 26412: 17.9431% -Rate for instruction 26413: 17.9428% -Rate for instruction 26414: 17.9423% -Rate for instruction 26415: 17.9419% -Rate for instruction 26416: 17.9415% -Rate for instruction 26417: 17.9425% -Rate for instruction 26418: 17.9431% -Rate for instruction 26419: 17.9436% -Rate for instruction 26420: 17.9439% -Rate for instruction 26421: 17.9438% -Rate for instruction 26422: 17.944% -Rate for instruction 26423: 17.9442% -Rate for instruction 26424: 17.9445% -Rate for instruction 26425: 17.9446% -Rate for instruction 26426: 17.9442% -Rate for instruction 26427: 17.9438% -Rate for instruction 26428: 17.9439% -Rate for instruction 26429: 17.9436% -Rate for instruction 26430: 17.9438% -Rate for instruction 26431: 17.9439% -Rate for instruction 26432: 17.9441% -Rate for instruction 26433: 17.9435% -Rate for instruction 26434: 17.9443% -Rate for instruction 26435: 17.9448% -Rate for instruction 26436: 17.9447% -Rate for instruction 26437: 17.9447% -Rate for instruction 26438: 17.9449% -Rate for instruction 26439: 17.9447% -Rate for instruction 26440: 17.9446% -Rate for instruction 26441: 17.9446% -Rate for instruction 26442: 17.9444% -Rate for instruction 26443: 17.9445% -Rate for instruction 26444: 17.9445% -Rate for instruction 26445: 17.9448% -Rate for instruction 26446: 17.9443% -Rate for instruction 26447: 17.9444% -Rate for instruction 26448: 17.9445% -Rate for instruction 26449: 17.9443% -Rate for instruction 26450: 17.9446% -Rate for instruction 26451: 17.9448% -Rate for instruction 26452: 17.9452% -Rate for instruction 26453: 17.9454% -Rate for instruction 26454: 17.9459% -Rate for instruction 26455: 17.9453% -Rate for instruction 26456: 17.9449% -Rate for instruction 26457: 17.9446% -Rate for instruction 26458: 17.944% -Rate for instruction 26459: 17.9439% -Rate for instruction 26460: 17.9435% -Rate for instruction 26461: 17.9433% -Rate for instruction 26462: 17.9432% -Rate for instruction 26463: 17.9428% -Rate for instruction 26464: 17.9426% -Rate for instruction 26465: 17.9425% -Rate for instruction 26466: 17.9421% -Rate for instruction 26467: 17.9423% -Rate for instruction 26468: 17.942% -Rate for instruction 26469: 17.9432% -Rate for instruction 26470: 17.9434% -Rate for instruction 26471: 17.9439% -Rate for instruction 26472: 17.9443% -Rate for instruction 26473: 17.9439% -Rate for instruction 26474: 17.9438% -Rate for instruction 26475: 17.9434% -Rate for instruction 26476: 17.9434% -Rate for instruction 26477: 17.9438% -Rate for instruction 26478: 17.9434% -Rate for instruction 26479: 17.9436% -Rate for instruction 26480: 17.9444% -Rate for instruction 26481: 17.9451% -Rate for instruction 26482: 17.9456% -Rate for instruction 26483: 17.9465% -Rate for instruction 26484: 17.946% -Rate for instruction 26485: 17.9456% -Rate for instruction 26486: 17.9461% -Rate for instruction 26487: 17.9464% -Rate for instruction 26488: 17.9471% -Rate for instruction 26489: 17.9473% -Rate for instruction 26490: 17.9467% -Rate for instruction 26491: 17.9469% -Rate for instruction 26492: 17.9473% -Rate for instruction 26493: 17.9467% -Rate for instruction 26494: 17.9466% -Rate for instruction 26495: 17.9461% -Rate for instruction 26496: 17.9457% -Rate for instruction 26497: 17.9452% -Rate for instruction 26498: 17.9449% -Rate for instruction 26499: 17.9444% -Rate for instruction 26500: 17.9446% -Rate for instruction 26501: 17.9442% -Rate for instruction 26502: 17.9437% -Rate for instruction 26503: 17.9437% -Rate for instruction 26504: 17.9433% -Rate for instruction 26505: 17.9428% -Rate for instruction 26506: 17.943% -Rate for instruction 26507: 17.9425% -Rate for instruction 26508: 17.9421% -Rate for instruction 26509: 17.9421% -Rate for instruction 26510: 17.9416% -Rate for instruction 26511: 17.9415% -Rate for instruction 26512: 17.9413% -Rate for instruction 26513: 17.941% -Rate for instruction 26514: 17.9408% -Rate for instruction 26515: 17.9405% -Rate for instruction 26516: 17.9412% -Rate for instruction 26517: 17.9414% -Rate for instruction 26518: 17.941% -Rate for instruction 26519: 17.9409% -Rate for instruction 26520: 17.9406% -Rate for instruction 26521: 17.9407% -Rate for instruction 26522: 17.9403% -Rate for instruction 26523: 17.9404% -Rate for instruction 26524: 17.9405% -Rate for instruction 26525: 17.9403% -Rate for instruction 26526: 17.9402% -Rate for instruction 26527: 17.9403% -Rate for instruction 26528: 17.9397% -Rate for instruction 26529: 17.9396% -Rate for instruction 26530: 17.9397% -Rate for instruction 26531: 17.9397% -Rate for instruction 26532: 17.9399% -Rate for instruction 26533: 17.94% -Rate for instruction 26534: 17.9405% -Rate for instruction 26535: 17.9405% -Rate for instruction 26536: 17.9404% -Rate for instruction 26537: 17.9402% -Rate for instruction 26538: 17.9396% -Rate for instruction 26539: 17.9391% -Rate for instruction 26540: 17.9387% -Rate for instruction 26541: 17.9391% -Rate for instruction 26542: 17.9387% -Rate for instruction 26543: 17.9381% -Rate for instruction 26544: 17.9378% -Rate for instruction 26545: 17.9374% -Rate for instruction 26546: 17.9376% -Rate for instruction 26547: 17.937% -Rate for instruction 26548: 17.9372% -Rate for instruction 26549: 17.937% -Rate for instruction 26550: 17.9372% -Rate for instruction 26551: 17.9368% -Rate for instruction 26552: 17.9367% -Rate for instruction 26553: 17.9363% -Rate for instruction 26554: 17.9362% -Rate for instruction 26555: 17.9358% -Rate for instruction 26556: 17.9362% -Rate for instruction 26557: 17.9362% -Rate for instruction 26558: 17.936% -Rate for instruction 26559: 17.9356% -Rate for instruction 26560: 17.9352% -Rate for instruction 26561: 17.9351% -Rate for instruction 26562: 17.9352% -Rate for instruction 26563: 17.9352% -Rate for instruction 26564: 17.9348% -Rate for instruction 26565: 17.935% -Rate for instruction 26566: 17.9348% -Rate for instruction 26567: 17.9347% -Rate for instruction 26568: 17.9347% -Rate for instruction 26569: 17.9348% -Rate for instruction 26570: 17.9348% -Rate for instruction 26571: 17.935% -Rate for instruction 26572: 17.9348% -Rate for instruction 26573: 17.936% -Rate for instruction 26574: 17.9357% -Rate for instruction 26575: 17.9368% -Rate for instruction 26576: 17.9369% -Rate for instruction 26577: 17.9368% -Rate for instruction 26578: 17.9364% -Rate for instruction 26579: 17.9364% -Rate for instruction 26580: 17.9362% -Rate for instruction 26581: 17.9361% -Rate for instruction 26582: 17.9356% -Rate for instruction 26583: 17.9356% -Rate for instruction 26584: 17.9352% -Rate for instruction 26585: 17.9351% -Rate for instruction 26586: 17.9355% -Rate for instruction 26587: 17.9351% -Rate for instruction 26588: 17.9353% -Rate for instruction 26589: 17.9347% -Rate for instruction 26590: 17.9354% -Rate for instruction 26591: 17.9357% -Rate for instruction 26592: 17.9352% -Rate for instruction 26593: 17.9348% -Rate for instruction 26594: 17.9344% -Rate for instruction 26595: 17.934% -Rate for instruction 26596: 17.9345% -Rate for instruction 26597: 17.9341% -Rate for instruction 26598: 17.9336% -Rate for instruction 26599: 17.9338% -Rate for instruction 26600: 17.9338% -Rate for instruction 26601: 17.9345% -Rate for instruction 26602: 17.9349% -Rate for instruction 26603: 17.9356% -Rate for instruction 26604: 17.9359% -Rate for instruction 26605: 17.9354% -Rate for instruction 26606: 17.9356% -Rate for instruction 26607: 17.9358% -Rate for instruction 26608: 17.9359% -Rate for instruction 26609: 17.9363% -Rate for instruction 26610: 17.9359% -Rate for instruction 26611: 17.9368% -Rate for instruction 26612: 17.9366% -Rate for instruction 26613: 17.9365% -Rate for instruction 26614: 17.9368% -Rate for instruction 26615: 17.9373% -Rate for instruction 26616: 17.9368% -Rate for instruction 26617: 17.9364% -Rate for instruction 26618: 17.9364% -Rate for instruction 26619: 17.9369% -Rate for instruction 26620: 17.9364% -Rate for instruction 26621: 17.9373% -Rate for instruction 26622: 17.9376% -Rate for instruction 26623: 17.9381% -Rate for instruction 26624: 17.9398% -Rate for instruction 26625: 17.9402% -Rate for instruction 26626: 17.9412% -Rate for instruction 26627: 17.9428% -Rate for instruction 26628: 17.9423% -Rate for instruction 26629: 17.9423% -Rate for instruction 26630: 17.9438% -Rate for instruction 26631: 17.945% -Rate for instruction 26632: 17.9448% -Rate for instruction 26633: 17.9463% -Rate for instruction 26634: 17.9457% -Rate for instruction 26635: 17.9472% -Rate for instruction 26636: 17.9487% -Rate for instruction 26637: 17.9486% -Rate for instruction 26638: 17.9484% -Rate for instruction 26639: 17.9499% -Rate for instruction 26640: 17.9499% -Rate for instruction 26641: 17.9498% -Rate for instruction 26642: 17.9512% -Rate for instruction 26643: 17.9524% -Rate for instruction 26644: 17.952% -Rate for instruction 26645: 17.9523% -Rate for instruction 26646: 17.953% -Rate for instruction 26647: 17.9526% -Rate for instruction 26648: 17.9522% -Rate for instruction 26649: 17.9521% -Rate for instruction 26650: 17.9518% -Rate for instruction 26651: 17.9516% -Rate for instruction 26652: 17.9519% -Rate for instruction 26653: 17.9521% -Rate for instruction 26654: 17.9526% -Rate for instruction 26655: 17.9532% -Rate for instruction 26656: 17.953% -Rate for instruction 26657: 17.9536% -Rate for instruction 26658: 17.9541% -Rate for instruction 26659: 17.955% -Rate for instruction 26660: 17.9548% -Rate for instruction 26661: 17.9557% -Rate for instruction 26662: 17.9552% -Rate for instruction 26663: 17.9546% -Rate for instruction 26664: 17.9542% -Rate for instruction 26665: 17.9537% -Rate for instruction 26666: 17.9533% -Rate for instruction 26667: 17.9528% -Rate for instruction 26668: 17.9536% -Rate for instruction 26669: 17.953% -Rate for instruction 26670: 17.9535% -Rate for instruction 26671: 17.953% -Rate for instruction 26672: 17.9526% -Rate for instruction 26673: 17.9538% -Rate for instruction 26674: 17.9533% -Rate for instruction 26675: 17.9545% -Rate for instruction 26676: 17.9558% -Rate for instruction 26677: 17.9554% -Rate for instruction 26678: 17.9549% -Rate for instruction 26679: 17.9544% -Rate for instruction 26680: 17.9539% -Rate for instruction 26681: 17.9538% -Rate for instruction 26682: 17.9537% -Rate for instruction 26683: 17.9533% -Rate for instruction 26684: 17.9528% -Rate for instruction 26685: 17.9541% -Rate for instruction 26686: 17.9537% -Rate for instruction 26687: 17.9533% -Rate for instruction 26688: 17.9528% -Rate for instruction 26689: 17.9524% -Rate for instruction 26690: 17.9519% -Rate for instruction 26691: 17.9534% -Rate for instruction 26692: 17.9528% -Rate for instruction 26693: 17.9525% -Rate for instruction 26694: 17.9521% -Rate for instruction 26695: 17.9521% -Rate for instruction 26696: 17.9517% -Rate for instruction 26697: 17.9529% -Rate for instruction 26698: 17.9527% -Rate for instruction 26699: 17.9526% -Rate for instruction 26700: 17.9535% -Rate for instruction 26701: 17.9534% -Rate for instruction 26702: 17.9546% -Rate for instruction 26703: 17.9547% -Rate for instruction 26704: 17.9543% -Rate for instruction 26705: 17.9556% -Rate for instruction 26706: 17.9551% -Rate for instruction 26707: 17.9564% -Rate for instruction 26708: 17.9578% -Rate for instruction 26709: 17.9573% -Rate for instruction 26710: 17.9567% -Rate for instruction 26711: 17.9565% -Rate for instruction 26712: 17.9565% -Rate for instruction 26713: 17.9562% -Rate for instruction 26714: 17.9572% -Rate for instruction 26715: 17.9567% -Rate for instruction 26716: 17.9577% -Rate for instruction 26717: 17.9572% -Rate for instruction 26718: 17.9584% -Rate for instruction 26719: 17.9598% -Rate for instruction 26720: 17.9592% -Rate for instruction 26721: 17.9603% -Rate for instruction 26722: 17.96% -Rate for instruction 26723: 17.9599% -Rate for instruction 26724: 17.9613% -Rate for instruction 26725: 17.9615% -Rate for instruction 26726: 17.9609% -Rate for instruction 26727: 17.9609% -Rate for instruction 26728: 17.9623% -Rate for instruction 26729: 17.9634% -Rate for instruction 26730: 17.963% -Rate for instruction 26731: 17.9641% -Rate for instruction 26732: 17.965% -Rate for instruction 26733: 17.9659% -Rate for instruction 26734: 17.9658% -Rate for instruction 26735: 17.9655% -Rate for instruction 26736: 17.9652% -Rate for instruction 26737: 17.9652% -Rate for instruction 26738: 17.965% -Rate for instruction 26739: 17.9647% -Rate for instruction 26740: 17.9658% -Rate for instruction 26741: 17.967% -Rate for instruction 26742: 17.9666% -Rate for instruction 26743: 17.9661% -Rate for instruction 26744: 17.966% -Rate for instruction 26745: 17.9656% -Rate for instruction 26746: 17.9669% -Rate for instruction 26747: 17.9664% -Rate for instruction 26748: 17.9677% -Rate for instruction 26749: 17.9688% -Rate for instruction 26750: 17.9686% -Rate for instruction 26751: 17.969% -Rate for instruction 26752: 17.9687% -Rate for instruction 26753: 17.9691% -Rate for instruction 26754: 17.9687% -Rate for instruction 26755: 17.9685% -Rate for instruction 26756: 17.968% -Rate for instruction 26757: 17.9676% -Rate for instruction 26758: 17.9674% -Rate for instruction 26759: 17.9684% -Rate for instruction 26760: 17.9699% -Rate for instruction 26761: 17.9709% -Rate for instruction 26762: 17.9711% -Rate for instruction 26763: 17.9709% -Rate for instruction 26764: 17.9707% -Rate for instruction 26765: 17.9716% -Rate for instruction 26766: 17.9713% -Rate for instruction 26767: 17.9721% -Rate for instruction 26768: 17.9727% -Rate for instruction 26769: 17.9722% -Rate for instruction 26770: 17.9719% -Rate for instruction 26771: 17.972% -Rate for instruction 26772: 17.9733% -Rate for instruction 26773: 17.9732% -Rate for instruction 26774: 17.9746% -Rate for instruction 26775: 17.9742% -Rate for instruction 26776: 17.9737% -Rate for instruction 26777: 17.974% -Rate for instruction 26778: 17.9752% -Rate for instruction 26779: 17.9748% -Rate for instruction 26780: 17.9753% -Rate for instruction 26781: 17.9759% -Rate for instruction 26782: 17.9758% -Rate for instruction 26783: 17.9759% -Rate for instruction 26784: 17.9756% -Rate for instruction 26785: 17.9754% -Rate for instruction 26786: 17.9771% -Rate for instruction 26787: 17.9786% -Rate for instruction 26788: 17.9804% -Rate for instruction 26789: 17.9819% -Rate for instruction 26790: 17.9834% -Rate for instruction 26791: 17.9847% -Rate for instruction 26792: 17.9842% -Rate for instruction 26793: 17.9858% -Rate for instruction 26794: 17.9854% -Rate for instruction 26795: 17.9869% -Rate for instruction 26796: 17.9884% -Rate for instruction 26797: 17.9899% -Rate for instruction 26798: 17.9901% -Rate for instruction 26799: 17.9902% -Rate for instruction 26800: 17.9897% -Rate for instruction 26801: 17.9893% -Rate for instruction 26802: 17.9908% -Rate for instruction 26803: 17.9904% -Rate for instruction 26804: 17.9906% -Rate for instruction 26805: 17.9901% -Rate for instruction 26806: 17.9903% -Rate for instruction 26807: 17.9899% -Rate for instruction 26808: 17.9899% -Rate for instruction 26809: 17.9894% -Rate for instruction 26810: 17.9899% -Rate for instruction 26811: 17.9905% -Rate for instruction 26812: 17.9916% -Rate for instruction 26813: 17.9922% -Rate for instruction 26814: 17.9932% -Rate for instruction 26815: 17.9941% -Rate for instruction 26816: 17.9936% -Rate for instruction 26817: 17.9935% -Rate for instruction 26818: 17.993% -Rate for instruction 26819: 17.9926% -Rate for instruction 26820: 17.9922% -Rate for instruction 26821: 17.9917% -Rate for instruction 26822: 17.9913% -Rate for instruction 26823: 17.9908% -Rate for instruction 26824: 17.9907% -Rate for instruction 26825: 17.9906% -Rate for instruction 26826: 17.9902% -Rate for instruction 26827: 17.9918% -Rate for instruction 26828: 17.9916% -Rate for instruction 26829: 17.9913% -Rate for instruction 26830: 17.991% -Rate for instruction 26831: 17.9904% -Rate for instruction 26832: 17.9908% -Rate for instruction 26833: 17.9912% -Rate for instruction 26834: 17.9917% -Rate for instruction 26835: 17.9919% -Rate for instruction 26836: 17.9925% -Rate for instruction 26837: 17.993% -Rate for instruction 26838: 17.9926% -Rate for instruction 26839: 17.9924% -Rate for instruction 26840: 17.9923% -Rate for instruction 26841: 17.9926% -Rate for instruction 26842: 17.9935% -Rate for instruction 26843: 17.9936% -Rate for instruction 26844: 17.9939% -Rate for instruction 26845: 17.9941% -Rate for instruction 26846: 17.994% -Rate for instruction 26847: 17.9936% -Rate for instruction 26848: 17.9947% -Rate for instruction 26849: 17.9941% -Rate for instruction 26850: 17.9953% -Rate for instruction 26851: 17.9954% -Rate for instruction 26852: 17.9951% -Rate for instruction 26853: 17.9953% -Rate for instruction 26854: 17.9948% -Rate for instruction 26855: 17.9948% -Rate for instruction 26856: 17.9943% -Rate for instruction 26857: 17.9944% -Rate for instruction 26858: 17.9944% -Rate for instruction 26859: 17.9944% -Rate for instruction 26860: 17.9946% -Rate for instruction 26861: 17.9947% -Rate for instruction 26862: 17.9942% -Rate for instruction 26863: 17.9938% -Rate for instruction 26864: 17.9938% -Rate for instruction 26865: 17.9936% -Rate for instruction 26866: 17.993% -Rate for instruction 26867: 17.9941% -Rate for instruction 26868: 17.995% -Rate for instruction 26869: 17.995% -Rate for instruction 26870: 17.9947% -Rate for instruction 26871: 17.9947% -Rate for instruction 26872: 17.9949% -Rate for instruction 26873: 17.9948% -Rate for instruction 26874: 17.9951% -Rate for instruction 26875: 17.9952% -Rate for instruction 26876: 17.9954% -Rate for instruction 26877: 17.9954% -Rate for instruction 26878: 17.9956% -Rate for instruction 26879: 17.9955% -Rate for instruction 26880: 17.9961% -Rate for instruction 26881: 17.9967% -Rate for instruction 26882: 17.9968% -Rate for instruction 26883: 17.998% -Rate for instruction 26884: 17.9976% -Rate for instruction 26885: 17.9974% -Rate for instruction 26886: 17.9984% -Rate for instruction 26887: 17.9979% -Rate for instruction 26888: 17.9988% -Rate for instruction 26889: 17.9997% -Rate for instruction 26890: 17.9992% -Rate for instruction 26891: 17.9988% -Rate for instruction 26892: 17.9993% -Rate for instruction 26893: 18.0002% -Rate for instruction 26894: 18.0006% -Rate for instruction 26895: 18.001% -Rate for instruction 26896: 18.0016% -Rate for instruction 26897: 18.0026% -Rate for instruction 26898: 18.0024% -Rate for instruction 26899: 18.0024% -Rate for instruction 26900: 18.0025% -Rate for instruction 26901: 18.0027% -Rate for instruction 26902: 18.0041% -Rate for instruction 26903: 18.0055% -Rate for instruction 26904: 18.0059% -Rate for instruction 26905: 18.006% -Rate for instruction 26906: 18.0055% -Rate for instruction 26907: 18.0055% -Rate for instruction 26908: 18.0058% -Rate for instruction 26909: 18.006% -Rate for instruction 26910: 18.0056% -Rate for instruction 26911: 18.0061% -Rate for instruction 26912: 18.0066% -Rate for instruction 26913: 18.0065% -Rate for instruction 26914: 18.0067% -Rate for instruction 26915: 18.0062% -Rate for instruction 26916: 18.0064% -Rate for instruction 26917: 18.0063% -Rate for instruction 26918: 18.0063% -Rate for instruction 26919: 18.0062% -Rate for instruction 26920: 18.0061% -Rate for instruction 26921: 18.0063% -Rate for instruction 26922: 18.0063% -Rate for instruction 26923: 18.0061% -Rate for instruction 26924: 18.0067% -Rate for instruction 26925: 18.0069% -Rate for instruction 26926: 18.0077% -Rate for instruction 26927: 18.0074% -Rate for instruction 26928: 18.0079% -Rate for instruction 26929: 18.0077% -Rate for instruction 26930: 18.008% -Rate for instruction 26931: 18.0076% -Rate for instruction 26932: 18.0076% -Rate for instruction 26933: 18.0073% -Rate for instruction 26934: 18.007% -Rate for instruction 26935: 18.0066% -Rate for instruction 26936: 18.0065% -Rate for instruction 26937: 18.0064% -Rate for instruction 26938: 18.0064% -Rate for instruction 26939: 18.0061% -Rate for instruction 26940: 18.006% -Rate for instruction 26941: 18.0058% -Rate for instruction 26942: 18.0055% -Rate for instruction 26943: 18.0053% -Rate for instruction 26944: 18.0049% -Rate for instruction 26945: 18.005% -Rate for instruction 26946: 18.0049% -Rate for instruction 26947: 18.0049% -Rate for instruction 26948: 18.0047% -Rate for instruction 26949: 18.0046% -Rate for instruction 26950: 18.0042% -Rate for instruction 26951: 18.0042% -Rate for instruction 26952: 18.0038% -Rate for instruction 26953: 18.0036% -Rate for instruction 26954: 18.0032% -Rate for instruction 26955: 18.004% -Rate for instruction 26956: 18.005% -Rate for instruction 26957: 18.0058% -Rate for instruction 26958: 18.0067% -Rate for instruction 26959: 18.0077% -Rate for instruction 26960: 18.0075% -Rate for instruction 26961: 18.0083% -Rate for instruction 26962: 18.0087% -Rate for instruction 26963: 18.0086% -Rate for instruction 26964: 18.0094% -Rate for instruction 26965: 18.009% -Rate for instruction 26966: 18.0085% -Rate for instruction 26967: 18.0081% -Rate for instruction 26968: 18.008% -Rate for instruction 26969: 18.0075% -Rate for instruction 26970: 18.0071% -Rate for instruction 26971: 18.008% -Rate for instruction 26972: 18.0075% -Rate for instruction 26973: 18.0078% -Rate for instruction 26974: 18.0073% -Rate for instruction 26975: 18.007% -Rate for instruction 26976: 18.0065% -Rate for instruction 26977: 18.0063% -Rate for instruction 26978: 18.0062% -Rate for instruction 26979: 18.0058% -Rate for instruction 26980: 18.0057% -Rate for instruction 26981: 18.0056% -Rate for instruction 26982: 18.0051% -Rate for instruction 26983: 18.0045% -Rate for instruction 26984: 18.0046% -Rate for instruction 26985: 18.0041% -Rate for instruction 26986: 18.0047% -Rate for instruction 26987: 18.0057% -Rate for instruction 26988: 18.0055% -Rate for instruction 26989: 18.0051% -Rate for instruction 26990: 18.0051% -Rate for instruction 26991: 18.0048% -Rate for instruction 26992: 18.0047% -Rate for instruction 26993: 18.0044% -Rate for instruction 26994: 18.0043% -Rate for instruction 26995: 18.0047% -Rate for instruction 26996: 18.0046% -Rate for instruction 26997: 18.0045% -Rate for instruction 26998: 18.0041% -Rate for instruction 26999: 18.0041% -Rate for instruction 27000: 18.004% -Rate for instruction 27001: 18.0038% -Rate for instruction 27002: 18.0038% -Rate for instruction 27003: 18.0036% -Rate for instruction 27004: 18.0031% -Rate for instruction 27005: 18.0037% -Rate for instruction 27006: 18.0042% -Rate for instruction 27007: 18.0039% -Rate for instruction 27008: 18.004% -Rate for instruction 27009: 18.0037% -Rate for instruction 27010: 18.0036% -Rate for instruction 27011: 18.0038% -Rate for instruction 27012: 18.0042% -Rate for instruction 27013: 18.0041% -Rate for instruction 27014: 18.0044% -Rate for instruction 27015: 18.0046% -Rate for instruction 27016: 18.0046% -Rate for instruction 27017: 18.0048% -Rate for instruction 27018: 18.0049% -Rate for instruction 27019: 18.0045% -Rate for instruction 27020: 18.0047% -Rate for instruction 27021: 18.005% -Rate for instruction 27022: 18.0049% -Rate for instruction 27023: 18.0049% -Rate for instruction 27024: 18.0048% -Rate for instruction 27025: 18.0045% -Rate for instruction 27026: 18.0046% -Rate for instruction 27027: 18.0051% -Rate for instruction 27028: 18.0046% -Rate for instruction 27029: 18.0051% -Rate for instruction 27030: 18.0055% -Rate for instruction 27031: 18.0056% -Rate for instruction 27032: 18.0056% -Rate for instruction 27033: 18.0054% -Rate for instruction 27034: 18.0056% -Rate for instruction 27035: 18.0059% -Rate for instruction 27036: 18.0065% -Rate for instruction 27037: 18.0061% -Rate for instruction 27038: 18.006% -Rate for instruction 27039: 18.0057% -Rate for instruction 27040: 18.0064% -Rate for instruction 27041: 18.0065% -Rate for instruction 27042: 18.0064% -Rate for instruction 27043: 18.0066% -Rate for instruction 27044: 18.0067% -Rate for instruction 27045: 18.0065% -Rate for instruction 27046: 18.0067% -Rate for instruction 27047: 18.0062% -Rate for instruction 27048: 18.0062% -Rate for instruction 27049: 18.0067% -Rate for instruction 27050: 18.0063% -Rate for instruction 27051: 18.0059% -Rate for instruction 27052: 18.0058% -Rate for instruction 27053: 18.0059% -Rate for instruction 27054: 18.0059% -Rate for instruction 27055: 18.0055% -Rate for instruction 27056: 18.0056% -Rate for instruction 27057: 18.0059% -Rate for instruction 27058: 18.006% -Rate for instruction 27059: 18.0056% -Rate for instruction 27060: 18.0063% -Rate for instruction 27061: 18.0067% -Rate for instruction 27062: 18.007% -Rate for instruction 27063: 18.0065% -Rate for instruction 27064: 18.0067% -Rate for instruction 27065: 18.0066% -Rate for instruction 27066: 18.0069% -Rate for instruction 27067: 18.0068% -Rate for instruction 27068: 18.0065% -Rate for instruction 27069: 18.0069% -Rate for instruction 27070: 18.0069% -Rate for instruction 27071: 18.0067% -Rate for instruction 27072: 18.0067% -Rate for instruction 27073: 18.0066% -Rate for instruction 27074: 18.0068% -Rate for instruction 27075: 18.0063% -Rate for instruction 27076: 18.0061% -Rate for instruction 27077: 18.0061% -Rate for instruction 27078: 18.006% -Rate for instruction 27079: 18.0062% -Rate for instruction 27080: 18.0065% -Rate for instruction 27081: 18.0061% -Rate for instruction 27082: 18.0065% -Rate for instruction 27083: 18.0061% -Rate for instruction 27084: 18.0061% -Rate for instruction 27085: 18.0062% -Rate for instruction 27086: 18.0061% -Rate for instruction 27087: 18.0057% -Rate for instruction 27088: 18.0056% -Rate for instruction 27089: 18.0065% -Rate for instruction 27090: 18.0075% -Rate for instruction 27091: 18.0076% -Rate for instruction 27092: 18.0075% -Rate for instruction 27093: 18.0071% -Rate for instruction 27094: 18.008% -Rate for instruction 27095: 18.0083% -Rate for instruction 27096: 18.0085% -Rate for instruction 27097: 18.008% -Rate for instruction 27098: 18.0089% -Rate for instruction 27099: 18.0084% -Rate for instruction 27100: 18.0093% -Rate for instruction 27101: 18.009% -Rate for instruction 27102: 18.0088% -Rate for instruction 27103: 18.0087% -Rate for instruction 27104: 18.0087% -Rate for instruction 27105: 18.0088% -Rate for instruction 27106: 18.0091% -Rate for instruction 27107: 18.0086% -Rate for instruction 27108: 18.0084% -Rate for instruction 27109: 18.0078% -Rate for instruction 27110: 18.0073% -Rate for instruction 27111: 18.0076% -Rate for instruction 27112: 18.0077% -Rate for instruction 27113: 18.0082% -Rate for instruction 27114: 18.0081% -Rate for instruction 27115: 18.0078% -Rate for instruction 27116: 18.0079% -Rate for instruction 27117: 18.0075% -Rate for instruction 27118: 18.0071% -Rate for instruction 27119: 18.0067% -Rate for instruction 27120: 18.0068% -Rate for instruction 27121: 18.0065% -Rate for instruction 27122: 18.0066% -Rate for instruction 27123: 18.0061% -Rate for instruction 27124: 18.0071% -Rate for instruction 27125: 18.0071% -Rate for instruction 27126: 18.0073% -Rate for instruction 27127: 18.0078% -Rate for instruction 27128: 18.0081% -Rate for instruction 27129: 18.0084% -Rate for instruction 27130: 18.0081% -Rate for instruction 27131: 18.0075% -Rate for instruction 27132: 18.0072% -Rate for instruction 27133: 18.0069% -Rate for instruction 27134: 18.0064% -Rate for instruction 27135: 18.006% -Rate for instruction 27136: 18.0072% -Rate for instruction 27137: 18.007% -Rate for instruction 27138: 18.007% -Rate for instruction 27139: 18.0069% -Rate for instruction 27140: 18.007% -Rate for instruction 27141: 18.0064% -Rate for instruction 27142: 18.0061% -Rate for instruction 27143: 18.0057% -Rate for instruction 27144: 18.0054% -Rate for instruction 27145: 18.0053% -Rate for instruction 27146: 18.0048% -Rate for instruction 27147: 18.0049% -Rate for instruction 27148: 18.0048% -Rate for instruction 27149: 18.005% -Rate for instruction 27150: 18.0047% -Rate for instruction 27151: 18.0042% -Rate for instruction 27152: 18.004% -Rate for instruction 27153: 18.0037% -Rate for instruction 27154: 18.0036% -Rate for instruction 27155: 18.0035% -Rate for instruction 27156: 18.0036% -Rate for instruction 27157: 18.0039% -Rate for instruction 27158: 18.0034% -Rate for instruction 27159: 18.0037% -Rate for instruction 27160: 18.0038% -Rate for instruction 27161: 18.0037% -Rate for instruction 27162: 18.0034% -Rate for instruction 27163: 18.003% -Rate for instruction 27164: 18.0027% -Rate for instruction 27165: 18.0024% -Rate for instruction 27166: 18.0028% -Rate for instruction 27167: 18.0025% -Rate for instruction 27168: 18.002% -Rate for instruction 27169: 18.0025% -Rate for instruction 27170: 18.0026% -Rate for instruction 27171: 18.0028% -Rate for instruction 27172: 18.0034% -Rate for instruction 27173: 18.0039% -Rate for instruction 27174: 18.0038% -Rate for instruction 27175: 18.0036% -Rate for instruction 27176: 18.0036% -Rate for instruction 27177: 18.0031% -Rate for instruction 27178: 18.0027% -Rate for instruction 27179: 18.0029% -Rate for instruction 27180: 18.0027% -Rate for instruction 27181: 18.0024% -Rate for instruction 27182: 18.0021% -Rate for instruction 27183: 18.0031% -Rate for instruction 27184: 18.0043% -Rate for instruction 27185: 18.0045% -Rate for instruction 27186: 18.0046% -Rate for instruction 27187: 18.0051% -Rate for instruction 27188: 18.0054% -Rate for instruction 27189: 18.0055% -Rate for instruction 27190: 18.0055% -Rate for instruction 27191: 18.0054% -Rate for instruction 27192: 18.006% -Rate for instruction 27193: 18.0067% -Rate for instruction 27194: 18.0063% -Rate for instruction 27195: 18.0065% -Rate for instruction 27196: 18.0062% -Rate for instruction 27197: 18.0066% -Rate for instruction 27198: 18.0067% -Rate for instruction 27199: 18.0069% -Rate for instruction 27200: 18.0075% -Rate for instruction 27201: 18.0076% -Rate for instruction 27202: 18.0081% -Rate for instruction 27203: 18.0088% -Rate for instruction 27204: 18.0093% -Rate for instruction 27205: 18.0093% -Rate for instruction 27206: 18.0095% -Rate for instruction 27207: 18.0091% -Rate for instruction 27208: 18.0097% -Rate for instruction 27209: 18.0101% -Rate for instruction 27210: 18.0097% -Rate for instruction 27211: 18.0103% -Rate for instruction 27212: 18.0108% -Rate for instruction 27213: 18.0104% -Rate for instruction 27214: 18.0104% -Rate for instruction 27215: 18.0101% -Rate for instruction 27216: 18.0105% -Rate for instruction 27217: 18.0108% -Rate for instruction 27218: 18.0108% -Rate for instruction 27219: 18.0108% -Rate for instruction 27220: 18.0106% -Rate for instruction 27221: 18.0105% -Rate for instruction 27222: 18.0105% -Rate for instruction 27223: 18.0103% -Rate for instruction 27224: 18.0102% -Rate for instruction 27225: 18.0102% -Rate for instruction 27226: 18.0097% -Rate for instruction 27227: 18.0097% -Rate for instruction 27228: 18.0101% -Rate for instruction 27229: 18.0105% -Rate for instruction 27230: 18.0104% -Rate for instruction 27231: 18.0106% -Rate for instruction 27232: 18.0104% -Rate for instruction 27233: 18.0104% -Rate for instruction 27234: 18.0106% -Rate for instruction 27235: 18.0107% -Rate for instruction 27236: 18.0109% -Rate for instruction 27237: 18.0106% -Rate for instruction 27238: 18.0104% -Rate for instruction 27239: 18.0101% -Rate for instruction 27240: 18.0105% -Rate for instruction 27241: 18.0107% -Rate for instruction 27242: 18.0108% -Rate for instruction 27243: 18.0106% -Rate for instruction 27244: 18.0106% -Rate for instruction 27245: 18.0101% -Rate for instruction 27246: 18.01% -Rate for instruction 27247: 18.0098% -Rate for instruction 27248: 18.0101% -Rate for instruction 27249: 18.0103% -Rate for instruction 27250: 18.0103% -Rate for instruction 27251: 18.0098% -Rate for instruction 27252: 18.0094% -Rate for instruction 27253: 18.0089% -Rate for instruction 27254: 18.0086% -Rate for instruction 27255: 18.0089% -Rate for instruction 27256: 18.0091% -Rate for instruction 27257: 18.0085% -Rate for instruction 27258: 18.0083% -Rate for instruction 27259: 18.0084% -Rate for instruction 27260: 18.0085% -Rate for instruction 27261: 18.009% -Rate for instruction 27262: 18.0091% -Rate for instruction 27263: 18.0087% -Rate for instruction 27264: 18.0091% -Rate for instruction 27265: 18.0088% -Rate for instruction 27266: 18.0092% -Rate for instruction 27267: 18.009% -Rate for instruction 27268: 18.0085% -Rate for instruction 27269: 18.0082% -Rate for instruction 27270: 18.0084% -Rate for instruction 27271: 18.0082% -Rate for instruction 27272: 18.0084% -Rate for instruction 27273: 18.0079% -Rate for instruction 27274: 18.0086% -Rate for instruction 27275: 18.0081% -Rate for instruction 27276: 18.0087% -Rate for instruction 27277: 18.0086% -Rate for instruction 27278: 18.0092% -Rate for instruction 27279: 18.0098% -Rate for instruction 27280: 18.0097% -Rate for instruction 27281: 18.0095% -Rate for instruction 27282: 18.009% -Rate for instruction 27283: 18.0094% -Rate for instruction 27284: 18.01% -Rate for instruction 27285: 18.0104% -Rate for instruction 27286: 18.0108% -Rate for instruction 27287: 18.0106% -Rate for instruction 27288: 18.0115% -Rate for instruction 27289: 18.0114% -Rate for instruction 27290: 18.0121% -Rate for instruction 27291: 18.0119% -Rate for instruction 27292: 18.0119% -Rate for instruction 27293: 18.0116% -Rate for instruction 27294: 18.0116% -Rate for instruction 27295: 18.0115% -Rate for instruction 27296: 18.0114% -Rate for instruction 27297: 18.0115% -Rate for instruction 27298: 18.0111% -Rate for instruction 27299: 18.0108% -Rate for instruction 27300: 18.0112% -Rate for instruction 27301: 18.0111% -Rate for instruction 27302: 18.0108% -Rate for instruction 27303: 18.0105% -Rate for instruction 27304: 18.0102% -Rate for instruction 27305: 18.0101% -Rate for instruction 27306: 18.0107% -Rate for instruction 27307: 18.0113% -Rate for instruction 27308: 18.0111% -Rate for instruction 27309: 18.0113% -Rate for instruction 27310: 18.0115% -Rate for instruction 27311: 18.0119% -Rate for instruction 27312: 18.0124% -Rate for instruction 27313: 18.0122% -Rate for instruction 27314: 18.0131% -Rate for instruction 27315: 18.0133% -Rate for instruction 27316: 18.0134% -Rate for instruction 27317: 18.0129% -Rate for instruction 27318: 18.0125% -Rate for instruction 27319: 18.0124% -Rate for instruction 27320: 18.0119% -Rate for instruction 27321: 18.0115% -Rate for instruction 27322: 18.0115% -Rate for instruction 27323: 18.0112% -Rate for instruction 27324: 18.0108% -Rate for instruction 27325: 18.0106% -Rate for instruction 27326: 18.0106% -Rate for instruction 27327: 18.011% -Rate for instruction 27328: 18.0105% -Rate for instruction 27329: 18.0105% -Rate for instruction 27330: 18.0103% -Rate for instruction 27331: 18.01% -Rate for instruction 27332: 18.0104% -Rate for instruction 27333: 18.0103% -Rate for instruction 27334: 18.0097% -Rate for instruction 27335: 18.0092% -Rate for instruction 27336: 18.0097% -Rate for instruction 27337: 18.0093% -Rate for instruction 27338: 18.0092% -Rate for instruction 27339: 18.0095% -Rate for instruction 27340: 18.0092% -Rate for instruction 27341: 18.0091% -Rate for instruction 27342: 18.0088% -Rate for instruction 27343: 18.0093% -Rate for instruction 27344: 18.0092% -Rate for instruction 27345: 18.0098% -Rate for instruction 27346: 18.0101% -Rate for instruction 27347: 18.0096% -Rate for instruction 27348: 18.0104% -Rate for instruction 27349: 18.0103% -Rate for instruction 27350: 18.0097% -Rate for instruction 27351: 18.0101% -Rate for instruction 27352: 18.0097% -Rate for instruction 27353: 18.0096% -Rate for instruction 27354: 18.0091% -Rate for instruction 27355: 18.0087% -Rate for instruction 27356: 18.009% -Rate for instruction 27357: 18.0095% -Rate for instruction 27358: 18.0101% -Rate for instruction 27359: 18.0106% -Rate for instruction 27360: 18.011% -Rate for instruction 27361: 18.0107% -Rate for instruction 27362: 18.011% -Rate for instruction 27363: 18.0107% -Rate for instruction 27364: 18.0109% -Rate for instruction 27365: 18.0115% -Rate for instruction 27366: 18.0119% -Rate for instruction 27367: 18.0123% -Rate for instruction 27368: 18.0121% -Rate for instruction 27369: 18.0126% -Rate for instruction 27370: 18.013% -Rate for instruction 27371: 18.0131% -Rate for instruction 27372: 18.0133% -Rate for instruction 27373: 18.0137% -Rate for instruction 27374: 18.0142% -Rate for instruction 27375: 18.0141% -Rate for instruction 27376: 18.0139% -Rate for instruction 27377: 18.014% -Rate for instruction 27378: 18.0138% -Rate for instruction 27379: 18.0133% -Rate for instruction 27380: 18.0128% -Rate for instruction 27381: 18.0128% -Rate for instruction 27382: 18.0134% -Rate for instruction 27383: 18.0142% -Rate for instruction 27384: 18.0137% -Rate for instruction 27385: 18.0133% -Rate for instruction 27386: 18.0137% -Rate for instruction 27387: 18.0143% -Rate for instruction 27388: 18.015% -Rate for instruction 27389: 18.0151% -Rate for instruction 27390: 18.015% -Rate for instruction 27391: 18.0151% -Rate for instruction 27392: 18.0157% -Rate for instruction 27393: 18.0164% -Rate for instruction 27394: 18.0159% -Rate for instruction 27395: 18.0155% -Rate for instruction 27396: 18.0157% -Rate for instruction 27397: 18.0162% -Rate for instruction 27398: 18.0162% -Rate for instruction 27399: 18.0167% -Rate for instruction 27400: 18.0167% -Rate for instruction 27401: 18.0164% -Rate for instruction 27402: 18.0159% -Rate for instruction 27403: 18.0165% -Rate for instruction 27404: 18.0159% -Rate for instruction 27405: 18.0156% -Rate for instruction 27406: 18.0152% -Rate for instruction 27407: 18.0147% -Rate for instruction 27408: 18.015% -Rate for instruction 27409: 18.0146% -Rate for instruction 27410: 18.0141% -Rate for instruction 27411: 18.014% -Rate for instruction 27412: 18.0136% -Rate for instruction 27413: 18.0149% -Rate for instruction 27414: 18.0158% -Rate for instruction 27415: 18.0167% -Rate for instruction 27416: 18.0176% -Rate for instruction 27417: 18.0178% -Rate for instruction 27418: 18.0173% -Rate for instruction 27419: 18.0167% -Rate for instruction 27420: 18.0181% -Rate for instruction 27421: 18.0175% -Rate for instruction 27422: 18.0172% -Rate for instruction 27423: 18.0166% -Rate for instruction 27424: 18.0172% -Rate for instruction 27425: 18.0179% -Rate for instruction 27426: 18.0175% -Rate for instruction 27427: 18.0171% -Rate for instruction 27428: 18.017% -Rate for instruction 27429: 18.0165% -Rate for instruction 27430: 18.0165% -Rate for instruction 27431: 18.016% -Rate for instruction 27432: 18.0158% -Rate for instruction 27433: 18.016% -Rate for instruction 27434: 18.0159% -Rate for instruction 27435: 18.0162% -Rate for instruction 27436: 18.0158% -Rate for instruction 27437: 18.0161% -Rate for instruction 27438: 18.0165% -Rate for instruction 27439: 18.0161% -Rate for instruction 27440: 18.0167% -Rate for instruction 27441: 18.0169% -Rate for instruction 27442: 18.0172% -Rate for instruction 27443: 18.0179% -Rate for instruction 27444: 18.0183% -Rate for instruction 27445: 18.0189% -Rate for instruction 27446: 18.0186% -Rate for instruction 27447: 18.0194% -Rate for instruction 27448: 18.019% -Rate for instruction 27449: 18.0198% -Rate for instruction 27450: 18.0202% -Rate for instruction 27451: 18.0207% -Rate for instruction 27452: 18.0207% -Rate for instruction 27453: 18.0202% -Rate for instruction 27454: 18.0197% -Rate for instruction 27455: 18.0199% -Rate for instruction 27456: 18.0201% -Rate for instruction 27457: 18.0198% -Rate for instruction 27458: 18.0196% -Rate for instruction 27459: 18.0194% -Rate for instruction 27460: 18.0188% -Rate for instruction 27461: 18.0187% -Rate for instruction 27462: 18.0192% -Rate for instruction 27463: 18.02% -Rate for instruction 27464: 18.0214% -Rate for instruction 27465: 18.0226% -Rate for instruction 27466: 18.0236% -Rate for instruction 27467: 18.0231% -Rate for instruction 27468: 18.0235% -Rate for instruction 27469: 18.024% -Rate for instruction 27470: 18.0243% -Rate for instruction 27471: 18.0256% -Rate for instruction 27472: 18.0264% -Rate for instruction 27473: 18.0274% -Rate for instruction 27474: 18.0272% -Rate for instruction 27475: 18.0266% -Rate for instruction 27476: 18.0265% -Rate for instruction 27477: 18.0266% -Rate for instruction 27478: 18.0265% -Rate for instruction 27479: 18.026% -Rate for instruction 27480: 18.0257% -Rate for instruction 27481: 18.0256% -Rate for instruction 27482: 18.0261% -Rate for instruction 27483: 18.0262% -Rate for instruction 27484: 18.0256% -Rate for instruction 27485: 18.0254% -Rate for instruction 27486: 18.0252% -Rate for instruction 27487: 18.0253% -Rate for instruction 27488: 18.0248% -Rate for instruction 27489: 18.0245% -Rate for instruction 27490: 18.0242% -Rate for instruction 27491: 18.0237% -Rate for instruction 27492: 18.0233% -Rate for instruction 27493: 18.0235% -Rate for instruction 27494: 18.0241% -Rate for instruction 27495: 18.0236% -Rate for instruction 27496: 18.0232% -Rate for instruction 27497: 18.0227% -Rate for instruction 27498: 18.0225% -Rate for instruction 27499: 18.022% -Rate for instruction 27500: 18.0216% -Rate for instruction 27501: 18.0218% -Rate for instruction 27502: 18.0225% -Rate for instruction 27503: 18.0226% -Rate for instruction 27504: 18.0225% -Rate for instruction 27505: 18.0224% -Rate for instruction 27506: 18.0227% -Rate for instruction 27507: 18.0224% -Rate for instruction 27508: 18.0224% -Rate for instruction 27509: 18.0225% -Rate for instruction 27510: 18.022% -Rate for instruction 27511: 18.0223% -Rate for instruction 27512: 18.0221% -Rate for instruction 27513: 18.0217% -Rate for instruction 27514: 18.0218% -Rate for instruction 27515: 18.0214% -Rate for instruction 27516: 18.0209% -Rate for instruction 27517: 18.0209% -Rate for instruction 27518: 18.0206% -Rate for instruction 27519: 18.0203% -Rate for instruction 27520: 18.0199% -Rate for instruction 27521: 18.0194% -Rate for instruction 27522: 18.0196% -Rate for instruction 27523: 18.0199% -Rate for instruction 27524: 18.0196% -Rate for instruction 27525: 18.0193% -Rate for instruction 27526: 18.0191% -Rate for instruction 27527: 18.0187% -Rate for instruction 27528: 18.0183% -Rate for instruction 27529: 18.0185% -Rate for instruction 27530: 18.0188% -Rate for instruction 27531: 18.0185% -Rate for instruction 27532: 18.0188% -Rate for instruction 27533: 18.0188% -Rate for instruction 27534: 18.0193% -Rate for instruction 27535: 18.0198% -Rate for instruction 27536: 18.0201% -Rate for instruction 27537: 18.0206% -Rate for instruction 27538: 18.0209% -Rate for instruction 27539: 18.0213% -Rate for instruction 27540: 18.0217% -Rate for instruction 27541: 18.0213% -Rate for instruction 27542: 18.0208% -Rate for instruction 27543: 18.0208% -Rate for instruction 27544: 18.0206% -Rate for instruction 27545: 18.0217% -Rate for instruction 27546: 18.0216% -Rate for instruction 27547: 18.0228% -Rate for instruction 27548: 18.0226% -Rate for instruction 27549: 18.0223% -Rate for instruction 27550: 18.0222% -Rate for instruction 27551: 18.0223% -Rate for instruction 27552: 18.0222% -Rate for instruction 27553: 18.0227% -Rate for instruction 27554: 18.0226% -Rate for instruction 27555: 18.0227% -Rate for instruction 27556: 18.0228% -Rate for instruction 27557: 18.0225% -Rate for instruction 27558: 18.0223% -Rate for instruction 27559: 18.0224% -Rate for instruction 27560: 18.022% -Rate for instruction 27561: 18.0222% -Rate for instruction 27562: 18.0221% -Rate for instruction 27563: 18.0217% -Rate for instruction 27564: 18.0215% -Rate for instruction 27565: 18.0214% -Rate for instruction 27566: 18.0214% -Rate for instruction 27567: 18.021% -Rate for instruction 27568: 18.0207% -Rate for instruction 27569: 18.0201% -Rate for instruction 27570: 18.0205% -Rate for instruction 27571: 18.0211% -Rate for instruction 27572: 18.0208% -Rate for instruction 27573: 18.021% -Rate for instruction 27574: 18.0206% -Rate for instruction 27575: 18.021% -Rate for instruction 27576: 18.0206% -Rate for instruction 27577: 18.0204% -Rate for instruction 27578: 18.0201% -Rate for instruction 27579: 18.02% -Rate for instruction 27580: 18.0197% -Rate for instruction 27581: 18.0191% -Rate for instruction 27582: 18.0188% -Rate for instruction 27583: 18.0189% -Rate for instruction 27584: 18.0186% -Rate for instruction 27585: 18.0182% -Rate for instruction 27586: 18.0185% -Rate for instruction 27587: 18.0181% -Rate for instruction 27588: 18.0182% -Rate for instruction 27589: 18.0181% -Rate for instruction 27590: 18.0177% -Rate for instruction 27591: 18.0173% -Rate for instruction 27592: 18.0179% -Rate for instruction 27593: 18.0179% -Rate for instruction 27594: 18.0175% -Rate for instruction 27595: 18.0174% -Rate for instruction 27596: 18.0174% -Rate for instruction 27597: 18.0171% -Rate for instruction 27598: 18.0174% -Rate for instruction 27599: 18.0173% -Rate for instruction 27600: 18.0179% -Rate for instruction 27601: 18.0188% -Rate for instruction 27602: 18.0188% -Rate for instruction 27603: 18.0183% -Rate for instruction 27604: 18.0182% -Rate for instruction 27605: 18.0184% -Rate for instruction 27606: 18.0186% -Rate for instruction 27607: 18.019% -Rate for instruction 27608: 18.0188% -Rate for instruction 27609: 18.019% -Rate for instruction 27610: 18.0185% -Rate for instruction 27611: 18.0181% -Rate for instruction 27612: 18.018% -Rate for instruction 27613: 18.0179% -Rate for instruction 27614: 18.0174% -Rate for instruction 27615: 18.0173% -Rate for instruction 27616: 18.0168% -Rate for instruction 27617: 18.0168% -Rate for instruction 27618: 18.0166% -Rate for instruction 27619: 18.0166% -Rate for instruction 27620: 18.0163% -Rate for instruction 27621: 18.016% -Rate for instruction 27622: 18.0155% -Rate for instruction 27623: 18.016% -Rate for instruction 27624: 18.0174% -Rate for instruction 27625: 18.0172% -Rate for instruction 27626: 18.0169% -Rate for instruction 27627: 18.0167% -Rate for instruction 27628: 18.0167% -Rate for instruction 27629: 18.0173% -Rate for instruction 27630: 18.0177% -Rate for instruction 27631: 18.0185% -Rate for instruction 27632: 18.0193% -Rate for instruction 27633: 18.0188% -Rate for instruction 27634: 18.0198% -Rate for instruction 27635: 18.0193% -Rate for instruction 27636: 18.019% -Rate for instruction 27637: 18.0191% -Rate for instruction 27638: 18.0186% -Rate for instruction 27639: 18.0185% -Rate for instruction 27640: 18.0181% -Rate for instruction 27641: 18.0195% -Rate for instruction 27642: 18.021% -Rate for instruction 27643: 18.0209% -Rate for instruction 27644: 18.0223% -Rate for instruction 27645: 18.0236% -Rate for instruction 27646: 18.0232% -Rate for instruction 27647: 18.0229% -Rate for instruction 27648: 18.024% -Rate for instruction 27649: 18.0248% -Rate for instruction 27650: 18.0248% -Rate for instruction 27651: 18.025% -Rate for instruction 27652: 18.0248% -Rate for instruction 27653: 18.0259% -Rate for instruction 27654: 18.0271% -Rate for instruction 27655: 18.0268% -Rate for instruction 27656: 18.0281% -Rate for instruction 27657: 18.0291% -Rate for instruction 27658: 18.0292% -Rate for instruction 27659: 18.0292% -Rate for instruction 27660: 18.0287% -Rate for instruction 27661: 18.0286% -Rate for instruction 27662: 18.0281% -Rate for instruction 27663: 18.0286% -Rate for instruction 27664: 18.0293% -Rate for instruction 27665: 18.0288% -Rate for instruction 27666: 18.0286% -Rate for instruction 27667: 18.029% -Rate for instruction 27668: 18.0289% -Rate for instruction 27669: 18.0287% -Rate for instruction 27670: 18.0296% -Rate for instruction 27671: 18.0302% -Rate for instruction 27672: 18.0305% -Rate for instruction 27673: 18.0305% -Rate for instruction 27674: 18.0313% -Rate for instruction 27675: 18.0321% -Rate for instruction 27676: 18.0322% -Rate for instruction 27677: 18.0322% -Rate for instruction 27678: 18.0317% -Rate for instruction 27679: 18.0313% -Rate for instruction 27680: 18.0308% -Rate for instruction 27681: 18.0306% -Rate for instruction 27682: 18.0301% -Rate for instruction 27683: 18.0297% -Rate for instruction 27684: 18.0298% -Rate for instruction 27685: 18.0295% -Rate for instruction 27686: 18.0294% -Rate for instruction 27687: 18.0291% -Rate for instruction 27688: 18.0285% -Rate for instruction 27689: 18.0283% -Rate for instruction 27690: 18.0284% -Rate for instruction 27691: 18.0285% -Rate for instruction 27692: 18.0284% -Rate for instruction 27693: 18.0281% -Rate for instruction 27694: 18.0278% -Rate for instruction 27695: 18.0277% -Rate for instruction 27696: 18.0274% -Rate for instruction 27697: 18.0274% -Rate for instruction 27698: 18.0276% -Rate for instruction 27699: 18.0274% -Rate for instruction 27700: 18.027% -Rate for instruction 27701: 18.0266% -Rate for instruction 27702: 18.0264% -Rate for instruction 27703: 18.026% -Rate for instruction 27704: 18.0256% -Rate for instruction 27705: 18.0259% -Rate for instruction 27706: 18.0263% -Rate for instruction 27707: 18.0263% -Rate for instruction 27708: 18.0264% -Rate for instruction 27709: 18.0263% -Rate for instruction 27710: 18.026% -Rate for instruction 27711: 18.0255% -Rate for instruction 27712: 18.0254% -Rate for instruction 27713: 18.0256% -Rate for instruction 27714: 18.0258% -Rate for instruction 27715: 18.0254% -Rate for instruction 27716: 18.0249% -Rate for instruction 27717: 18.0245% -Rate for instruction 27718: 18.024% -Rate for instruction 27719: 18.0241% -Rate for instruction 27720: 18.0235% -Rate for instruction 27721: 18.0233% -Rate for instruction 27722: 18.0228% -Rate for instruction 27723: 18.0227% -Rate for instruction 27724: 18.0226% -Rate for instruction 27725: 18.0228% -Rate for instruction 27726: 18.0227% -Rate for instruction 27727: 18.0226% -Rate for instruction 27728: 18.0224% -Rate for instruction 27729: 18.022% -Rate for instruction 27730: 18.0218% -Rate for instruction 27731: 18.0218% -Rate for instruction 27732: 18.0214% -Rate for instruction 27733: 18.0219% -Rate for instruction 27734: 18.0222% -Rate for instruction 27735: 18.0224% -Rate for instruction 27736: 18.0222% -Rate for instruction 27737: 18.0228% -Rate for instruction 27738: 18.0232% -Rate for instruction 27739: 18.023% -Rate for instruction 27740: 18.0228% -Rate for instruction 27741: 18.0222% -Rate for instruction 27742: 18.0217% -Rate for instruction 27743: 18.0214% -Rate for instruction 27744: 18.0218% -Rate for instruction 27745: 18.0223% -Rate for instruction 27746: 18.0226% -Rate for instruction 27747: 18.0228% -Rate for instruction 27748: 18.0227% -Rate for instruction 27749: 18.0227% -Rate for instruction 27750: 18.0229% -Rate for instruction 27751: 18.0227% -Rate for instruction 27752: 18.0224% -Rate for instruction 27753: 18.0222% -Rate for instruction 27754: 18.0228% -Rate for instruction 27755: 18.0229% -Rate for instruction 27756: 18.0223% -Rate for instruction 27757: 18.0221% -Rate for instruction 27758: 18.0217% -Rate for instruction 27759: 18.0219% -Rate for instruction 27760: 18.0214% -Rate for instruction 27761: 18.0217% -Rate for instruction 27762: 18.0216% -Rate for instruction 27763: 18.0217% -Rate for instruction 27764: 18.0216% -Rate for instruction 27765: 18.0212% -Rate for instruction 27766: 18.0214% -Rate for instruction 27767: 18.0212% -Rate for instruction 27768: 18.0215% -Rate for instruction 27769: 18.0221% -Rate for instruction 27770: 18.0228% -Rate for instruction 27771: 18.0227% -Rate for instruction 27772: 18.0226% -Rate for instruction 27773: 18.0231% -Rate for instruction 27774: 18.023% -Rate for instruction 27775: 18.0225% -Rate for instruction 27776: 18.0224% -Rate for instruction 27777: 18.0228% -Rate for instruction 27778: 18.0226% -Rate for instruction 27779: 18.0222% -Rate for instruction 27780: 18.0221% -Rate for instruction 27781: 18.0222% -Rate for instruction 27782: 18.022% -Rate for instruction 27783: 18.0223% -Rate for instruction 27784: 18.0218% -Rate for instruction 27785: 18.0224% -Rate for instruction 27786: 18.0225% -Rate for instruction 27787: 18.0223% -Rate for instruction 27788: 18.0222% -Rate for instruction 27789: 18.0223% -Rate for instruction 27790: 18.0217% -Rate for instruction 27791: 18.0216% -Rate for instruction 27792: 18.0213% -Rate for instruction 27793: 18.0213% -Rate for instruction 27794: 18.0215% -Rate for instruction 27795: 18.0215% -Rate for instruction 27796: 18.021% -Rate for instruction 27797: 18.0222% -Rate for instruction 27798: 18.0218% -Rate for instruction 27799: 18.0213% -Rate for instruction 27800: 18.0219% -Rate for instruction 27801: 18.0218% -Rate for instruction 27802: 18.0213% -Rate for instruction 27803: 18.0216% -Rate for instruction 27804: 18.0211% -Rate for instruction 27805: 18.0212% -Rate for instruction 27806: 18.0213% -Rate for instruction 27807: 18.0223% -Rate for instruction 27808: 18.0232% -Rate for instruction 27809: 18.0237% -Rate for instruction 27810: 18.0232% -Rate for instruction 27811: 18.0228% -Rate for instruction 27812: 18.0238% -Rate for instruction 27813: 18.0247% -Rate for instruction 27814: 18.0243% -Rate for instruction 27815: 18.0253% -Rate for instruction 27816: 18.0258% -Rate for instruction 27817: 18.0261% -Rate for instruction 27818: 18.0263% -Rate for instruction 27819: 18.026% -Rate for instruction 27820: 18.0268% -Rate for instruction 27821: 18.0281% -Rate for instruction 27822: 18.0276% -Rate for instruction 27823: 18.0288% -Rate for instruction 27824: 18.0285% -Rate for instruction 27825: 18.0282% -Rate for instruction 27826: 18.0277% -Rate for instruction 27827: 18.0278% -Rate for instruction 27828: 18.0277% -Rate for instruction 27829: 18.0273% -Rate for instruction 27830: 18.0271% -Rate for instruction 27831: 18.027% -Rate for instruction 27832: 18.0266% -Rate for instruction 27833: 18.0267% -Rate for instruction 27834: 18.0267% -Rate for instruction 27835: 18.027% -Rate for instruction 27836: 18.0268% -Rate for instruction 27837: 18.0264% -Rate for instruction 27838: 18.0267% -Rate for instruction 27839: 18.0265% -Rate for instruction 27840: 18.0268% -Rate for instruction 27841: 18.0278% -Rate for instruction 27842: 18.028% -Rate for instruction 27843: 18.0278% -Rate for instruction 27844: 18.0288% -Rate for instruction 27845: 18.0297% -Rate for instruction 27846: 18.0298% -Rate for instruction 27847: 18.03% -Rate for instruction 27848: 18.0302% -Rate for instruction 27849: 18.0301% -Rate for instruction 27850: 18.0297% -Rate for instruction 27851: 18.031% -Rate for instruction 27852: 18.0322% -Rate for instruction 27853: 18.0318% -Rate for instruction 27854: 18.0325% -Rate for instruction 27855: 18.032% -Rate for instruction 27856: 18.0325% -Rate for instruction 27857: 18.032% -Rate for instruction 27858: 18.0316% -Rate for instruction 27859: 18.0312% -Rate for instruction 27860: 18.0307% -Rate for instruction 27861: 18.0306% -Rate for instruction 27862: 18.0301% -Rate for instruction 27863: 18.0297% -Rate for instruction 27864: 18.0305% -Rate for instruction 27865: 18.0308% -Rate for instruction 27866: 18.0308% -Rate for instruction 27867: 18.0312% -Rate for instruction 27868: 18.0319% -Rate for instruction 27869: 18.0317% -Rate for instruction 27870: 18.0313% -Rate for instruction 27871: 18.0312% -Rate for instruction 27872: 18.031% -Rate for instruction 27873: 18.0313% -Rate for instruction 27874: 18.0313% -Rate for instruction 27875: 18.0308% -Rate for instruction 27876: 18.0306% -Rate for instruction 27877: 18.0305% -Rate for instruction 27878: 18.0303% -Rate for instruction 27879: 18.0302% -Rate for instruction 27880: 18.0299% -Rate for instruction 27881: 18.0305% -Rate for instruction 27882: 18.0303% -Rate for instruction 27883: 18.0302% -Rate for instruction 27884: 18.0297% -Rate for instruction 27885: 18.0301% -Rate for instruction 27886: 18.0306% -Rate for instruction 27887: 18.0309% -Rate for instruction 27888: 18.0308% -Rate for instruction 27889: 18.0304% -Rate for instruction 27890: 18.0306% -Rate for instruction 27891: 18.0309% -Rate for instruction 27892: 18.0314% -Rate for instruction 27893: 18.0313% -Rate for instruction 27894: 18.0318% -Rate for instruction 27895: 18.0318% -Rate for instruction 27896: 18.0323% -Rate for instruction 27897: 18.0322% -Rate for instruction 27898: 18.0322% -Rate for instruction 27899: 18.0327% -Rate for instruction 27900: 18.0331% -Rate for instruction 27901: 18.0336% -Rate for instruction 27902: 18.0334% -Rate for instruction 27903: 18.033% -Rate for instruction 27904: 18.0327% -Rate for instruction 27905: 18.0328% -Rate for instruction 27906: 18.033% -Rate for instruction 27907: 18.0327% -Rate for instruction 27908: 18.0324% -Rate for instruction 27909: 18.032% -Rate for instruction 27910: 18.0322% -Rate for instruction 27911: 18.0324% -Rate for instruction 27912: 18.0327% -Rate for instruction 27913: 18.0323% -Rate for instruction 27914: 18.0326% -Rate for instruction 27915: 18.0327% -Rate for instruction 27916: 18.0324% -Rate for instruction 27917: 18.0329% -Rate for instruction 27918: 18.0329% -Rate for instruction 27919: 18.0334% -Rate for instruction 27920: 18.0334% -Rate for instruction 27921: 18.0335% -Rate for instruction 27922: 18.0337% -Rate for instruction 27923: 18.0333% -Rate for instruction 27924: 18.0335% -Rate for instruction 27925: 18.0331% -Rate for instruction 27926: 18.0333% -Rate for instruction 27927: 18.0341% -Rate for instruction 27928: 18.0342% -Rate for instruction 27929: 18.0337% -Rate for instruction 27930: 18.0337% -Rate for instruction 27931: 18.0332% -Rate for instruction 27932: 18.0327% -Rate for instruction 27933: 18.0333% -Rate for instruction 27934: 18.034% -Rate for instruction 27935: 18.0346% -Rate for instruction 27936: 18.0344% -Rate for instruction 27937: 18.0351% -Rate for instruction 27938: 18.0359% -Rate for instruction 27939: 18.0366% -Rate for instruction 27940: 18.0373% -Rate for instruction 27941: 18.0372% -Rate for instruction 27942: 18.0371% -Rate for instruction 27943: 18.0368% -Rate for instruction 27944: 18.0372% -Rate for instruction 27945: 18.0379% -Rate for instruction 27946: 18.0374% -Rate for instruction 27947: 18.038% -Rate for instruction 27948: 18.0381% -Rate for instruction 27949: 18.0389% -Rate for instruction 27950: 18.0387% -Rate for instruction 27951: 18.039% -Rate for instruction 27952: 18.0387% -Rate for instruction 27953: 18.0384% -Rate for instruction 27954: 18.039% -Rate for instruction 27955: 18.0385% -Rate for instruction 27956: 18.0381% -Rate for instruction 27957: 18.0393% -Rate for instruction 27958: 18.0388% -Rate for instruction 27959: 18.0383% -Rate for instruction 27960: 18.0382% -Rate for instruction 27961: 18.0393% -Rate for instruction 27962: 18.0402% -Rate for instruction 27963: 18.0411% -Rate for instruction 27964: 18.0418% -Rate for instruction 27965: 18.042% -Rate for instruction 27966: 18.0423% -Rate for instruction 27967: 18.0429% -Rate for instruction 27968: 18.0433% -Rate for instruction 27969: 18.0441% -Rate for instruction 27970: 18.0447% -Rate for instruction 27971: 18.0452% -Rate for instruction 27972: 18.0447% -Rate for instruction 27973: 18.0446% -Rate for instruction 27974: 18.0448% -Rate for instruction 27975: 18.0443% -Rate for instruction 27976: 18.0442% -Rate for instruction 27977: 18.0438% -Rate for instruction 27978: 18.0451% -Rate for instruction 27979: 18.0448% -Rate for instruction 27980: 18.0452% -Rate for instruction 27981: 18.0458% -Rate for instruction 27982: 18.0463% -Rate for instruction 27983: 18.0471% -Rate for instruction 27984: 18.0469% -Rate for instruction 27985: 18.0475% -Rate for instruction 27986: 18.0478% -Rate for instruction 27987: 18.0477% -Rate for instruction 27988: 18.0473% -Rate for instruction 27989: 18.0468% -Rate for instruction 27990: 18.0466% -Rate for instruction 27991: 18.0471% -Rate for instruction 27992: 18.0474% -Rate for instruction 27993: 18.047% -Rate for instruction 27994: 18.0466% -Rate for instruction 27995: 18.0464% -Rate for instruction 27996: 18.047% -Rate for instruction 27997: 18.0465% -Rate for instruction 27998: 18.0464% -Rate for instruction 27999: 18.047% -Rate for instruction 28000: 18.0474% -Rate for instruction 28001: 18.0471% -Rate for instruction 28002: 18.0479% -Rate for instruction 28003: 18.0487% -Rate for instruction 28004: 18.0492% -Rate for instruction 28005: 18.0501% -Rate for instruction 28006: 18.051% -Rate for instruction 28007: 18.0505% -Rate for instruction 28008: 18.0502% -Rate for instruction 28009: 18.051% -Rate for instruction 28010: 18.0516% -Rate for instruction 28011: 18.0524% -Rate for instruction 28012: 18.0532% -Rate for instruction 28013: 18.0526% -Rate for instruction 28014: 18.0528% -Rate for instruction 28015: 18.0527% -Rate for instruction 28016: 18.0524% -Rate for instruction 28017: 18.0536% -Rate for instruction 28018: 18.0542% -Rate for instruction 28019: 18.0543% -Rate for instruction 28020: 18.0546% -Rate for instruction 28021: 18.0541% -Rate for instruction 28022: 18.0545% -Rate for instruction 28023: 18.0542% -Rate for instruction 28024: 18.0537% -Rate for instruction 28025: 18.0533% -Rate for instruction 28026: 18.0529% -Rate for instruction 28027: 18.0524% -Rate for instruction 28028: 18.0525% -Rate for instruction 28029: 18.0519% -Rate for instruction 28030: 18.052% -Rate for instruction 28031: 18.0518% -Rate for instruction 28032: 18.0513% -Rate for instruction 28033: 18.0514% -Rate for instruction 28034: 18.0509% -Rate for instruction 28035: 18.0507% -Rate for instruction 28036: 18.0506% -Rate for instruction 28037: 18.0502% -Rate for instruction 28038: 18.05% -Rate for instruction 28039: 18.0504% -Rate for instruction 28040: 18.0506% -Rate for instruction 28041: 18.0503% -Rate for instruction 28042: 18.0503% -Rate for instruction 28043: 18.0498% -Rate for instruction 28044: 18.0498% -Rate for instruction 28045: 18.0502% -Rate for instruction 28046: 18.0502% -Rate for instruction 28047: 18.0501% -Rate for instruction 28048: 18.05% -Rate for instruction 28049: 18.05% -Rate for instruction 28050: 18.0495% -Rate for instruction 28051: 18.0496% -Rate for instruction 28052: 18.0492% -Rate for instruction 28053: 18.049% -Rate for instruction 28054: 18.0493% -Rate for instruction 28055: 18.0492% -Rate for instruction 28056: 18.049% -Rate for instruction 28057: 18.0487% -Rate for instruction 28058: 18.0486% -Rate for instruction 28059: 18.0494% -Rate for instruction 28060: 18.0501% -Rate for instruction 28061: 18.0503% -Rate for instruction 28062: 18.0502% -Rate for instruction 28063: 18.0497% -Rate for instruction 28064: 18.0496% -Rate for instruction 28065: 18.0491% -Rate for instruction 28066: 18.0491% -Rate for instruction 28067: 18.049% -Rate for instruction 28068: 18.0492% -Rate for instruction 28069: 18.0497% -Rate for instruction 28070: 18.0497% -Rate for instruction 28071: 18.0497% -Rate for instruction 28072: 18.0498% -Rate for instruction 28073: 18.0505% -Rate for instruction 28074: 18.0512% -Rate for instruction 28075: 18.0511% -Rate for instruction 28076: 18.051% -Rate for instruction 28077: 18.0514% -Rate for instruction 28078: 18.051% -Rate for instruction 28079: 18.0517% -Rate for instruction 28080: 18.0524% -Rate for instruction 28081: 18.0522% -Rate for instruction 28082: 18.0518% -Rate for instruction 28083: 18.0528% -Rate for instruction 28084: 18.0525% -Rate for instruction 28085: 18.052% -Rate for instruction 28086: 18.0531% -Rate for instruction 28087: 18.0526% -Rate for instruction 28088: 18.0535% -Rate for instruction 28089: 18.0532% -Rate for instruction 28090: 18.0533% -Rate for instruction 28091: 18.0535% -Rate for instruction 28092: 18.0534% -Rate for instruction 28093: 18.0541% -Rate for instruction 28094: 18.055% -Rate for instruction 28095: 18.0544% -Rate for instruction 28096: 18.0541% -Rate for instruction 28097: 18.0544% -Rate for instruction 28098: 18.055% -Rate for instruction 28099: 18.0553% -Rate for instruction 28100: 18.056% -Rate for instruction 28101: 18.0566% -Rate for instruction 28102: 18.0561% -Rate for instruction 28103: 18.0559% -Rate for instruction 28104: 18.0555% -Rate for instruction 28105: 18.0555% -Rate for instruction 28106: 18.0556% -Rate for instruction 28107: 18.0555% -Rate for instruction 28108: 18.055% -Rate for instruction 28109: 18.0546% -Rate for instruction 28110: 18.0544% -Rate for instruction 28111: 18.0546% -Rate for instruction 28112: 18.0549% -Rate for instruction 28113: 18.0549% -Rate for instruction 28114: 18.0551% -Rate for instruction 28115: 18.0547% -Rate for instruction 28116: 18.0545% -Rate for instruction 28117: 18.0543% -Rate for instruction 28118: 18.055% -Rate for instruction 28119: 18.0549% -Rate for instruction 28120: 18.0552% -Rate for instruction 28121: 18.055% -Rate for instruction 28122: 18.0546% -Rate for instruction 28123: 18.0542% -Rate for instruction 28124: 18.0543% -Rate for instruction 28125: 18.0538% -Rate for instruction 28126: 18.0534% -Rate for instruction 28127: 18.054% -Rate for instruction 28128: 18.0539% -Rate for instruction 28129: 18.0542% -Rate for instruction 28130: 18.0544% -Rate for instruction 28131: 18.0553% -Rate for instruction 28132: 18.0557% -Rate for instruction 28133: 18.0566% -Rate for instruction 28134: 18.0573% -Rate for instruction 28135: 18.0576% -Rate for instruction 28136: 18.0585% -Rate for instruction 28137: 18.0587% -Rate for instruction 28138: 18.0592% -Rate for instruction 28139: 18.0592% -Rate for instruction 28140: 18.0595% -Rate for instruction 28141: 18.059% -Rate for instruction 28142: 18.0585% -Rate for instruction 28143: 18.0581% -Rate for instruction 28144: 18.0587% -Rate for instruction 28145: 18.0583% -Rate for instruction 28146: 18.0584% -Rate for instruction 28147: 18.0578% -Rate for instruction 28148: 18.0579% -Rate for instruction 28149: 18.0579% -Rate for instruction 28150: 18.058% -Rate for instruction 28151: 18.0576% -Rate for instruction 28152: 18.0574% -Rate for instruction 28153: 18.0584% -Rate for instruction 28154: 18.059% -Rate for instruction 28155: 18.0585% -Rate for instruction 28156: 18.0593% -Rate for instruction 28157: 18.0599% -Rate for instruction 28158: 18.0604% -Rate for instruction 28159: 18.0604% -Rate for instruction 28160: 18.0606% -Rate for instruction 28161: 18.0606% -Rate for instruction 28162: 18.0608% -Rate for instruction 28163: 18.0608% -Rate for instruction 28164: 18.0609% -Rate for instruction 28165: 18.0609% -Rate for instruction 28166: 18.0604% -Rate for instruction 28167: 18.0602% -Rate for instruction 28168: 18.0602% -Rate for instruction 28169: 18.0599% -Rate for instruction 28170: 18.0602% -Rate for instruction 28171: 18.0597% -Rate for instruction 28172: 18.0594% -Rate for instruction 28173: 18.0592% -Rate for instruction 28174: 18.0595% -Rate for instruction 28175: 18.0605% -Rate for instruction 28176: 18.0611% -Rate for instruction 28177: 18.0616% -Rate for instruction 28178: 18.0613% -Rate for instruction 28179: 18.061% -Rate for instruction 28180: 18.0607% -Rate for instruction 28181: 18.0602% -Rate for instruction 28182: 18.0603% -Rate for instruction 28183: 18.0602% -Rate for instruction 28184: 18.0602% -Rate for instruction 28185: 18.0602% -Rate for instruction 28186: 18.0604% -Rate for instruction 28187: 18.0606% -Rate for instruction 28188: 18.0605% -Rate for instruction 28189: 18.06% -Rate for instruction 28190: 18.0599% -Rate for instruction 28191: 18.0605% -Rate for instruction 28192: 18.06% -Rate for instruction 28193: 18.0604% -Rate for instruction 28194: 18.0609% -Rate for instruction 28195: 18.0607% -Rate for instruction 28196: 18.061% -Rate for instruction 28197: 18.0605% -Rate for instruction 28198: 18.0605% -Rate for instruction 28199: 18.0603% -Rate for instruction 28200: 18.0606% -Rate for instruction 28201: 18.0601% -Rate for instruction 28202: 18.0601% -Rate for instruction 28203: 18.06% -Rate for instruction 28204: 18.0602% -Rate for instruction 28205: 18.0601% -Rate for instruction 28206: 18.0602% -Rate for instruction 28207: 18.0603% -Rate for instruction 28208: 18.0605% -Rate for instruction 28209: 18.0607% -Rate for instruction 28210: 18.0607% -Rate for instruction 28211: 18.0612% -Rate for instruction 28212: 18.0611% -Rate for instruction 28213: 18.0609% -Rate for instruction 28214: 18.0609% -Rate for instruction 28215: 18.0608% -Rate for instruction 28216: 18.0603% -Rate for instruction 28217: 18.0602% -Rate for instruction 28218: 18.0605% -Rate for instruction 28219: 18.0608% -Rate for instruction 28220: 18.061% -Rate for instruction 28221: 18.0607% -Rate for instruction 28222: 18.0612% -Rate for instruction 28223: 18.0607% -Rate for instruction 28224: 18.0608% -Rate for instruction 28225: 18.0603% -Rate for instruction 28226: 18.061% -Rate for instruction 28227: 18.0612% -Rate for instruction 28228: 18.0616% -Rate for instruction 28229: 18.0625% -Rate for instruction 28230: 18.062% -Rate for instruction 28231: 18.0626% -Rate for instruction 28232: 18.0621% -Rate for instruction 28233: 18.0616% -Rate for instruction 28234: 18.0624% -Rate for instruction 28235: 18.0619% -Rate for instruction 28236: 18.0615% -Rate for instruction 28237: 18.0613% -Rate for instruction 28238: 18.0608% -Rate for instruction 28239: 18.0604% -Rate for instruction 28240: 18.0599% -Rate for instruction 28241: 18.0597% -Rate for instruction 28242: 18.0598% -Rate for instruction 28243: 18.0595% -Rate for instruction 28244: 18.0598% -Rate for instruction 28245: 18.0607% -Rate for instruction 28246: 18.0613% -Rate for instruction 28247: 18.061% -Rate for instruction 28248: 18.0605% -Rate for instruction 28249: 18.0604% -Rate for instruction 28250: 18.0602% -Rate for instruction 28251: 18.0605% -Rate for instruction 28252: 18.06% -Rate for instruction 28253: 18.0598% -Rate for instruction 28254: 18.0605% -Rate for instruction 28255: 18.0602% -Rate for instruction 28256: 18.061% -Rate for instruction 28257: 18.0611% -Rate for instruction 28258: 18.0608% -Rate for instruction 28259: 18.0611% -Rate for instruction 28260: 18.061% -Rate for instruction 28261: 18.0619% -Rate for instruction 28262: 18.0628% -Rate for instruction 28263: 18.0625% -Rate for instruction 28264: 18.0622% -Rate for instruction 28265: 18.0617% -Rate for instruction 28266: 18.0621% -Rate for instruction 28267: 18.0624% -Rate for instruction 28268: 18.0619% -Rate for instruction 28269: 18.0621% -Rate for instruction 28270: 18.0625% -Rate for instruction 28271: 18.0633% -Rate for instruction 28272: 18.0643% -Rate for instruction 28273: 18.0646% -Rate for instruction 28274: 18.0647% -Rate for instruction 28275: 18.0652% -Rate for instruction 28276: 18.0662% -Rate for instruction 28277: 18.0669% -Rate for instruction 28278: 18.067% -Rate for instruction 28279: 18.0665% -Rate for instruction 28280: 18.0662% -Rate for instruction 28281: 18.0661% -Rate for instruction 28282: 18.0662% -Rate for instruction 28283: 18.067% -Rate for instruction 28284: 18.0675% -Rate for instruction 28285: 18.0672% -Rate for instruction 28286: 18.0671% -Rate for instruction 28287: 18.0681% -Rate for instruction 28288: 18.068% -Rate for instruction 28289: 18.0684% -Rate for instruction 28290: 18.0687% -Rate for instruction 28291: 18.0682% -Rate for instruction 28292: 18.0679% -Rate for instruction 28293: 18.0681% -Rate for instruction 28294: 18.0679% -Rate for instruction 28295: 18.0675% -Rate for instruction 28296: 18.0672% -Rate for instruction 28297: 18.0672% -Rate for instruction 28298: 18.0674% -Rate for instruction 28299: 18.0669% -Rate for instruction 28300: 18.067% -Rate for instruction 28301: 18.0667% -Rate for instruction 28302: 18.0662% -Rate for instruction 28303: 18.0664% -Rate for instruction 28304: 18.0658% -Rate for instruction 28305: 18.0662% -Rate for instruction 28306: 18.0663% -Rate for instruction 28307: 18.066% -Rate for instruction 28308: 18.0664% -Rate for instruction 28309: 18.0667% -Rate for instruction 28310: 18.0669% -Rate for instruction 28311: 18.0664% -Rate for instruction 28312: 18.0659% -Rate for instruction 28313: 18.0655% -Rate for instruction 28314: 18.0659% -Rate for instruction 28315: 18.0654% -Rate for instruction 28316: 18.0655% -Rate for instruction 28317: 18.0658% -Rate for instruction 28318: 18.066% -Rate for instruction 28319: 18.0655% -Rate for instruction 28320: 18.0657% -Rate for instruction 28321: 18.066% -Rate for instruction 28322: 18.0665% -Rate for instruction 28323: 18.0662% -Rate for instruction 28324: 18.0672% -Rate for instruction 28325: 18.0681% -Rate for instruction 28326: 18.0676% -Rate for instruction 28327: 18.0673% -Rate for instruction 28328: 18.0668% -Rate for instruction 28329: 18.0669% -Rate for instruction 28330: 18.0664% -Rate for instruction 28331: 18.0661% -Rate for instruction 28332: 18.0656% -Rate for instruction 28333: 18.0653% -Rate for instruction 28334: 18.0648% -Rate for instruction 28335: 18.065% -Rate for instruction 28336: 18.0644% -Rate for instruction 28337: 18.0649% -Rate for instruction 28338: 18.0659% -Rate for instruction 28339: 18.0663% -Rate for instruction 28340: 18.0661% -Rate for instruction 28341: 18.0663% -Rate for instruction 28342: 18.0665% -Rate for instruction 28343: 18.0664% -Rate for instruction 28344: 18.0665% -Rate for instruction 28345: 18.0671% -Rate for instruction 28346: 18.0678% -Rate for instruction 28347: 18.0686% -Rate for instruction 28348: 18.0682% -Rate for instruction 28349: 18.0678% -Rate for instruction 28350: 18.0675% -Rate for instruction 28351: 18.067% -Rate for instruction 28352: 18.0666% -Rate for instruction 28353: 18.0661% -Rate for instruction 28354: 18.0656% -Rate for instruction 28355: 18.0652% -Rate for instruction 28356: 18.0657% -Rate for instruction 28357: 18.0653% -Rate for instruction 28358: 18.0656% -Rate for instruction 28359: 18.0653% -Rate for instruction 28360: 18.0652% -Rate for instruction 28361: 18.0655% -Rate for instruction 28362: 18.0657% -Rate for instruction 28363: 18.066% -Rate for instruction 28364: 18.066% -Rate for instruction 28365: 18.0663% -Rate for instruction 28366: 18.0658% -Rate for instruction 28367: 18.0659% -Rate for instruction 28368: 18.0662% -Rate for instruction 28369: 18.0662% -Rate for instruction 28370: 18.066% -Rate for instruction 28371: 18.0663% -Rate for instruction 28372: 18.0659% -Rate for instruction 28373: 18.0664% -Rate for instruction 28374: 18.0667% -Rate for instruction 28375: 18.0666% -Rate for instruction 28376: 18.0664% -Rate for instruction 28377: 18.066% -Rate for instruction 28378: 18.0655% -Rate for instruction 28379: 18.065% -Rate for instruction 28380: 18.0649% -Rate for instruction 28381: 18.0649% -Rate for instruction 28382: 18.0644% -Rate for instruction 28383: 18.0645% -Rate for instruction 28384: 18.0641% -Rate for instruction 28385: 18.0638% -Rate for instruction 28386: 18.0635% -Rate for instruction 28387: 18.0636% -Rate for instruction 28388: 18.064% -Rate for instruction 28389: 18.065% -Rate for instruction 28390: 18.0645% -Rate for instruction 28391: 18.0649% -Rate for instruction 28392: 18.0647% -Rate for instruction 28393: 18.0653% -Rate for instruction 28394: 18.0655% -Rate for instruction 28395: 18.0655% -Rate for instruction 28396: 18.0658% -Rate for instruction 28397: 18.0663% -Rate for instruction 28398: 18.0666% -Rate for instruction 28399: 18.067% -Rate for instruction 28400: 18.0671% -Rate for instruction 28401: 18.0675% -Rate for instruction 28402: 18.0674% -Rate for instruction 28403: 18.0681% -Rate for instruction 28404: 18.0678% -Rate for instruction 28405: 18.0673% -Rate for instruction 28406: 18.068% -Rate for instruction 28407: 18.0676% -Rate for instruction 28408: 18.0678% -Rate for instruction 28409: 18.0674% -Rate for instruction 28410: 18.0672% -Rate for instruction 28411: 18.0674% -Rate for instruction 28412: 18.0681% -Rate for instruction 28413: 18.0677% -Rate for instruction 28414: 18.0685% -Rate for instruction 28415: 18.0693% -Rate for instruction 28416: 18.0699% -Rate for instruction 28417: 18.0703% -Rate for instruction 28418: 18.07% -Rate for instruction 28419: 18.0702% -Rate for instruction 28420: 18.0707% -Rate for instruction 28421: 18.0705% -Rate for instruction 28422: 18.0708% -Rate for instruction 28423: 18.0709% -Rate for instruction 28424: 18.0709% -Rate for instruction 28425: 18.0707% -Rate for instruction 28426: 18.0706% -Rate for instruction 28427: 18.0702% -Rate for instruction 28428: 18.0701% -Rate for instruction 28429: 18.0702% -Rate for instruction 28430: 18.0697% -Rate for instruction 28431: 18.07% -Rate for instruction 28432: 18.0696% -Rate for instruction 28433: 18.0692% -Rate for instruction 28434: 18.0693% -Rate for instruction 28435: 18.0693% -Rate for instruction 28436: 18.07% -Rate for instruction 28437: 18.0702% -Rate for instruction 28438: 18.0704% -Rate for instruction 28439: 18.0699% -Rate for instruction 28440: 18.0705% -Rate for instruction 28441: 18.0706% -Rate for instruction 28442: 18.0703% -Rate for instruction 28443: 18.0698% -Rate for instruction 28444: 18.0694% -Rate for instruction 28445: 18.0692% -Rate for instruction 28446: 18.069% -Rate for instruction 28447: 18.0687% -Rate for instruction 28448: 18.0689% -Rate for instruction 28449: 18.0691% -Rate for instruction 28450: 18.069% -Rate for instruction 28451: 18.0686% -Rate for instruction 28452: 18.0692% -Rate for instruction 28453: 18.069% -Rate for instruction 28454: 18.0696% -Rate for instruction 28455: 18.0692% -Rate for instruction 28456: 18.0696% -Rate for instruction 28457: 18.0698% -Rate for instruction 28458: 18.0697% -Rate for instruction 28459: 18.0695% -Rate for instruction 28460: 18.0695% -Rate for instruction 28461: 18.0698% -Rate for instruction 28462: 18.07% -Rate for instruction 28463: 18.071% -Rate for instruction 28464: 18.0717% -Rate for instruction 28465: 18.072% -Rate for instruction 28466: 18.0721% -Rate for instruction 28467: 18.0724% -Rate for instruction 28468: 18.0723% -Rate for instruction 28469: 18.0719% -Rate for instruction 28470: 18.0725% -Rate for instruction 28471: 18.0723% -Rate for instruction 28472: 18.0722% -Rate for instruction 28473: 18.073% -Rate for instruction 28474: 18.0731% -Rate for instruction 28475: 18.073% -Rate for instruction 28476: 18.0736% -Rate for instruction 28477: 18.074% -Rate for instruction 28478: 18.075% -Rate for instruction 28479: 18.0756% -Rate for instruction 28480: 18.0766% -Rate for instruction 28481: 18.077% -Rate for instruction 28482: 18.077% -Rate for instruction 28483: 18.0776% -Rate for instruction 28484: 18.0777% -Rate for instruction 28485: 18.0782% -Rate for instruction 28486: 18.0786% -Rate for instruction 28487: 18.0781% -Rate for instruction 28488: 18.0788% -Rate for instruction 28489: 18.0794% -Rate for instruction 28490: 18.079% -Rate for instruction 28491: 18.079% -Rate for instruction 28492: 18.0792% -Rate for instruction 28493: 18.0791% -Rate for instruction 28494: 18.08% -Rate for instruction 28495: 18.0808% -Rate for instruction 28496: 18.0818% -Rate for instruction 28497: 18.0829% -Rate for instruction 28498: 18.0839% -Rate for instruction 28499: 18.0842% -Rate for instruction 28500: 18.0847% -Rate for instruction 28501: 18.0855% -Rate for instruction 28502: 18.0855% -Rate for instruction 28503: 18.0852% -Rate for instruction 28504: 18.0852% -Rate for instruction 28505: 18.0853% -Rate for instruction 28506: 18.0861% -Rate for instruction 28507: 18.0868% -Rate for instruction 28508: 18.0866% -Rate for instruction 28509: 18.0876% -Rate for instruction 28510: 18.0882% -Rate for instruction 28511: 18.0877% -Rate for instruction 28512: 18.0878% -Rate for instruction 28513: 18.0876% -Rate for instruction 28514: 18.0872% -Rate for instruction 28515: 18.0869% -Rate for instruction 28516: 18.0869% -Rate for instruction 28517: 18.0864% -Rate for instruction 28518: 18.0867% -Rate for instruction 28519: 18.0866% -Rate for instruction 28520: 18.0864% -Rate for instruction 28521: 18.0868% -Rate for instruction 28522: 18.087% -Rate for instruction 28523: 18.0871% -Rate for instruction 28524: 18.0868% -Rate for instruction 28525: 18.0867% -Rate for instruction 28526: 18.0869% -Rate for instruction 28527: 18.0865% -Rate for instruction 28528: 18.0862% -Rate for instruction 28529: 18.0874% -Rate for instruction 28530: 18.0886% -Rate for instruction 28531: 18.0881% -Rate for instruction 28532: 18.0881% -Rate for instruction 28533: 18.0876% -Rate for instruction 28534: 18.0872% -Rate for instruction 28535: 18.0867% -Rate for instruction 28536: 18.0865% -Rate for instruction 28537: 18.086% -Rate for instruction 28538: 18.0863% -Rate for instruction 28539: 18.0862% -Rate for instruction 28540: 18.086% -Rate for instruction 28541: 18.0855% -Rate for instruction 28542: 18.0854% -Rate for instruction 28543: 18.0853% -Rate for instruction 28544: 18.0853% -Rate for instruction 28545: 18.0852% -Rate for instruction 28546: 18.0849% -Rate for instruction 28547: 18.0851% -Rate for instruction 28548: 18.085% -Rate for instruction 28549: 18.0845% -Rate for instruction 28550: 18.0845% -Rate for instruction 28551: 18.0847% -Rate for instruction 28552: 18.0845% -Rate for instruction 28553: 18.0842% -Rate for instruction 28554: 18.0843% -Rate for instruction 28555: 18.0839% -Rate for instruction 28556: 18.0834% -Rate for instruction 28557: 18.0833% -Rate for instruction 28558: 18.0835% -Rate for instruction 28559: 18.083% -Rate for instruction 28560: 18.0828% -Rate for instruction 28561: 18.0832% -Rate for instruction 28562: 18.0832% -Rate for instruction 28563: 18.0838% -Rate for instruction 28564: 18.084% -Rate for instruction 28565: 18.0835% -Rate for instruction 28566: 18.0831% -Rate for instruction 28567: 18.0832% -Rate for instruction 28568: 18.0827% -Rate for instruction 28569: 18.083% -Rate for instruction 28570: 18.0832% -Rate for instruction 28571: 18.0829% -Rate for instruction 28572: 18.0826% -Rate for instruction 28573: 18.0821% -Rate for instruction 28574: 18.0817% -Rate for instruction 28575: 18.0815% -Rate for instruction 28576: 18.0814% -Rate for instruction 28577: 18.0811% -Rate for instruction 28578: 18.0809% -Rate for instruction 28579: 18.0807% -Rate for instruction 28580: 18.0802% -Rate for instruction 28581: 18.0802% -Rate for instruction 28582: 18.0797% -Rate for instruction 28583: 18.0795% -Rate for instruction 28584: 18.0795% -Rate for instruction 28585: 18.0797% -Rate for instruction 28586: 18.0804% -Rate for instruction 28587: 18.0801% -Rate for instruction 28588: 18.0806% -Rate for instruction 28589: 18.0804% -Rate for instruction 28590: 18.0799% -Rate for instruction 28591: 18.0794% -Rate for instruction 28592: 18.0797% -Rate for instruction 28593: 18.0799% -Rate for instruction 28594: 18.0806% -Rate for instruction 28595: 18.0808% -Rate for instruction 28596: 18.0804% -Rate for instruction 28597: 18.0803% -Rate for instruction 28598: 18.0802% -Rate for instruction 28599: 18.0803% -Rate for instruction 28600: 18.0802% -Rate for instruction 28601: 18.0805% -Rate for instruction 28602: 18.0805% -Rate for instruction 28603: 18.0808% -Rate for instruction 28604: 18.0814% -Rate for instruction 28605: 18.0813% -Rate for instruction 28606: 18.081% -Rate for instruction 28607: 18.0806% -Rate for instruction 28608: 18.0802% -Rate for instruction 28609: 18.08% -Rate for instruction 28610: 18.0795% -Rate for instruction 28611: 18.0797% -Rate for instruction 28612: 18.0796% -Rate for instruction 28613: 18.0806% -Rate for instruction 28614: 18.0814% -Rate for instruction 28615: 18.0811% -Rate for instruction 28616: 18.0816% -Rate for instruction 28617: 18.0811% -Rate for instruction 28618: 18.0821% -Rate for instruction 28619: 18.0828% -Rate for instruction 28620: 18.0829% -Rate for instruction 28621: 18.0824% -Rate for instruction 28622: 18.0834% -Rate for instruction 28623: 18.0847% -Rate for instruction 28624: 18.0851% -Rate for instruction 28625: 18.0856% -Rate for instruction 28626: 18.0855% -Rate for instruction 28627: 18.0853% -Rate for instruction 28628: 18.0851% -Rate for instruction 28629: 18.0847% -Rate for instruction 28630: 18.0845% -Rate for instruction 28631: 18.0841% -Rate for instruction 28632: 18.084% -Rate for instruction 28633: 18.0838% -Rate for instruction 28634: 18.0838% -Rate for instruction 28635: 18.0835% -Rate for instruction 28636: 18.0834% -Rate for instruction 28637: 18.0832% -Rate for instruction 28638: 18.0832% -Rate for instruction 28639: 18.0832% -Rate for instruction 28640: 18.0827% -Rate for instruction 28641: 18.0828% -Rate for instruction 28642: 18.0832% -Rate for instruction 28643: 18.0829% -Rate for instruction 28644: 18.0829% -Rate for instruction 28645: 18.0828% -Rate for instruction 28646: 18.0826% -Rate for instruction 28647: 18.0823% -Rate for instruction 28648: 18.082% -Rate for instruction 28649: 18.0818% -Rate for instruction 28650: 18.0821% -Rate for instruction 28651: 18.0817% -Rate for instruction 28652: 18.0819% -Rate for instruction 28653: 18.0818% -Rate for instruction 28654: 18.0817% -Rate for instruction 28655: 18.0816% -Rate for instruction 28656: 18.0823% -Rate for instruction 28657: 18.0833% -Rate for instruction 28658: 18.0828% -Rate for instruction 28659: 18.0827% -Rate for instruction 28660: 18.0829% -Rate for instruction 28661: 18.0828% -Rate for instruction 28662: 18.0825% -Rate for instruction 28663: 18.0827% -Rate for instruction 28664: 18.0822% -Rate for instruction 28665: 18.0823% -Rate for instruction 28666: 18.0822% -Rate for instruction 28667: 18.0817% -Rate for instruction 28668: 18.0822% -Rate for instruction 28669: 18.083% -Rate for instruction 28670: 18.0826% -Rate for instruction 28671: 18.0821% -Rate for instruction 28672: 18.082% -Rate for instruction 28673: 18.0818% -Rate for instruction 28674: 18.0814% -Rate for instruction 28675: 18.0812% -Rate for instruction 28676: 18.0808% -Rate for instruction 28677: 18.0803% -Rate for instruction 28678: 18.0804% -Rate for instruction 28679: 18.0813% -Rate for instruction 28680: 18.0817% -Rate for instruction 28681: 18.0812% -Rate for instruction 28682: 18.0807% -Rate for instruction 28683: 18.0811% -Rate for instruction 28684: 18.0806% -Rate for instruction 28685: 18.0802% -Rate for instruction 28686: 18.0798% -Rate for instruction 28687: 18.0799% -Rate for instruction 28688: 18.0804% -Rate for instruction 28689: 18.0804% -Rate for instruction 28690: 18.0809% -Rate for instruction 28691: 18.0805% -Rate for instruction 28692: 18.0809% -Rate for instruction 28693: 18.0812% -Rate for instruction 28694: 18.081% -Rate for instruction 28695: 18.0808% -Rate for instruction 28696: 18.0807% -Rate for instruction 28697: 18.0811% -Rate for instruction 28698: 18.081% -Rate for instruction 28699: 18.0809% -Rate for instruction 28700: 18.0811% -Rate for instruction 28701: 18.0813% -Rate for instruction 28702: 18.0808% -Rate for instruction 28703: 18.0808% -Rate for instruction 28704: 18.0807% -Rate for instruction 28705: 18.0804% -Rate for instruction 28706: 18.0804% -Rate for instruction 28707: 18.0801% -Rate for instruction 28708: 18.0798% -Rate for instruction 28709: 18.08% -Rate for instruction 28710: 18.0795% -Rate for instruction 28711: 18.0794% -Rate for instruction 28712: 18.0791% -Rate for instruction 28713: 18.0794% -Rate for instruction 28714: 18.0793% -Rate for instruction 28715: 18.079% -Rate for instruction 28716: 18.0788% -Rate for instruction 28717: 18.0786% -Rate for instruction 28718: 18.0788% -Rate for instruction 28719: 18.0788% -Rate for instruction 28720: 18.0786% -Rate for instruction 28721: 18.0782% -Rate for instruction 28722: 18.0782% -Rate for instruction 28723: 18.078% -Rate for instruction 28724: 18.0782% -Rate for instruction 28725: 18.0781% -Rate for instruction 28726: 18.078% -Rate for instruction 28727: 18.0782% -Rate for instruction 28728: 18.0782% -Rate for instruction 28729: 18.0793% -Rate for instruction 28730: 18.0802% -Rate for instruction 28731: 18.0801% -Rate for instruction 28732: 18.08% -Rate for instruction 28733: 18.08% -Rate for instruction 28734: 18.0795% -Rate for instruction 28735: 18.0792% -Rate for instruction 28736: 18.0788% -Rate for instruction 28737: 18.0786% -Rate for instruction 28738: 18.0785% -Rate for instruction 28739: 18.0783% -Rate for instruction 28740: 18.078% -Rate for instruction 28741: 18.0783% -Rate for instruction 28742: 18.0785% -Rate for instruction 28743: 18.0786% -Rate for instruction 28744: 18.0781% -Rate for instruction 28745: 18.0776% -Rate for instruction 28746: 18.0771% -Rate for instruction 28747: 18.0767% -Rate for instruction 28748: 18.0762% -Rate for instruction 28749: 18.0759% -Rate for instruction 28750: 18.0759% -Rate for instruction 28751: 18.0755% -Rate for instruction 28752: 18.0753% -Rate for instruction 28753: 18.0752% -Rate for instruction 28754: 18.0748% -Rate for instruction 28755: 18.0749% -Rate for instruction 28756: 18.0753% -Rate for instruction 28757: 18.0751% -Rate for instruction 28758: 18.0757% -Rate for instruction 28759: 18.0759% -Rate for instruction 28760: 18.0756% -Rate for instruction 28761: 18.0753% -Rate for instruction 28762: 18.0754% -Rate for instruction 28763: 18.0755% -Rate for instruction 28764: 18.0751% -Rate for instruction 28765: 18.0754% -Rate for instruction 28766: 18.0749% -Rate for instruction 28767: 18.075% -Rate for instruction 28768: 18.0749% -Rate for instruction 28769: 18.0745% -Rate for instruction 28770: 18.0744% -Rate for instruction 28771: 18.0743% -Rate for instruction 28772: 18.0744% -Rate for instruction 28773: 18.0748% -Rate for instruction 28774: 18.0747% -Rate for instruction 28775: 18.0749% -Rate for instruction 28776: 18.0753% -Rate for instruction 28777: 18.0748% -Rate for instruction 28778: 18.0746% -Rate for instruction 28779: 18.0745% -Rate for instruction 28780: 18.0743% -Rate for instruction 28781: 18.0739% -Rate for instruction 28782: 18.0741% -Rate for instruction 28783: 18.0749% -Rate for instruction 28784: 18.0745% -Rate for instruction 28785: 18.0741% -Rate for instruction 28786: 18.0751% -Rate for instruction 28787: 18.0763% -Rate for instruction 28788: 18.0774% -Rate for instruction 28789: 18.0781% -Rate for instruction 28790: 18.0778% -Rate for instruction 28791: 18.0791% -Rate for instruction 28792: 18.0788% -Rate for instruction 28793: 18.0792% -Rate for instruction 28794: 18.0798% -Rate for instruction 28795: 18.0801% -Rate for instruction 28796: 18.0809% -Rate for instruction 28797: 18.0818% -Rate for instruction 28798: 18.0817% -Rate for instruction 28799: 18.0824% -Rate for instruction 28800: 18.0819% -Rate for instruction 28801: 18.0817% -Rate for instruction 28802: 18.0813% -Rate for instruction 28803: 18.0812% -Rate for instruction 28804: 18.0809% -Rate for instruction 28805: 18.0808% -Rate for instruction 28806: 18.0809% -Rate for instruction 28807: 18.081% -Rate for instruction 28808: 18.0808% -Rate for instruction 28809: 18.0809% -Rate for instruction 28810: 18.0804% -Rate for instruction 28811: 18.0805% -Rate for instruction 28812: 18.0809% -Rate for instruction 28813: 18.0804% -Rate for instruction 28814: 18.0799% -Rate for instruction 28815: 18.0796% -Rate for instruction 28816: 18.0801% -Rate for instruction 28817: 18.0799% -Rate for instruction 28818: 18.0796% -Rate for instruction 28819: 18.0791% -Rate for instruction 28820: 18.0787% -Rate for instruction 28821: 18.079% -Rate for instruction 28822: 18.0786% -Rate for instruction 28823: 18.0786% -Rate for instruction 28824: 18.0786% -Rate for instruction 28825: 18.0788% -Rate for instruction 28826: 18.0783% -Rate for instruction 28827: 18.0786% -Rate for instruction 28828: 18.0785% -Rate for instruction 28829: 18.0792% -Rate for instruction 28830: 18.0799% -Rate for instruction 28831: 18.0798% -Rate for instruction 28832: 18.0798% -Rate for instruction 28833: 18.0798% -Rate for instruction 28834: 18.0795% -Rate for instruction 28835: 18.0794% -Rate for instruction 28836: 18.0791% -Rate for instruction 28837: 18.0786% -Rate for instruction 28838: 18.0784% -Rate for instruction 28839: 18.0787% -Rate for instruction 28840: 18.0783% -Rate for instruction 28841: 18.0785% -Rate for instruction 28842: 18.0784% -Rate for instruction 28843: 18.0784% -Rate for instruction 28844: 18.0787% -Rate for instruction 28845: 18.0784% -Rate for instruction 28846: 18.0784% -Rate for instruction 28847: 18.0784% -Rate for instruction 28848: 18.0779% -Rate for instruction 28849: 18.0784% -Rate for instruction 28850: 18.0782% -Rate for instruction 28851: 18.0785% -Rate for instruction 28852: 18.079% -Rate for instruction 28853: 18.0787% -Rate for instruction 28854: 18.0782% -Rate for instruction 28855: 18.0781% -Rate for instruction 28856: 18.0779% -Rate for instruction 28857: 18.0775% -Rate for instruction 28858: 18.0779% -Rate for instruction 28859: 18.078% -Rate for instruction 28860: 18.0779% -Rate for instruction 28861: 18.0779% -Rate for instruction 28862: 18.0785% -Rate for instruction 28863: 18.0781% -Rate for instruction 28864: 18.0783% -Rate for instruction 28865: 18.078% -Rate for instruction 28866: 18.0783% -Rate for instruction 28867: 18.0782% -Rate for instruction 28868: 18.0787% -Rate for instruction 28869: 18.0785% -Rate for instruction 28870: 18.0784% -Rate for instruction 28871: 18.0787% -Rate for instruction 28872: 18.0793% -Rate for instruction 28873: 18.0792% -Rate for instruction 28874: 18.079% -Rate for instruction 28875: 18.0788% -Rate for instruction 28876: 18.0797% -Rate for instruction 28877: 18.0794% -Rate for instruction 28878: 18.0794% -Rate for instruction 28879: 18.0796% -Rate for instruction 28880: 18.0792% -Rate for instruction 28881: 18.0795% -Rate for instruction 28882: 18.0794% -Rate for instruction 28883: 18.0792% -Rate for instruction 28884: 18.0793% -Rate for instruction 28885: 18.0792% -Rate for instruction 28886: 18.0788% -Rate for instruction 28887: 18.0786% -Rate for instruction 28888: 18.0781% -Rate for instruction 28889: 18.0781% -Rate for instruction 28890: 18.0788% -Rate for instruction 28891: 18.0798% -Rate for instruction 28892: 18.0796% -Rate for instruction 28893: 18.0796% -Rate for instruction 28894: 18.0791% -Rate for instruction 28895: 18.0788% -Rate for instruction 28896: 18.0783% -Rate for instruction 28897: 18.0779% -Rate for instruction 28898: 18.0778% -Rate for instruction 28899: 18.0785% -Rate for instruction 28900: 18.0794% -Rate for instruction 28901: 18.079% -Rate for instruction 28902: 18.0794% -Rate for instruction 28903: 18.0789% -Rate for instruction 28904: 18.0795% -Rate for instruction 28905: 18.0793% -Rate for instruction 28906: 18.0797% -Rate for instruction 28907: 18.0804% -Rate for instruction 28908: 18.0801% -Rate for instruction 28909: 18.0805% -Rate for instruction 28910: 18.0806% -Rate for instruction 28911: 18.0801% -Rate for instruction 28912: 18.08% -Rate for instruction 28913: 18.0808% -Rate for instruction 28914: 18.0812% -Rate for instruction 28915: 18.081% -Rate for instruction 28916: 18.0808% -Rate for instruction 28917: 18.081% -Rate for instruction 28918: 18.0815% -Rate for instruction 28919: 18.0821% -Rate for instruction 28920: 18.0816% -Rate for instruction 28921: 18.0815% -Rate for instruction 28922: 18.081% -Rate for instruction 28923: 18.0807% -Rate for instruction 28924: 18.0803% -Rate for instruction 28925: 18.0798% -Rate for instruction 28926: 18.0795% -Rate for instruction 28927: 18.0792% -Rate for instruction 28928: 18.0793% -Rate for instruction 28929: 18.0796% -Rate for instruction 28930: 18.0791% -Rate for instruction 28931: 18.0787% -Rate for instruction 28932: 18.0785% -Rate for instruction 28933: 18.0783% -Rate for instruction 28934: 18.079% -Rate for instruction 28935: 18.0785% -Rate for instruction 28936: 18.0791% -Rate for instruction 28937: 18.0791% -Rate for instruction 28938: 18.0789% -Rate for instruction 28939: 18.0784% -Rate for instruction 28940: 18.079% -Rate for instruction 28941: 18.0793% -Rate for instruction 28942: 18.0794% -Rate for instruction 28943: 18.0791% -Rate for instruction 28944: 18.0787% -Rate for instruction 28945: 18.0785% -Rate for instruction 28946: 18.078% -Rate for instruction 28947: 18.0787% -Rate for instruction 28948: 18.0789% -Rate for instruction 28949: 18.0787% -Rate for instruction 28950: 18.0798% -Rate for instruction 28951: 18.0806% -Rate for instruction 28952: 18.0812% -Rate for instruction 28953: 18.0811% -Rate for instruction 28954: 18.0812% -Rate for instruction 28955: 18.0814% -Rate for instruction 28956: 18.0809% -Rate for instruction 28957: 18.0807% -Rate for instruction 28958: 18.0817% -Rate for instruction 28959: 18.0825% -Rate for instruction 28960: 18.0823% -Rate for instruction 28961: 18.0818% -Rate for instruction 28962: 18.0814% -Rate for instruction 28963: 18.0809% -Rate for instruction 28964: 18.0808% -Rate for instruction 28965: 18.0803% -Rate for instruction 28966: 18.0815% -Rate for instruction 28967: 18.0812% -Rate for instruction 28968: 18.081% -Rate for instruction 28969: 18.0816% -Rate for instruction 28970: 18.0813% -Rate for instruction 28971: 18.081% -Rate for instruction 28972: 18.0805% -Rate for instruction 28973: 18.08% -Rate for instruction 28974: 18.0795% -Rate for instruction 28975: 18.0792% -Rate for instruction 28976: 18.0791% -Rate for instruction 28977: 18.0798% -Rate for instruction 28978: 18.0802% -Rate for instruction 28979: 18.0802% -Rate for instruction 28980: 18.0811% -Rate for instruction 28981: 18.0809% -Rate for instruction 28982: 18.0817% -Rate for instruction 28983: 18.0815% -Rate for instruction 28984: 18.0815% -Rate for instruction 28985: 18.0814% -Rate for instruction 28986: 18.0812% -Rate for instruction 28987: 18.0822% -Rate for instruction 28988: 18.0827% -Rate for instruction 28989: 18.0822% -Rate for instruction 28990: 18.0823% -Rate for instruction 28991: 18.0818% -Rate for instruction 28992: 18.0816% -Rate for instruction 28993: 18.0819% -Rate for instruction 28994: 18.0822% -Rate for instruction 28995: 18.0825% -Rate for instruction 28996: 18.0822% -Rate for instruction 28997: 18.0831% -Rate for instruction 28998: 18.0829% -Rate for instruction 28999: 18.0829% -Rate for instruction 29000: 18.0825% -Rate for instruction 29001: 18.0824% -Rate for instruction 29002: 18.0823% -Rate for instruction 29003: 18.0821% -Rate for instruction 29004: 18.0819% -Rate for instruction 29005: 18.0815% -Rate for instruction 29006: 18.0816% -Rate for instruction 29007: 18.0817% -Rate for instruction 29008: 18.0817% -Rate for instruction 29009: 18.0814% -Rate for instruction 29010: 18.0809% -Rate for instruction 29011: 18.081% -Rate for instruction 29012: 18.0815% -Rate for instruction 29013: 18.0824% -Rate for instruction 29014: 18.0824% -Rate for instruction 29015: 18.0822% -Rate for instruction 29016: 18.0824% -Rate for instruction 29017: 18.082% -Rate for instruction 29018: 18.0818% -Rate for instruction 29019: 18.0824% -Rate for instruction 29020: 18.0831% -Rate for instruction 29021: 18.083% -Rate for instruction 29022: 18.0826% -Rate for instruction 29023: 18.0824% -Rate for instruction 29024: 18.0823% -Rate for instruction 29025: 18.0833% -Rate for instruction 29026: 18.083% -Rate for instruction 29027: 18.0837% -Rate for instruction 29028: 18.0847% -Rate for instruction 29029: 18.0858% -Rate for instruction 29030: 18.0864% -Rate for instruction 29031: 18.0867% -Rate for instruction 29032: 18.0862% -Rate for instruction 29033: 18.0857% -Rate for instruction 29034: 18.0855% -Rate for instruction 29035: 18.0858% -Rate for instruction 29036: 18.0861% -Rate for instruction 29037: 18.0859% -Rate for instruction 29038: 18.0858% -Rate for instruction 29039: 18.0859% -Rate for instruction 29040: 18.0861% -Rate for instruction 29041: 18.0863% -Rate for instruction 29042: 18.0862% -Rate for instruction 29043: 18.0858% -Rate for instruction 29044: 18.0853% -Rate for instruction 29045: 18.0852% -Rate for instruction 29046: 18.0853% -Rate for instruction 29047: 18.0848% -Rate for instruction 29048: 18.0847% -Rate for instruction 29049: 18.0849% -Rate for instruction 29050: 18.0845% -Rate for instruction 29051: 18.084% -Rate for instruction 29052: 18.0847% -Rate for instruction 29053: 18.0842% -Rate for instruction 29054: 18.0852% -Rate for instruction 29055: 18.0851% -Rate for instruction 29056: 18.0861% -Rate for instruction 29057: 18.0865% -Rate for instruction 29058: 18.0867% -Rate for instruction 29059: 18.0871% -Rate for instruction 29060: 18.0877% -Rate for instruction 29061: 18.0877% -Rate for instruction 29062: 18.0875% -Rate for instruction 29063: 18.0882% -Rate for instruction 29064: 18.0888% -Rate for instruction 29065: 18.0895% -Rate for instruction 29066: 18.0896% -Rate for instruction 29067: 18.0891% -Rate for instruction 29068: 18.0897% -Rate for instruction 29069: 18.0892% -Rate for instruction 29070: 18.0889% -Rate for instruction 29071: 18.0889% -Rate for instruction 29072: 18.0886% -Rate for instruction 29073: 18.0894% -Rate for instruction 29074: 18.0893% -Rate for instruction 29075: 18.0893% -Rate for instruction 29076: 18.0896% -Rate for instruction 29077: 18.0905% -Rate for instruction 29078: 18.0918% -Rate for instruction 29079: 18.092% -Rate for instruction 29080: 18.0923% -Rate for instruction 29081: 18.0926% -Rate for instruction 29082: 18.0929% -Rate for instruction 29083: 18.0933% -Rate for instruction 29084: 18.0931% -Rate for instruction 29085: 18.093% -Rate for instruction 29086: 18.0933% -Rate for instruction 29087: 18.0935% -Rate for instruction 29088: 18.093% -Rate for instruction 29089: 18.0941% -Rate for instruction 29090: 18.0952% -Rate for instruction 29091: 18.095% -Rate for instruction 29092: 18.0953% -Rate for instruction 29093: 18.0964% -Rate for instruction 29094: 18.0959% -Rate for instruction 29095: 18.0965% -Rate for instruction 29096: 18.0964% -Rate for instruction 29097: 18.0965% -Rate for instruction 29098: 18.0968% -Rate for instruction 29099: 18.0974% -Rate for instruction 29100: 18.0969% -Rate for instruction 29101: 18.097% -Rate for instruction 29102: 18.0979% -Rate for instruction 29103: 18.0982% -Rate for instruction 29104: 18.0977% -Rate for instruction 29105: 18.0975% -Rate for instruction 29106: 18.0986% -Rate for instruction 29107: 18.0994% -Rate for instruction 29108: 18.1001% -Rate for instruction 29109: 18.1002% -Rate for instruction 29110: 18.1011% -Rate for instruction 29111: 18.102% -Rate for instruction 29112: 18.1028% -Rate for instruction 29113: 18.1024% -Rate for instruction 29114: 18.1024% -Rate for instruction 29115: 18.1021% -Rate for instruction 29116: 18.1019% -Rate for instruction 29117: 18.1018% -Rate for instruction 29118: 18.1017% -Rate for instruction 29119: 18.1018% -Rate for instruction 29120: 18.1013% -Rate for instruction 29121: 18.1012% -Rate for instruction 29122: 18.1012% -Rate for instruction 29123: 18.1011% -Rate for instruction 29124: 18.1008% -Rate for instruction 29125: 18.1004% -Rate for instruction 29126: 18.1003% -Rate for instruction 29127: 18.1011% -Rate for instruction 29128: 18.1007% -Rate for instruction 29129: 18.1007% -Rate for instruction 29130: 18.1002% -Rate for instruction 29131: 18.101% -Rate for instruction 29132: 18.1005% -Rate for instruction 29133: 18.1014% -Rate for instruction 29134: 18.1022% -Rate for instruction 29135: 18.1029% -Rate for instruction 29136: 18.1032% -Rate for instruction 29137: 18.1034% -Rate for instruction 29138: 18.1033% -Rate for instruction 29139: 18.1031% -Rate for instruction 29140: 18.103% -Rate for instruction 29141: 18.1034% -Rate for instruction 29142: 18.1034% -Rate for instruction 29143: 18.1031% -Rate for instruction 29144: 18.1026% -Rate for instruction 29145: 18.1025% -Rate for instruction 29146: 18.102% -Rate for instruction 29147: 18.1017% -Rate for instruction 29148: 18.1012% -Rate for instruction 29149: 18.1009% -Rate for instruction 29150: 18.101% -Rate for instruction 29151: 18.1006% -Rate for instruction 29152: 18.1001% -Rate for instruction 29153: 18.1002% -Rate for instruction 29154: 18.1005% -Rate for instruction 29155: 18.1008% -Rate for instruction 29156: 18.1008% -Rate for instruction 29157: 18.1006% -Rate for instruction 29158: 18.1004% -Rate for instruction 29159: 18.1001% -Rate for instruction 29160: 18.1003% -Rate for instruction 29161: 18.1001% -Rate for instruction 29162: 18.0996% -Rate for instruction 29163: 18.0991% -Rate for instruction 29164: 18.0987% -Rate for instruction 29165: 18.0984% -Rate for instruction 29166: 18.0979% -Rate for instruction 29167: 18.0981% -Rate for instruction 29168: 18.098% -Rate for instruction 29169: 18.0976% -Rate for instruction 29170: 18.0977% -Rate for instruction 29171: 18.0978% -Rate for instruction 29172: 18.0979% -Rate for instruction 29173: 18.098% -Rate for instruction 29174: 18.0985% -Rate for instruction 29175: 18.0983% -Rate for instruction 29176: 18.0983% -Rate for instruction 29177: 18.0979% -Rate for instruction 29178: 18.0976% -Rate for instruction 29179: 18.0971% -Rate for instruction 29180: 18.0969% -Rate for instruction 29181: 18.097% -Rate for instruction 29182: 18.0972% -Rate for instruction 29183: 18.0972% -Rate for instruction 29184: 18.0968% -Rate for instruction 29185: 18.0968% -Rate for instruction 29186: 18.0968% -Rate for instruction 29187: 18.0969% -Rate for instruction 29188: 18.0964% -Rate for instruction 29189: 18.0966% -Rate for instruction 29190: 18.0962% -Rate for instruction 29191: 18.096% -Rate for instruction 29192: 18.0958% -Rate for instruction 29193: 18.0958% -Rate for instruction 29194: 18.0957% -Rate for instruction 29195: 18.0953% -Rate for instruction 29196: 18.0954% -Rate for instruction 29197: 18.0953% -Rate for instruction 29198: 18.0955% -Rate for instruction 29199: 18.0954% -Rate for instruction 29200: 18.0953% -Rate for instruction 29201: 18.0956% -Rate for instruction 29202: 18.0952% -Rate for instruction 29203: 18.0949% -Rate for instruction 29204: 18.0946% -Rate for instruction 29205: 18.0947% -Rate for instruction 29206: 18.0946% -Rate for instruction 29207: 18.0944% -Rate for instruction 29208: 18.0941% -Rate for instruction 29209: 18.0939% -Rate for instruction 29210: 18.0934% -Rate for instruction 29211: 18.0933% -Rate for instruction 29212: 18.0931% -Rate for instruction 29213: 18.093% -Rate for instruction 29214: 18.0927% -Rate for instruction 29215: 18.0927% -Rate for instruction 29216: 18.0922% -Rate for instruction 29217: 18.0921% -Rate for instruction 29218: 18.0919% -Rate for instruction 29219: 18.0921% -Rate for instruction 29220: 18.0917% -Rate for instruction 29221: 18.0916% -Rate for instruction 29222: 18.092% -Rate for instruction 29223: 18.0923% -Rate for instruction 29224: 18.092% -Rate for instruction 29225: 18.092% -Rate for instruction 29226: 18.0922% -Rate for instruction 29227: 18.0924% -Rate for instruction 29228: 18.0923% -Rate for instruction 29229: 18.0924% -Rate for instruction 29230: 18.092% -Rate for instruction 29231: 18.0923% -Rate for instruction 29232: 18.0924% -Rate for instruction 29233: 18.0926% -Rate for instruction 29234: 18.093% -Rate for instruction 29235: 18.0937% -Rate for instruction 29236: 18.0943% -Rate for instruction 29237: 18.0946% -Rate for instruction 29238: 18.095% -Rate for instruction 29239: 18.0951% -Rate for instruction 29240: 18.0947% -Rate for instruction 29241: 18.0945% -Rate for instruction 29242: 18.0944% -Rate for instruction 29243: 18.0943% -Rate for instruction 29244: 18.0946% -Rate for instruction 29245: 18.0953% -Rate for instruction 29246: 18.0955% -Rate for instruction 29247: 18.0958% -Rate for instruction 29248: 18.0965% -Rate for instruction 29249: 18.0973% -Rate for instruction 29250: 18.098% -Rate for instruction 29251: 18.0984% -Rate for instruction 29252: 18.0985% -Rate for instruction 29253: 18.0985% -Rate for instruction 29254: 18.0996% -Rate for instruction 29255: 18.1004% -Rate for instruction 29256: 18.1001% -Rate for instruction 29257: 18.0997% -Rate for instruction 29258: 18.0992% -Rate for instruction 29259: 18.0989% -Rate for instruction 29260: 18.099% -Rate for instruction 29261: 18.0992% -Rate for instruction 29262: 18.099% -Rate for instruction 29263: 18.0989% -Rate for instruction 29264: 18.0988% -Rate for instruction 29265: 18.0983% -Rate for instruction 29266: 18.0986% -Rate for instruction 29267: 18.0985% -Rate for instruction 29268: 18.0986% -Rate for instruction 29269: 18.0985% -Rate for instruction 29270: 18.0986% -Rate for instruction 29271: 18.0993% -Rate for instruction 29272: 18.099% -Rate for instruction 29273: 18.099% -Rate for instruction 29274: 18.0985% -Rate for instruction 29275: 18.098% -Rate for instruction 29276: 18.0987% -Rate for instruction 29277: 18.0988% -Rate for instruction 29278: 18.0986% -Rate for instruction 29279: 18.0989% -Rate for instruction 29280: 18.0992% -Rate for instruction 29281: 18.0992% -Rate for instruction 29282: 18.099% -Rate for instruction 29283: 18.0991% -Rate for instruction 29284: 18.0988% -Rate for instruction 29285: 18.0997% -Rate for instruction 29286: 18.1003% -Rate for instruction 29287: 18.1006% -Rate for instruction 29288: 18.1008% -Rate for instruction 29289: 18.1011% -Rate for instruction 29290: 18.1011% -Rate for instruction 29291: 18.1017% -Rate for instruction 29292: 18.1025% -Rate for instruction 29293: 18.1031% -Rate for instruction 29294: 18.1034% -Rate for instruction 29295: 18.1038% -Rate for instruction 29296: 18.1044% -Rate for instruction 29297: 18.1044% -Rate for instruction 29298: 18.1043% -Rate for instruction 29299: 18.104% -Rate for instruction 29300: 18.1043% -Rate for instruction 29301: 18.1044% -Rate for instruction 29302: 18.1047% -Rate for instruction 29303: 18.1044% -Rate for instruction 29304: 18.1039% -Rate for instruction 29305: 18.1037% -Rate for instruction 29306: 18.1032% -Rate for instruction 29307: 18.1028% -Rate for instruction 29308: 18.1023% -Rate for instruction 29309: 18.1032% -Rate for instruction 29310: 18.104% -Rate for instruction 29311: 18.1035% -Rate for instruction 29312: 18.103% -Rate for instruction 29313: 18.1032% -Rate for instruction 29314: 18.1032% -Rate for instruction 29315: 18.103% -Rate for instruction 29316: 18.1028% -Rate for instruction 29317: 18.1027% -Rate for instruction 29318: 18.1025% -Rate for instruction 29319: 18.1024% -Rate for instruction 29320: 18.1019% -Rate for instruction 29321: 18.1015% -Rate for instruction 29322: 18.1013% -Rate for instruction 29323: 18.1023% -Rate for instruction 29324: 18.1028% -Rate for instruction 29325: 18.1026% -Rate for instruction 29326: 18.1028% -Rate for instruction 29327: 18.1028% -Rate for instruction 29328: 18.1026% -Rate for instruction 29329: 18.1025% -Rate for instruction 29330: 18.1029% -Rate for instruction 29331: 18.103% -Rate for instruction 29332: 18.1025% -Rate for instruction 29333: 18.1028% -Rate for instruction 29334: 18.1026% -Rate for instruction 29335: 18.1029% -Rate for instruction 29336: 18.1028% -Rate for instruction 29337: 18.1028% -Rate for instruction 29338: 18.103% -Rate for instruction 29339: 18.1034% -Rate for instruction 29340: 18.1038% -Rate for instruction 29341: 18.104% -Rate for instruction 29342: 18.1035% -Rate for instruction 29343: 18.103% -Rate for instruction 29344: 18.1031% -Rate for instruction 29345: 18.1031% -Rate for instruction 29346: 18.1033% -Rate for instruction 29347: 18.1036% -Rate for instruction 29348: 18.1034% -Rate for instruction 29349: 18.103% -Rate for instruction 29350: 18.1029% -Rate for instruction 29351: 18.1027% -Rate for instruction 29352: 18.1022% -Rate for instruction 29353: 18.102% -Rate for instruction 29354: 18.1018% -Rate for instruction 29355: 18.1015% -Rate for instruction 29356: 18.102% -Rate for instruction 29357: 18.1025% -Rate for instruction 29358: 18.102% -Rate for instruction 29359: 18.1019% -Rate for instruction 29360: 18.1016% -Rate for instruction 29361: 18.1015% -Rate for instruction 29362: 18.1017% -Rate for instruction 29363: 18.1017% -Rate for instruction 29364: 18.1016% -Rate for instruction 29365: 18.1017% -Rate for instruction 29366: 18.102% -Rate for instruction 29367: 18.1017% -Rate for instruction 29368: 18.1015% -Rate for instruction 29369: 18.1017% -Rate for instruction 29370: 18.1017% -Rate for instruction 29371: 18.1018% -Rate for instruction 29372: 18.1017% -Rate for instruction 29373: 18.1018% -Rate for instruction 29374: 18.102% -Rate for instruction 29375: 18.102% -Rate for instruction 29376: 18.1018% -Rate for instruction 29377: 18.1013% -Rate for instruction 29378: 18.1014% -Rate for instruction 29379: 18.1011% -Rate for instruction 29380: 18.1014% -Rate for instruction 29381: 18.1012% -Rate for instruction 29382: 18.101% -Rate for instruction 29383: 18.1013% -Rate for instruction 29384: 18.1008% -Rate for instruction 29385: 18.1005% -Rate for instruction 29386: 18.1002% -Rate for instruction 29387: 18.1004% -Rate for instruction 29388: 18.1008% -Rate for instruction 29389: 18.1009% -Rate for instruction 29390: 18.1005% -Rate for instruction 29391: 18.1004% -Rate for instruction 29392: 18.1007% -Rate for instruction 29393: 18.1002% -Rate for instruction 29394: 18.1004% -Rate for instruction 29395: 18.1004% -Rate for instruction 29396: 18.1006% -Rate for instruction 29397: 18.1009% -Rate for instruction 29398: 18.101% -Rate for instruction 29399: 18.1006% -Rate for instruction 29400: 18.1006% -Rate for instruction 29401: 18.1003% -Rate for instruction 29402: 18.1002% -Rate for instruction 29403: 18.0997% -Rate for instruction 29404: 18.1001% -Rate for instruction 29405: 18.1002% -Rate for instruction 29406: 18.0997% -Rate for instruction 29407: 18.0995% -Rate for instruction 29408: 18.0992% -Rate for instruction 29409: 18.0997% -Rate for instruction 29410: 18.0995% -Rate for instruction 29411: 18.1007% -Rate for instruction 29412: 18.1006% -Rate for instruction 29413: 18.1013% -Rate for instruction 29414: 18.1013% -Rate for instruction 29415: 18.1019% -Rate for instruction 29416: 18.1024% -Rate for instruction 29417: 18.1029% -Rate for instruction 29418: 18.1025% -Rate for instruction 29419: 18.1031% -Rate for instruction 29420: 18.1027% -Rate for instruction 29421: 18.1034% -Rate for instruction 29422: 18.1031% -Rate for instruction 29423: 18.1032% -Rate for instruction 29424: 18.1042% -Rate for instruction 29425: 18.1053% -Rate for instruction 29426: 18.1061% -Rate for instruction 29427: 18.1069% -Rate for instruction 29428: 18.1076% -Rate for instruction 29429: 18.1084% -Rate for instruction 29430: 18.1085% -Rate for instruction 29431: 18.1081% -Rate for instruction 29432: 18.1083% -Rate for instruction 29433: 18.108% -Rate for instruction 29434: 18.1077% -Rate for instruction 29435: 18.1072% -Rate for instruction 29436: 18.1072% -Rate for instruction 29437: 18.1072% -Rate for instruction 29438: 18.1069% -Rate for instruction 29439: 18.1072% -Rate for instruction 29440: 18.1071% -Rate for instruction 29441: 18.1073% -Rate for instruction 29442: 18.107% -Rate for instruction 29443: 18.107% -Rate for instruction 29444: 18.1072% -Rate for instruction 29445: 18.1068% -Rate for instruction 29446: 18.1068% -Rate for instruction 29447: 18.1069% -Rate for instruction 29448: 18.1069% -Rate for instruction 29449: 18.1071% -Rate for instruction 29450: 18.1066% -Rate for instruction 29451: 18.1065% -Rate for instruction 29452: 18.1062% -Rate for instruction 29453: 18.1057% -Rate for instruction 29454: 18.1053% -Rate for instruction 29455: 18.1058% -Rate for instruction 29456: 18.1054% -Rate for instruction 29457: 18.1061% -Rate for instruction 29458: 18.1057% -Rate for instruction 29459: 18.1056% -Rate for instruction 29460: 18.1061% -Rate for instruction 29461: 18.1064% -Rate for instruction 29462: 18.1068% -Rate for instruction 29463: 18.1072% -Rate for instruction 29464: 18.1071% -Rate for instruction 29465: 18.1077% -Rate for instruction 29466: 18.1076% -Rate for instruction 29467: 18.1074% -Rate for instruction 29468: 18.107% -Rate for instruction 29469: 18.1065% -Rate for instruction 29470: 18.1062% -Rate for instruction 29471: 18.106% -Rate for instruction 29472: 18.1055% -Rate for instruction 29473: 18.1051% -Rate for instruction 29474: 18.1047% -Rate for instruction 29475: 18.105% -Rate for instruction 29476: 18.1053% -Rate for instruction 29477: 18.1048% -Rate for instruction 29478: 18.1045% -Rate for instruction 29479: 18.1041% -Rate for instruction 29480: 18.1037% -Rate for instruction 29481: 18.1032% -Rate for instruction 29482: 18.1038% -Rate for instruction 29483: 18.1043% -Rate for instruction 29484: 18.1049% -Rate for instruction 29485: 18.1048% -Rate for instruction 29486: 18.1054% -Rate for instruction 29487: 18.105% -Rate for instruction 29488: 18.1048% -Rate for instruction 29489: 18.1044% -Rate for instruction 29490: 18.105% -Rate for instruction 29491: 18.1057% -Rate for instruction 29492: 18.1052% -Rate for instruction 29493: 18.1056% -Rate for instruction 29494: 18.1053% -Rate for instruction 29495: 18.1048% -Rate for instruction 29496: 18.1044% -Rate for instruction 29497: 18.1047% -Rate for instruction 29498: 18.1043% -Rate for instruction 29499: 18.1042% -Rate for instruction 29500: 18.1039% -Rate for instruction 29501: 18.1037% -Rate for instruction 29502: 18.1034% -Rate for instruction 29503: 18.1035% -Rate for instruction 29504: 18.104% -Rate for instruction 29505: 18.1041% -Rate for instruction 29506: 18.1037% -Rate for instruction 29507: 18.1036% -Rate for instruction 29508: 18.1037% -Rate for instruction 29509: 18.1035% -Rate for instruction 29510: 18.1039% -Rate for instruction 29511: 18.1045% -Rate for instruction 29512: 18.104% -Rate for instruction 29513: 18.1042% -Rate for instruction 29514: 18.1037% -Rate for instruction 29515: 18.1041% -Rate for instruction 29516: 18.1042% -Rate for instruction 29517: 18.1043% -Rate for instruction 29518: 18.1048% -Rate for instruction 29519: 18.1056% -Rate for instruction 29520: 18.1064% -Rate for instruction 29521: 18.1061% -Rate for instruction 29522: 18.1064% -Rate for instruction 29523: 18.1065% -Rate for instruction 29524: 18.1068% -Rate for instruction 29525: 18.1074% -Rate for instruction 29526: 18.1074% -Rate for instruction 29527: 18.1073% -Rate for instruction 29528: 18.1075% -Rate for instruction 29529: 18.107% -Rate for instruction 29530: 18.1067% -Rate for instruction 29531: 18.1067% -Rate for instruction 29532: 18.1067% -Rate for instruction 29533: 18.1065% -Rate for instruction 29534: 18.1071% -Rate for instruction 29535: 18.1071% -Rate for instruction 29536: 18.1081% -Rate for instruction 29537: 18.1077% -Rate for instruction 29538: 18.1077% -Rate for instruction 29539: 18.1083% -Rate for instruction 29540: 18.1079% -Rate for instruction 29541: 18.1075% -Rate for instruction 29542: 18.1078% -Rate for instruction 29543: 18.1077% -Rate for instruction 29544: 18.1075% -Rate for instruction 29545: 18.1071% -Rate for instruction 29546: 18.1069% -Rate for instruction 29547: 18.107% -Rate for instruction 29548: 18.107% -Rate for instruction 29549: 18.1075% -Rate for instruction 29550: 18.107% -Rate for instruction 29551: 18.1068% -Rate for instruction 29552: 18.1079% -Rate for instruction 29553: 18.1088% -Rate for instruction 29554: 18.1089% -Rate for instruction 29555: 18.1092% -Rate for instruction 29556: 18.1089% -Rate for instruction 29557: 18.1092% -Rate for instruction 29558: 18.1094% -Rate for instruction 29559: 18.11% -Rate for instruction 29560: 18.1095% -Rate for instruction 29561: 18.1095% -Rate for instruction 29562: 18.1098% -Rate for instruction 29563: 18.1105% -Rate for instruction 29564: 18.1111% -Rate for instruction 29565: 18.112% -Rate for instruction 29566: 18.1126% -Rate for instruction 29567: 18.1124% -Rate for instruction 29568: 18.1121% -Rate for instruction 29569: 18.1118% -Rate for instruction 29570: 18.1117% -Rate for instruction 29571: 18.1116% -Rate for instruction 29572: 18.1114% -Rate for instruction 29573: 18.1114% -Rate for instruction 29574: 18.1113% -Rate for instruction 29575: 18.1115% -Rate for instruction 29576: 18.1114% -Rate for instruction 29577: 18.1117% -Rate for instruction 29578: 18.1117% -Rate for instruction 29579: 18.1118% -Rate for instruction 29580: 18.1118% -Rate for instruction 29581: 18.1121% -Rate for instruction 29582: 18.1119% -Rate for instruction 29583: 18.1117% -Rate for instruction 29584: 18.1118% -Rate for instruction 29585: 18.112% -Rate for instruction 29586: 18.1122% -Rate for instruction 29587: 18.1122% -Rate for instruction 29588: 18.1125% -Rate for instruction 29589: 18.1125% -Rate for instruction 29590: 18.1134% -Rate for instruction 29591: 18.1138% -Rate for instruction 29592: 18.1133% -Rate for instruction 29593: 18.1128% -Rate for instruction 29594: 18.113% -Rate for instruction 29595: 18.1125% -Rate for instruction 29596: 18.1129% -Rate for instruction 29597: 18.1137% -Rate for instruction 29598: 18.1143% -Rate for instruction 29599: 18.1141% -Rate for instruction 29600: 18.114% -Rate for instruction 29601: 18.1135% -Rate for instruction 29602: 18.1138% -Rate for instruction 29603: 18.1133% -Rate for instruction 29604: 18.1139% -Rate for instruction 29605: 18.1135% -Rate for instruction 29606: 18.1133% -Rate for instruction 29607: 18.1136% -Rate for instruction 29608: 18.1138% -Rate for instruction 29609: 18.1136% -Rate for instruction 29610: 18.1131% -Rate for instruction 29611: 18.1127% -Rate for instruction 29612: 18.1122% -Rate for instruction 29613: 18.1127% -Rate for instruction 29614: 18.1122% -Rate for instruction 29615: 18.1118% -Rate for instruction 29616: 18.1119% -Rate for instruction 29617: 18.1115% -Rate for instruction 29618: 18.111% -Rate for instruction 29619: 18.1108% -Rate for instruction 29620: 18.1103% -Rate for instruction 29621: 18.11% -Rate for instruction 29622: 18.1095% -Rate for instruction 29623: 18.1091% -Rate for instruction 29624: 18.1087% -Rate for instruction 29625: 18.1082% -Rate for instruction 29626: 18.1081% -Rate for instruction 29627: 18.1084% -Rate for instruction 29628: 18.1079% -Rate for instruction 29629: 18.1082% -Rate for instruction 29630: 18.1079% -Rate for instruction 29631: 18.1074% -Rate for instruction 29632: 18.1073% -Rate for instruction 29633: 18.1081% -Rate for instruction 29634: 18.1077% -Rate for instruction 29635: 18.1079% -Rate for instruction 29636: 18.1077% -Rate for instruction 29637: 18.1076% -Rate for instruction 29638: 18.1076% -Rate for instruction 29639: 18.1072% -Rate for instruction 29640: 18.1069% -Rate for instruction 29641: 18.1071% -Rate for instruction 29642: 18.107% -Rate for instruction 29643: 18.1065% -Rate for instruction 29644: 18.1062% -Rate for instruction 29645: 18.1061% -Rate for instruction 29646: 18.106% -Rate for instruction 29647: 18.1055% -Rate for instruction 29648: 18.1056% -Rate for instruction 29649: 18.1055% -Rate for instruction 29650: 18.1056% -Rate for instruction 29651: 18.1054% -Rate for instruction 29652: 18.1049% -Rate for instruction 29653: 18.1047% -Rate for instruction 29654: 18.1051% -Rate for instruction 29655: 18.1052% -Rate for instruction 29656: 18.1049% -Rate for instruction 29657: 18.1051% -Rate for instruction 29658: 18.1049% -Rate for instruction 29659: 18.1049% -Rate for instruction 29660: 18.1045% -Rate for instruction 29661: 18.1045% -Rate for instruction 29662: 18.1041% -Rate for instruction 29663: 18.1037% -Rate for instruction 29664: 18.1036% -Rate for instruction 29665: 18.1033% -Rate for instruction 29666: 18.103% -Rate for instruction 29667: 18.1025% -Rate for instruction 29668: 18.1024% -Rate for instruction 29669: 18.1019% -Rate for instruction 29670: 18.1024% -Rate for instruction 29671: 18.1021% -Rate for instruction 29672: 18.1018% -Rate for instruction 29673: 18.1021% -Rate for instruction 29674: 18.1017% -Rate for instruction 29675: 18.1022% -Rate for instruction 29676: 18.1023% -Rate for instruction 29677: 18.1025% -Rate for instruction 29678: 18.1028% -Rate for instruction 29679: 18.1023% -Rate for instruction 29680: 18.1027% -Rate for instruction 29681: 18.1029% -Rate for instruction 29682: 18.1032% -Rate for instruction 29683: 18.1029% -Rate for instruction 29684: 18.1032% -Rate for instruction 29685: 18.1031% -Rate for instruction 29686: 18.1027% -Rate for instruction 29687: 18.1031% -Rate for instruction 29688: 18.1033% -Rate for instruction 29689: 18.1031% -Rate for instruction 29690: 18.103% -Rate for instruction 29691: 18.1033% -Rate for instruction 29692: 18.1035% -Rate for instruction 29693: 18.1038% -Rate for instruction 29694: 18.1038% -Rate for instruction 29695: 18.1034% -Rate for instruction 29696: 18.1032% -Rate for instruction 29697: 18.1033% -Rate for instruction 29698: 18.103% -Rate for instruction 29699: 18.103% -Rate for instruction 29700: 18.1026% -Rate for instruction 29701: 18.1025% -Rate for instruction 29702: 18.1024% -Rate for instruction 29703: 18.1028% -Rate for instruction 29704: 18.1024% -Rate for instruction 29705: 18.1021% -Rate for instruction 29706: 18.1021% -Rate for instruction 29707: 18.1018% -Rate for instruction 29708: 18.1019% -Rate for instruction 29709: 18.1024% -Rate for instruction 29710: 18.1032% -Rate for instruction 29711: 18.1033% -Rate for instruction 29712: 18.1028% -Rate for instruction 29713: 18.1037% -Rate for instruction 29714: 18.1033% -Rate for instruction 29715: 18.1037% -Rate for instruction 29716: 18.1042% -Rate for instruction 29717: 18.1049% -Rate for instruction 29718: 18.1045% -Rate for instruction 29719: 18.1046% -Rate for instruction 29720: 18.1047% -Rate for instruction 29721: 18.1042% -Rate for instruction 29722: 18.1042% -Rate for instruction 29723: 18.1041% -Rate for instruction 29724: 18.1042% -Rate for instruction 29725: 18.1042% -Rate for instruction 29726: 18.1042% -Rate for instruction 29727: 18.1041% -Rate for instruction 29728: 18.1042% -Rate for instruction 29729: 18.1046% -Rate for instruction 29730: 18.1048% -Rate for instruction 29731: 18.1043% -Rate for instruction 29732: 18.1041% -Rate for instruction 29733: 18.1041% -Rate for instruction 29734: 18.1047% -Rate for instruction 29735: 18.1042% -Rate for instruction 29736: 18.104% -Rate for instruction 29737: 18.1035% -Rate for instruction 29738: 18.1039% -Rate for instruction 29739: 18.1045% -Rate for instruction 29740: 18.1053% -Rate for instruction 29741: 18.1053% -Rate for instruction 29742: 18.105% -Rate for instruction 29743: 18.105% -Rate for instruction 29744: 18.1047% -Rate for instruction 29745: 18.1046% -Rate for instruction 29746: 18.1041% -Rate for instruction 29747: 18.104% -Rate for instruction 29748: 18.104% -Rate for instruction 29749: 18.1047% -Rate for instruction 29750: 18.1051% -Rate for instruction 29751: 18.1058% -Rate for instruction 29752: 18.1053% -Rate for instruction 29753: 18.1049% -Rate for instruction 29754: 18.1044% -Rate for instruction 29755: 18.1044% -Rate for instruction 29756: 18.1039% -Rate for instruction 29757: 18.1036% -Rate for instruction 29758: 18.1031% -Rate for instruction 29759: 18.1034% -Rate for instruction 29760: 18.1029% -Rate for instruction 29761: 18.1025% -Rate for instruction 29762: 18.1025% -Rate for instruction 29763: 18.1024% -Rate for instruction 29764: 18.1021% -Rate for instruction 29765: 18.1026% -Rate for instruction 29766: 18.1033% -Rate for instruction 29767: 18.1038% -Rate for instruction 29768: 18.1043% -Rate for instruction 29769: 18.1038% -Rate for instruction 29770: 18.1034% -Rate for instruction 29771: 18.1032% -Rate for instruction 29772: 18.1033% -Rate for instruction 29773: 18.1028% -Rate for instruction 29774: 18.1031% -Rate for instruction 29775: 18.1029% -Rate for instruction 29776: 18.1028% -Rate for instruction 29777: 18.1033% -Rate for instruction 29778: 18.1028% -Rate for instruction 29779: 18.1033% -Rate for instruction 29780: 18.1034% -Rate for instruction 29781: 18.1033% -Rate for instruction 29782: 18.1033% -Rate for instruction 29783: 18.1033% -Rate for instruction 29784: 18.104% -Rate for instruction 29785: 18.1048% -Rate for instruction 29786: 18.1055% -Rate for instruction 29787: 18.1059% -Rate for instruction 29788: 18.1055% -Rate for instruction 29789: 18.1056% -Rate for instruction 29790: 18.1055% -Rate for instruction 29791: 18.105% -Rate for instruction 29792: 18.1047% -Rate for instruction 29793: 18.1047% -Rate for instruction 29794: 18.1053% -Rate for instruction 29795: 18.1056% -Rate for instruction 29796: 18.1051% -Rate for instruction 29797: 18.1051% -Rate for instruction 29798: 18.1049% -Rate for instruction 29799: 18.1051% -Rate for instruction 29800: 18.1046% -Rate for instruction 29801: 18.1047% -Rate for instruction 29802: 18.105% -Rate for instruction 29803: 18.1055% -Rate for instruction 29804: 18.1062% -Rate for instruction 29805: 18.1067% -Rate for instruction 29806: 18.1062% -Rate for instruction 29807: 18.1065% -Rate for instruction 29808: 18.1066% -Rate for instruction 29809: 18.1063% -Rate for instruction 29810: 18.1061% -Rate for instruction 29811: 18.106% -Rate for instruction 29812: 18.1063% -Rate for instruction 29813: 18.1067% -Rate for instruction 29814: 18.1065% -Rate for instruction 29815: 18.1061% -Rate for instruction 29816: 18.1065% -Rate for instruction 29817: 18.1072% -Rate for instruction 29818: 18.1071% -Rate for instruction 29819: 18.1081% -Rate for instruction 29820: 18.1077% -Rate for instruction 29821: 18.1082% -Rate for instruction 29822: 18.1084% -Rate for instruction 29823: 18.1082% -Rate for instruction 29824: 18.1078% -Rate for instruction 29825: 18.1073% -Rate for instruction 29826: 18.1069% -Rate for instruction 29827: 18.1077% -Rate for instruction 29828: 18.1085% -Rate for instruction 29829: 18.109% -Rate for instruction 29830: 18.1085% -Rate for instruction 29831: 18.109% -Rate for instruction 29832: 18.1086% -Rate for instruction 29833: 18.1088% -Rate for instruction 29834: 18.1086% -Rate for instruction 29835: 18.1081% -Rate for instruction 29836: 18.1085% -Rate for instruction 29837: 18.1092% -Rate for instruction 29838: 18.1087% -Rate for instruction 29839: 18.1084% -Rate for instruction 29840: 18.1087% -Rate for instruction 29841: 18.1083% -Rate for instruction 29842: 18.1081% -Rate for instruction 29843: 18.1078% -Rate for instruction 29844: 18.1077% -Rate for instruction 29845: 18.1082% +Rate for instruction 1: 25% +Rate for instruction 2: 19.2308% +Rate for instruction 3: 19.2308% diff --git a/ramulator.yaml b/ramulator.yaml index b7cbe418fd..a395471ac6 100755 --- a/ramulator.yaml +++ b/ramulator.yaml @@ -37,4 +37,4 @@ MemorySystem: target_cycle: 0} AddrMapper: - impl: PBPI_Mapping + impl: RASL diff --git a/ramulator2ext/src/addr_mapper/impl/champsim_mappers.cpp b/ramulator2ext/src/addr_mapper/impl/champsim_mappers.cpp index 6de81688ed..bf614a945c 100644 --- a/ramulator2ext/src/addr_mapper/impl/champsim_mappers.cpp +++ b/ramulator2ext/src/addr_mapper/impl/champsim_mappers.cpp @@ -236,7 +236,7 @@ namespace Ramulator{ if (outFile.is_open()) { for (size_t i = 0; i < power_consumption_rates.size(); ++i) { - outFile << "Rate for instruction " << i << ": " << power_consumption_rates[i] << "%" << std::endl; + outFile << "Cumulative Power Consumption: " << power_consumption_rates[i] << "%" << std::endl; } outFile.close(); // Close the file } else { @@ -245,7 +245,7 @@ namespace Ramulator{ } }; - /****************************************This is where I will apply my method RASL*******************************************/ + /****************************************This is where I will apply my method RASL - Yanez Saucedo*******************************************/ class RASL final : public IAddrMapper, public Implementation { RAMULATOR_REGISTER_IMPLEMENTATION(IAddrMapper, RASL, "RASL", "Applies a RASL Mapping to the address. Yanez's Scheme."); // We will try to increase randomization without using too much power @@ -419,7 +419,13 @@ namespace Ramulator{ //std::cout << "The power consumption rate: " << std::dec << power_consumption_rate << "%" << std::endl << std::endl; power_consumption_rates.push_back(power_consumption_rate); - writePowerConsumptionRatesToFile("power_consumption_rates_rasl.txt"); + // using this when not using the text file + for (size_t p = 0; p < power_consumption_rates.size(); ++p) + { + std::cout << "power consumption = " << power_consumption_rates[p] << "%" << std::endl; + } + + //writePowerConsumptionRatesToFile("power_consumption_rates_rasl.txt"); } void writePowerConsumptionRatesToFile(const std::string& filename) const { @@ -427,7 +433,7 @@ namespace Ramulator{ if (outFile.is_open()) { for (size_t i = 0; i < power_consumption_rates.size(); ++i) { - outFile << "Rate for instruction " << i << ": " << power_consumption_rates[i] << "%" << std::endl; + outFile << "Cumulative Power Consumption: " << power_consumption_rates[i] << "%" << std::endl; } outFile.close(); // Close the file } else { diff --git a/src/vmem.cc b/src/vmem.cc index 48f7748f35..5532848dcb 100644 --- a/src/vmem.cc +++ b/src/vmem.cc @@ -159,4 +159,4 @@ std::pair VirtualMemory::g } return {paddr, penalty}; -} \ No newline at end of file +}