diff --git a/eth-types/Cargo.toml b/eth-types/Cargo.toml index 200d2a7b..4ccd3971 100644 --- a/eth-types/Cargo.toml +++ b/eth-types/Cargo.toml @@ -16,7 +16,8 @@ halo2curves.workspace = true ethereum-types.workspace = true regex = "1.5.4" lazy_static = "1.4" -subtle = "2.4" +subtle = "2.5" +num = "0.4" num-bigint.workspace = true strum_macros = "0.24" strum = "0.24" diff --git a/eth-types/src/spec.rs b/eth-types/src/spec.rs index 82802fa3..ee503a4c 100644 --- a/eth-types/src/spec.rs +++ b/eth-types/src/spec.rs @@ -20,6 +20,10 @@ pub trait Spec: 'static + Sized + Copy + Default + Debug { const EXECUTION_STATE_ROOT_DEPTH: usize; const FINALIZED_HEADER_INDEX: usize; const FINALIZED_HEADER_DEPTH: usize; + + const HEADER_SLOT_INDEX: usize = 8; + const HEADER_STATE_ROOT_INDEX: usize = 11; + const HEADER_BODY_ROOT_INDEX: usize = 12; } #[derive(Copy, Clone, PartialEq, Eq, Debug, Default)] diff --git a/lightclient-circuits/src/committee_update_circuit.rs b/lightclient-circuits/src/committee_update_circuit.rs index 15bf7e74..1912b66e 100644 --- a/lightclient-circuits/src/committee_update_circuit.rs +++ b/lightclient-circuits/src/committee_update_circuit.rs @@ -5,7 +5,7 @@ use crate::{ gadget::crypto::{HashInstructions, Sha256ChipWide, ShaBitGateManager, ShaCircuitBuilder}, poseidon::{g1_array_poseidon, poseidon_committee_commitment_from_compressed}, - ssz_merkle::{ssz_merkleize_chunks, verify_merkle_proof}, + ssz_merkle::{ssz_merkleize_chunks, verify_merkle_multiproof, verify_merkle_proof}, util::{bytes_be_to_u128, AppCircuit, CommonGateManager, Eth2ConfigPinning, IntoWitness}, witness::{self, HashInput, HashInputChunk}, Eth2CircuitBuilder, @@ -86,16 +86,24 @@ impl CommitteeUpdateCircuit { .iter() .map(|v| builder.main().load_witness(F::from(*v as u64))) .collect_vec(); - let finalized_header_root = ssz_merkleize_chunks( + let finalized_header_root = args + .finalized_header + .tree_hash_root() + .0 + .iter() + .map(|v| builder.main().load_witness(F::from(*v as u64))) + .collect_vec(); + + verify_merkle_multiproof( builder, &sha256_chip, - [ - args.finalized_header.slot.as_u64().into_witness(), - args.finalized_header.proposer_index.into_witness(), - args.finalized_header.parent_root.as_ref().into_witness(), - finalized_state_root.clone().into(), - args.finalized_header.body_root.as_ref().into_witness(), - ], + args.finalized_header_multiproof + .iter() + .map(|w| w.clone().into_witness()), + [finalized_state_root.clone().into()], + &finalized_header_root, + [S::HEADER_STATE_ROOT_INDEX], + args.finalized_header_helper_indices.clone(), )?; // Verify that the sync committee root is in the finalized state root diff --git a/lightclient-circuits/src/ssz_merkle.rs b/lightclient-circuits/src/ssz_merkle.rs index ebd39dd3..d6af5840 100644 --- a/lightclient-circuits/src/ssz_merkle.rs +++ b/lightclient-circuits/src/ssz_merkle.rs @@ -2,6 +2,8 @@ // Code: https://github.com/ChainSafe/Spectre // SPDX-License-Identifier: LGPL-3.0-only +use std::collections::HashMap; + use crate::{ gadget::crypto::HashInstructions, util::IntoConstant, @@ -111,6 +113,60 @@ pub fn verify_merkle_proof>( Ok(()) } +// Implements following https://github.com/ethereum/consensus-specs/blob/dev/ssz/merkle-proofs.md#merkle-multiproofs +pub fn verify_merkle_multiproof>( + builder: &mut CircuitBuilder, + hasher: &impl HashInstructions, + branch: impl IntoIterator>>, + leaves: impl IntoIterator>>, + root: &[AssignedValue], + gindices: impl IntoIterator, + helper_indices: impl IntoIterator, +) -> Result<(), Error> { + let mut objects: HashMap = gindices + .into_iter() + .zip(leaves) + .chain(helper_indices.into_iter().zip(branch)) + .collect(); + let mut keys = objects.keys().copied().collect_vec(); + keys.sort_by(|a, b| b.cmp(a)); + + let mut pos = 0; + while pos < keys.len() { + let k = keys[pos]; + // if the sibling exists AND the parent does NOT, we hash + if objects.contains_key(&k) + && objects.contains_key(&(k ^ 1)) + && !objects.contains_key(&(k / 2)) + { + let left = objects[&((k | 1) ^ 1)].clone(); + let right = objects[&(k | 1)].clone(); + let computed_hash = hasher + .digest(builder, HashInput::TwoToOne(left, right))? + .into(); + objects.insert(k / 2, computed_hash); + keys.push(k / 2); + } + pos += 1; + } + + let computed_root = objects + .get(&1) + .unwrap() + .clone() + .into_iter() + .map(|b| match b { + QuantumCell::Existing(av) => av, + _ => unreachable!(), + }); + + computed_root.zip(root.iter()).for_each(|(a, b)| { + builder.main().constrain_equal(&a, b); + }); + + Ok(()) +} + lazy_static! { // Calculates padding Merkle notes for the 2 first levels of the Merkle tree. // Used to pad the input to a power of two. Only 2 levels are precomputed because the number of not even inputs is limited. diff --git a/lightclient-circuits/src/sync_step_circuit.rs b/lightclient-circuits/src/sync_step_circuit.rs index f6d6d781..76089900 100644 --- a/lightclient-circuits/src/sync_step_circuit.rs +++ b/lightclient-circuits/src/sync_step_circuit.rs @@ -11,7 +11,7 @@ use crate::{ to_bytes_le, }, poseidon::{g1_array_poseidon, poseidon_committee_commitment_from_uncompressed}, - ssz_merkle::{ssz_merkleize_chunks, verify_merkle_proof}, + ssz_merkle::{verify_merkle_multiproof, verify_merkle_proof}, util::{AppCircuit, Eth2ConfigPinning, IntoWitness}, witness::{self, HashInput, HashInputChunk, SyncStepArgs}, Eth2CircuitBuilder, @@ -109,7 +109,6 @@ impl StepCircuit { y_signs_packed, )?; - // Compute attested header root let attested_slot_bytes: HashInputChunk<_> = args.attested_header.slot.as_u64().into_witness(); let attested_header_state_root = args @@ -119,19 +118,29 @@ impl StepCircuit { .iter() .map(|v| builder.main().load_witness(F::from(*v as u64))) .collect_vec(); - let attested_header_root = ssz_merkleize_chunks( + let attested_header_root = args + .attested_header + .tree_hash_root() + .0 + .iter() + .map(|v| builder.main().load_witness(F::from(*v as u64))) + .collect_vec(); + + verify_merkle_multiproof( builder, &sha256_chip, + args.attested_header_multiproof + .iter() + .map(|w| w.clone().into_witness()), [ attested_slot_bytes.clone(), - args.attested_header.proposer_index.into_witness(), - args.attested_header.parent_root.as_ref().into_witness(), attested_header_state_root.clone().into(), - args.attested_header.body_root.as_ref().into_witness(), ], + &attested_header_root, + [S::HEADER_SLOT_INDEX, S::HEADER_STATE_ROOT_INDEX], + args.attested_header_helper_indices.clone(), )?; - // Compute finalized header root let finalized_block_body_root = args .finalized_header .body_root @@ -141,16 +150,28 @@ impl StepCircuit { .collect_vec(); let finalized_slot_bytes: HashInputChunk<_> = args.finalized_header.slot.as_u64().into_witness(); - let finalized_header_root = ssz_merkleize_chunks( + + let finalized_header_root = args + .finalized_header + .tree_hash_root() + .0 + .iter() + .map(|v| builder.main().load_witness(F::from(*v as u64))) + .collect_vec(); + + verify_merkle_multiproof( builder, &sha256_chip, + args.finalized_header_multiproof + .iter() + .map(|w| w.clone().into_witness()), [ finalized_slot_bytes.clone(), - args.finalized_header.proposer_index.into_witness(), - args.finalized_header.parent_root.as_ref().into_witness(), - args.finalized_header.state_root.as_ref().into_witness(), finalized_block_body_root.clone().into(), ], + &finalized_header_root, + [S::HEADER_SLOT_INDEX, S::HEADER_BODY_ROOT_INDEX], + args.finalized_header_helper_indices.clone(), )?; let signing_root = sha256_chip.digest( diff --git a/lightclient-circuits/src/witness/multiproof.rs b/lightclient-circuits/src/witness/multiproof.rs index 44ff6957..31f9e70a 100644 --- a/lightclient-circuits/src/witness/multiproof.rs +++ b/lightclient-circuits/src/witness/multiproof.rs @@ -1,9 +1,10 @@ // TODO: A lot if not all/most of this code is copy pasta from: https://github.com/ralexstokes/ssz-rs/pull/118 which is mostly implemented w.r.t. the spec // TODO: Remove this once the above PR lands in ssz-rs -use ethereum_types::Hash256; +use ethereum_types::{BeaconBlockHeader, Hash256}; use sha2::{Digest, Sha256}; use std::collections::{HashMap, HashSet}; +use tree_hash::TreeHash; pub type GeneralizedIndex = usize; @@ -187,3 +188,31 @@ pub fn create_multiproof( .map(|i| merkle_tree[i]) .collect() } + +/// Returns nodes representing the leaves a BeaconBlockHeader in merkleized representation. +pub fn block_header_to_leaves(header: &BeaconBlockHeader) -> [Hash256; 5] { + [ + header.slot.tree_hash_root(), + header.proposer_index.tree_hash_root(), + header.parent_root.tree_hash_root(), + header.state_root.tree_hash_root(), + header.body_root.tree_hash_root(), + ] +} + +pub fn beacon_header_multiproof_and_helper_indices( + header: &BeaconBlockHeader, + gindices: &[usize], +) -> (Vec>, Vec) { + let header_leaves = block_header_to_leaves(header); + let merkle_tree = merkle_tree(&header_leaves); + let helper_indices = get_helper_indices(gindices); + let proof = helper_indices + .iter() + .copied() + .map(|i| merkle_tree[i]) + .map(|n| n.as_ref().to_vec()) + .collect::>(); + assert_eq!(proof.len(), helper_indices.len()); + (proof, helper_indices) +} diff --git a/lightclient-circuits/src/witness/rotation.rs b/lightclient-circuits/src/witness/rotation.rs index b12681c9..f2b8e54c 100644 --- a/lightclient-circuits/src/witness/rotation.rs +++ b/lightclient-circuits/src/witness/rotation.rs @@ -9,6 +9,8 @@ use serde::{Deserialize, Serialize}; use sha2::{Digest, Sha256}; use std::{iter, marker::PhantomData}; +use crate::witness::beacon_header_multiproof_and_helper_indices; + /// Input datum for the `CommitteeUpdateCircuit` to map next sync committee SSZ root in the finalized state root to the corresponding Poseidon commitment to the public keys. /// /// Assumes that public keys are BLS12-381 points on G1; `sync_committee_branch` is exactly `S::SYNC_COMMITTEE_PUBKEYS_DEPTH` hashes in lenght. @@ -20,6 +22,8 @@ pub struct CommitteeUpdateArgs { pub sync_committee_branch: Vec>, + pub finalized_header_multiproof: Vec>, + pub finalized_header_helper_indices: Vec, #[serde(skip)] pub _spec: PhantomData, } @@ -63,6 +67,11 @@ impl Default for CommitteeUpdateArgs { let mut finalized_header = BeaconBlockHeader::empty(); finalized_header.state_root = state_root.into(); + let (finalized_header_multiproof, finalized_header_helper_indices) = + beacon_header_multiproof_and_helper_indices( + &mut finalized_header.clone(), + &[S::HEADER_STATE_ROOT_INDEX], + ); Self { pubkeys_compressed: iter::repeat(dummy_x_bytes) .take(S::SYNC_COMMITTEE_SIZE) @@ -70,6 +79,8 @@ impl Default for CommitteeUpdateArgs { sync_committee_branch, finalized_header, _spec: PhantomData, + finalized_header_multiproof, + finalized_header_helper_indices, } } } diff --git a/lightclient-circuits/src/witness/step.rs b/lightclient-circuits/src/witness/step.rs index f0ebd0ee..7f428f14 100644 --- a/lightclient-circuits/src/witness/step.rs +++ b/lightclient-circuits/src/witness/step.rs @@ -14,6 +14,8 @@ use serde::{Deserialize, Serialize}; use std::marker::PhantomData; use tree_hash::TreeHash; +use crate::witness::beacon_header_multiproof_and_helper_indices; + use super::mock_root; /// Input datum for the `StepCircuit` to verify `attested_header` singed by the lightclient sync committee, @@ -42,6 +44,11 @@ pub struct SyncStepArgs { pub domain: [u8; 32], + pub attested_header_multiproof: Vec>, + pub attested_header_helper_indices: Vec, + pub finalized_header_multiproof: Vec>, + pub finalized_header_helper_indices: Vec, + #[serde(skip)] pub _spec: PhantomData, } @@ -109,6 +116,19 @@ impl Default for SyncStepArgs { }) .collect_vec(); + // Proof length is 3 + let (attested_header_multiproof, attested_header_helper_indices) = + beacon_header_multiproof_and_helper_indices( + &mut attested_header.clone(), + &[S::HEADER_SLOT_INDEX, S::HEADER_STATE_ROOT_INDEX], + ); + // Proof length is 4 + let (finalized_header_multiproof, finalized_header_helper_indices) = + beacon_header_multiproof_and_helper_indices( + &mut finalized_header.clone(), + &[S::HEADER_SLOT_INDEX, S::HEADER_BODY_ROOT_INDEX], + ); + Self { signature_compressed, pubkeys_uncompressed, @@ -120,6 +140,11 @@ impl Default for SyncStepArgs { execution_payload_branch: execution_branch, execution_payload_root: execution_root, _spec: PhantomData, + + attested_header_multiproof, + attested_header_helper_indices, + finalized_header_multiproof, + finalized_header_helper_indices, } } } diff --git a/preprocessor/src/lib.rs b/preprocessor/src/lib.rs index 402de3bd..e00c8b2b 100644 --- a/preprocessor/src/lib.rs +++ b/preprocessor/src/lib.rs @@ -129,6 +129,8 @@ mod tests { .message; let slot = block.slot; let period = slot / (32 * 256); + const ROTATE_CONFIG_PATH: &str = "../lightclient-circuits/config/committee_update_20.json"; + const STEP_CONFIG_PATH: &str = "../lightclient-circuits/config/sync_step_20.json"; println!( "Fetching light client update at current Slot: {} at Period: {}", @@ -198,11 +200,8 @@ mod tests { finalized_sync_committee_branch.insert(0, c.sync_committee_branch[0].clone()); finalized_sync_committee_branch[1].clone_from(&c.sync_committee_branch[1]); c.sync_committee_branch = finalized_sync_committee_branch; - // Replaces the attested header with step circuits finalized header - c.finalized_header = s.finalized_header.clone(); let params: ParamsKZG = gen_srs(K); - let circuit = StepCircuit::::create_circuit( CircuitBuilderStage::Mock, None, @@ -214,9 +213,7 @@ mod tests { let prover = MockProver::::run(K, &circuit, circuit.instances()).unwrap(); prover.assert_satisfied(); - const CONFIG_PATH: &str = "../lightclient-circuits/config/committee_update_testnet.json"; - - let pinning = Eth2ConfigPinning::from_path(CONFIG_PATH); + let pinning = Eth2ConfigPinning::from_path(ROTATE_CONFIG_PATH); let circuit = CommitteeUpdateCircuit::::create_circuit( CircuitBuilderStage::Mock, Some(pinning), diff --git a/preprocessor/src/rotation.rs b/preprocessor/src/rotation.rs index bdbef313..3bed44c7 100644 --- a/preprocessor/src/rotation.rs +++ b/preprocessor/src/rotation.rs @@ -6,11 +6,13 @@ use std::marker::PhantomData; use eth_types::Spec; use itertools::Itertools; +use lightclient_circuits::witness::{ + beacon_header_multiproof_and_helper_indices, CommitteeUpdateArgs, +}; use crate::get_light_client_update_at_period; use eth2::{types::BlockId, BeaconNodeHttpClient}; use ethereum_types::LightClientUpdate; -use lightclient_circuits::witness::CommitteeUpdateArgs; use tree_hash::TreeHash; /// Fetches LightClientUpdate from the beacon client and converts it to a [`CommitteeUpdateArgs`] witness @@ -76,6 +78,12 @@ pub async fn rotation_args_from_update( "Execution payload merkle proof verification failed" ); + let (finalized_header_multiproof, finalized_header_helper_indices) = + beacon_header_multiproof_and_helper_indices( + &finalized_header_beacon, + &[S::HEADER_STATE_ROOT_INDEX], + ); + let args = CommitteeUpdateArgs:: { pubkeys_compressed, finalized_header: finalized_header_beacon, @@ -84,6 +92,8 @@ pub async fn rotation_args_from_update( .map(|n| n.0.to_vec()) .collect_vec(), _spec: PhantomData, + finalized_header_multiproof, + finalized_header_helper_indices, }; Ok(args) } @@ -95,20 +105,20 @@ mod tests { use super::*; use eth2::{SensitiveUrl, Timeouts}; use eth_types::Testnet; + use halo2_base::gates::circuit::CircuitBuilderStage; + use halo2_base::halo2_proofs::dev::MockProver; use halo2_base::halo2_proofs::halo2curves::bn256::Bn256; use halo2_base::halo2_proofs::poly::kzg::commitment::ParamsKZG; use halo2_base::utils::fs::gen_srs; - use lightclient_circuits::halo2_proofs::{dev::MockProver, halo2curves::bn256::Fr}; + use lightclient_circuits::halo2_proofs::halo2curves::bn256::Fr; + use lightclient_circuits::util::{Eth2ConfigPinning, Halo2ConfigPinning}; use lightclient_circuits::{ - committee_update_circuit::CommitteeUpdateCircuit, - halo2_base::gates::circuit::CircuitBuilderStage, - util::{AppCircuit, Eth2ConfigPinning, Halo2ConfigPinning}, + committee_update_circuit::CommitteeUpdateCircuit, util::AppCircuit, }; use snark_verifier_sdk::CircuitExt; #[tokio::test] async fn test_rotation_circuit_sepolia() { - const CONFIG_PATH: &str = "../lightclient-circuits/config/committee_update_testnet.json"; const K: u32 = 20; const URL: &str = "https://lodestar-sepolia.chainsafe.io"; let client = BeaconNodeHttpClient::new( @@ -116,12 +126,11 @@ mod tests { Timeouts::set_all(Duration::from_secs(10)), ); let witness = fetch_rotation_args::(&client).await.unwrap(); - let pinning = Eth2ConfigPinning::from_path(CONFIG_PATH); let params: ParamsKZG = gen_srs(K); let circuit = CommitteeUpdateCircuit::::create_circuit( CircuitBuilderStage::Mock, - Some(pinning), + None, &witness, ¶ms, ) @@ -133,7 +142,7 @@ mod tests { #[tokio::test] async fn test_rotation_step_snark_sepolia() { - const CONFIG_PATH: &str = "../lightclient-circuits/config/committee_update_18.json"; + const CONFIG_PATH: &str = "../lightclient-circuits/config/committee_update_21.json"; const K: u32 = 21; let params = gen_srs(K); @@ -150,7 +159,6 @@ mod tests { Timeouts::set_all(Duration::from_secs(10)), ); let witness = fetch_rotation_args::(&client).await.unwrap(); - CommitteeUpdateCircuit::::gen_snark_shplonk( ¶ms, &pk, diff --git a/preprocessor/src/step.rs b/preprocessor/src/step.rs index dec6a8d7..87069288 100644 --- a/preprocessor/src/step.rs +++ b/preprocessor/src/step.rs @@ -6,7 +6,7 @@ use std::marker::PhantomData; use eth_types::Spec; use itertools::Itertools; -use lightclient_circuits::witness::SyncStepArgs; +use lightclient_circuits::witness::{beacon_header_multiproof_and_helper_indices, SyncStepArgs}; use blst::min_pk as bls; use eth2::types::StateId; @@ -155,6 +155,19 @@ pub async fn step_args_from_finality_update( "Finality merkle proof verification failed" ); + // Proof length is 3 + let (attested_header_multiproof, attested_header_helper_indices) = + beacon_header_multiproof_and_helper_indices( + &attested_header_beacon, + &[S::HEADER_SLOT_INDEX, S::HEADER_STATE_ROOT_INDEX], + ); + // Proof length is 4 + let (finalized_header_multiproof, finalized_header_helper_indices) = + beacon_header_multiproof_and_helper_indices( + &finalized_header_beacon, + &[S::HEADER_SLOT_INDEX, S::HEADER_BODY_ROOT_INDEX], + ); + Ok(SyncStepArgs { signature_compressed: finality_update .sync_aggregate() @@ -178,6 +191,10 @@ pub async fn step_args_from_finality_update( execution_payload_branch, domain, _spec: PhantomData, + attested_header_multiproof, + attested_header_helper_indices, + finalized_header_multiproof, + finalized_header_helper_indices, }) } @@ -185,20 +202,18 @@ pub async fn step_args_from_finality_update( mod tests { use std::time::Duration; + use super::*; use eth2::{SensitiveUrl, Timeouts}; use eth_types::Testnet; + use halo2_base::gates::circuit::CircuitBuilderStage; + use halo2_base::halo2_proofs::dev::MockProver; use halo2_base::halo2_proofs::halo2curves::bn256::Bn256; use halo2_base::halo2_proofs::poly::kzg::commitment::ParamsKZG; use halo2_base::utils::fs::gen_srs; - use lightclient_circuits::halo2_proofs::{dev::MockProver, halo2curves::bn256::Fr}; - use lightclient_circuits::{ - halo2_base::gates::circuit::CircuitBuilderStage, sync_step_circuit::StepCircuit, - util::AppCircuit, - }; + use lightclient_circuits::halo2_proofs::halo2curves::bn256::Fr; + use lightclient_circuits::{sync_step_circuit::StepCircuit, util::AppCircuit}; use snark_verifier_sdk::CircuitExt; - use super::*; - #[tokio::test] async fn test_sync_circuit_sepolia() { const K: u32 = 21; diff --git a/preprocessor/src/unit_test_gen.rs b/preprocessor/src/unit_test_gen.rs index f97fbf1f..d609b37f 100644 --- a/preprocessor/src/unit_test_gen.rs +++ b/preprocessor/src/unit_test_gen.rs @@ -1,20 +1,18 @@ // NOT FOR USE IN PROD! // Used to generate files for circuit unit tests -use ethereum_consensus::capella::mainnet::{ - BeaconBlockBody, BeaconBlockHeader, BeaconState, Validator, + +use blst::min_pk as bls; +use ethereum_types::{ + BeaconBlockBody, BeaconBlockBodyCapella, BeaconBlockHeader, BeaconState, EthSpec, FixedVector, + MainnetEthSpec, SecretKey, Validator, }; -use ethereum_consensus::crypto::{self, eth_aggregate_public_keys, SecretKey}; -use ethereum_consensus::primitives::DomainType; -use ethereum_consensus::signing::compute_signing_root; -use ethereum_consensus::state_transition::Context; use itertools::Itertools as _; use lightclient_circuits::witness::{ - get_helper_indices, merkle_tree, parent, CommitteeUpdateArgs, SyncStepArgs, + beacon_header_multiproof_and_helper_indices, get_helper_indices, merkle_tree, parent, + CommitteeUpdateArgs, SyncStepArgs, }; -use ssz_rs::{MerkleizationError, Merkleized, Node}; -use std::fs::File; use std::io::Read; -use std::ops::Deref; +use std::{fs::File, sync::Arc}; use eth_types::{Mainnet, Spec as _}; @@ -39,46 +37,62 @@ fn main() { }; let priv_key = priv_key_hex .iter() - .map(|sk| SecretKey::try_from(sk.as_slice()).unwrap()); + .map(|sk| SecretKey::deserialize(sk.as_slice()).unwrap()); - let mut beacon_state: BeaconState = { + let mut beacon_state: BeaconState = { let mut file = File::open(BEACON_STATE_PATH).unwrap(); let mut buf = vec![]; file.read_to_end(&mut buf).unwrap(); - ssz_rs::Deserialize::deserialize(&buf).unwrap() + BeaconState::from_ssz_bytes(&buf, &MainnetEthSpec::default_spec()).unwrap() }; let validators = (0..N_VALIDATORS) .map(|i| { - let sk = SecretKey::try_from(priv_key_hex[i].as_slice()).unwrap(); + let sk = SecretKey::deserialize(priv_key_hex[i].as_slice()).unwrap(); let pubkey = sk.public_key(); let bls_public_key = pubkey; Validator { - public_key: bls_public_key.clone(), + pubkey: bls_public_key.into(), withdrawal_credentials: Default::default(), effective_balance: 32_000_000, slashed: false, - activation_eligibility_epoch: i as u64, - activation_epoch: i as u64 + 1, - exit_epoch: 100, - withdrawable_epoch: 0, + activation_eligibility_epoch: i.into(), + activation_epoch: (i + 1).into(), + exit_epoch: 100.into(), + withdrawable_epoch: 0.into(), } }) .collect::>(); - let pubkeys = validators - .iter() - .map(|x| x.public_key.clone()) - .collect::>(); + let pubkeys: FixedVector<_, ::SyncCommitteeSize> = FixedVector::new( + validators + .iter() + .map(|x| x.pubkey.clone()) + .collect::>(), + ) + .unwrap(); + let current_sync_committee = beacon_state + .current_sync_committee() + .unwrap() + .as_ref() + .clone(); + current_sync_committee.pubkeys = pubkeys.clone(); - beacon_state.validators = validators.try_into().unwrap(); - beacon_state.current_sync_committee.public_keys = pubkeys.clone().try_into().unwrap(); - beacon_state.next_sync_committee.public_keys = pubkeys.clone().try_into().unwrap(); - beacon_state.current_sync_committee.aggregate_public_key = - eth_aggregate_public_keys(&pubkeys).unwrap(); + *beacon_state.validators_mut() = validators.into(); + *beacon_state.current_sync_committee_mut().unwrap() = Arc::new(current_sync_committee); - let mut beacon_block_body = BeaconBlockBody { + let next_sync_committee = beacon_state.next_sync_committee().unwrap().as_ref().clone(); + next_sync_committee.pubkeys = pubkeys.clone(); + + *beacon_state.next_sync_committee_mut().unwrap() = Arc::new(next_sync_committee); + // TODO: + // *beacon_state + // .current_sync_committee_mut() + // .unwrap() + // .aggregate_pubkey = eth_aggregate_public_keys(&pubkeys).unwrap(); + + let mut beacon_block_body = BeaconBlockBodyCapella { eth1_data: beacon_state.eth1_data.clone(), ..Default::default() }; @@ -155,6 +169,19 @@ fn main() { body_root: finalized_block.body_root, }; + // Proof length is 3 + let (attested_header_multiproof, attested_header_helper_indices) = + beacon_header_multiproof_and_helper_indices( + &mut attested_header.clone(), + &[Mainnet::HEADER_SLOT_INDEX, Mainnet::HEADER_STATE_ROOT_INDEX], + ); + // Proof length is 4 + let (finalized_header_multiproof, finalized_header_helper_indices) = + beacon_header_multiproof_and_helper_indices( + &mut finalized_header.clone(), + &[Mainnet::HEADER_SLOT_INDEX, Mainnet::HEADER_BODY_ROOT_INDEX], + ); + let sync_args: SyncStepArgs = SyncStepArgs { signature_compressed: { ethereum_consensus_types::BlsSignature::try_from(hex::encode(agg_sig.deref())) @@ -185,8 +212,22 @@ fn main() { .collect_vec(), domain, _spec: std::marker::PhantomData, + + attested_header_multiproof: attested_header_multiproof + .into_iter() + .map(|n| n.as_ref().to_vec()) + .collect_vec(), + attested_header_helper_indices, + finalized_header_multiproof, + finalized_header_helper_indices, }; + let (attested_header_multiproof, attested_header_helper_indices) = + beacon_header_multiproof_and_helper_indices( + &mut attested_header.clone(), + &[Mainnet::HEADER_STATE_ROOT_INDEX], + ); + let rotation_args: CommitteeUpdateArgs = CommitteeUpdateArgs { pubkeys_compressed: pubkeys.iter().map(|x| x.deref().to_vec()).collect_vec(), finalized_header: attested_header, @@ -195,6 +236,8 @@ fn main() { .map(|x| x.to_vec()) .collect_vec(), _spec: std::marker::PhantomData, + finalized_header_multiproof, + finalized_header_helper_indices: attested_header_helper_indices, }; std::fs::write( diff --git a/test-utils/src/lib.rs b/test-utils/src/lib.rs index 4f5e28ff..ab2946bc 100644 --- a/test-utils/src/lib.rs +++ b/test-utils/src/lib.rs @@ -8,7 +8,7 @@ mod test_types; use crate::test_types::{TestMeta, TestStep}; use blst::min_pk as bls; -use eth_types::{Minimal, LIMB_BITS}; +use eth_types::{Minimal, Spec, LIMB_BITS}; use ethereum_types::{ BeaconBlockHeader, Domain, EthSpec, ExecutionPayloadHeader, Hash256, LightClientBootstrapCapella, LightClientUpdateCapella, MinimalEthSpec, SyncCommittee, @@ -16,7 +16,9 @@ use ethereum_types::{ use ethers::types::H256; use itertools::Itertools; use lightclient_circuits::poseidon::poseidon_committee_commitment_from_uncompressed; -use lightclient_circuits::witness::{CommitteeUpdateArgs, SyncStepArgs}; +use lightclient_circuits::witness::{ + beacon_header_multiproof_and_helper_indices, CommitteeUpdateArgs, SyncStepArgs, +}; use serde::Deserialize; use tree_hash::TreeHash; @@ -113,7 +115,11 @@ pub fn read_test_files_and_gen_witness( .to_vec(); sync_committee_branch.insert(0, agg_pk); - + let (finalized_header_multiproof, finalized_header_helper_indices) = + beacon_header_multiproof_and_helper_indices( + &mut sync_wit.attested_header.clone(), + &[Minimal::HEADER_STATE_ROOT_INDEX], + ); let rotation_wit = CommitteeUpdateArgs:: { pubkeys_compressed: updates[0] .next_sync_committee @@ -124,6 +130,11 @@ pub fn read_test_files_and_gen_witness( .collect_vec(), finalized_header: sync_wit.attested_header.clone(), sync_committee_branch, + finalized_header_multiproof: finalized_header_multiproof + .into_iter() + .map(|n| n.to_vec()) + .collect_vec(), + finalized_header_helper_indices, _spec: Default::default(), }; (sync_wit, rotation_wit) @@ -199,6 +210,25 @@ fn to_sync_ciruit_witness( .iter() .map(|b| b.0.to_vec()) .collect(); + + // Proof length is 3 + let (attested_header_multiproof, attested_header_helper_indices) = + beacon_header_multiproof_and_helper_indices( + &mut args.attested_header.clone(), + &[Minimal::HEADER_SLOT_INDEX, Minimal::HEADER_STATE_ROOT_INDEX], + ); + // Proof length is 4 + let (finalized_header_multiproof, finalized_header_helper_indices) = + beacon_header_multiproof_and_helper_indices( + &mut args.finalized_header.clone(), + &[Minimal::HEADER_SLOT_INDEX, Minimal::HEADER_BODY_ROOT_INDEX], + ); + + args.finalized_header_multiproof = finalized_header_multiproof; + args.finalized_header_helper_indices = finalized_header_helper_indices; + args.attested_header_multiproof = attested_header_multiproof; + args.attested_header_helper_indices = attested_header_helper_indices; + args } diff --git a/test_data/rotation_512.json b/test_data/rotation_512.json index 3db63c88..64042f59 100644 --- a/test_data/rotation_512.json +++ b/test_data/rotation_512.json @@ -1 +1 @@ -{"pubkeys_compressed":[[130,28,98,160,223,223,232,155,95,169,36,213,77,46,193,37,82,170,83,121,106,183,220,152,79,168,33,159,112,66,212,99,52,177,95,178,240,198,228,9,91,138,30,47,229,81,241,245],[134,202,167,69,210,146,194,78,172,205,30,136,1,157,20,74,49,40,131,41,5,87,20,150,171,160,162,101,73,127,139,71,70,54,165,113,231,1,225,131,115,234,240,149,53,219,222,8],[152,254,136,66,172,54,205,127,249,123,23,106,90,5,15,139,41,26,19,123,11,165,224,85,197,201,201,247,103,223,42,27,172,186,219,174,174,125,174,136,118,21,64,62,207,238,86,192],[168,250,70,159,17,111,22,45,50,52,8,56,19,10,16,71,98,68,159,173,6,214,239,226,21,198,148,165,206,123,141,28,157,236,111,51,239,141,20,126,171,179,99,133,107,135,72,18],[145,102,110,227,41,1,60,137,200,7,127,243,204,5,230,182,123,34,8,236,152,155,65,42,207,99,21,78,107,124,37,213,185,27,83,205,21,156,35,90,231,209,167,70,214,132,154,162],[128,71,99,191,238,204,157,32,38,51,234,238,4,198,124,166,132,22,68,141,46,129,179,187,88,225,4,147,84,86,76,14,113,28,124,150,179,105,107,113,174,175,124,29,247,218,207,87],[167,113,155,26,245,111,65,85,246,252,129,241,199,221,39,231,86,69,50,150,30,28,54,145,198,41,70,128,100,219,158,116,37,4,34,176,158,177,52,218,146,50,202,217,36,63,86,82],[181,64,105,160,57,113,59,244,71,191,33,10,241,29,123,72,94,185,69,95,218,150,57,213,127,152,211,6,197,197,29,15,225,230,172,228,34,172,245,234,101,77,164,174,182,71,112,238],[149,6,94,32,197,70,193,37,9,60,45,157,111,88,25,203,110,250,109,47,8,39,108,175,87,83,209,30,119,28,197,101,56,68,12,246,118,234,190,96,215,225,46,179,234,83,243,178],[170,190,24,80,2,87,114,37,110,124,239,49,51,1,65,147,193,252,43,188,144,124,165,78,98,167,152,224,11,227,237,61,25,198,131,220,101,100,246,30,13,129,98,194,88,253,155,225],[171,227,243,235,103,106,100,242,176,143,125,246,156,114,126,254,131,126,40,81,11,46,214,23,211,120,67,7,206,38,61,90,255,154,89,219,3,238,134,25,99,1,184,104,1,178,135,168],[138,116,206,213,225,95,190,128,10,192,56,121,236,67,207,251,119,189,193,30,17,245,141,249,137,237,114,120,247,35,147,21,235,14,157,17,153,109,96,71,165,36,196,127,162,153,216,12],[143,45,71,37,17,222,4,18,231,183,150,73,27,230,165,170,94,40,4,76,109,84,122,61,197,19,41,143,205,157,34,221,6,210,174,5,226,28,33,34,241,223,200,188,239,57,30,246],[168,136,125,187,33,35,174,99,250,79,98,75,199,248,83,164,22,115,149,38,232,6,152,43,145,164,39,143,74,151,70,165,206,84,223,175,165,36,192,107,189,11,247,18,60,169,66,58],[153,172,78,48,15,201,208,18,40,145,86,118,83,163,238,108,5,144,114,67,57,52,146,25,62,65,109,140,238,72,204,67,154,143,137,215,40,156,127,96,200,193,209,82,46,59,35,142],[140,255,49,184,221,183,179,217,114,90,161,138,48,183,183,26,3,86,50,115,126,122,31,50,142,102,149,210,87,11,226,213,236,68,187,156,189,240,197,204,141,106,120,10,221,71,76,182],[171,35,231,22,124,2,218,147,176,30,53,127,76,140,115,166,245,7,81,220,141,30,243,14,100,68,191,70,127,49,175,177,118,221,68,131,135,50,160,19,209,24,223,80,52,120,138,137],[175,121,19,154,115,72,97,62,95,223,204,139,231,205,2,77,46,177,17,215,151,152,60,245,63,3,142,79,201,133,155,119,221,135,244,162,1,245,105,167,247,240,75,171,223,141,202,91],[131,215,60,77,34,243,72,189,163,0,204,255,76,142,194,237,229,108,112,226,223,209,227,50,25,147,137,130,53,72,84,123,216,237,183,231,81,163,144,177,111,50,180,106,110,199,58,201],[171,72,2,117,255,95,49,16,89,110,28,242,241,237,175,240,95,197,189,210,3,8,119,132,159,105,135,203,185,76,167,241,240,7,88,247,222,36,27,99,140,110,89,12,223,157,29,24],[163,99,68,214,130,116,57,122,103,23,213,1,202,57,65,12,18,173,233,153,231,215,174,200,182,159,130,89,19,240,10,168,89,105,16,250,112,26,60,43,53,61,142,221,76,226,124,244],[145,205,42,14,167,49,33,139,69,43,113,121,87,137,86,147,229,201,1,60,61,170,2,85,84,226,102,181,106,19,221,50,137,239,246,17,207,97,228,48,22,139,208,56,92,203,243,58],[152,204,90,199,137,15,156,168,84,60,33,233,38,137,132,252,93,19,186,247,203,183,60,17,147,226,20,139,202,44,70,187,17,230,8,229,124,221,83,71,70,32,237,39,155,102,173,133],[146,222,89,17,172,135,10,33,178,140,37,22,77,86,218,103,253,210,228,135,117,212,74,117,238,159,33,113,140,249,181,237,193,118,178,47,50,114,12,129,220,18,43,224,19,83,47,198],[136,191,154,133,55,219,240,146,173,162,201,139,140,57,208,82,56,243,35,106,76,246,95,102,141,24,102,173,129,73,132,169,190,170,116,166,226,26,16,214,160,128,188,130,37,202,221,77],[160,219,92,117,117,72,162,175,195,22,119,81,73,120,97,149,7,47,183,172,223,119,103,79,177,125,67,137,225,43,31,156,118,10,9,180,232,10,216,169,220,163,65,118,70,63,61,183],[181,133,57,179,239,235,227,106,170,198,18,255,5,107,205,68,201,150,31,5,26,90,94,72,92,63,154,208,146,14,228,236,171,137,27,6,94,19,60,238,223,5,39,119,41,19,101,141],[138,63,189,230,183,231,231,39,32,163,1,2,230,136,166,110,195,81,146,0,184,87,212,42,148,233,219,166,181,109,164,254,119,164,73,1,93,127,37,199,155,176,67,29,140,32,212,170],[137,85,133,74,85,101,230,145,66,162,103,197,206,179,223,40,113,36,70,102,82,158,206,22,84,255,92,239,38,106,50,0,48,5,166,223,181,168,1,120,197,160,183,175,54,3,128,169],[149,34,214,141,198,135,152,218,135,225,202,223,170,42,12,142,168,101,41,239,199,174,115,235,126,99,204,12,19,37,175,95,32,255,81,145,84,214,98,196,213,89,147,131,149,218,169,46],[176,8,189,242,187,81,107,124,17,219,52,185,237,194,128,102,138,254,167,45,241,185,49,232,229,32,38,200,111,236,162,172,243,92,130,77,205,34,34,56,138,181,158,88,238,222,3,103],[176,143,134,162,250,244,51,191,27,135,222,110,23,187,103,176,27,197,90,119,253,95,128,33,221,34,252,229,73,186,152,61,99,86,33,225,227,61,107,71,86,61,195,254,168,151,130,58],[178,190,156,187,3,234,104,148,54,16,194,126,110,141,198,65,97,47,158,7,118,219,69,114,223,234,248,44,55,161,236,57,91,170,46,18,212,129,94,144,143,15,93,119,120,112,9,1],[132,73,140,152,152,173,107,83,105,132,17,19,174,221,175,43,177,17,4,152,158,154,111,85,101,158,106,165,9,151,93,158,169,151,13,66,150,106,253,239,185,64,250,234,203,60,20,30],[132,63,8,148,34,216,48,215,45,135,100,47,184,210,49,77,50,133,231,54,124,83,59,242,184,106,163,55,156,253,0,151,180,57,104,147,181,110,171,171,54,209,251,96,138,211,188,142],[152,250,206,188,95,201,194,129,56,37,220,233,185,117,149,220,21,41,240,26,186,20,110,157,103,113,78,106,152,8,136,149,28,254,58,176,141,196,111,142,34,59,194,95,160,237,96,229],[184,32,126,216,126,121,215,166,101,188,158,247,16,178,59,150,107,62,173,124,32,169,229,125,192,218,73,48,106,127,95,119,84,177,71,34,106,19,6,16,33,26,193,203,151,89,171,188],[131,143,177,130,202,213,82,159,36,205,167,149,227,23,101,158,4,200,139,203,60,212,11,198,51,136,78,143,93,253,101,183,106,241,102,43,154,30,223,183,86,179,24,216,90,244,30,229],[174,224,118,87,84,166,74,164,92,175,107,204,132,205,105,20,71,38,229,49,0,136,93,177,193,234,175,120,70,5,59,66,40,255,113,107,216,136,40,144,26,108,137,182,251,229,13,251],[174,122,18,215,11,120,174,63,114,199,63,156,203,93,14,217,94,168,76,3,195,7,121,165,42,46,26,237,100,1,214,219,11,132,170,231,232,79,78,26,159,231,139,25,181,209,32,20],[179,137,89,174,111,112,168,33,241,124,81,141,17,146,180,238,85,163,0,79,187,108,46,188,232,255,186,104,157,95,31,174,151,81,17,80,227,181,119,7,180,153,163,45,132,154,21,43],[174,75,140,252,255,220,129,107,129,114,18,250,100,186,159,153,4,159,220,225,24,193,53,29,24,75,63,170,177,76,183,53,175,93,207,243,79,172,87,125,107,253,31,249,167,219,116,178],[151,157,197,199,208,227,252,197,209,213,174,125,91,24,202,9,73,1,223,251,125,181,97,251,91,181,147,176,177,18,170,42,191,156,100,142,47,20,27,28,91,202,17,246,220,172,104,133],[132,227,22,249,59,19,68,82,29,100,13,183,39,28,123,132,156,239,100,98,102,95,23,253,249,199,178,152,25,62,110,169,134,130,86,52,8,127,4,72,67,186,163,217,72,163,47,118],[142,249,90,18,77,143,196,186,101,148,28,142,6,59,143,75,157,36,121,50,201,221,236,216,21,23,197,46,48,135,171,17,99,128,137,5,35,171,51,203,166,193,194,116,235,142,251,237],[153,48,249,134,92,246,14,29,208,85,59,81,170,211,14,196,6,214,181,108,67,149,225,51,17,165,198,43,54,34,236,232,250,9,147,86,128,158,109,191,247,40,45,52,45,119,225,13],[173,170,210,13,202,78,120,244,184,253,9,22,50,123,78,119,92,205,31,229,252,69,195,10,137,154,178,156,60,90,207,122,229,56,3,211,86,183,231,205,19,168,142,12,143,162,58,175],[140,209,19,19,218,211,26,50,131,228,73,238,99,217,41,13,70,184,191,233,69,129,66,35,96,82,127,55,169,110,146,183,13,103,243,47,246,89,18,45,243,82,246,13,0,128,56,174],[162,20,78,85,115,53,165,15,85,138,251,57,7,82,177,194,150,23,224,51,78,178,109,137,111,245,60,85,222,231,53,242,202,115,96,107,194,151,206,243,83,130,157,188,99,77,35,194],[165,107,129,136,73,210,42,69,21,177,222,248,215,250,199,196,242,64,60,35,102,154,143,33,91,25,49,195,46,165,194,168,10,183,0,163,214,95,96,75,199,107,31,112,46,169,121,209],[153,230,208,180,238,66,20,239,70,187,24,5,229,16,17,105,237,158,69,201,67,148,194,240,21,161,7,12,201,231,32,220,104,199,65,186,237,216,197,57,16,187,198,79,224,198,48,133],[148,228,68,42,212,13,8,102,121,32,128,230,47,118,72,20,174,96,63,212,208,10,153,203,116,45,22,92,108,193,195,166,188,189,27,0,89,152,228,86,182,185,124,15,172,5,10,48],[137,140,111,72,188,162,22,166,229,117,129,175,71,108,8,133,90,151,44,105,179,63,123,59,13,205,134,110,210,211,80,91,122,190,84,222,123,192,75,201,2,245,230,167,64,183,148,116],[141,209,206,8,185,105,177,4,238,18,51,41,111,189,70,207,138,87,65,179,100,42,64,120,171,222,20,151,143,94,188,252,116,111,172,245,141,111,117,143,241,223,171,80,194,211,21,9],[146,94,78,194,191,140,19,39,241,160,192,21,100,8,6,49,55,26,84,169,45,104,229,29,70,168,252,71,90,58,11,211,207,142,250,83,36,192,232,41,252,126,74,205,37,183,176,162],[166,81,145,82,24,235,57,187,171,238,76,185,220,13,164,87,117,52,104,108,79,136,198,127,61,75,26,36,88,134,34,24,253,196,130,37,97,44,226,106,109,93,13,223,212,10,215,191],[167,93,77,197,56,55,216,217,232,90,207,177,231,145,183,235,246,16,16,31,107,42,91,225,93,69,30,146,255,194,69,21,234,151,87,161,32,223,96,198,6,21,184,22,117,40,213,18],[132,95,160,39,119,54,163,152,225,21,248,245,75,107,158,231,53,49,68,79,197,227,213,217,156,210,185,195,97,183,110,124,56,231,161,130,208,59,129,234,203,86,252,27,80,146,86,22],[173,79,107,138,5,254,167,72,123,167,237,81,179,116,147,20,187,12,52,117,56,70,54,74,3,22,235,86,121,229,171,97,115,127,17,237,229,56,7,109,239,34,1,42,163,43,35,182],[150,164,59,243,93,161,135,99,131,227,29,211,160,178,124,82,165,44,174,216,249,212,76,4,253,66,66,91,58,58,119,185,127,188,163,181,113,3,121,31,179,51,93,199,33,83,227,83],[172,153,230,96,75,182,199,214,99,116,133,70,89,244,129,205,84,216,218,203,139,157,112,134,235,1,5,131,180,244,102,127,15,204,248,156,192,186,93,172,107,139,146,135,234,33,180,84],[171,55,135,243,209,210,82,101,130,153,123,28,80,241,105,3,238,87,99,21,242,204,38,133,104,194,7,16,87,196,155,34,101,235,224,158,174,152,222,171,183,43,50,44,28,74,135,190],[132,242,172,245,123,149,205,228,243,233,42,75,88,255,201,40,209,71,29,194,217,9,250,225,219,225,53,58,43,27,3,248,146,246,37,114,128,45,251,208,60,85,53,217,6,216,252,158],[163,17,7,208,52,211,187,85,196,67,97,166,209,75,161,179,80,205,203,243,53,188,148,158,143,241,54,251,65,67,81,22,8,236,107,3,159,143,19,183,72,71,39,126,146,181,121,41],[169,149,157,231,177,106,169,52,88,2,87,199,245,81,190,5,17,164,39,18,22,221,173,159,95,59,226,205,153,93,14,162,112,91,239,90,200,251,58,50,121,70,157,106,54,132,239,74],[178,209,254,201,182,204,175,133,64,86,108,44,157,193,254,88,149,17,6,44,83,120,242,77,27,93,95,116,236,76,110,250,1,229,130,176,80,182,196,8,184,95,133,110,16,40,104,201],[140,18,178,185,71,107,220,201,91,63,124,183,118,218,221,183,190,237,191,139,180,128,57,149,193,90,12,133,111,116,77,243,220,40,12,204,103,186,167,215,55,116,213,78,140,60,9,7],[183,54,43,148,153,55,55,27,74,215,69,218,115,176,153,41,159,22,127,254,29,138,253,151,203,142,213,179,108,24,99,76,204,236,31,157,59,249,87,147,124,12,251,69,136,203,196,182],[140,163,41,78,63,133,149,53,198,109,161,37,152,89,244,139,162,112,24,126,51,64,30,65,212,24,88,121,54,247,209,98,239,76,168,135,142,238,110,103,2,134,230,174,56,44,191,114],[161,237,240,146,84,172,198,90,213,86,150,153,232,106,157,246,139,202,119,183,191,159,162,12,28,88,74,163,50,250,73,222,174,50,233,150,171,218,214,129,61,248,45,165,94,6,197,181],[161,176,1,239,50,186,84,218,216,95,69,143,23,66,68,85,255,54,231,19,85,235,206,231,108,200,156,28,215,65,177,2,169,115,248,45,219,108,50,156,244,81,16,109,211,228,219,34],[161,80,183,4,215,49,119,38,180,159,209,21,197,204,188,39,160,137,0,35,96,225,93,32,192,185,167,181,185,223,130,87,144,144,182,105,225,135,35,220,39,66,61,245,80,224,253,50],[173,82,21,37,195,52,247,235,76,113,63,208,176,16,48,79,230,62,226,126,211,60,106,126,207,157,92,225,88,246,51,167,251,130,67,127,141,103,62,150,155,195,131,13,242,207,10,114],[151,86,64,219,62,67,71,65,133,54,85,47,105,55,42,183,26,185,47,24,205,189,40,45,20,2,88,49,154,200,178,9,245,6,138,118,96,123,176,83,170,206,237,220,29,220,162,185],[177,135,101,233,166,101,66,103,177,114,152,244,46,113,28,38,135,42,249,119,112,6,33,58,128,44,139,172,193,106,214,106,166,239,62,163,28,118,112,160,24,24,4,100,147,177,132,174],[174,88,149,45,87,180,50,191,81,144,9,38,37,175,51,26,27,200,132,131,11,82,168,160,88,215,189,164,208,181,169,195,157,227,170,184,61,78,234,153,227,251,183,24,244,26,170,6],[183,75,72,49,254,248,185,247,185,172,16,247,107,246,251,173,98,117,228,195,55,204,129,98,91,184,26,118,24,197,206,51,175,134,0,112,4,79,55,230,83,62,156,118,160,247,53,115],[173,92,72,222,134,147,12,255,72,166,72,85,74,232,163,37,245,38,110,210,28,197,142,144,169,196,236,241,45,190,73,109,231,236,255,147,197,8,198,128,180,68,32,4,235,103,54,91],[145,135,53,149,129,144,121,181,212,176,47,107,92,215,72,120,196,225,157,50,171,89,220,236,223,223,36,9,131,176,185,182,40,127,192,186,174,68,107,92,31,115,196,154,253,173,135,56],[178,74,154,87,36,15,191,98,47,101,122,232,22,192,206,217,177,150,169,237,193,187,146,226,164,84,130,214,9,252,89,54,10,139,99,66,110,24,214,11,27,205,207,207,217,202,94,113],[162,74,190,54,165,76,234,10,245,88,5,132,92,33,181,104,108,47,222,92,19,29,148,159,230,229,197,40,177,118,149,1,233,139,207,210,132,188,17,57,41,80,178,192,224,170,243,65],[173,203,231,167,165,1,146,199,254,100,210,226,179,241,203,144,171,138,222,173,164,66,7,182,117,105,174,147,242,213,104,154,93,103,95,170,242,137,113,191,120,141,177,104,9,9,165,44],[162,114,85,129,167,44,183,21,104,15,192,24,254,47,114,47,28,47,162,100,231,70,163,128,183,143,90,197,113,108,3,176,59,255,126,79,140,214,52,179,77,172,13,247,137,8,60,42],[165,225,55,135,38,185,72,124,9,88,212,151,171,21,243,121,40,144,118,144,35,173,166,51,217,64,68,124,218,18,163,127,253,122,73,155,132,209,98,174,152,139,134,238,87,139,69,213],[160,238,162,202,46,71,86,93,228,7,75,155,38,143,70,198,79,0,88,141,166,225,10,80,128,138,12,30,169,202,183,208,62,6,117,174,9,21,78,138,107,32,137,11,150,49,188,170],[152,135,11,214,162,175,169,68,191,203,56,240,80,249,48,137,214,210,12,36,213,55,139,119,50,253,183,192,214,9,82,111,68,203,196,170,43,13,65,193,52,192,186,81,250,164,251,155],[182,87,133,124,83,187,48,80,54,70,150,215,163,30,187,218,37,24,150,239,233,185,199,147,42,27,31,27,165,14,167,177,181,107,22,105,234,253,115,47,171,98,54,242,239,16,9,199],[144,98,35,210,157,163,107,60,201,40,70,16,213,80,21,232,217,6,38,142,44,224,136,114,170,190,80,253,243,246,98,125,218,15,45,154,28,126,236,26,115,214,157,35,50,39,88,163],[149,222,172,71,81,45,193,180,56,160,206,250,239,129,119,191,42,224,85,174,248,247,190,1,98,154,206,141,239,163,7,103,124,153,16,0,201,123,45,36,95,6,201,36,20,238,176,200],[180,153,194,184,98,181,71,146,34,212,174,148,235,30,23,36,98,37,93,47,57,227,103,45,178,108,133,82,144,76,83,227,196,25,172,244,17,67,95,231,71,92,96,60,115,122,96,189],[149,42,175,102,163,109,82,114,207,212,97,65,90,152,122,59,100,245,99,12,127,185,19,136,106,181,2,89,128,26,164,67,247,209,55,188,138,114,186,74,32,178,203,53,241,175,7,147],[171,216,61,56,67,215,83,105,203,177,170,254,132,238,97,255,162,80,156,50,77,161,32,143,179,18,176,174,175,231,175,254,77,211,143,57,39,239,195,5,91,234,39,167,65,70,168,200],[146,191,237,219,180,34,52,143,150,163,219,31,30,152,239,73,46,164,81,136,240,231,36,64,34,246,250,165,129,200,130,196,38,147,162,47,118,147,66,20,42,237,77,116,51,134,224,197],[130,235,44,221,220,45,127,139,237,248,67,166,228,107,1,243,39,236,220,214,56,167,236,72,132,206,111,141,179,152,89,93,223,104,17,39,146,184,41,187,165,190,201,82,152,181,80,130],[183,182,116,57,183,112,153,146,155,47,46,4,170,243,155,18,4,145,161,108,91,112,105,142,182,245,68,89,4,4,48,149,15,11,161,241,76,46,160,187,216,129,100,107,84,102,60,146],[185,167,99,254,161,40,226,89,49,246,233,26,119,42,119,58,88,128,114,55,193,138,105,178,106,9,144,55,22,45,215,68,161,240,9,19,222,148,77,140,7,21,50,108,182,58,70,235],[180,196,111,4,101,84,44,117,65,86,81,85,210,35,152,28,199,238,219,234,188,112,149,211,143,14,173,250,107,111,12,193,58,88,89,80,119,210,85,53,220,11,56,130,138,195,240,160],[153,188,156,118,211,137,146,210,166,67,88,218,47,98,249,95,94,159,22,188,24,188,43,84,165,131,209,39,37,108,4,180,130,255,243,169,114,248,229,8,230,147,241,7,79,55,145,162],[130,42,149,145,238,32,18,50,132,68,206,203,10,3,4,243,5,37,77,207,101,15,218,231,158,66,14,104,49,1,80,146,196,34,84,64,189,221,168,130,240,20,164,97,35,110,149,13],[136,227,50,84,34,18,200,79,250,60,59,98,52,224,74,216,22,107,78,245,62,187,163,177,35,88,214,65,80,161,187,209,106,163,83,209,196,245,214,193,248,236,248,230,56,102,47,98],[142,101,174,182,175,231,251,76,93,74,86,120,7,135,31,255,233,16,54,55,15,47,232,39,120,195,74,133,33,213,53,83,240,216,145,182,21,186,90,205,196,44,241,130,171,106,145,55],[142,100,22,111,47,221,250,243,98,196,91,142,238,180,133,57,110,123,201,123,19,141,197,132,12,244,124,160,219,57,132,192,216,38,72,52,232,92,170,5,119,222,243,202,195,190,215,74],[175,137,157,121,13,124,205,219,210,127,231,217,221,188,223,243,120,233,84,230,30,96,67,200,170,82,187,207,38,103,65,213,132,56,24,84,132,131,38,60,242,0,127,25,214,172,13,157],[164,203,88,60,43,137,8,87,111,232,210,170,121,214,14,96,118,46,203,44,60,175,87,144,140,196,1,182,88,177,10,57,166,28,245,212,202,169,3,148,15,212,229,25,109,180,76,133],[162,191,132,191,199,65,221,57,128,32,97,62,246,160,82,143,97,87,11,180,109,183,226,49,58,131,142,15,45,88,34,212,192,253,100,160,39,151,137,222,235,96,100,112,96,179,254,73],[131,39,37,152,58,5,101,245,50,155,64,51,70,132,121,132,11,169,159,110,211,111,111,123,181,90,67,229,125,30,234,50,81,255,171,148,215,170,186,209,180,221,183,81,102,159,15,52],[174,136,207,48,36,38,122,244,101,139,73,150,174,70,85,53,155,18,151,123,133,7,129,91,241,40,172,74,134,183,15,118,242,95,242,231,248,53,75,170,25,248,121,177,238,103,242,236],[135,215,161,26,239,179,62,186,21,111,44,108,125,187,51,235,45,144,185,254,46,46,164,176,136,180,206,114,147,107,235,198,180,23,149,239,11,90,15,199,54,73,253,207,173,189,229,147],[170,158,3,107,48,114,200,39,171,124,100,144,214,25,85,61,207,242,219,255,207,255,16,75,2,84,183,118,174,209,60,155,1,140,201,168,182,77,10,221,48,5,215,76,155,145,83,133],[164,254,176,202,52,145,248,74,7,15,92,47,193,220,250,173,255,109,212,100,240,151,157,242,194,90,181,80,116,55,131,219,101,120,73,145,195,106,12,28,127,29,183,179,193,235,10,31],[135,42,47,141,70,191,102,117,82,62,166,87,79,45,247,51,161,29,202,225,237,166,158,125,133,48,188,176,238,247,37,111,85,129,242,217,211,29,160,236,98,33,57,246,12,93,75,225],[151,14,175,231,73,7,209,43,216,31,236,132,0,141,197,25,17,225,18,125,224,103,231,3,206,100,103,53,248,136,228,218,145,220,102,30,164,169,149,59,168,66,0,23,104,10,188,174],[166,161,112,82,89,213,106,84,7,29,25,128,83,163,184,161,162,152,191,233,134,163,113,164,103,196,28,172,25,131,110,109,108,224,143,229,139,198,13,143,185,108,96,213,175,46,223,38],[129,11,0,228,126,203,226,88,49,126,122,225,102,8,38,9,48,236,159,5,20,87,104,96,57,71,62,39,222,211,112,232,69,120,73,19,224,73,25,205,146,181,95,62,218,148,8,65],[140,63,126,203,243,61,170,7,235,255,235,131,174,72,31,2,22,80,42,6,192,170,204,114,68,255,208,174,35,42,13,139,16,252,164,79,233,141,67,166,75,83,94,210,105,114,217,56],[174,249,144,20,17,248,74,58,84,17,90,114,90,200,183,171,21,229,191,126,38,64,112,90,223,181,114,52,239,185,180,151,107,32,121,83,187,38,254,233,198,97,122,242,127,41,47,142],[146,50,236,192,73,187,220,121,32,223,15,244,223,237,106,76,56,127,45,166,167,34,26,117,205,169,14,237,229,112,254,33,225,92,61,94,21,69,139,139,33,137,103,109,181,57,2,17],[168,106,69,246,69,131,219,196,193,118,101,235,238,188,135,50,19,158,175,17,85,222,22,112,249,142,46,244,121,149,235,140,67,182,64,189,235,210,165,92,159,156,186,179,144,168,100,31],[148,47,61,83,88,198,92,145,242,237,10,194,67,228,40,215,168,133,20,96,107,135,119,37,249,160,159,41,255,208,73,163,68,160,213,139,217,218,115,177,146,122,69,67,230,134,242,140],[132,179,194,219,56,234,105,5,28,96,101,187,75,242,172,121,149,99,50,54,46,42,119,204,248,168,147,64,98,145,4,86,202,203,1,31,96,244,237,1,185,59,255,168,153,64,18,67],[136,240,51,47,207,167,48,79,55,160,65,221,218,250,166,36,97,34,164,41,142,195,52,251,227,20,231,193,110,149,58,196,226,62,69,149,251,80,237,135,150,196,8,41,183,246,104,134],[160,94,188,150,3,46,63,93,50,201,206,241,244,63,156,151,229,224,49,209,233,58,153,240,184,52,242,5,51,70,120,167,42,212,203,80,173,240,45,89,239,94,231,16,232,207,244,203],[133,53,249,60,222,23,209,13,109,117,103,224,73,245,238,55,25,68,33,56,71,70,194,107,241,55,196,193,163,7,95,175,185,223,178,86,21,88,253,165,168,195,45,31,121,100,76,187],[153,116,80,92,9,221,205,220,17,221,164,109,88,95,185,148,146,112,4,190,113,154,97,153,156,77,79,159,246,34,20,40,169,122,73,143,242,178,33,246,97,239,203,31,74,246,140,237],[150,125,20,138,94,79,217,160,133,224,220,7,145,123,98,33,52,107,202,251,157,66,146,91,49,231,117,254,54,11,149,65,106,114,161,30,211,105,138,18,194,83,42,255,145,62,19,147],[148,78,85,201,116,40,218,97,59,35,250,130,101,253,207,152,250,195,221,68,147,151,7,243,63,32,140,103,166,24,246,79,224,22,122,17,47,204,35,234,21,223,59,87,25,196,233,248],[142,182,144,39,134,196,208,1,253,2,205,122,168,207,191,1,117,90,210,151,227,16,199,234,142,202,71,104,224,46,9,139,27,138,6,142,240,134,27,87,140,112,145,215,233,221,236,187],[146,160,252,48,71,23,205,247,137,88,206,78,175,142,170,88,111,217,100,16,28,96,165,14,186,92,10,249,70,166,241,255,226,58,131,105,11,96,11,56,130,27,159,142,184,229,106,251],[170,218,47,190,180,192,105,179,9,155,182,6,204,118,109,64,81,146,0,192,226,7,97,6,233,193,136,99,172,22,234,114,12,30,128,53,30,251,206,30,132,98,104,42,3,199,62,237],[144,110,255,91,189,26,180,194,135,239,117,188,138,199,39,161,227,55,141,36,147,66,237,148,206,104,21,43,144,242,193,4,5,217,231,165,186,188,39,87,173,166,67,103,244,197,183,150],[139,158,41,14,220,81,136,40,6,106,136,82,38,29,135,229,148,47,117,202,3,146,69,65,224,111,220,66,196,31,18,130,183,221,19,48,200,187,225,249,122,188,88,99,93,126,196,72],[149,50,206,209,31,16,161,224,168,191,8,3,46,221,255,65,23,32,246,157,66,67,244,32,165,203,196,137,10,27,247,4,19,133,146,87,32,248,84,97,31,58,126,208,253,65,20,249],[148,58,67,226,75,36,88,252,114,167,63,50,157,232,38,66,128,27,197,65,171,105,46,169,21,202,198,92,111,222,139,129,162,40,95,135,129,11,157,207,65,56,243,143,149,180,37,19],[175,8,201,149,149,124,135,121,15,225,83,251,207,149,160,171,101,92,65,213,17,250,59,196,196,121,123,168,228,159,232,27,5,17,22,55,19,255,242,120,172,138,253,70,210,17,164,200],[149,228,238,99,238,9,115,129,62,57,219,214,70,77,106,78,122,75,139,144,245,242,54,229,77,80,36,93,147,53,220,5,159,16,224,6,23,149,118,138,191,62,46,23,141,253,95,209],[147,241,123,115,196,101,213,17,65,56,176,53,138,241,19,99,102,235,70,95,185,240,1,147,214,131,86,136,82,161,204,58,237,188,94,103,238,91,22,27,239,213,252,98,4,184,228,250],[176,166,70,111,247,71,255,9,160,245,235,153,232,239,208,122,244,241,246,114,189,114,169,93,178,8,120,103,76,115,198,57,40,156,113,82,63,213,253,134,202,228,192,118,137,21,107,197],[162,187,84,38,184,98,240,208,137,15,213,198,60,223,62,250,19,146,116,193,78,171,38,88,136,254,97,188,69,221,194,220,201,128,220,38,138,146,44,73,239,138,236,12,241,228,106,216],[142,148,201,4,150,20,44,125,117,68,116,66,178,93,186,158,69,241,124,50,65,72,175,242,29,105,69,111,66,32,183,138,112,41,110,250,191,193,159,168,90,171,76,102,41,11,253,163],[181,75,178,107,44,159,127,229,36,190,22,27,0,29,207,67,225,29,135,28,171,125,113,63,124,59,104,224,181,146,39,214,43,99,69,14,176,41,107,41,63,112,145,215,62,107,35,40],[130,195,190,57,224,202,177,188,177,33,71,223,6,95,79,188,66,28,162,182,201,95,3,140,30,220,151,127,120,98,139,159,81,41,133,194,254,141,122,25,117,190,61,238,220,107,158,133],[131,14,41,2,62,208,48,68,81,2,161,108,60,119,44,229,13,108,24,61,231,180,45,38,235,186,175,170,226,140,121,114,168,80,20,123,255,243,175,218,73,146,153,9,92,71,123,162],[134,112,219,28,13,157,4,145,118,158,101,234,3,254,83,244,249,88,25,187,201,105,207,170,240,57,191,65,123,5,103,20,1,18,180,224,115,91,83,85,186,113,89,0,120,247,12,219],[145,122,158,251,55,212,254,152,139,2,47,141,82,231,49,71,211,178,125,69,201,145,101,41,12,116,66,134,65,238,185,32,218,64,42,115,8,157,40,156,113,45,140,6,180,238,137,39],[151,75,120,1,26,253,16,17,74,70,210,243,251,132,250,127,162,110,186,232,191,89,125,229,105,215,77,170,177,106,216,139,110,43,109,70,63,79,138,139,76,152,8,92,159,166,89,194],[181,199,103,42,72,114,231,176,40,222,134,178,68,82,164,205,251,62,232,146,152,171,155,3,100,244,171,124,84,84,254,61,167,29,100,44,185,134,125,229,127,192,223,44,142,198,191,220],[141,156,116,31,151,104,202,54,185,148,101,95,120,212,255,197,28,172,37,240,204,173,116,168,111,75,132,131,54,158,182,89,104,10,253,42,63,39,216,141,63,217,12,92,7,195,226,65],[133,29,198,115,131,192,187,108,245,58,178,200,42,235,61,221,77,244,233,187,42,235,3,56,100,81,204,169,90,127,95,234,106,13,196,166,52,80,111,49,143,206,107,24,167,62,16,65],[185,220,141,167,20,47,55,154,200,73,58,25,228,173,162,41,33,136,229,241,199,114,90,96,236,72,83,2,7,13,118,136,56,88,210,165,105,47,68,135,32,107,123,206,86,157,241,219],[131,41,62,125,21,12,29,95,104,204,179,217,66,210,46,186,16,49,203,218,122,176,248,40,59,159,0,125,87,17,180,19,23,210,217,120,119,239,198,78,31,255,5,1,175,141,167,165],[139,18,209,23,149,219,185,74,249,65,213,40,255,224,125,4,64,18,80,71,191,28,176,134,74,216,105,14,140,91,243,249,168,186,201,198,4,150,115,92,181,131,139,164,130,34,122,49],[173,221,154,225,245,142,61,156,96,43,233,168,140,34,171,115,28,74,40,180,251,164,56,8,70,151,200,138,103,51,246,54,171,30,163,111,129,175,113,249,50,92,64,13,42,234,56,206],[145,24,199,138,88,141,81,209,177,185,53,69,132,68,150,193,106,26,175,78,32,51,26,217,78,99,136,173,10,171,51,105,68,43,53,214,45,162,39,72,131,82,223,119,186,138,187,215],[144,118,57,255,47,6,21,69,24,252,14,137,85,119,215,92,72,100,23,2,158,151,214,7,82,180,252,78,231,177,35,4,139,179,155,102,60,89,235,122,117,134,50,216,84,167,20,165],[185,95,56,123,92,243,202,213,139,178,242,97,47,110,178,76,224,49,204,59,124,21,208,190,197,106,86,82,77,189,16,46,159,219,141,18,74,24,50,187,224,177,22,43,21,174,153,239],[169,236,29,105,57,7,45,30,202,98,55,118,181,186,129,24,148,52,126,147,76,140,143,82,207,94,51,35,132,228,85,217,74,80,189,99,130,194,65,103,233,118,139,15,134,34,69,152],[136,140,51,185,11,115,244,163,123,169,131,18,202,176,189,152,221,121,7,178,255,159,223,38,143,11,173,156,227,92,254,140,234,73,207,127,90,27,6,44,120,28,217,169,171,246,13,80],[133,42,200,129,215,146,107,68,91,42,126,89,33,149,34,213,35,155,26,213,200,191,25,42,15,71,62,145,231,218,226,172,77,60,50,78,73,151,135,184,107,155,187,253,165,50,105,213],[180,85,119,174,165,18,61,24,11,51,183,28,80,55,249,249,65,197,251,203,136,74,16,64,177,81,160,144,41,128,46,133,178,231,6,236,180,219,62,58,62,152,175,17,17,139,73,231],[172,165,66,114,11,213,196,32,13,159,28,214,171,105,170,217,155,171,57,80,115,106,94,241,165,184,106,102,165,106,126,242,202,46,125,186,200,152,214,93,230,205,95,17,54,121,4,189],[150,185,53,251,214,148,159,193,229,103,32,228,16,117,179,164,184,248,167,91,242,165,89,203,150,221,227,99,86,221,9,172,2,72,175,37,175,144,68,134,181,20,145,211,50,234,91,156],[174,15,222,234,177,190,77,143,166,171,242,238,18,185,20,212,225,31,166,104,120,117,215,6,239,89,0,107,244,231,198,110,13,9,191,135,104,232,189,127,153,194,27,193,161,107,123,109],[182,249,249,82,122,153,71,240,8,42,255,102,219,118,139,64,188,173,201,96,126,147,251,69,226,177,143,168,85,43,91,63,63,118,8,205,7,188,211,230,61,234,179,45,95,162,113,102],[163,192,239,195,78,193,31,80,119,8,170,215,243,141,31,252,91,187,220,141,147,135,249,162,87,173,141,217,159,130,48,209,163,149,56,47,190,238,218,59,244,221,41,249,8,1,84,26],[170,246,216,255,234,218,62,255,77,77,161,59,57,196,142,8,41,50,45,237,200,149,253,82,121,168,49,67,190,117,155,15,212,199,10,45,55,123,142,9,216,115,78,209,202,158,193,218],[143,72,142,143,180,203,92,65,216,6,252,31,7,202,169,104,154,47,211,17,83,248,115,120,167,68,4,39,58,114,110,238,130,71,252,235,79,27,106,27,187,91,29,155,102,188,191,184],[166,85,134,153,158,60,209,89,59,36,7,89,112,100,166,15,70,112,209,77,222,218,44,45,132,239,120,182,206,199,27,112,156,46,202,217,108,104,127,23,87,255,184,185,1,166,160,105],[151,14,145,92,25,222,51,124,221,238,25,125,48,176,19,198,49,192,89,4,166,215,137,205,140,129,136,19,63,131,13,78,14,157,57,247,21,197,153,246,144,6,231,243,97,19,128,225],[153,39,213,31,8,209,190,131,82,225,202,132,218,238,203,205,25,49,67,164,215,74,93,168,18,44,93,191,240,68,23,244,10,67,10,187,8,135,244,175,56,132,101,100,245,184,142,20],[180,104,167,160,44,160,83,167,4,48,103,64,232,161,133,105,148,123,20,25,225,212,48,63,183,225,33,2,93,180,180,148,251,65,115,202,210,70,165,118,243,52,212,132,115,248,245,16],[144,157,189,82,176,46,54,94,60,12,196,147,53,159,45,59,43,185,22,80,144,29,175,185,34,172,80,83,63,100,171,224,193,42,161,51,192,98,131,220,120,68,10,124,237,63,251,90],[132,37,210,0,234,196,48,132,62,233,130,231,108,248,236,206,237,38,214,84,140,178,86,84,51,96,214,161,48,202,191,107,217,41,36,198,185,45,184,254,14,248,91,177,73,158,72,38],[130,107,238,84,94,74,104,13,212,3,187,136,134,188,148,253,79,50,213,23,133,60,99,172,187,199,46,123,30,193,203,86,227,247,168,124,211,106,168,217,109,63,60,59,51,208,199,181],[131,74,180,2,128,108,169,171,254,207,213,159,62,33,11,1,194,94,204,205,122,41,90,202,184,6,126,93,79,14,87,39,56,72,195,161,23,26,214,66,222,208,161,221,163,87,39,80],[162,19,6,118,102,183,84,136,64,12,8,17,26,235,78,207,199,48,69,239,191,181,90,210,30,141,194,29,104,196,177,241,109,8,216,186,68,212,80,241,209,141,17,98,148,31,191,249],[153,42,217,112,106,168,57,5,150,206,203,36,194,146,4,120,54,209,226,190,226,93,14,158,1,140,98,144,195,254,223,89,25,150,36,205,197,94,149,62,36,159,113,54,78,112,236,228],[128,234,162,185,69,65,234,129,142,205,102,156,160,237,214,245,227,115,150,113,143,119,103,39,237,20,140,211,29,91,157,152,28,251,175,168,137,150,52,16,184,167,217,202,119,210,16,252],[162,99,217,22,112,209,187,26,218,154,163,9,166,219,110,208,67,173,88,232,25,97,206,148,93,186,233,102,151,221,172,13,146,86,221,255,221,154,124,32,172,164,87,82,52,140,152,119],[177,251,96,232,140,51,61,70,255,198,112,67,126,34,252,83,138,111,114,221,62,95,3,109,78,192,207,179,63,98,51,221,178,11,173,69,190,79,252,65,243,32,119,178,227,22,236,195],[175,5,87,4,34,19,10,55,85,240,79,107,65,164,128,30,166,201,108,166,124,91,125,43,244,12,139,44,65,254,127,27,0,97,209,1,78,127,9,209,0,76,177,199,207,188,69,179],[149,100,185,44,156,80,31,235,201,77,67,218,82,29,2,55,104,157,173,109,196,98,10,53,212,102,166,40,84,145,6,46,49,120,9,223,60,209,127,80,51,113,209,40,103,192,118,105],[152,207,50,155,238,139,146,221,80,230,188,28,100,68,8,188,91,238,151,17,9,187,114,115,203,60,155,29,127,76,118,244,217,146,240,0,174,182,119,62,28,117,249,39,194,47,178,76],[151,9,253,197,161,170,241,141,37,86,156,136,186,112,217,249,106,91,100,187,178,30,27,86,102,123,105,16,75,76,105,197,172,178,182,52,185,128,61,165,168,247,233,48,154,227,173,154],[134,255,12,153,144,193,212,160,228,134,35,152,170,174,161,99,228,65,98,196,71,53,38,101,8,131,115,130,39,149,102,163,139,120,165,255,38,38,2,47,213,19,58,34,70,216,163,241],[142,249,159,165,206,110,116,109,117,200,150,203,245,165,68,25,170,238,152,28,217,149,236,161,1,154,240,225,163,121,144,234,253,158,194,158,21,7,97,88,55,218,68,116,230,30,239,83],[177,20,38,58,78,187,3,252,111,177,45,41,154,253,77,175,131,246,227,92,201,204,51,42,41,216,151,54,144,201,23,104,137,92,161,173,252,131,3,132,50,135,111,4,171,39,144,98],[178,46,227,200,250,130,148,134,28,173,39,132,82,250,125,77,102,4,96,244,51,1,7,21,87,83,80,152,162,168,85,136,11,119,75,131,83,110,13,196,19,44,124,166,141,48,34,154],[145,28,253,149,109,32,13,50,188,33,28,248,255,186,115,236,57,87,100,141,185,159,157,17,126,203,105,47,69,208,133,217,23,130,12,134,105,207,105,198,189,114,167,142,189,201,100,94],[182,219,152,252,165,234,85,226,83,85,71,5,79,171,209,72,243,160,160,20,203,52,137,106,255,45,51,221,113,199,175,15,71,166,204,172,15,149,130,224,35,121,97,183,198,30,239,115],[162,13,127,164,216,68,240,140,217,155,192,78,173,47,106,230,182,230,56,17,33,208,102,52,197,118,248,63,124,135,221,178,8,165,149,109,21,120,154,87,77,43,77,42,136,171,210,147],[170,52,207,49,203,160,224,241,67,63,103,176,254,192,67,160,169,109,63,115,127,150,70,142,73,183,159,12,101,150,205,104,56,80,183,203,130,100,203,226,22,169,57,58,160,32,232,249],[164,168,105,219,214,92,246,241,170,179,103,196,19,139,64,117,201,3,134,182,32,90,38,21,199,254,22,198,167,96,195,109,113,208,42,141,159,205,250,123,164,192,12,121,77,30,144,242],[163,113,238,89,173,119,33,152,90,30,169,74,142,243,70,130,43,196,151,82,102,125,236,128,115,167,152,96,113,163,117,180,104,7,226,16,207,213,125,179,118,122,166,231,198,242,72,52],[166,78,100,188,84,12,86,45,201,122,122,32,109,53,213,171,33,0,53,207,112,148,229,144,209,9,223,27,190,205,62,90,217,25,190,125,138,55,155,50,84,86,152,120,99,46,19,18],[175,125,221,84,181,201,120,2,54,70,77,24,113,154,52,251,177,34,171,220,230,189,24,4,102,32,211,130,231,168,119,1,51,130,97,225,244,164,183,228,41,66,14,150,105,184,93,35],[174,215,8,195,222,56,171,84,51,142,232,54,229,6,48,75,126,51,59,138,194,117,131,170,254,161,244,7,89,64,230,192,78,108,229,253,40,120,132,210,192,48,159,19,187,210,251,136],[160,149,91,63,22,199,115,54,7,221,171,142,86,45,61,129,13,155,141,109,123,104,42,247,14,208,10,14,162,143,60,205,23,127,115,49,61,133,128,55,41,9,12,114,81,14,86,108],[160,64,91,46,216,66,27,102,94,252,166,208,203,171,52,212,204,242,55,156,43,118,216,90,124,54,165,149,49,99,13,249,231,74,169,23,173,3,44,223,25,147,219,56,140,22,149,178],[176,95,234,43,2,165,209,134,48,179,131,162,45,244,109,244,242,138,139,4,213,38,116,160,46,145,42,6,117,114,27,222,117,119,16,5,136,69,54,159,154,111,205,217,34,247,113,57],[135,194,147,45,43,141,181,20,90,119,242,165,40,88,116,144,254,116,107,132,185,101,189,28,83,177,101,32,191,97,96,25,54,124,244,88,83,88,58,4,188,138,178,159,0,229,32,254],[128,17,112,166,32,43,31,125,223,22,250,189,60,241,252,203,158,110,127,171,73,56,43,146,65,51,180,96,31,5,244,2,9,218,58,188,251,159,189,135,218,149,20,20,186,172,235,177],[172,13,121,70,116,198,57,101,46,61,152,114,92,169,110,226,112,72,251,3,196,96,126,80,144,122,252,137,108,202,87,12,126,131,239,114,71,168,244,167,246,235,232,251,53,161,143,34],[149,227,244,128,153,77,127,250,25,60,66,62,70,127,51,204,220,16,137,191,84,3,15,238,248,8,129,215,185,187,40,144,37,1,132,31,67,142,248,55,89,85,26,130,121,228,201,119],[140,93,231,127,119,48,144,51,130,58,89,109,167,38,138,79,64,235,5,153,78,221,5,7,180,252,165,112,153,214,90,162,91,156,242,254,156,55,251,204,202,166,108,50,111,90,105,180],[147,138,226,58,104,36,246,166,144,226,162,5,83,253,76,40,43,96,183,122,135,144,234,197,198,68,81,2,240,141,153,41,41,134,218,35,236,115,22,101,218,209,43,31,205,109,243,39],[163,60,155,207,141,150,108,99,166,219,206,142,137,153,10,248,249,173,40,68,56,230,37,87,26,67,161,95,66,166,34,101,40,223,119,65,98,104,224,86,187,148,120,228,41,81,175,253],[161,175,112,131,26,228,77,198,150,122,50,131,59,136,28,155,120,73,47,186,114,71,80,214,96,196,17,234,224,114,19,164,229,193,35,217,143,135,21,196,67,171,191,99,140,164,103,60],[153,238,128,140,99,172,167,152,103,24,158,26,132,129,240,108,185,37,175,81,201,247,112,16,229,122,146,0,82,114,174,197,190,210,13,191,50,217,70,170,233,118,179,164,25,166,132,241],[165,221,205,168,135,34,252,199,96,60,127,248,200,141,207,118,80,246,53,8,214,11,223,243,91,57,94,151,232,69,149,38,8,92,11,216,101,11,71,215,237,212,188,24,22,148,82,189],[139,8,88,200,26,145,167,68,0,161,120,139,203,171,161,145,209,127,36,44,221,139,110,1,138,47,69,133,177,233,210,251,216,75,212,61,17,167,232,109,100,21,216,25,222,179,196,185],[172,50,165,78,164,109,120,151,169,39,140,48,30,159,138,12,40,178,139,86,224,236,233,37,24,13,36,71,28,6,223,138,28,125,187,164,77,36,49,42,220,46,171,82,110,152,222,175],[139,172,249,25,151,65,23,41,98,251,46,254,207,48,68,65,5,79,206,34,0,105,83,105,59,18,240,37,23,117,103,52,157,228,215,160,81,221,159,47,224,152,12,208,238,218,27,62],[169,148,20,175,149,7,208,218,233,152,246,86,143,77,231,105,205,163,16,194,23,188,175,132,88,119,163,137,171,184,216,89,132,95,99,23,249,28,139,15,41,31,160,183,47,208,55,154],[146,165,78,229,29,17,126,254,30,107,60,149,111,216,27,14,128,173,234,245,1,107,244,194,35,64,42,141,177,219,149,224,207,162,134,24,99,185,225,215,49,5,151,208,126,189,51,1],[172,188,76,144,56,96,82,225,64,84,69,149,72,229,37,89,211,166,35,253,66,204,145,116,219,252,93,51,60,97,197,8,22,146,105,143,215,118,252,61,49,134,232,88,159,170,180,157],[142,219,238,94,152,39,154,18,235,127,161,74,103,110,142,11,62,63,25,17,238,66,227,114,127,137,242,92,71,87,211,46,83,57,2,47,118,185,243,31,16,245,70,95,42,44,187,118],[177,239,27,12,97,68,89,156,168,143,171,148,197,105,23,8,121,49,14,182,135,163,67,245,3,189,224,113,226,5,154,218,255,172,108,224,190,237,50,221,14,227,21,210,74,114,221,98],[136,36,114,109,46,250,82,34,186,137,251,145,46,10,252,117,19,190,132,210,192,168,213,178,170,245,167,56,107,89,96,203,182,160,88,30,111,198,181,120,197,97,225,171,57,82,163,174],[142,12,123,169,80,124,242,188,154,95,9,173,2,80,150,85,142,225,124,205,172,67,110,146,140,60,18,101,229,33,36,160,253,220,22,114,230,226,32,57,70,44,46,201,213,51,37,9],[150,103,154,4,170,29,62,150,169,189,115,177,19,83,240,233,201,239,44,206,130,142,253,240,162,189,16,232,243,96,186,151,89,233,194,78,181,130,111,237,249,246,72,15,223,172,83,96],[141,43,85,179,44,124,210,123,42,90,211,12,212,197,75,111,31,247,66,96,234,141,224,6,210,2,87,128,167,152,157,56,188,66,158,118,128,230,12,28,116,30,216,43,145,68,65,227],[185,165,8,192,167,197,104,163,175,250,117,93,203,220,81,173,80,3,76,241,242,78,35,46,205,63,108,83,57,127,12,3,142,75,0,20,69,237,192,30,121,200,54,83,181,76,22,104],[128,140,225,165,106,123,0,15,116,166,77,71,110,63,83,213,236,114,176,224,94,79,168,206,112,232,53,150,89,76,23,137,180,46,125,63,213,10,222,129,80,84,113,212,117,72,252,121],[145,137,119,227,110,97,221,181,238,127,81,4,16,165,126,150,134,148,128,74,214,170,47,227,237,2,89,248,144,93,133,220,113,135,80,156,88,107,174,194,104,121,176,97,133,2,199,200],[138,11,47,150,36,70,244,147,67,46,230,182,154,69,94,85,89,183,192,41,204,162,86,112,108,102,196,210,141,84,159,93,33,251,14,230,248,254,83,130,179,33,60,194,21,153,136,217],[167,24,223,11,89,133,125,180,1,106,237,83,199,213,15,116,55,101,138,229,28,182,49,201,111,220,119,145,91,81,149,86,38,64,99,12,170,39,203,111,85,21,118,126,231,39,236,134],[138,252,118,127,116,58,239,74,163,138,84,251,18,174,123,111,163,158,79,212,173,167,102,40,202,208,149,60,104,53,210,208,174,134,123,112,12,54,113,155,114,2,207,166,146,109,153,186],[180,112,247,219,15,202,160,10,67,15,181,187,58,66,102,137,230,97,161,11,140,19,154,185,195,97,48,182,122,119,26,119,236,173,195,80,78,156,230,59,209,24,184,219,49,48,104,239],[142,243,97,48,74,218,97,253,134,194,102,241,135,11,108,132,103,154,136,98,64,169,222,252,57,222,104,99,161,22,200,146,59,55,38,148,59,27,175,0,112,225,194,38,196,89,62,255],[131,248,172,131,48,132,13,138,177,93,170,39,207,117,178,197,128,188,190,2,19,1,103,239,18,38,207,75,105,51,91,92,62,253,224,32,129,68,135,240,152,209,31,133,4,67,55,196],[178,254,39,190,159,176,98,240,25,93,82,148,56,240,250,250,78,105,85,193,155,125,191,117,187,26,55,234,197,229,71,197,138,34,62,208,213,0,142,194,102,39,222,255,151,201,61,146],[164,4,212,63,5,222,79,46,78,249,37,203,64,13,0,35,218,15,156,67,17,52,26,134,55,143,228,44,250,14,161,69,108,87,170,138,138,173,16,21,60,152,158,59,96,105,151,195],[151,183,221,249,237,222,216,72,241,164,248,228,202,56,110,61,54,70,167,79,31,136,149,76,73,148,182,39,96,113,31,208,147,194,81,13,49,148,42,195,58,124,236,223,60,171,104,73],[133,219,194,70,122,248,44,251,227,241,29,157,106,150,228,93,225,181,103,49,33,232,133,32,205,253,187,180,13,182,129,18,46,32,147,72,144,55,194,136,247,108,94,82,97,131,230,91],[164,120,18,137,88,155,74,98,239,40,89,255,13,187,100,8,167,131,44,78,163,214,214,47,133,194,77,235,17,87,208,233,170,88,93,98,16,210,94,192,44,202,242,110,176,227,218,61],[151,206,125,79,3,223,45,140,49,56,226,235,103,244,123,140,120,53,30,21,147,122,70,193,63,39,85,44,115,81,96,20,72,137,140,77,83,101,5,37,26,197,228,202,33,60,2,152],[182,151,117,246,11,242,6,226,154,193,42,7,170,95,163,148,250,251,35,224,73,244,149,16,55,40,213,34,86,89,157,52,26,102,106,138,72,212,188,252,133,64,9,224,101,198,13,243],[133,207,90,222,229,228,44,200,194,163,107,203,254,248,173,197,94,205,200,59,83,80,62,177,231,139,169,227,193,125,90,159,210,139,125,173,249,244,56,184,246,255,47,224,39,176,99,237],[146,27,147,47,70,206,22,72,104,60,237,54,104,72,31,20,134,153,79,34,190,227,226,63,164,206,255,82,52,41,117,56,221,29,165,109,105,223,85,162,66,22,248,34,224,14,235,166],[175,235,66,168,166,23,38,226,8,208,123,35,222,105,75,184,32,108,125,89,88,104,75,160,207,56,254,187,131,130,119,59,65,147,56,7,11,241,190,101,21,219,94,90,45,1,154,212],[136,233,210,100,170,131,115,241,22,25,65,63,9,233,250,80,222,213,236,77,45,12,120,86,66,60,213,6,198,24,5,253,60,180,78,113,230,45,241,110,148,119,80,4,245,179,51,22],[147,48,184,7,21,120,207,47,232,180,134,225,162,153,233,29,9,97,46,69,233,114,2,190,127,145,190,187,173,241,121,161,143,230,190,183,63,140,57,237,124,92,251,129,2,171,124,100],[172,174,167,121,215,224,159,209,46,154,191,234,65,86,158,138,140,42,58,113,153,81,235,15,126,184,37,115,94,105,45,205,125,13,173,217,59,192,88,5,131,123,9,143,176,38,255,56],[176,204,155,144,216,63,255,7,27,10,239,173,171,209,89,32,37,186,188,236,183,30,113,130,121,220,184,231,30,54,172,8,11,198,45,203,174,177,157,48,122,51,93,169,10,188,175,74],[148,3,46,25,197,131,167,142,135,88,227,3,8,137,139,252,39,80,230,234,203,147,180,145,206,137,114,133,44,209,100,21,162,47,140,254,110,81,73,33,249,244,251,183,32,215,87,52],[174,163,137,162,190,95,59,118,149,204,199,51,149,74,70,49,110,110,109,45,253,78,7,70,24,77,101,20,248,137,196,178,224,106,197,155,252,66,44,198,205,194,64,87,12,17,194,66],[128,221,216,40,140,40,181,149,30,98,77,193,156,1,123,17,193,137,197,185,89,111,231,182,148,188,0,194,72,108,197,6,16,29,120,53,0,92,105,76,8,249,111,254,12,49,243,37],[167,68,239,22,45,179,222,188,36,16,174,51,179,67,73,53,132,197,105,46,122,213,130,135,211,150,68,220,205,221,34,95,10,184,65,78,50,153,72,90,65,254,213,32,60,108,18,231],[151,137,232,201,44,83,197,234,141,102,108,199,144,114,213,120,214,16,254,6,242,196,147,30,131,165,180,84,64,121,102,26,194,70,247,172,3,252,103,18,244,243,64,140,109,37,223,214],[151,231,45,63,97,73,26,152,66,162,26,94,61,42,121,130,220,10,167,134,28,3,215,70,112,109,76,11,60,37,21,180,83,120,132,222,30,137,59,181,62,237,187,153,119,112,72,34],[128,158,215,175,62,152,180,138,142,166,22,165,8,134,30,225,85,153,148,82,18,83,141,165,52,73,67,87,77,2,5,153,230,207,74,54,18,58,84,241,170,110,3,105,162,188,47,217],[179,137,17,248,252,100,190,100,159,1,214,146,26,206,113,118,209,16,60,172,2,167,191,192,128,41,62,253,231,23,118,147,53,166,107,2,91,197,205,3,11,202,248,240,78,88,125,33],[183,130,20,180,84,244,151,103,68,240,104,157,102,32,103,187,20,95,123,127,64,251,109,148,38,176,45,167,56,103,25,165,166,53,162,246,60,235,36,234,28,179,185,143,63,48,25,115],[171,114,234,95,127,58,64,112,247,200,105,204,218,112,244,59,61,31,135,93,97,180,181,160,116,187,132,83,64,77,99,11,106,95,22,78,148,33,70,2,244,180,202,82,240,241,13,246],[151,31,165,206,130,81,25,85,12,106,101,189,151,79,230,237,168,243,130,33,239,220,92,88,124,158,136,87,72,133,193,35,48,33,104,103,14,31,211,165,4,74,171,41,228,183,209,57],[134,249,154,205,44,50,148,129,20,27,89,31,20,136,115,223,255,219,238,127,66,201,209,218,217,186,17,184,185,248,243,239,40,4,23,209,186,61,56,55,60,119,91,181,126,204,213,81],[134,236,122,44,161,22,118,184,180,137,110,102,55,133,180,23,41,223,17,105,17,37,49,209,254,235,53,119,230,184,1,36,252,242,10,53,133,184,59,120,110,179,157,138,153,221,134,147],[183,11,68,202,133,105,65,25,141,236,63,189,61,36,155,102,126,109,111,163,162,87,248,166,121,67,107,33,243,121,169,226,255,44,97,252,195,114,203,168,131,53,75,179,10,162,224,151],[144,253,177,229,43,240,109,42,30,167,188,117,222,110,84,14,118,216,148,148,27,143,103,172,152,65,203,40,111,209,111,2,104,12,210,1,220,21,137,102,57,163,33,181,196,179,226,161],[174,61,8,50,216,15,118,61,124,25,142,71,177,167,88,94,49,17,218,5,56,164,18,80,97,98,67,22,3,247,86,63,9,223,93,152,130,19,22,185,176,242,156,233,123,153,135,139],[153,232,234,31,106,201,234,214,112,90,67,195,119,7,44,241,183,81,145,105,81,246,180,71,208,40,132,164,173,83,203,93,62,8,178,109,84,142,219,169,222,228,40,38,10,46,157,233],[131,133,244,116,77,180,226,96,231,123,34,253,250,48,162,163,77,55,39,133,203,132,147,165,76,167,13,83,124,4,12,9,51,245,254,108,222,50,21,240,17,227,132,230,100,222,52,34],[167,134,117,211,46,127,240,209,170,198,184,115,193,134,100,114,250,125,90,232,158,153,56,13,91,18,32,192,184,109,178,246,138,215,190,235,179,111,140,254,169,106,86,42,65,125,49,90],[152,232,178,183,233,95,110,55,59,1,154,210,222,40,175,31,66,26,173,232,67,201,188,166,230,241,208,208,184,64,195,108,196,35,46,102,43,141,135,178,26,31,20,12,201,44,195,191],[130,135,26,67,184,230,32,55,108,86,240,131,35,5,125,18,96,242,237,52,232,116,139,48,129,93,128,161,138,51,107,220,164,79,120,194,190,58,184,91,182,196,89,115,0,53,234,134],[148,145,84,49,62,180,98,154,16,144,234,34,162,213,74,219,114,126,218,247,75,236,98,122,218,156,160,44,23,1,176,130,90,22,90,11,71,251,100,190,156,16,40,14,39,164,125,142],[161,183,145,2,146,122,161,3,50,16,134,103,86,114,150,254,0,223,70,225,231,87,210,12,160,17,35,8,31,234,91,35,226,114,147,72,24,85,51,105,227,195,204,173,208,22,143,128],[142,226,228,161,47,59,181,194,75,252,182,112,8,217,186,147,193,174,33,217,88,92,176,173,254,118,10,54,83,144,170,24,99,62,189,192,50,150,108,49,32,24,198,51,165,168,118,249],[178,100,149,34,98,180,118,234,115,103,160,238,13,139,49,17,245,34,14,165,183,92,28,34,205,218,212,99,151,174,114,129,45,66,107,56,125,130,249,174,32,13,39,158,166,97,185,193],[162,42,142,50,22,239,234,54,131,203,28,126,149,26,106,247,35,17,41,96,98,169,239,66,148,15,30,60,232,39,77,14,220,108,203,145,32,58,89,47,187,243,120,229,128,100,190,177],[176,68,51,176,135,178,93,85,48,128,230,72,177,100,101,12,192,107,114,229,237,11,137,56,71,229,251,203,80,38,135,127,254,241,124,130,49,242,34,247,134,144,94,60,101,240,154,234],[162,145,41,148,166,147,190,5,100,41,202,97,86,143,200,184,82,32,56,10,244,86,62,107,172,2,106,46,90,3,73,71,106,181,35,118,69,27,242,151,155,152,143,230,238,29,154,17],[179,235,124,36,120,49,212,135,123,159,204,123,4,26,166,15,227,115,216,40,172,124,81,120,32,232,206,153,166,200,213,10,25,92,225,243,232,102,156,200,147,97,38,180,108,83,3,19],[168,158,178,246,243,102,79,19,21,246,126,159,235,212,147,203,231,244,155,144,175,71,23,37,63,31,239,156,238,49,26,189,74,18,164,218,234,36,155,199,48,61,146,155,230,195,170,250],[168,43,127,238,81,10,186,192,237,195,164,179,157,3,49,110,125,91,86,38,19,170,243,96,137,225,87,58,234,231,158,159,139,69,223,31,204,215,104,138,238,220,88,6,49,169,221,76],[162,93,142,100,103,103,97,1,4,34,231,210,67,13,129,133,241,236,68,138,40,212,121,7,251,74,20,239,40,165,106,193,90,182,121,44,129,206,29,188,242,47,44,126,152,203,208,58],[183,64,231,140,179,78,211,99,33,41,56,46,150,68,49,178,164,45,101,35,79,129,233,32,91,19,88,195,8,130,215,183,74,28,252,231,88,210,233,213,125,249,230,32,221,251,36,26],[141,133,22,59,239,202,34,14,204,203,140,248,201,199,2,210,148,197,134,143,210,21,172,177,199,154,187,60,85,124,118,237,89,36,107,68,188,203,219,198,195,230,7,251,129,133,124,56],[168,51,18,81,114,75,43,209,104,1,84,33,94,108,25,116,94,110,151,96,176,190,216,151,170,1,31,200,226,189,59,73,157,106,116,169,71,72,217,24,217,190,76,35,104,74,253,96],[152,216,50,60,121,66,211,174,208,134,25,242,252,129,180,157,107,194,74,79,201,15,157,234,176,57,96,93,156,116,212,17,199,72,65,241,119,128,132,61,178,55,254,197,151,106,130,3],[161,127,237,185,198,201,144,231,124,150,200,54,237,118,192,9,163,184,24,156,38,205,171,46,153,224,252,61,204,229,154,99,153,163,181,106,105,42,162,150,120,161,237,146,23,5,74,10],[131,74,114,186,140,185,106,110,158,8,250,234,63,174,240,84,128,25,60,158,20,7,179,17,91,145,185,208,165,178,191,165,235,113,109,112,119,217,47,129,157,119,98,151,73,220,243,141],[153,56,110,188,198,16,113,235,177,110,54,68,128,199,177,104,21,164,75,228,242,184,98,162,17,181,32,190,88,150,94,143,164,151,187,197,150,142,127,166,161,243,126,10,21,92,212,206],[129,7,5,75,81,212,220,2,119,186,126,39,226,45,51,140,64,193,251,13,247,173,210,77,26,27,216,67,93,101,29,145,27,48,96,29,107,8,143,154,242,25,92,107,178,247,75,117],[141,200,18,231,170,73,54,64,220,122,128,250,139,186,126,99,94,30,210,206,105,147,202,40,82,145,69,58,26,29,232,208,191,93,97,99,102,125,147,127,43,59,218,92,175,102,134,91],[183,152,210,229,194,59,102,246,62,150,55,37,145,221,142,103,244,106,218,197,58,119,183,133,99,168,136,22,161,20,145,82,90,132,197,30,203,154,55,240,105,244,6,202,147,28,35,12],[174,153,231,33,46,229,10,138,122,232,76,93,75,105,196,27,64,228,224,125,101,237,246,45,237,156,251,92,43,194,48,65,50,176,197,43,249,167,27,140,127,204,222,212,134,9,15,229],[129,211,145,194,199,207,114,104,247,174,6,126,140,15,22,60,68,149,153,164,202,130,71,71,74,24,203,116,39,156,231,131,230,73,218,194,56,189,248,11,215,110,74,39,159,30,165,158],[130,248,148,72,179,138,206,173,248,251,132,24,202,250,51,50,173,162,117,175,35,173,146,0,14,7,91,147,7,233,14,121,76,157,27,17,227,64,214,178,222,217,92,10,152,119,94,108],[134,244,142,237,254,43,102,210,164,196,135,28,105,52,113,245,44,251,139,101,109,23,104,142,154,54,209,197,117,84,92,92,129,242,93,205,79,1,84,155,128,87,94,201,41,238,183,114],[183,18,38,138,247,102,105,151,221,124,156,102,142,24,142,189,32,133,150,95,101,41,113,95,46,19,141,79,65,185,78,126,107,146,61,137,220,10,12,190,6,7,117,216,30,139,76,189],[144,8,11,124,89,148,82,138,82,53,184,226,116,74,38,102,44,139,245,146,179,46,180,186,168,68,166,15,37,45,148,139,5,149,220,99,113,127,235,13,7,109,213,187,98,214,42,61],[145,51,216,14,136,57,81,117,22,255,89,160,44,231,109,250,128,191,155,66,21,50,104,224,66,228,12,180,69,22,157,210,159,112,98,24,89,113,41,179,3,78,96,93,153,195,34,88],[164,198,132,209,49,158,45,128,77,140,75,192,154,124,251,252,187,206,58,73,245,226,165,16,224,173,30,151,233,194,20,97,146,248,80,104,173,115,16,1,35,160,182,248,132,105,90,181],[168,220,88,231,244,162,64,6,253,23,48,130,210,142,192,125,13,115,125,167,87,186,41,223,210,205,181,11,167,27,29,244,140,3,106,101,25,8,247,240,202,177,193,46,249,197,198,189],[132,104,52,237,49,57,140,181,252,32,119,81,252,196,86,209,155,16,108,203,65,235,94,147,230,201,0,210,44,226,140,85,198,225,196,1,70,146,119,218,222,207,146,152,139,38,111,86],[140,140,75,25,247,175,188,95,177,56,248,108,70,91,41,196,238,232,135,196,85,82,111,131,125,181,163,116,163,98,67,194,221,114,115,161,142,199,217,245,157,53,98,16,116,186,165,140],[137,185,129,204,251,252,190,223,221,22,249,55,90,14,232,80,221,124,79,4,232,211,218,35,128,7,242,144,211,195,75,90,55,174,202,23,148,96,93,96,185,89,220,228,33,177,206,248],[176,86,63,58,100,224,149,128,172,75,33,6,74,56,140,189,141,123,52,21,129,41,36,186,124,87,254,245,156,59,248,148,166,88,26,152,20,115,173,29,222,80,15,77,106,29,50,228],[130,107,237,248,121,73,199,42,127,154,242,81,99,159,105,184,100,41,86,2,48,158,253,148,132,46,87,47,185,95,205,205,200,249,163,0,30,88,33,123,116,178,241,119,22,124,23,59],[167,240,87,149,141,174,113,208,227,4,202,157,198,210,79,115,245,134,104,196,115,86,45,146,187,102,96,145,239,69,167,70,76,103,99,34,178,101,136,248,236,226,250,120,176,110,159,126],[139,150,188,48,98,125,171,180,241,126,94,179,135,225,53,184,181,50,16,95,160,152,38,217,224,51,164,234,233,213,172,142,148,237,12,144,33,132,60,148,211,221,93,52,197,141,140,118],[145,79,236,144,242,168,123,130,135,7,197,19,143,236,151,197,43,164,228,55,115,150,61,192,228,87,4,129,171,103,69,66,156,115,238,196,153,76,211,184,203,82,109,28,228,116,29,77],[161,252,72,13,235,4,112,17,244,218,247,66,155,55,174,147,19,74,87,179,153,132,35,48,215,79,247,200,74,214,57,1,135,49,29,247,86,22,241,79,48,85,249,229,179,88,8,13],[151,226,241,47,238,174,31,50,77,204,70,162,48,84,137,21,191,236,197,251,41,228,176,247,220,105,162,24,134,50,178,126,181,187,254,150,89,95,90,193,66,223,114,253,186,240,200,99],[168,222,240,195,162,120,7,204,230,36,21,94,238,242,45,249,52,118,7,162,156,229,56,121,244,104,220,89,190,102,114,104,116,7,162,218,40,254,34,144,244,98,201,144,159,84,55,233],[139,238,29,128,64,41,251,64,79,1,48,35,202,249,79,182,204,89,180,135,20,96,114,232,194,39,31,169,241,244,184,233,33,137,186,155,184,231,123,160,247,112,131,238,121,54,235,145],[143,144,65,111,147,141,228,127,40,4,236,179,86,196,145,38,135,38,162,212,132,20,141,20,101,1,245,218,117,184,61,106,15,160,102,102,167,211,99,132,90,74,28,95,50,196,191,110],[179,174,1,247,207,239,217,0,35,46,68,243,173,54,104,83,66,114,209,254,209,174,126,246,231,172,246,8,150,83,144,9,241,10,236,159,36,96,214,42,216,234,220,252,95,172,86,118],[149,165,147,35,247,250,58,195,6,44,56,108,8,21,232,69,23,70,174,166,28,173,95,100,41,113,80,221,29,189,172,174,59,190,194,25,232,199,62,117,57,94,21,194,221,114,213,42],[138,167,174,154,128,164,73,164,82,150,62,65,226,3,133,8,196,60,191,95,163,102,124,201,192,134,118,198,10,1,111,158,64,53,158,10,104,110,28,77,141,147,138,214,72,142,13,140],[133,83,40,109,251,206,232,155,129,252,34,72,238,141,110,105,90,162,211,197,243,129,114,74,18,101,159,159,80,59,122,171,86,9,182,144,206,1,130,67,142,176,140,147,189,188,30,201],[171,91,25,194,178,219,226,64,155,172,60,10,103,81,89,223,129,17,60,138,239,59,77,231,106,104,47,222,36,106,113,29,222,163,67,248,26,67,160,225,243,248,206,69,78,125,159,175],[172,136,216,134,189,222,166,216,73,142,154,90,231,95,31,221,35,226,157,153,240,157,177,126,255,60,219,215,207,58,115,121,133,112,2,68,112,169,134,20,174,111,227,147,252,163,134,229],[129,110,165,62,117,39,59,164,229,251,240,147,144,235,120,150,5,160,173,239,235,190,234,5,19,49,50,129,60,11,150,239,140,177,227,160,19,246,82,177,236,25,160,98,115,247,10,179],[153,72,63,116,87,23,24,202,252,58,66,42,238,110,235,174,11,110,18,154,234,40,152,196,94,236,251,223,79,120,171,44,167,104,253,147,13,87,74,81,164,28,115,116,15,113,214,130],[180,145,155,75,153,21,154,86,103,37,153,215,120,11,127,220,255,149,17,5,11,202,195,138,187,147,214,173,154,197,42,151,82,112,16,54,174,24,98,38,225,241,55,245,110,130,164,223],[137,215,100,206,190,217,216,187,33,85,171,190,67,185,74,105,228,74,30,192,227,141,197,133,11,46,224,143,201,220,187,255,1,226,230,137,93,30,171,76,226,105,37,127,138,203,0,148],[128,89,162,180,157,102,20,47,90,144,51,194,97,240,4,2,29,138,157,46,193,155,174,11,82,250,161,160,13,4,111,35,199,254,11,157,153,139,203,102,124,11,12,110,30,129,204,201],[164,250,207,48,27,63,159,62,48,2,208,98,32,100,31,101,176,223,191,119,182,210,64,122,35,38,95,39,55,136,241,127,110,19,65,168,98,162,165,73,20,174,211,193,15,33,96,208],[128,185,157,103,228,28,240,24,84,189,199,23,93,95,45,233,118,151,182,203,210,96,145,240,36,171,250,220,97,115,116,122,153,68,161,242,233,2,230,119,249,86,166,71,29,36,136,233],[133,237,97,165,189,80,159,169,6,255,149,102,7,78,10,211,114,133,58,115,66,18,228,109,190,22,161,141,115,168,201,155,204,28,37,131,14,212,1,67,124,128,204,242,182,17,152,43],[161,102,63,157,212,108,131,68,214,98,87,180,20,159,165,199,228,97,5,1,173,82,11,51,125,161,80,45,236,156,97,56,163,205,163,184,36,7,106,249,83,11,188,47,4,225,76,127],[176,188,225,230,111,233,188,219,226,203,128,46,180,150,126,15,94,243,79,145,133,177,195,68,56,194,160,84,124,234,143,57,26,206,175,236,249,8,24,139,100,186,55,12,114,235,188,189],[135,90,45,151,195,73,166,219,39,190,161,222,116,141,127,63,45,202,141,65,206,178,156,4,173,169,222,2,179,15,99,212,30,27,176,98,75,215,238,35,57,140,211,1,185,133,185,157],[167,124,188,113,39,7,246,124,199,63,65,226,71,18,83,214,9,156,218,178,130,61,174,200,42,206,237,28,19,185,235,47,103,254,8,123,227,137,26,114,125,22,50,34,134,93,54,107],[137,158,121,20,109,38,34,5,93,173,164,126,196,229,129,36,14,176,119,107,215,196,182,13,233,79,191,198,207,155,150,192,224,102,255,162,50,122,223,138,157,200,30,169,129,14,23,115],[163,207,114,232,198,220,110,222,13,118,193,1,235,63,138,245,245,46,37,141,69,15,13,104,32,107,252,137,63,136,85,192,153,172,185,197,26,154,78,219,178,199,20,30,17,254,243,126],[138,249,140,16,238,142,133,61,133,188,33,103,99,135,182,212,0,180,187,131,83,94,110,234,139,5,140,180,244,243,229,173,23,32,192,1,151,247,43,79,81,167,25,98,124,51,165,36],[169,186,3,195,165,92,124,21,39,90,168,205,230,96,183,206,98,62,15,119,129,94,83,185,237,221,242,113,215,141,168,18,211,93,24,216,63,214,244,117,232,38,234,40,106,248,118,110],[174,148,177,20,20,126,158,76,242,143,7,209,30,38,217,249,23,52,4,119,89,179,16,125,152,13,135,1,34,49,46,28,161,67,105,222,196,207,75,49,204,65,63,29,105,10,250,204],[174,80,234,44,79,13,202,207,61,196,10,14,54,105,156,171,25,181,251,38,162,66,166,128,31,139,240,249,242,41,67,32,166,204,59,159,95,141,216,107,73,48,89,18,230,135,158,175],[171,78,70,109,26,11,108,251,72,187,243,5,211,117,76,170,188,204,55,134,151,95,60,142,85,37,238,93,198,167,211,201,34,188,53,42,235,31,134,96,38,78,156,161,76,244,110,63],[133,102,126,35,115,178,16,166,116,248,82,212,64,79,116,217,93,67,254,233,31,200,235,166,243,41,69,195,138,193,26,130,221,181,31,73,195,216,93,27,220,118,120,183,29,14,150,50],[170,168,175,104,75,98,77,253,36,164,182,143,221,10,109,160,245,146,27,247,86,246,31,167,216,24,116,243,120,22,200,207,8,204,20,54,99,198,225,157,251,171,44,82,36,7,154,60],[161,231,139,225,245,182,21,2,107,96,135,243,187,129,10,176,87,160,38,85,219,221,34,63,22,110,144,117,150,107,137,39,62,128,38,231,100,116,227,15,251,102,64,123,170,198,167,161],[136,252,100,130,94,231,160,239,111,142,146,46,176,170,104,254,243,127,244,127,250,222,138,82,5,149,189,136,18,149,203,95,91,144,78,253,246,198,126,148,226,209,245,197,83,231,176,49],[141,149,127,81,199,224,32,108,210,228,3,245,230,6,216,31,89,149,165,118,220,194,53,192,217,148,160,135,149,60,184,81,98,79,152,181,252,88,43,108,243,249,65,221,60,76,86,81],[130,190,76,99,137,115,8,129,26,174,37,211,252,191,187,91,46,45,225,161,115,251,17,86,6,81,129,202,67,255,59,93,87,81,48,25,148,212,70,64,159,31,207,10,116,84,180,102],[144,164,202,56,61,56,138,237,100,85,86,45,49,99,142,128,195,232,24,206,231,38,165,10,226,105,117,185,54,78,1,248,169,129,178,210,13,123,80,1,119,100,197,26,239,158,206,196],[185,106,100,103,8,184,192,248,100,109,141,154,158,221,118,8,123,128,140,63,49,124,202,80,201,94,177,210,213,212,185,203,109,223,95,251,6,233,89,58,88,253,116,217,151,202,41,236],[151,190,251,196,185,227,118,124,214,55,150,225,22,110,230,107,180,157,118,42,157,41,144,255,75,98,81,5,81,62,36,83,33,55,69,95,32,6,102,81,18,147,66,25,91,39,105,62],[173,229,85,33,203,206,141,166,236,109,253,149,151,37,199,8,117,135,114,216,196,53,246,9,156,3,218,66,254,105,80,165,46,151,48,218,59,236,42,204,39,142,135,163,192,185,178,209],[164,217,3,169,29,42,200,149,191,58,46,227,89,157,66,153,205,144,124,255,92,93,32,133,244,63,119,109,241,251,144,234,111,74,141,35,104,130,249,196,110,89,183,136,65,211,249,197],[131,71,132,74,249,114,47,79,245,47,59,35,202,238,188,145,126,51,117,107,12,246,75,77,115,95,233,20,60,127,36,81,96,88,76,186,125,53,112,68,194,111,116,93,75,207,141,215],[167,59,139,215,229,159,112,46,28,52,82,17,129,76,61,193,134,172,0,238,30,23,169,238,123,171,221,242,143,93,154,83,240,212,45,10,77,62,235,84,201,155,41,73,127,201,217,48],[129,126,176,199,202,1,16,138,133,208,100,45,97,161,179,165,56,164,96,129,120,109,17,172,195,11,30,126,73,81,193,20,38,158,123,175,65,119,183,21,120,39,176,154,225,159,197,84],[165,26,148,216,75,199,194,102,46,32,78,91,60,232,132,78,141,158,131,249,155,99,0,28,154,225,6,9,221,35,93,137,157,222,123,140,97,90,200,158,142,102,114,199,49,143,253,75],[181,0,44,171,180,248,247,193,81,217,240,197,198,30,64,166,200,60,24,189,194,179,92,57,180,94,76,28,173,52,13,6,117,47,134,28,106,13,75,76,105,27,58,223,89,211,14,249],[138,113,180,32,165,216,138,254,168,89,123,87,86,29,184,69,91,252,198,144,1,193,192,50,2,16,97,201,131,226,199,192,48,223,175,149,92,88,209,156,26,160,173,155,181,198,173,156],[151,125,49,75,104,166,34,142,61,12,214,119,131,7,143,93,37,12,77,72,169,171,233,4,156,25,20,107,180,12,117,96,208,24,132,26,212,111,75,160,9,175,224,247,240,159,246,132],[142,178,229,180,185,160,104,174,182,25,245,27,201,241,237,98,145,92,72,248,193,225,118,137,107,141,222,104,107,2,33,207,51,11,137,58,87,85,238,31,24,127,112,181,178,38,200,50],[138,223,21,190,253,116,178,160,250,247,7,109,3,69,220,204,150,123,47,165,171,60,58,5,154,139,54,223,109,165,20,241,224,26,135,87,235,1,7,198,21,172,23,40,221,126,43,33],[136,165,109,124,188,144,178,68,117,61,218,18,149,191,144,109,174,117,95,227,207,103,190,30,172,83,65,172,111,3,226,61,138,57,157,38,192,200,75,216,175,58,138,102,139,81,120,45],[136,209,61,204,10,198,249,153,224,204,26,139,134,114,95,118,182,174,170,170,104,29,196,236,106,17,118,48,118,179,7,231,26,78,65,248,12,166,237,229,13,217,191,198,229,55,5,145],[176,209,208,114,155,74,194,214,254,134,213,31,252,50,118,254,122,183,253,174,25,68,171,212,132,131,34,163,152,206,230,25,26,241,36,228,174,249,210,221,82,153,148,221,161,177,5,13],[179,38,162,96,219,49,167,135,177,211,6,59,75,231,5,112,100,59,115,247,150,153,64,150,213,113,87,240,90,212,196,31,70,190,220,167,189,246,250,193,214,238,233,129,124,243,35,154],[177,132,123,101,222,254,36,151,78,140,51,48,153,13,61,161,228,118,235,78,233,28,97,104,155,202,153,34,243,187,2,192,12,130,253,251,32,243,81,142,220,83,191,174,127,201,83,79],[177,78,68,173,84,123,252,85,255,168,143,4,253,93,22,37,53,238,135,52,36,196,248,158,180,128,163,253,187,182,195,138,120,237,153,59,27,21,73,61,35,143,98,69,100,212,232,52],[171,72,179,194,172,171,26,17,121,15,141,45,213,185,152,244,206,231,43,160,223,94,118,172,186,159,109,210,158,234,238,181,57,167,106,15,158,255,109,94,44,21,27,124,20,155,104,5],[171,195,190,57,164,22,86,7,45,32,242,75,5,56,121,101,98,100,127,187,11,86,37,56,107,153,79,63,137,124,15,27,71,107,72,21,75,157,70,109,9,57,247,69,28,138,82,18],[183,183,6,57,64,115,107,190,207,83,54,25,223,216,53,234,69,146,19,247,14,249,180,64,50,117,70,253,64,44,131,149,91,214,249,200,186,18,212,249,254,41,59,194,182,87,98,61],[175,81,69,197,21,107,134,109,246,221,45,143,184,206,197,132,118,18,62,202,129,200,235,113,169,203,84,213,209,184,3,102,107,104,189,180,14,167,135,218,37,34,137,147,185,100,16,135],[151,62,70,240,171,204,48,242,225,7,165,127,77,190,32,38,155,56,211,215,2,65,201,94,14,195,0,195,37,78,225,62,178,94,195,109,160,101,242,222,162,4,153,83,101,141,198,244],[164,201,250,141,49,60,171,245,26,73,46,78,218,174,205,131,100,252,165,188,225,83,135,247,125,97,81,127,100,102,221,231,159,68,143,148,158,124,163,196,18,217,215,223,225,231,12,226],[172,108,193,194,121,156,27,238,219,116,2,202,154,199,33,223,196,101,99,223,154,174,55,39,220,237,98,168,40,105,140,152,6,183,27,152,76,70,35,22,103,90,38,120,133,102,1,27],[140,80,107,140,42,32,62,224,237,154,122,70,202,125,82,154,156,227,58,149,5,103,2,102,22,153,59,56,144,62,16,29,93,100,174,199,108,138,53,163,107,1,56,235,135,235,233,223],[169,163,218,189,133,97,66,184,225,214,43,202,99,239,168,31,126,197,133,84,9,251,217,56,63,130,146,226,180,100,21,167,250,201,65,164,177,25,153,220,73,40,183,148,179,20,49,126],[142,46,117,95,254,23,148,107,114,209,114,247,23,145,39,100,179,32,81,20,206,35,10,111,146,211,63,231,175,51,122,106,26,73,196,94,29,43,19,125,227,199,224,251,157,14,14,202],[143,216,178,205,45,78,184,212,25,111,61,127,162,89,234,196,106,116,102,133,200,246,206,77,191,177,81,105,23,31,240,167,249,201,148,94,219,104,37,233,19,20,247,201,186,27,177,68],[136,98,217,132,113,193,121,176,220,153,200,167,52,190,101,25,175,210,90,148,210,223,35,102,237,139,17,54,29,32,92,2,198,246,80,231,115,203,185,60,14,176,207,228,141,162,57,35],[172,71,228,159,165,21,146,86,218,183,115,184,15,225,70,22,148,166,13,75,149,215,251,49,39,253,164,131,93,56,50,28,161,82,165,92,152,192,139,173,158,246,222,164,18,164,7,200],[150,141,54,235,191,233,229,33,95,103,168,246,101,165,229,155,49,184,141,142,185,147,210,22,203,2,77,225,150,95,124,105,44,239,13,173,28,220,27,240,3,23,215,176,33,97,32,158],[133,212,161,78,4,131,184,214,129,216,145,73,143,241,53,6,78,234,8,49,69,203,217,159,247,138,237,113,186,250,76,211,197,6,150,159,54,152,80,226,77,229,205,222,67,230,160,186],[171,85,28,67,143,12,193,63,252,207,223,136,165,146,119,151,39,224,112,105,8,85,144,87,94,250,136,146,226,154,31,188,107,214,138,16,159,242,8,46,83,164,20,253,115,160,108,242],[168,41,196,121,0,165,223,227,182,228,122,174,137,229,248,204,133,239,139,211,18,78,229,99,91,227,196,231,231,74,19,226,103,74,109,192,20,133,79,88,178,185,136,46,111,91,240,157],[172,178,36,201,186,86,195,198,39,254,244,56,142,102,236,244,179,120,150,32,162,164,97,17,205,196,95,139,161,246,104,153,87,229,42,173,129,49,155,66,52,130,84,110,27,124,128,21],[145,250,184,245,195,22,85,115,69,160,183,35,140,37,50,184,226,65,240,80,224,134,168,204,159,71,246,63,116,79,137,40,43,66,219,253,38,248,164,10,226,156,55,181,49,58,139,109],[131,162,246,74,240,54,162,213,106,90,169,120,2,112,66,84,251,29,118,240,196,34,28,66,130,58,215,28,252,218,158,176,41,235,46,149,154,162,107,34,1,168,213,122,156,90,43,157],[151,201,70,255,131,9,40,165,222,146,143,243,68,225,216,181,219,21,2,48,76,169,51,14,104,180,60,71,59,180,41,154,126,181,64,99,76,104,171,64,63,119,120,247,175,192,107,206],[180,140,103,126,61,115,238,121,235,108,44,165,188,64,75,7,97,126,149,195,218,155,121,201,195,241,67,78,229,14,162,28,76,155,128,117,33,229,209,97,121,230,107,47,33,255,3,221],[143,107,133,186,244,237,171,193,87,213,195,28,215,154,179,39,27,21,43,233,155,101,49,39,70,39,87,236,109,63,95,146,212,196,40,167,58,104,170,207,99,253,104,162,230,149,71,48],[182,166,64,35,58,84,43,211,173,174,212,210,188,217,194,193,159,149,173,123,125,128,155,195,27,40,254,202,7,163,187,2,206,113,77,191,22,84,98,114,140,215,90,18,99,145,19,65],[168,128,184,4,221,206,21,75,11,92,91,219,139,138,111,116,21,141,189,143,122,224,22,232,234,87,128,162,178,234,99,143,177,145,185,160,20,26,37,140,147,140,8,217,249,39,180,100],[150,147,59,116,100,236,110,84,118,83,20,182,18,237,82,43,226,111,128,189,5,166,92,179,238,43,236,36,171,247,43,8,121,230,119,104,186,59,73,126,224,197,73,210,6,169,51,31],[165,177,232,232,99,176,166,239,191,244,117,124,219,9,194,170,37,219,44,0,220,130,208,117,219,155,186,59,5,54,170,235,0,8,99,108,142,118,238,124,80,20,163,166,226,83,98,183],[168,50,154,225,254,99,130,34,42,235,234,129,205,149,4,130,98,34,8,22,190,126,186,92,124,124,110,151,27,86,58,251,106,188,157,226,124,111,149,67,150,63,163,229,0,145,150,181],[163,45,17,14,237,195,212,236,162,226,49,77,36,233,82,32,96,193,113,220,86,12,63,125,91,227,6,226,94,42,131,24,135,132,109,13,32,126,109,34,162,143,19,4,237,212,130,129],[151,137,75,253,228,167,134,100,43,13,21,134,200,173,139,231,34,149,40,175,159,220,203,47,18,6,204,104,139,183,230,113,136,107,184,7,170,1,198,230,97,221,174,220,114,171,38,109],[150,206,144,24,50,243,126,250,42,173,247,143,183,171,96,130,66,145,27,74,208,99,168,223,122,114,116,82,21,103,99,112,188,71,79,118,203,68,212,10,208,84,175,136,3,222,197,6],[168,34,159,60,250,127,161,18,148,143,29,31,136,191,140,12,242,116,112,237,115,181,148,179,82,92,108,7,40,75,119,94,21,66,111,165,32,138,243,181,249,169,185,2,238,170,195,202],[181,48,72,27,216,113,22,66,189,19,48,107,238,193,35,243,171,48,50,34,139,42,54,216,212,128,8,113,255,105,47,32,179,240,194,56,43,56,2,16,34,34,228,200,142,72,140,173],[166,144,181,167,214,212,138,175,154,100,171,175,4,113,118,25,171,191,174,220,184,109,23,11,210,166,124,145,86,176,109,113,136,143,96,114,247,60,72,137,80,151,77,134,221,76,156,194],[168,241,69,185,44,199,255,179,201,201,156,48,223,20,77,220,77,28,107,37,78,25,219,108,94,131,205,34,37,1,232,18,14,70,171,56,139,82,201,84,31,42,149,57,53,177,67,141],[184,42,180,203,144,188,253,149,153,134,211,116,3,118,103,252,146,67,204,73,82,231,128,131,174,145,4,100,250,220,92,243,204,14,128,93,51,5,172,222,75,143,56,60,206,77,147,32],[173,26,52,200,9,31,56,67,53,29,153,10,249,27,182,111,94,93,229,187,50,115,86,132,244,6,130,168,37,156,41,51,161,215,43,38,131,125,180,254,97,53,71,114,218,49,204,126],[135,140,3,158,239,32,141,80,137,1,120,219,182,107,77,65,90,39,220,159,89,1,167,241,124,82,26,75,40,171,240,136,201,145,86,32,250,203,45,87,101,249,56,8,121,218,234,5],[138,208,161,163,108,179,141,26,18,163,30,121,217,252,128,195,27,87,30,13,85,34,128,103,12,140,60,157,5,83,219,30,83,174,21,174,188,180,211,39,192,144,51,66,146,233,9,136],[138,229,143,98,130,202,249,108,107,103,247,224,245,57,110,222,196,249,79,178,77,162,173,141,16,208,81,227,173,101,232,23,69,238,133,93,208,171,219,217,145,169,243,172,163,20,241,119],[182,249,208,190,95,174,237,17,55,90,69,125,158,149,165,228,92,57,32,140,66,219,125,77,28,55,176,209,176,51,250,183,53,158,103,73,106,129,100,32,192,36,100,255,28,100,40,151],[183,226,94,97,9,254,19,208,154,111,225,103,15,138,64,224,120,64,46,248,119,24,190,86,7,218,14,129,191,84,161,138,230,104,186,124,181,139,186,126,213,28,45,206,13,102,49,220],[134,114,149,180,47,129,6,203,161,101,112,49,4,83,30,165,188,10,230,20,52,201,187,96,108,84,125,20,245,36,173,104,7,93,140,93,246,106,9,197,112,90,149,109,197,106,10,132],[168,115,246,113,149,115,128,176,167,9,131,229,121,18,178,123,132,105,174,239,110,13,73,210,206,5,16,139,157,108,41,217,157,139,97,89,114,208,226,199,159,220,132,215,108,18,247,2],[149,47,60,209,46,18,29,193,166,115,82,134,42,179,111,111,135,80,27,37,239,50,52,83,250,140,126,20,193,211,124,88,142,147,127,232,130,135,160,23,160,175,156,18,9,110,29,204],[174,32,63,225,23,170,5,97,95,63,49,133,65,11,157,26,176,25,226,128,73,171,27,80,61,216,237,170,92,246,21,63,0,45,51,181,123,108,255,204,238,27,9,96,13,150,108,7],[168,123,206,121,84,45,195,113,227,14,151,77,165,174,164,30,43,200,173,30,2,174,65,5,122,95,204,117,240,58,108,210,214,195,185,110,245,130,12,14,18,14,245,29,103,218,177,58],[139,160,66,16,194,233,15,71,8,59,46,149,238,185,132,224,171,94,60,33,218,37,148,64,85,233,58,8,147,72,222,176,240,138,162,210,26,167,139,185,148,129,23,72,119,78,124,113],[166,130,246,57,243,99,200,219,74,94,100,111,200,71,22,113,101,97,202,184,110,116,235,117,198,219,147,85,66,244,4,92,61,177,222,44,109,224,46,106,146,173,36,207,33,20,158,134],[184,59,6,26,142,230,186,154,56,232,38,152,20,64,20,151,35,232,88,44,147,241,130,53,192,80,140,255,210,197,65,112,129,41,162,78,134,211,115,56,229,101,92,122,14,226,67,44],[146,172,109,199,85,44,156,28,217,195,26,222,96,247,146,178,65,68,140,52,212,149,136,216,19,34,224,115,213,215,151,208,237,160,251,113,199,198,99,88,9,148,200,139,90,63,63,150],[175,177,103,236,148,255,188,76,236,210,220,170,86,191,65,29,241,226,239,157,27,109,224,95,251,19,79,69,213,96,76,51,6,201,74,43,36,43,156,205,117,9,220,184,144,9,188,100],[172,247,84,168,195,241,11,71,94,96,43,18,184,214,153,78,205,201,22,17,164,249,1,28,38,82,220,219,98,97,198,4,62,19,130,176,85,84,139,128,25,36,154,233,114,94,78,63],[174,84,161,95,221,205,200,50,224,79,17,89,65,204,4,88,233,39,112,205,65,166,41,201,7,48,61,187,210,220,100,164,209,242,215,172,40,154,50,105,8,244,188,117,205,14,110,33],[170,69,237,211,153,160,252,214,48,178,120,251,200,141,143,254,155,88,46,35,244,111,157,34,185,33,10,137,108,203,66,181,98,70,230,186,253,95,213,187,215,180,122,230,233,232,102,205],[141,95,112,148,151,43,26,24,65,192,8,51,83,208,81,110,182,94,104,250,1,88,123,105,64,172,159,65,22,207,228,182,224,98,130,25,144,54,240,50,77,178,196,238,194,200,102,9],[183,122,8,156,120,46,227,56,31,160,18,180,136,119,164,169,122,43,231,95,30,122,233,54,118,216,178,6,216,125,153,251,63,24,120,185,128,211,193,99,251,92,69,16,215,43,220,7],[148,12,20,78,229,116,96,179,99,174,172,251,29,22,232,227,116,207,56,152,189,24,165,157,132,39,18,138,190,118,7,212,233,95,225,217,75,241,31,198,8,88,73,144,66,139,197,164],[166,17,139,200,5,145,80,44,69,13,137,250,166,202,137,189,231,213,38,4,249,120,255,123,160,179,63,118,35,148,211,62,156,219,100,136,213,232,130,91,211,81,10,121,173,195,108,102],[131,123,148,161,57,22,20,109,37,97,226,85,125,111,21,247,20,30,19,210,90,141,65,65,97,228,166,96,24,173,125,56,212,238,4,146,214,200,115,71,218,214,138,143,117,64,83,160],[129,69,11,165,198,96,207,92,37,122,200,10,85,219,215,126,89,192,106,126,175,169,180,134,127,39,54,240,192,56,182,71,233,220,82,114,201,19,194,248,16,38,143,229,78,48,99,64],[171,19,183,146,232,110,12,254,226,161,16,199,207,72,18,227,69,222,154,236,129,40,209,144,2,232,218,232,126,1,181,231,164,163,53,96,87,237,114,85,231,24,42,182,32,123,69,197],[168,68,138,4,143,122,21,79,230,166,124,47,78,226,19,150,216,99,32,245,113,166,180,91,68,102,202,0,142,71,244,202,149,249,205,93,162,29,201,195,16,131,250,172,203,215,190,247],[149,83,53,243,205,27,164,155,163,170,151,61,22,174,67,230,181,199,99,0,169,104,65,146,77,148,104,87,90,255,202,42,184,254,209,241,179,214,230,79,63,114,29,226,187,8,178,230],[183,21,177,45,182,60,139,120,166,100,199,12,212,116,128,204,161,35,79,120,61,97,183,46,109,78,98,96,107,147,117,16,53,111,138,200,72,194,253,36,25,42,237,67,100,91,246,19],[182,216,252,95,188,190,85,85,135,133,144,240,26,29,61,41,123,19,229,137,8,80,201,156,171,179,182,200,213,196,79,162,206,2,20,237,204,250,181,82,0,60,231,144,26,188,102,126],[153,38,115,205,129,197,197,184,166,156,175,180,27,53,3,136,191,130,124,221,16,231,74,69,4,227,248,141,120,72,56,248,193,90,188,101,57,231,10,208,97,26,139,93,20,244,201,34],[143,25,236,238,239,39,149,60,158,60,106,211,167,208,0,174,205,55,77,167,95,172,255,213,182,40,102,35,196,167,24,103,111,140,242,16,154,198,39,13,42,7,128,174,102,159,56,71],[176,179,211,49,123,225,210,216,168,70,88,111,28,70,40,116,49,79,106,81,233,120,235,230,187,8,184,212,224,145,114,149,100,137,187,22,125,103,0,9,141,244,243,33,137,50,95,75],[180,209,206,87,255,251,189,68,10,138,244,53,203,95,3,102,23,121,16,103,221,177,5,232,99,39,205,5,136,203,39,95,14,111,98,11,242,158,50,136,234,176,132,61,181,110,7,206],[184,178,120,146,117,233,46,21,210,145,60,148,121,83,110,30,193,221,175,250,121,11,60,68,223,116,209,206,17,81,122,46,33,239,74,150,204,203,156,213,46,6,160,253,221,19,230,163],[182,63,202,123,205,127,8,73,106,55,88,85,191,211,14,182,123,85,96,167,210,199,188,247,241,237,119,123,121,122,25,125,76,11,56,72,76,114,168,200,48,92,249,207,44,24,91,219],[135,147,146,137,33,9,60,4,25,233,92,151,22,115,14,180,201,179,103,253,253,99,122,228,94,116,87,208,108,154,136,63,174,221,108,80,45,172,143,36,126,136,69,187,254,12,154,185],[151,24,87,183,21,248,114,165,238,172,60,5,94,135,217,207,46,143,37,53,120,49,73,113,61,112,21,106,91,75,203,168,222,131,5,174,107,200,239,230,120,192,190,179,62,82,10,176],[153,168,254,236,35,229,12,149,13,68,0,198,152,76,215,40,47,151,1,187,163,14,188,6,136,229,85,121,98,90,139,223,252,217,101,215,49,170,183,202,165,90,165,54,253,211,15,161],[148,213,255,90,176,23,238,180,106,53,23,73,237,4,197,181,208,223,136,165,88,122,200,64,121,141,109,251,210,128,115,194,55,54,62,162,200,98,172,64,237,182,252,188,241,215,76,3],[182,28,191,244,145,203,173,238,179,249,107,195,61,69,125,116,89,36,124,10,24,30,170,28,136,250,83,21,224,159,242,6,41,229,209,36,42,228,199,121,0,132,229,18,142,94,210,160],[138,125,197,37,250,39,198,53,246,85,62,49,110,167,111,146,254,122,102,90,52,143,176,198,9,1,204,202,52,96,236,200,197,3,245,24,211,205,88,134,149,124,146,160,156,187,102,193],[169,110,44,9,253,167,79,128,67,168,91,73,215,133,170,224,86,200,182,8,183,13,76,108,193,231,184,245,129,172,47,2,128,76,113,148,71,223,215,43,111,209,137,206,185,28,46,64],[146,28,167,175,28,181,211,170,180,0,223,185,175,210,37,226,16,185,173,60,181,72,4,177,19,85,132,219,144,0,20,100,27,42,118,9,84,190,136,4,138,128,56,39,110,113,115,220],[172,158,158,64,66,248,183,199,15,87,115,195,70,166,233,233,28,151,50,68,130,249,254,170,24,155,191,217,17,229,79,221,125,13,84,95,50,131,68,66,213,11,133,127,204,170,48,56],[164,191,8,13,12,131,218,73,211,85,120,234,245,16,168,146,105,223,179,237,180,237,141,233,252,176,230,170,217,132,57,135,2,183,127,123,205,156,189,238,151,10,0,114,82,129,68,196],[179,143,235,77,191,201,49,46,165,102,187,206,188,228,50,42,35,97,232,27,188,178,101,73,83,67,60,122,115,28,200,128,20,183,224,42,158,17,100,158,250,137,7,30,75,11,239,45],[172,152,74,109,45,171,54,157,133,26,84,202,120,5,253,168,66,83,34,150,12,253,146,13,151,236,227,124,131,94,208,101,25,142,227,145,238,113,236,78,58,218,67,11,61,58,29,186],[132,114,20,114,170,147,190,69,31,223,141,40,186,209,94,55,163,174,229,203,213,150,240,148,239,10,134,51,78,151,191,184,42,115,168,115,158,225,19,28,199,106,70,76,0,73,111,48],[185,121,195,181,201,192,13,75,189,102,84,120,42,82,150,51,227,191,84,238,9,105,8,12,226,225,153,31,152,204,208,136,3,135,171,91,27,202,37,40,197,116,138,191,95,246,130,176],[173,250,150,249,151,48,181,201,88,230,115,112,63,162,187,28,110,203,42,126,240,165,92,34,141,62,231,68,68,35,79,74,3,62,163,122,158,20,230,106,228,173,72,35,71,46,186,212],[173,211,206,45,126,230,34,109,40,172,108,95,5,198,23,67,53,161,213,46,203,141,91,148,36,218,132,71,170,115,24,174,55,211,173,173,4,147,202,179,178,5,14,144,15,105,200,159],[175,75,69,23,87,111,3,236,170,249,204,161,129,190,158,192,232,179,91,44,203,122,85,220,113,49,115,226,91,108,128,205,79,4,234,5,229,209,193,219,68,154,52,173,86,213,141,103],[143,5,71,218,28,68,210,7,140,103,4,169,211,70,236,103,251,124,221,63,1,169,144,170,93,59,79,183,169,39,76,65,230,63,62,114,185,163,107,216,48,11,51,90,172,60,192,243],[179,11,16,244,86,126,36,192,126,139,173,38,50,162,58,13,115,120,19,5,100,158,101,160,123,219,39,38,102,164,78,16,76,202,95,26,236,141,28,62,163,82,124,81,239,87,72,108],[167,160,162,142,3,109,224,116,99,48,81,41,202,202,82,33,31,160,127,81,136,18,55,149,134,204,6,107,168,56,190,212,123,231,195,122,225,234,118,169,180,1,234,251,93,172,189,170],[151,80,48,145,177,197,116,114,14,201,51,43,171,33,38,99,177,248,52,100,250,200,3,177,127,46,79,165,61,239,20,250,90,166,196,177,25,238,86,90,86,71,215,164,238,74,43,189],[149,255,214,114,219,171,130,78,177,82,242,26,246,206,88,223,63,226,70,64,129,127,181,3,27,25,210,3,143,250,166,137,249,132,203,74,64,19,60,217,182,24,21,186,242,181,19,6],[139,47,170,93,254,88,133,100,239,226,81,216,92,71,164,51,243,54,236,211,182,240,31,62,91,23,78,255,185,57,27,63,4,110,155,187,61,227,143,208,199,69,9,198,249,225,121,227],[160,203,217,181,195,247,215,220,224,77,71,35,144,113,120,18,37,176,32,218,31,251,20,160,229,14,147,151,148,184,153,232,96,173,197,217,153,124,233,245,146,57,157,135,248,12,129,250],[137,74,236,179,158,140,160,200,75,243,215,214,134,26,12,190,44,226,164,120,84,138,193,218,11,70,146,201,130,149,24,86,102,151,9,112,76,104,126,109,178,31,52,125,241,108,100,239],[136,16,6,114,197,190,161,93,103,88,231,112,38,168,158,220,254,1,90,84,66,88,140,182,34,149,205,164,15,116,223,159,140,186,12,161,209,235,178,178,12,154,85,159,182,38,211,253],[176,187,126,16,2,90,237,243,102,243,221,232,106,63,88,136,142,71,129,95,87,211,132,80,124,25,3,159,5,109,102,33,87,108,233,223,165,184,194,119,255,51,126,244,65,5,241,206],[137,85,150,175,206,92,182,132,162,109,56,151,143,20,248,224,42,242,89,251,253,60,167,110,118,135,97,215,74,137,134,132,135,157,172,209,137,20,223,179,13,178,183,139,105,166,246,170],[140,63,235,136,60,118,243,82,155,35,19,8,107,17,84,58,66,11,166,246,190,52,94,180,141,101,122,229,104,198,5,0,72,163,158,50,161,164,53,13,32,72,91,194,163,6,44,250],[166,240,214,37,33,182,146,16,4,221,153,56,202,248,9,144,63,97,91,53,17,63,188,29,67,239,247,62,67,128,128,221,106,97,39,110,44,177,103,109,105,65,19,126,107,62,66,83],[139,141,99,127,27,112,228,135,159,34,77,53,119,148,211,84,207,21,29,58,0,20,215,138,118,101,35,109,144,167,154,34,243,22,37,132,112,204,33,140,104,86,157,108,216,52,21,127],[165,8,214,14,29,55,57,243,232,119,93,145,109,0,213,71,181,108,131,178,128,237,115,199,50,198,173,48,245,104,226,96,77,187,11,19,46,144,247,211,105,141,50,216,222,209,0,61],[161,164,154,158,200,246,52,183,184,2,67,81,240,239,128,105,183,177,235,198,184,53,76,168,166,136,210,15,253,27,210,124,1,8,237,156,150,76,200,98,67,108,232,237,152,206,56,39],[169,118,220,195,153,188,153,197,255,11,67,171,76,106,53,105,104,74,96,141,120,123,202,92,169,3,130,173,21,130,251,113,245,69,140,174,155,250,10,218,211,86,102,216,41,189,214,213],[162,12,202,225,251,23,41,58,139,191,64,222,72,80,5,216,49,112,235,245,132,74,70,14,68,96,158,123,185,235,243,208,17,93,165,187,117,88,11,118,221,63,149,29,86,140,0,64],[171,141,74,245,158,150,229,124,140,248,60,224,47,193,104,185,185,99,203,24,124,189,115,201,172,26,99,110,132,151,147,227,226,248,86,253,92,26,84,202,167,113,116,6,25,165,167,221],[160,241,168,195,184,118,127,150,140,230,130,13,159,221,130,74,196,214,157,125,181,86,76,46,76,22,22,138,174,206,105,129,55,253,221,117,250,254,195,94,28,143,224,107,180,36,17,116],[160,20,190,46,98,112,98,246,77,178,88,149,45,65,50,216,127,228,226,201,151,62,133,187,168,28,179,201,57,3,208,225,161,221,208,215,29,59,25,95,122,90,119,122,230,151,85,9],[162,246,65,174,95,26,116,179,177,193,38,207,38,18,109,218,36,1,89,46,207,71,83,195,195,108,188,246,77,211,158,218,186,93,123,195,130,62,173,217,234,160,86,170,41,115,91,45],[168,166,3,240,191,123,233,225,178,205,210,237,187,221,164,248,152,218,137,153,169,8,117,76,190,94,18,224,250,145,177,29,61,133,241,168,119,253,36,97,160,247,219,69,253,233,18,44],[181,11,175,28,84,226,160,240,113,145,218,66,23,4,209,12,68,233,250,222,42,152,141,108,188,121,221,200,134,141,127,122,93,209,118,133,184,56,32,68,45,153,79,3,188,156,88,242],[176,101,132,101,95,26,18,214,42,102,241,36,9,55,237,0,80,168,254,108,121,240,137,224,125,244,140,108,157,242,191,130,57,225,70,21,157,237,83,170,155,61,173,122,183,198,232,21],[173,109,13,137,22,126,14,34,211,127,240,223,155,17,6,28,26,141,90,120,195,182,64,222,113,146,119,144,51,89,60,210,196,39,226,149,42,96,140,161,35,212,10,126,16,227,7,111],[175,214,110,235,82,49,14,39,132,113,29,153,129,170,49,228,222,147,83,197,209,122,192,180,135,139,203,246,166,108,26,92,20,23,249,75,119,67,14,84,34,16,56,81,209,240,166,146],[146,85,214,179,151,125,237,207,16,110,2,242,71,133,48,132,156,185,87,17,233,92,168,123,213,245,225,46,52,45,158,194,132,118,102,121,72,139,124,42,243,143,76,161,61,214,193,4],[148,22,225,160,130,186,145,88,97,84,120,59,7,182,115,185,66,111,189,140,70,119,173,21,249,225,97,163,136,174,156,227,172,18,253,63,105,37,12,77,79,26,179,75,203,168,17,72],[150,246,227,118,253,210,20,52,130,7,150,57,78,51,0,189,139,75,130,155,72,230,139,180,220,207,249,18,74,208,251,56,126,141,45,182,237,35,22,143,8,101,212,90,225,178,128,152],[131,215,71,17,231,224,5,129,188,150,200,252,234,161,229,183,79,42,223,189,4,124,0,199,215,51,50,152,113,75,173,161,177,191,236,181,209,209,184,184,53,168,128,209,110,122,125,118],[150,86,81,4,110,214,123,121,177,117,218,244,219,0,174,79,74,148,39,107,197,38,212,32,136,50,41,67,82,98,100,135,7,198,109,233,50,186,141,127,62,43,68,153,174,58,248,72],[168,125,75,124,138,110,219,228,134,43,237,235,46,185,209,114,192,186,159,203,164,212,230,122,150,19,100,83,169,174,31,175,113,223,208,245,11,23,162,109,212,232,161,194,216,163,5,102],[129,223,69,184,170,172,131,234,92,39,4,94,211,47,61,248,219,95,37,15,137,100,16,65,199,28,156,245,214,17,156,182,77,166,206,15,161,221,19,58,125,97,47,184,196,112,193,169],[148,14,71,116,69,77,142,252,141,5,20,135,223,8,183,181,98,175,159,143,238,190,210,85,124,207,35,7,10,45,212,226,205,254,107,167,107,239,156,112,65,67,73,182,245,155,208,184],[152,191,145,211,244,152,74,55,173,208,65,86,43,28,192,219,213,212,152,140,33,158,122,129,93,232,73,67,1,233,187,151,74,207,190,86,219,38,114,35,81,177,213,251,64,121,126,203],[139,47,43,205,9,161,202,78,45,74,233,163,88,169,43,195,117,139,46,159,70,124,229,84,71,141,31,141,71,148,139,111,161,170,233,234,205,96,219,243,186,88,45,29,202,72,82,172],[142,177,74,42,60,57,243,161,58,96,78,83,255,232,67,40,156,189,137,122,84,169,36,190,185,99,216,77,112,253,115,76,234,48,2,103,170,92,250,117,7,241,34,1,205,94,163,156],[149,200,37,213,105,217,155,144,61,170,244,82,193,231,148,125,125,223,126,2,226,37,81,168,139,13,35,233,23,115,53,24,176,247,87,220,85,57,79,70,246,97,213,112,241,203,231,250],[140,175,209,206,242,90,116,162,212,241,230,140,64,205,160,74,97,55,44,168,217,40,148,163,111,211,68,168,75,151,108,36,72,32,53,229,157,102,173,121,212,248,170,29,207,66,86,249],[160,63,87,123,179,109,128,22,51,135,18,14,22,194,173,173,56,121,27,247,143,86,187,178,216,156,49,39,17,117,191,196,140,243,249,197,61,173,68,181,120,194,190,101,161,44,182,226],[165,133,113,169,23,117,114,216,67,1,61,166,120,175,157,74,69,215,178,154,254,168,89,232,239,36,134,120,73,15,172,35,228,206,179,126,255,169,113,91,118,115,64,35,112,201,243,198],[176,212,218,249,123,218,208,43,146,7,252,216,187,249,77,223,0,168,104,60,176,58,149,75,246,148,116,135,222,191,189,188,247,86,155,1,54,117,46,149,17,229,17,224,107,83,10,30],[130,22,187,211,255,191,65,255,51,132,117,181,168,106,65,15,228,224,84,253,240,45,214,51,13,16,239,54,146,240,144,85,40,78,135,21,38,38,10,111,179,125,234,224,87,218,135,129],[176,9,170,162,164,243,218,124,20,174,222,198,121,241,76,96,209,184,180,157,81,96,170,62,81,222,1,159,10,16,18,109,30,138,244,126,71,172,123,176,95,61,139,193,212,18,11,54],[184,178,33,221,3,34,107,165,183,57,11,149,10,233,138,42,76,191,201,170,170,19,45,221,145,24,70,35,98,222,32,24,224,49,206,240,190,197,247,245,105,36,111,116,218,93,100,65],[147,33,173,81,163,229,89,94,45,180,28,102,0,145,67,239,7,144,122,172,218,143,31,254,36,114,81,33,46,128,70,226,47,62,27,54,88,94,51,92,162,36,20,135,201,97,15,181],[133,155,55,160,73,56,227,39,9,56,241,116,222,96,74,68,177,136,46,237,44,171,59,149,92,170,220,94,252,42,138,46,24,84,137,66,203,123,232,232,135,0,122,70,138,196,153,252],[182,33,158,205,242,159,167,68,154,254,68,213,139,239,230,62,97,13,24,27,198,187,62,85,6,110,27,50,93,21,229,228,108,195,115,144,172,26,86,125,62,183,48,39,94,31,108,15],[169,68,218,34,168,45,255,247,222,173,61,236,52,19,83,214,20,111,156,109,3,150,44,146,210,174,221,111,168,98,29,134,83,48,140,99,170,20,88,73,99,209,147,130,172,160,69,160],[160,139,79,204,38,12,143,189,101,202,98,87,134,125,145,228,91,12,98,9,73,30,141,54,159,123,254,54,18,108,87,36,7,200,122,105,198,90,157,134,189,249,35,246,132,41,171,202],[178,123,3,228,244,164,65,53,216,231,26,250,59,159,34,67,174,158,187,201,175,165,1,70,14,197,191,110,162,64,146,118,221,214,122,245,133,247,106,172,243,232,190,75,227,181,178,240],[143,234,135,91,140,191,107,161,149,69,75,138,10,33,26,172,129,47,27,60,203,15,192,1,87,27,127,65,38,14,43,117,66,109,214,87,116,130,190,161,206,57,91,103,107,247,165,227],[183,220,244,70,41,117,68,35,108,96,7,15,63,134,22,29,48,133,194,125,23,178,34,78,184,139,115,242,67,61,185,64,145,149,2,247,173,97,222,53,44,85,180,166,71,135,229,53],[161,130,27,192,229,61,48,159,123,128,36,93,254,32,60,173,228,49,152,70,2,8,116,92,118,223,166,228,176,94,177,159,4,20,96,190,115,126,4,72,39,186,87,63,119,210,238,24],[138,149,50,228,239,186,51,190,207,122,152,171,196,234,80,190,63,179,47,34,185,123,83,217,208,77,32,143,159,245,28,106,216,41,54,163,203,146,24,57,192,80,225,37,52,171,103,143],[170,135,221,185,200,87,246,151,183,121,13,173,50,20,246,56,227,75,85,145,49,167,89,177,207,215,21,1,143,160,99,192,71,144,1,126,5,42,20,7,241,210,123,238,164,142,238,12],[136,68,91,212,249,64,100,43,159,158,235,247,217,210,69,140,179,202,164,22,13,78,142,34,159,221,218,152,202,132,203,19,43,125,149,248,238,206,249,234,232,204,194,140,43,138,86,133],[144,177,157,46,155,160,151,0,221,134,150,250,129,182,27,215,64,25,117,250,213,97,206,35,95,153,84,16,144,121,34,2,93,235,22,206,26,109,172,232,106,61,55,158,229,78,83,124],[161,174,143,200,14,120,192,72,84,98,187,149,36,1,4,105,158,149,188,71,69,24,92,149,62,103,143,253,208,156,1,32,201,139,209,234,86,176,164,184,206,176,62,35,232,207,157,52],[139,166,181,101,198,39,250,10,210,73,137,9,222,13,219,234,88,216,25,37,5,82,72,6,236,114,185,11,112,67,21,16,24,143,198,254,140,10,216,19,168,140,68,51,93,217,66,150],[169,97,80,164,145,152,8,97,80,107,58,186,93,36,56,113,108,239,33,243,190,44,90,71,112,110,52,120,189,79,77,118,161,85,199,94,18,221,36,20,86,151,2,162,186,3,0,78],[185,70,152,66,176,54,2,186,54,8,49,0,186,3,62,46,34,176,179,52,194,152,101,150,253,151,102,108,83,56,145,59,87,11,36,195,144,152,243,127,200,14,150,130,243,227,211,120],[133,101,233,155,181,156,242,230,26,132,242,13,83,219,209,179,88,210,25,63,155,100,194,38,47,186,1,110,255,143,109,130,218,20,84,42,139,14,63,129,194,90,82,8,85,230,136,153]],"finalized_header":{"slot":"32","proposer_index":"0","parent_root":"0x0000000000000000000000000000000000000000000000000000000000000000","state_root":"0x197a4b7dc00c75ee5c6d03c0e03f541cc4835a20b427a007bcb1a264b5cd268e","body_root":"0xdab4175862e44372d1e0148b2449aff923352eba4b7efd4805194e0720cf5afb"},"sync_committee_branch":[[86,129,244,105,55,145,204,110,41,118,238,89,5,110,185,150,189,45,149,248,58,234,168,240,52,197,56,179,60,156,28,146],[238,129,156,168,109,208,216,32,17,238,21,252,96,225,118,158,43,165,28,140,14,116,182,107,45,45,197,223,134,161,192,120],[152,93,247,153,214,234,137,109,252,79,100,205,57,121,254,114,65,213,19,246,24,197,156,16,255,20,207,57,69,139,175,74],[110,211,142,94,6,128,7,99,93,122,179,185,34,100,118,177,122,81,82,200,22,17,180,0,237,192,18,14,240,147,108,131],[155,36,233,182,3,218,183,52,31,229,11,170,186,135,40,250,236,16,108,30,173,17,32,146,190,16,108,215,239,76,73,95],[68,177,30,58,180,74,214,199,111,188,103,22,162,155,83,145,41,251,226,97,205,72,114,173,12,185,219,75,73,41,191,198]]} \ No newline at end of file +{"pubkeys_compressed":[[130,28,98,160,223,223,232,155,95,169,36,213,77,46,193,37,82,170,83,121,106,183,220,152,79,168,33,159,112,66,212,99,52,177,95,178,240,198,228,9,91,138,30,47,229,81,241,245],[134,202,167,69,210,146,194,78,172,205,30,136,1,157,20,74,49,40,131,41,5,87,20,150,171,160,162,101,73,127,139,71,70,54,165,113,231,1,225,131,115,234,240,149,53,219,222,8],[152,254,136,66,172,54,205,127,249,123,23,106,90,5,15,139,41,26,19,123,11,165,224,85,197,201,201,247,103,223,42,27,172,186,219,174,174,125,174,136,118,21,64,62,207,238,86,192],[168,250,70,159,17,111,22,45,50,52,8,56,19,10,16,71,98,68,159,173,6,214,239,226,21,198,148,165,206,123,141,28,157,236,111,51,239,141,20,126,171,179,99,133,107,135,72,18],[145,102,110,227,41,1,60,137,200,7,127,243,204,5,230,182,123,34,8,236,152,155,65,42,207,99,21,78,107,124,37,213,185,27,83,205,21,156,35,90,231,209,167,70,214,132,154,162],[128,71,99,191,238,204,157,32,38,51,234,238,4,198,124,166,132,22,68,141,46,129,179,187,88,225,4,147,84,86,76,14,113,28,124,150,179,105,107,113,174,175,124,29,247,218,207,87],[167,113,155,26,245,111,65,85,246,252,129,241,199,221,39,231,86,69,50,150,30,28,54,145,198,41,70,128,100,219,158,116,37,4,34,176,158,177,52,218,146,50,202,217,36,63,86,82],[181,64,105,160,57,113,59,244,71,191,33,10,241,29,123,72,94,185,69,95,218,150,57,213,127,152,211,6,197,197,29,15,225,230,172,228,34,172,245,234,101,77,164,174,182,71,112,238],[149,6,94,32,197,70,193,37,9,60,45,157,111,88,25,203,110,250,109,47,8,39,108,175,87,83,209,30,119,28,197,101,56,68,12,246,118,234,190,96,215,225,46,179,234,83,243,178],[170,190,24,80,2,87,114,37,110,124,239,49,51,1,65,147,193,252,43,188,144,124,165,78,98,167,152,224,11,227,237,61,25,198,131,220,101,100,246,30,13,129,98,194,88,253,155,225],[171,227,243,235,103,106,100,242,176,143,125,246,156,114,126,254,131,126,40,81,11,46,214,23,211,120,67,7,206,38,61,90,255,154,89,219,3,238,134,25,99,1,184,104,1,178,135,168],[138,116,206,213,225,95,190,128,10,192,56,121,236,67,207,251,119,189,193,30,17,245,141,249,137,237,114,120,247,35,147,21,235,14,157,17,153,109,96,71,165,36,196,127,162,153,216,12],[143,45,71,37,17,222,4,18,231,183,150,73,27,230,165,170,94,40,4,76,109,84,122,61,197,19,41,143,205,157,34,221,6,210,174,5,226,28,33,34,241,223,200,188,239,57,30,246],[168,136,125,187,33,35,174,99,250,79,98,75,199,248,83,164,22,115,149,38,232,6,152,43,145,164,39,143,74,151,70,165,206,84,223,175,165,36,192,107,189,11,247,18,60,169,66,58],[153,172,78,48,15,201,208,18,40,145,86,118,83,163,238,108,5,144,114,67,57,52,146,25,62,65,109,140,238,72,204,67,154,143,137,215,40,156,127,96,200,193,209,82,46,59,35,142],[140,255,49,184,221,183,179,217,114,90,161,138,48,183,183,26,3,86,50,115,126,122,31,50,142,102,149,210,87,11,226,213,236,68,187,156,189,240,197,204,141,106,120,10,221,71,76,182],[171,35,231,22,124,2,218,147,176,30,53,127,76,140,115,166,245,7,81,220,141,30,243,14,100,68,191,70,127,49,175,177,118,221,68,131,135,50,160,19,209,24,223,80,52,120,138,137],[175,121,19,154,115,72,97,62,95,223,204,139,231,205,2,77,46,177,17,215,151,152,60,245,63,3,142,79,201,133,155,119,221,135,244,162,1,245,105,167,247,240,75,171,223,141,202,91],[131,215,60,77,34,243,72,189,163,0,204,255,76,142,194,237,229,108,112,226,223,209,227,50,25,147,137,130,53,72,84,123,216,237,183,231,81,163,144,177,111,50,180,106,110,199,58,201],[171,72,2,117,255,95,49,16,89,110,28,242,241,237,175,240,95,197,189,210,3,8,119,132,159,105,135,203,185,76,167,241,240,7,88,247,222,36,27,99,140,110,89,12,223,157,29,24],[163,99,68,214,130,116,57,122,103,23,213,1,202,57,65,12,18,173,233,153,231,215,174,200,182,159,130,89,19,240,10,168,89,105,16,250,112,26,60,43,53,61,142,221,76,226,124,244],[145,205,42,14,167,49,33,139,69,43,113,121,87,137,86,147,229,201,1,60,61,170,2,85,84,226,102,181,106,19,221,50,137,239,246,17,207,97,228,48,22,139,208,56,92,203,243,58],[152,204,90,199,137,15,156,168,84,60,33,233,38,137,132,252,93,19,186,247,203,183,60,17,147,226,20,139,202,44,70,187,17,230,8,229,124,221,83,71,70,32,237,39,155,102,173,133],[146,222,89,17,172,135,10,33,178,140,37,22,77,86,218,103,253,210,228,135,117,212,74,117,238,159,33,113,140,249,181,237,193,118,178,47,50,114,12,129,220,18,43,224,19,83,47,198],[136,191,154,133,55,219,240,146,173,162,201,139,140,57,208,82,56,243,35,106,76,246,95,102,141,24,102,173,129,73,132,169,190,170,116,166,226,26,16,214,160,128,188,130,37,202,221,77],[160,219,92,117,117,72,162,175,195,22,119,81,73,120,97,149,7,47,183,172,223,119,103,79,177,125,67,137,225,43,31,156,118,10,9,180,232,10,216,169,220,163,65,118,70,63,61,183],[181,133,57,179,239,235,227,106,170,198,18,255,5,107,205,68,201,150,31,5,26,90,94,72,92,63,154,208,146,14,228,236,171,137,27,6,94,19,60,238,223,5,39,119,41,19,101,141],[138,63,189,230,183,231,231,39,32,163,1,2,230,136,166,110,195,81,146,0,184,87,212,42,148,233,219,166,181,109,164,254,119,164,73,1,93,127,37,199,155,176,67,29,140,32,212,170],[137,85,133,74,85,101,230,145,66,162,103,197,206,179,223,40,113,36,70,102,82,158,206,22,84,255,92,239,38,106,50,0,48,5,166,223,181,168,1,120,197,160,183,175,54,3,128,169],[149,34,214,141,198,135,152,218,135,225,202,223,170,42,12,142,168,101,41,239,199,174,115,235,126,99,204,12,19,37,175,95,32,255,81,145,84,214,98,196,213,89,147,131,149,218,169,46],[176,8,189,242,187,81,107,124,17,219,52,185,237,194,128,102,138,254,167,45,241,185,49,232,229,32,38,200,111,236,162,172,243,92,130,77,205,34,34,56,138,181,158,88,238,222,3,103],[176,143,134,162,250,244,51,191,27,135,222,110,23,187,103,176,27,197,90,119,253,95,128,33,221,34,252,229,73,186,152,61,99,86,33,225,227,61,107,71,86,61,195,254,168,151,130,58],[178,190,156,187,3,234,104,148,54,16,194,126,110,141,198,65,97,47,158,7,118,219,69,114,223,234,248,44,55,161,236,57,91,170,46,18,212,129,94,144,143,15,93,119,120,112,9,1],[132,73,140,152,152,173,107,83,105,132,17,19,174,221,175,43,177,17,4,152,158,154,111,85,101,158,106,165,9,151,93,158,169,151,13,66,150,106,253,239,185,64,250,234,203,60,20,30],[132,63,8,148,34,216,48,215,45,135,100,47,184,210,49,77,50,133,231,54,124,83,59,242,184,106,163,55,156,253,0,151,180,57,104,147,181,110,171,171,54,209,251,96,138,211,188,142],[152,250,206,188,95,201,194,129,56,37,220,233,185,117,149,220,21,41,240,26,186,20,110,157,103,113,78,106,152,8,136,149,28,254,58,176,141,196,111,142,34,59,194,95,160,237,96,229],[184,32,126,216,126,121,215,166,101,188,158,247,16,178,59,150,107,62,173,124,32,169,229,125,192,218,73,48,106,127,95,119,84,177,71,34,106,19,6,16,33,26,193,203,151,89,171,188],[131,143,177,130,202,213,82,159,36,205,167,149,227,23,101,158,4,200,139,203,60,212,11,198,51,136,78,143,93,253,101,183,106,241,102,43,154,30,223,183,86,179,24,216,90,244,30,229],[174,224,118,87,84,166,74,164,92,175,107,204,132,205,105,20,71,38,229,49,0,136,93,177,193,234,175,120,70,5,59,66,40,255,113,107,216,136,40,144,26,108,137,182,251,229,13,251],[174,122,18,215,11,120,174,63,114,199,63,156,203,93,14,217,94,168,76,3,195,7,121,165,42,46,26,237,100,1,214,219,11,132,170,231,232,79,78,26,159,231,139,25,181,209,32,20],[179,137,89,174,111,112,168,33,241,124,81,141,17,146,180,238,85,163,0,79,187,108,46,188,232,255,186,104,157,95,31,174,151,81,17,80,227,181,119,7,180,153,163,45,132,154,21,43],[174,75,140,252,255,220,129,107,129,114,18,250,100,186,159,153,4,159,220,225,24,193,53,29,24,75,63,170,177,76,183,53,175,93,207,243,79,172,87,125,107,253,31,249,167,219,116,178],[151,157,197,199,208,227,252,197,209,213,174,125,91,24,202,9,73,1,223,251,125,181,97,251,91,181,147,176,177,18,170,42,191,156,100,142,47,20,27,28,91,202,17,246,220,172,104,133],[132,227,22,249,59,19,68,82,29,100,13,183,39,28,123,132,156,239,100,98,102,95,23,253,249,199,178,152,25,62,110,169,134,130,86,52,8,127,4,72,67,186,163,217,72,163,47,118],[142,249,90,18,77,143,196,186,101,148,28,142,6,59,143,75,157,36,121,50,201,221,236,216,21,23,197,46,48,135,171,17,99,128,137,5,35,171,51,203,166,193,194,116,235,142,251,237],[153,48,249,134,92,246,14,29,208,85,59,81,170,211,14,196,6,214,181,108,67,149,225,51,17,165,198,43,54,34,236,232,250,9,147,86,128,158,109,191,247,40,45,52,45,119,225,13],[173,170,210,13,202,78,120,244,184,253,9,22,50,123,78,119,92,205,31,229,252,69,195,10,137,154,178,156,60,90,207,122,229,56,3,211,86,183,231,205,19,168,142,12,143,162,58,175],[140,209,19,19,218,211,26,50,131,228,73,238,99,217,41,13,70,184,191,233,69,129,66,35,96,82,127,55,169,110,146,183,13,103,243,47,246,89,18,45,243,82,246,13,0,128,56,174],[162,20,78,85,115,53,165,15,85,138,251,57,7,82,177,194,150,23,224,51,78,178,109,137,111,245,60,85,222,231,53,242,202,115,96,107,194,151,206,243,83,130,157,188,99,77,35,194],[165,107,129,136,73,210,42,69,21,177,222,248,215,250,199,196,242,64,60,35,102,154,143,33,91,25,49,195,46,165,194,168,10,183,0,163,214,95,96,75,199,107,31,112,46,169,121,209],[153,230,208,180,238,66,20,239,70,187,24,5,229,16,17,105,237,158,69,201,67,148,194,240,21,161,7,12,201,231,32,220,104,199,65,186,237,216,197,57,16,187,198,79,224,198,48,133],[148,228,68,42,212,13,8,102,121,32,128,230,47,118,72,20,174,96,63,212,208,10,153,203,116,45,22,92,108,193,195,166,188,189,27,0,89,152,228,86,182,185,124,15,172,5,10,48],[137,140,111,72,188,162,22,166,229,117,129,175,71,108,8,133,90,151,44,105,179,63,123,59,13,205,134,110,210,211,80,91,122,190,84,222,123,192,75,201,2,245,230,167,64,183,148,116],[141,209,206,8,185,105,177,4,238,18,51,41,111,189,70,207,138,87,65,179,100,42,64,120,171,222,20,151,143,94,188,252,116,111,172,245,141,111,117,143,241,223,171,80,194,211,21,9],[146,94,78,194,191,140,19,39,241,160,192,21,100,8,6,49,55,26,84,169,45,104,229,29,70,168,252,71,90,58,11,211,207,142,250,83,36,192,232,41,252,126,74,205,37,183,176,162],[166,81,145,82,24,235,57,187,171,238,76,185,220,13,164,87,117,52,104,108,79,136,198,127,61,75,26,36,88,134,34,24,253,196,130,37,97,44,226,106,109,93,13,223,212,10,215,191],[167,93,77,197,56,55,216,217,232,90,207,177,231,145,183,235,246,16,16,31,107,42,91,225,93,69,30,146,255,194,69,21,234,151,87,161,32,223,96,198,6,21,184,22,117,40,213,18],[132,95,160,39,119,54,163,152,225,21,248,245,75,107,158,231,53,49,68,79,197,227,213,217,156,210,185,195,97,183,110,124,56,231,161,130,208,59,129,234,203,86,252,27,80,146,86,22],[173,79,107,138,5,254,167,72,123,167,237,81,179,116,147,20,187,12,52,117,56,70,54,74,3,22,235,86,121,229,171,97,115,127,17,237,229,56,7,109,239,34,1,42,163,43,35,182],[150,164,59,243,93,161,135,99,131,227,29,211,160,178,124,82,165,44,174,216,249,212,76,4,253,66,66,91,58,58,119,185,127,188,163,181,113,3,121,31,179,51,93,199,33,83,227,83],[172,153,230,96,75,182,199,214,99,116,133,70,89,244,129,205,84,216,218,203,139,157,112,134,235,1,5,131,180,244,102,127,15,204,248,156,192,186,93,172,107,139,146,135,234,33,180,84],[171,55,135,243,209,210,82,101,130,153,123,28,80,241,105,3,238,87,99,21,242,204,38,133,104,194,7,16,87,196,155,34,101,235,224,158,174,152,222,171,183,43,50,44,28,74,135,190],[132,242,172,245,123,149,205,228,243,233,42,75,88,255,201,40,209,71,29,194,217,9,250,225,219,225,53,58,43,27,3,248,146,246,37,114,128,45,251,208,60,85,53,217,6,216,252,158],[163,17,7,208,52,211,187,85,196,67,97,166,209,75,161,179,80,205,203,243,53,188,148,158,143,241,54,251,65,67,81,22,8,236,107,3,159,143,19,183,72,71,39,126,146,181,121,41],[169,149,157,231,177,106,169,52,88,2,87,199,245,81,190,5,17,164,39,18,22,221,173,159,95,59,226,205,153,93,14,162,112,91,239,90,200,251,58,50,121,70,157,106,54,132,239,74],[178,209,254,201,182,204,175,133,64,86,108,44,157,193,254,88,149,17,6,44,83,120,242,77,27,93,95,116,236,76,110,250,1,229,130,176,80,182,196,8,184,95,133,110,16,40,104,201],[140,18,178,185,71,107,220,201,91,63,124,183,118,218,221,183,190,237,191,139,180,128,57,149,193,90,12,133,111,116,77,243,220,40,12,204,103,186,167,215,55,116,213,78,140,60,9,7],[183,54,43,148,153,55,55,27,74,215,69,218,115,176,153,41,159,22,127,254,29,138,253,151,203,142,213,179,108,24,99,76,204,236,31,157,59,249,87,147,124,12,251,69,136,203,196,182],[140,163,41,78,63,133,149,53,198,109,161,37,152,89,244,139,162,112,24,126,51,64,30,65,212,24,88,121,54,247,209,98,239,76,168,135,142,238,110,103,2,134,230,174,56,44,191,114],[161,237,240,146,84,172,198,90,213,86,150,153,232,106,157,246,139,202,119,183,191,159,162,12,28,88,74,163,50,250,73,222,174,50,233,150,171,218,214,129,61,248,45,165,94,6,197,181],[161,176,1,239,50,186,84,218,216,95,69,143,23,66,68,85,255,54,231,19,85,235,206,231,108,200,156,28,215,65,177,2,169,115,248,45,219,108,50,156,244,81,16,109,211,228,219,34],[161,80,183,4,215,49,119,38,180,159,209,21,197,204,188,39,160,137,0,35,96,225,93,32,192,185,167,181,185,223,130,87,144,144,182,105,225,135,35,220,39,66,61,245,80,224,253,50],[173,82,21,37,195,52,247,235,76,113,63,208,176,16,48,79,230,62,226,126,211,60,106,126,207,157,92,225,88,246,51,167,251,130,67,127,141,103,62,150,155,195,131,13,242,207,10,114],[151,86,64,219,62,67,71,65,133,54,85,47,105,55,42,183,26,185,47,24,205,189,40,45,20,2,88,49,154,200,178,9,245,6,138,118,96,123,176,83,170,206,237,220,29,220,162,185],[177,135,101,233,166,101,66,103,177,114,152,244,46,113,28,38,135,42,249,119,112,6,33,58,128,44,139,172,193,106,214,106,166,239,62,163,28,118,112,160,24,24,4,100,147,177,132,174],[174,88,149,45,87,180,50,191,81,144,9,38,37,175,51,26,27,200,132,131,11,82,168,160,88,215,189,164,208,181,169,195,157,227,170,184,61,78,234,153,227,251,183,24,244,26,170,6],[183,75,72,49,254,248,185,247,185,172,16,247,107,246,251,173,98,117,228,195,55,204,129,98,91,184,26,118,24,197,206,51,175,134,0,112,4,79,55,230,83,62,156,118,160,247,53,115],[173,92,72,222,134,147,12,255,72,166,72,85,74,232,163,37,245,38,110,210,28,197,142,144,169,196,236,241,45,190,73,109,231,236,255,147,197,8,198,128,180,68,32,4,235,103,54,91],[145,135,53,149,129,144,121,181,212,176,47,107,92,215,72,120,196,225,157,50,171,89,220,236,223,223,36,9,131,176,185,182,40,127,192,186,174,68,107,92,31,115,196,154,253,173,135,56],[178,74,154,87,36,15,191,98,47,101,122,232,22,192,206,217,177,150,169,237,193,187,146,226,164,84,130,214,9,252,89,54,10,139,99,66,110,24,214,11,27,205,207,207,217,202,94,113],[162,74,190,54,165,76,234,10,245,88,5,132,92,33,181,104,108,47,222,92,19,29,148,159,230,229,197,40,177,118,149,1,233,139,207,210,132,188,17,57,41,80,178,192,224,170,243,65],[173,203,231,167,165,1,146,199,254,100,210,226,179,241,203,144,171,138,222,173,164,66,7,182,117,105,174,147,242,213,104,154,93,103,95,170,242,137,113,191,120,141,177,104,9,9,165,44],[162,114,85,129,167,44,183,21,104,15,192,24,254,47,114,47,28,47,162,100,231,70,163,128,183,143,90,197,113,108,3,176,59,255,126,79,140,214,52,179,77,172,13,247,137,8,60,42],[165,225,55,135,38,185,72,124,9,88,212,151,171,21,243,121,40,144,118,144,35,173,166,51,217,64,68,124,218,18,163,127,253,122,73,155,132,209,98,174,152,139,134,238,87,139,69,213],[160,238,162,202,46,71,86,93,228,7,75,155,38,143,70,198,79,0,88,141,166,225,10,80,128,138,12,30,169,202,183,208,62,6,117,174,9,21,78,138,107,32,137,11,150,49,188,170],[152,135,11,214,162,175,169,68,191,203,56,240,80,249,48,137,214,210,12,36,213,55,139,119,50,253,183,192,214,9,82,111,68,203,196,170,43,13,65,193,52,192,186,81,250,164,251,155],[182,87,133,124,83,187,48,80,54,70,150,215,163,30,187,218,37,24,150,239,233,185,199,147,42,27,31,27,165,14,167,177,181,107,22,105,234,253,115,47,171,98,54,242,239,16,9,199],[144,98,35,210,157,163,107,60,201,40,70,16,213,80,21,232,217,6,38,142,44,224,136,114,170,190,80,253,243,246,98,125,218,15,45,154,28,126,236,26,115,214,157,35,50,39,88,163],[149,222,172,71,81,45,193,180,56,160,206,250,239,129,119,191,42,224,85,174,248,247,190,1,98,154,206,141,239,163,7,103,124,153,16,0,201,123,45,36,95,6,201,36,20,238,176,200],[180,153,194,184,98,181,71,146,34,212,174,148,235,30,23,36,98,37,93,47,57,227,103,45,178,108,133,82,144,76,83,227,196,25,172,244,17,67,95,231,71,92,96,60,115,122,96,189],[149,42,175,102,163,109,82,114,207,212,97,65,90,152,122,59,100,245,99,12,127,185,19,136,106,181,2,89,128,26,164,67,247,209,55,188,138,114,186,74,32,178,203,53,241,175,7,147],[171,216,61,56,67,215,83,105,203,177,170,254,132,238,97,255,162,80,156,50,77,161,32,143,179,18,176,174,175,231,175,254,77,211,143,57,39,239,195,5,91,234,39,167,65,70,168,200],[146,191,237,219,180,34,52,143,150,163,219,31,30,152,239,73,46,164,81,136,240,231,36,64,34,246,250,165,129,200,130,196,38,147,162,47,118,147,66,20,42,237,77,116,51,134,224,197],[130,235,44,221,220,45,127,139,237,248,67,166,228,107,1,243,39,236,220,214,56,167,236,72,132,206,111,141,179,152,89,93,223,104,17,39,146,184,41,187,165,190,201,82,152,181,80,130],[183,182,116,57,183,112,153,146,155,47,46,4,170,243,155,18,4,145,161,108,91,112,105,142,182,245,68,89,4,4,48,149,15,11,161,241,76,46,160,187,216,129,100,107,84,102,60,146],[185,167,99,254,161,40,226,89,49,246,233,26,119,42,119,58,88,128,114,55,193,138,105,178,106,9,144,55,22,45,215,68,161,240,9,19,222,148,77,140,7,21,50,108,182,58,70,235],[180,196,111,4,101,84,44,117,65,86,81,85,210,35,152,28,199,238,219,234,188,112,149,211,143,14,173,250,107,111,12,193,58,88,89,80,119,210,85,53,220,11,56,130,138,195,240,160],[153,188,156,118,211,137,146,210,166,67,88,218,47,98,249,95,94,159,22,188,24,188,43,84,165,131,209,39,37,108,4,180,130,255,243,169,114,248,229,8,230,147,241,7,79,55,145,162],[130,42,149,145,238,32,18,50,132,68,206,203,10,3,4,243,5,37,77,207,101,15,218,231,158,66,14,104,49,1,80,146,196,34,84,64,189,221,168,130,240,20,164,97,35,110,149,13],[136,227,50,84,34,18,200,79,250,60,59,98,52,224,74,216,22,107,78,245,62,187,163,177,35,88,214,65,80,161,187,209,106,163,83,209,196,245,214,193,248,236,248,230,56,102,47,98],[142,101,174,182,175,231,251,76,93,74,86,120,7,135,31,255,233,16,54,55,15,47,232,39,120,195,74,133,33,213,53,83,240,216,145,182,21,186,90,205,196,44,241,130,171,106,145,55],[142,100,22,111,47,221,250,243,98,196,91,142,238,180,133,57,110,123,201,123,19,141,197,132,12,244,124,160,219,57,132,192,216,38,72,52,232,92,170,5,119,222,243,202,195,190,215,74],[175,137,157,121,13,124,205,219,210,127,231,217,221,188,223,243,120,233,84,230,30,96,67,200,170,82,187,207,38,103,65,213,132,56,24,84,132,131,38,60,242,0,127,25,214,172,13,157],[164,203,88,60,43,137,8,87,111,232,210,170,121,214,14,96,118,46,203,44,60,175,87,144,140,196,1,182,88,177,10,57,166,28,245,212,202,169,3,148,15,212,229,25,109,180,76,133],[162,191,132,191,199,65,221,57,128,32,97,62,246,160,82,143,97,87,11,180,109,183,226,49,58,131,142,15,45,88,34,212,192,253,100,160,39,151,137,222,235,96,100,112,96,179,254,73],[131,39,37,152,58,5,101,245,50,155,64,51,70,132,121,132,11,169,159,110,211,111,111,123,181,90,67,229,125,30,234,50,81,255,171,148,215,170,186,209,180,221,183,81,102,159,15,52],[174,136,207,48,36,38,122,244,101,139,73,150,174,70,85,53,155,18,151,123,133,7,129,91,241,40,172,74,134,183,15,118,242,95,242,231,248,53,75,170,25,248,121,177,238,103,242,236],[135,215,161,26,239,179,62,186,21,111,44,108,125,187,51,235,45,144,185,254,46,46,164,176,136,180,206,114,147,107,235,198,180,23,149,239,11,90,15,199,54,73,253,207,173,189,229,147],[170,158,3,107,48,114,200,39,171,124,100,144,214,25,85,61,207,242,219,255,207,255,16,75,2,84,183,118,174,209,60,155,1,140,201,168,182,77,10,221,48,5,215,76,155,145,83,133],[164,254,176,202,52,145,248,74,7,15,92,47,193,220,250,173,255,109,212,100,240,151,157,242,194,90,181,80,116,55,131,219,101,120,73,145,195,106,12,28,127,29,183,179,193,235,10,31],[135,42,47,141,70,191,102,117,82,62,166,87,79,45,247,51,161,29,202,225,237,166,158,125,133,48,188,176,238,247,37,111,85,129,242,217,211,29,160,236,98,33,57,246,12,93,75,225],[151,14,175,231,73,7,209,43,216,31,236,132,0,141,197,25,17,225,18,125,224,103,231,3,206,100,103,53,248,136,228,218,145,220,102,30,164,169,149,59,168,66,0,23,104,10,188,174],[166,161,112,82,89,213,106,84,7,29,25,128,83,163,184,161,162,152,191,233,134,163,113,164,103,196,28,172,25,131,110,109,108,224,143,229,139,198,13,143,185,108,96,213,175,46,223,38],[129,11,0,228,126,203,226,88,49,126,122,225,102,8,38,9,48,236,159,5,20,87,104,96,57,71,62,39,222,211,112,232,69,120,73,19,224,73,25,205,146,181,95,62,218,148,8,65],[140,63,126,203,243,61,170,7,235,255,235,131,174,72,31,2,22,80,42,6,192,170,204,114,68,255,208,174,35,42,13,139,16,252,164,79,233,141,67,166,75,83,94,210,105,114,217,56],[174,249,144,20,17,248,74,58,84,17,90,114,90,200,183,171,21,229,191,126,38,64,112,90,223,181,114,52,239,185,180,151,107,32,121,83,187,38,254,233,198,97,122,242,127,41,47,142],[146,50,236,192,73,187,220,121,32,223,15,244,223,237,106,76,56,127,45,166,167,34,26,117,205,169,14,237,229,112,254,33,225,92,61,94,21,69,139,139,33,137,103,109,181,57,2,17],[168,106,69,246,69,131,219,196,193,118,101,235,238,188,135,50,19,158,175,17,85,222,22,112,249,142,46,244,121,149,235,140,67,182,64,189,235,210,165,92,159,156,186,179,144,168,100,31],[148,47,61,83,88,198,92,145,242,237,10,194,67,228,40,215,168,133,20,96,107,135,119,37,249,160,159,41,255,208,73,163,68,160,213,139,217,218,115,177,146,122,69,67,230,134,242,140],[132,179,194,219,56,234,105,5,28,96,101,187,75,242,172,121,149,99,50,54,46,42,119,204,248,168,147,64,98,145,4,86,202,203,1,31,96,244,237,1,185,59,255,168,153,64,18,67],[136,240,51,47,207,167,48,79,55,160,65,221,218,250,166,36,97,34,164,41,142,195,52,251,227,20,231,193,110,149,58,196,226,62,69,149,251,80,237,135,150,196,8,41,183,246,104,134],[160,94,188,150,3,46,63,93,50,201,206,241,244,63,156,151,229,224,49,209,233,58,153,240,184,52,242,5,51,70,120,167,42,212,203,80,173,240,45,89,239,94,231,16,232,207,244,203],[133,53,249,60,222,23,209,13,109,117,103,224,73,245,238,55,25,68,33,56,71,70,194,107,241,55,196,193,163,7,95,175,185,223,178,86,21,88,253,165,168,195,45,31,121,100,76,187],[153,116,80,92,9,221,205,220,17,221,164,109,88,95,185,148,146,112,4,190,113,154,97,153,156,77,79,159,246,34,20,40,169,122,73,143,242,178,33,246,97,239,203,31,74,246,140,237],[150,125,20,138,94,79,217,160,133,224,220,7,145,123,98,33,52,107,202,251,157,66,146,91,49,231,117,254,54,11,149,65,106,114,161,30,211,105,138,18,194,83,42,255,145,62,19,147],[148,78,85,201,116,40,218,97,59,35,250,130,101,253,207,152,250,195,221,68,147,151,7,243,63,32,140,103,166,24,246,79,224,22,122,17,47,204,35,234,21,223,59,87,25,196,233,248],[142,182,144,39,134,196,208,1,253,2,205,122,168,207,191,1,117,90,210,151,227,16,199,234,142,202,71,104,224,46,9,139,27,138,6,142,240,134,27,87,140,112,145,215,233,221,236,187],[146,160,252,48,71,23,205,247,137,88,206,78,175,142,170,88,111,217,100,16,28,96,165,14,186,92,10,249,70,166,241,255,226,58,131,105,11,96,11,56,130,27,159,142,184,229,106,251],[170,218,47,190,180,192,105,179,9,155,182,6,204,118,109,64,81,146,0,192,226,7,97,6,233,193,136,99,172,22,234,114,12,30,128,53,30,251,206,30,132,98,104,42,3,199,62,237],[144,110,255,91,189,26,180,194,135,239,117,188,138,199,39,161,227,55,141,36,147,66,237,148,206,104,21,43,144,242,193,4,5,217,231,165,186,188,39,87,173,166,67,103,244,197,183,150],[139,158,41,14,220,81,136,40,6,106,136,82,38,29,135,229,148,47,117,202,3,146,69,65,224,111,220,66,196,31,18,130,183,221,19,48,200,187,225,249,122,188,88,99,93,126,196,72],[149,50,206,209,31,16,161,224,168,191,8,3,46,221,255,65,23,32,246,157,66,67,244,32,165,203,196,137,10,27,247,4,19,133,146,87,32,248,84,97,31,58,126,208,253,65,20,249],[148,58,67,226,75,36,88,252,114,167,63,50,157,232,38,66,128,27,197,65,171,105,46,169,21,202,198,92,111,222,139,129,162,40,95,135,129,11,157,207,65,56,243,143,149,180,37,19],[175,8,201,149,149,124,135,121,15,225,83,251,207,149,160,171,101,92,65,213,17,250,59,196,196,121,123,168,228,159,232,27,5,17,22,55,19,255,242,120,172,138,253,70,210,17,164,200],[149,228,238,99,238,9,115,129,62,57,219,214,70,77,106,78,122,75,139,144,245,242,54,229,77,80,36,93,147,53,220,5,159,16,224,6,23,149,118,138,191,62,46,23,141,253,95,209],[147,241,123,115,196,101,213,17,65,56,176,53,138,241,19,99,102,235,70,95,185,240,1,147,214,131,86,136,82,161,204,58,237,188,94,103,238,91,22,27,239,213,252,98,4,184,228,250],[176,166,70,111,247,71,255,9,160,245,235,153,232,239,208,122,244,241,246,114,189,114,169,93,178,8,120,103,76,115,198,57,40,156,113,82,63,213,253,134,202,228,192,118,137,21,107,197],[162,187,84,38,184,98,240,208,137,15,213,198,60,223,62,250,19,146,116,193,78,171,38,88,136,254,97,188,69,221,194,220,201,128,220,38,138,146,44,73,239,138,236,12,241,228,106,216],[142,148,201,4,150,20,44,125,117,68,116,66,178,93,186,158,69,241,124,50,65,72,175,242,29,105,69,111,66,32,183,138,112,41,110,250,191,193,159,168,90,171,76,102,41,11,253,163],[181,75,178,107,44,159,127,229,36,190,22,27,0,29,207,67,225,29,135,28,171,125,113,63,124,59,104,224,181,146,39,214,43,99,69,14,176,41,107,41,63,112,145,215,62,107,35,40],[130,195,190,57,224,202,177,188,177,33,71,223,6,95,79,188,66,28,162,182,201,95,3,140,30,220,151,127,120,98,139,159,81,41,133,194,254,141,122,25,117,190,61,238,220,107,158,133],[131,14,41,2,62,208,48,68,81,2,161,108,60,119,44,229,13,108,24,61,231,180,45,38,235,186,175,170,226,140,121,114,168,80,20,123,255,243,175,218,73,146,153,9,92,71,123,162],[134,112,219,28,13,157,4,145,118,158,101,234,3,254,83,244,249,88,25,187,201,105,207,170,240,57,191,65,123,5,103,20,1,18,180,224,115,91,83,85,186,113,89,0,120,247,12,219],[145,122,158,251,55,212,254,152,139,2,47,141,82,231,49,71,211,178,125,69,201,145,101,41,12,116,66,134,65,238,185,32,218,64,42,115,8,157,40,156,113,45,140,6,180,238,137,39],[151,75,120,1,26,253,16,17,74,70,210,243,251,132,250,127,162,110,186,232,191,89,125,229,105,215,77,170,177,106,216,139,110,43,109,70,63,79,138,139,76,152,8,92,159,166,89,194],[181,199,103,42,72,114,231,176,40,222,134,178,68,82,164,205,251,62,232,146,152,171,155,3,100,244,171,124,84,84,254,61,167,29,100,44,185,134,125,229,127,192,223,44,142,198,191,220],[141,156,116,31,151,104,202,54,185,148,101,95,120,212,255,197,28,172,37,240,204,173,116,168,111,75,132,131,54,158,182,89,104,10,253,42,63,39,216,141,63,217,12,92,7,195,226,65],[133,29,198,115,131,192,187,108,245,58,178,200,42,235,61,221,77,244,233,187,42,235,3,56,100,81,204,169,90,127,95,234,106,13,196,166,52,80,111,49,143,206,107,24,167,62,16,65],[185,220,141,167,20,47,55,154,200,73,58,25,228,173,162,41,33,136,229,241,199,114,90,96,236,72,83,2,7,13,118,136,56,88,210,165,105,47,68,135,32,107,123,206,86,157,241,219],[131,41,62,125,21,12,29,95,104,204,179,217,66,210,46,186,16,49,203,218,122,176,248,40,59,159,0,125,87,17,180,19,23,210,217,120,119,239,198,78,31,255,5,1,175,141,167,165],[139,18,209,23,149,219,185,74,249,65,213,40,255,224,125,4,64,18,80,71,191,28,176,134,74,216,105,14,140,91,243,249,168,186,201,198,4,150,115,92,181,131,139,164,130,34,122,49],[173,221,154,225,245,142,61,156,96,43,233,168,140,34,171,115,28,74,40,180,251,164,56,8,70,151,200,138,103,51,246,54,171,30,163,111,129,175,113,249,50,92,64,13,42,234,56,206],[145,24,199,138,88,141,81,209,177,185,53,69,132,68,150,193,106,26,175,78,32,51,26,217,78,99,136,173,10,171,51,105,68,43,53,214,45,162,39,72,131,82,223,119,186,138,187,215],[144,118,57,255,47,6,21,69,24,252,14,137,85,119,215,92,72,100,23,2,158,151,214,7,82,180,252,78,231,177,35,4,139,179,155,102,60,89,235,122,117,134,50,216,84,167,20,165],[185,95,56,123,92,243,202,213,139,178,242,97,47,110,178,76,224,49,204,59,124,21,208,190,197,106,86,82,77,189,16,46,159,219,141,18,74,24,50,187,224,177,22,43,21,174,153,239],[169,236,29,105,57,7,45,30,202,98,55,118,181,186,129,24,148,52,126,147,76,140,143,82,207,94,51,35,132,228,85,217,74,80,189,99,130,194,65,103,233,118,139,15,134,34,69,152],[136,140,51,185,11,115,244,163,123,169,131,18,202,176,189,152,221,121,7,178,255,159,223,38,143,11,173,156,227,92,254,140,234,73,207,127,90,27,6,44,120,28,217,169,171,246,13,80],[133,42,200,129,215,146,107,68,91,42,126,89,33,149,34,213,35,155,26,213,200,191,25,42,15,71,62,145,231,218,226,172,77,60,50,78,73,151,135,184,107,155,187,253,165,50,105,213],[180,85,119,174,165,18,61,24,11,51,183,28,80,55,249,249,65,197,251,203,136,74,16,64,177,81,160,144,41,128,46,133,178,231,6,236,180,219,62,58,62,152,175,17,17,139,73,231],[172,165,66,114,11,213,196,32,13,159,28,214,171,105,170,217,155,171,57,80,115,106,94,241,165,184,106,102,165,106,126,242,202,46,125,186,200,152,214,93,230,205,95,17,54,121,4,189],[150,185,53,251,214,148,159,193,229,103,32,228,16,117,179,164,184,248,167,91,242,165,89,203,150,221,227,99,86,221,9,172,2,72,175,37,175,144,68,134,181,20,145,211,50,234,91,156],[174,15,222,234,177,190,77,143,166,171,242,238,18,185,20,212,225,31,166,104,120,117,215,6,239,89,0,107,244,231,198,110,13,9,191,135,104,232,189,127,153,194,27,193,161,107,123,109],[182,249,249,82,122,153,71,240,8,42,255,102,219,118,139,64,188,173,201,96,126,147,251,69,226,177,143,168,85,43,91,63,63,118,8,205,7,188,211,230,61,234,179,45,95,162,113,102],[163,192,239,195,78,193,31,80,119,8,170,215,243,141,31,252,91,187,220,141,147,135,249,162,87,173,141,217,159,130,48,209,163,149,56,47,190,238,218,59,244,221,41,249,8,1,84,26],[170,246,216,255,234,218,62,255,77,77,161,59,57,196,142,8,41,50,45,237,200,149,253,82,121,168,49,67,190,117,155,15,212,199,10,45,55,123,142,9,216,115,78,209,202,158,193,218],[143,72,142,143,180,203,92,65,216,6,252,31,7,202,169,104,154,47,211,17,83,248,115,120,167,68,4,39,58,114,110,238,130,71,252,235,79,27,106,27,187,91,29,155,102,188,191,184],[166,85,134,153,158,60,209,89,59,36,7,89,112,100,166,15,70,112,209,77,222,218,44,45,132,239,120,182,206,199,27,112,156,46,202,217,108,104,127,23,87,255,184,185,1,166,160,105],[151,14,145,92,25,222,51,124,221,238,25,125,48,176,19,198,49,192,89,4,166,215,137,205,140,129,136,19,63,131,13,78,14,157,57,247,21,197,153,246,144,6,231,243,97,19,128,225],[153,39,213,31,8,209,190,131,82,225,202,132,218,238,203,205,25,49,67,164,215,74,93,168,18,44,93,191,240,68,23,244,10,67,10,187,8,135,244,175,56,132,101,100,245,184,142,20],[180,104,167,160,44,160,83,167,4,48,103,64,232,161,133,105,148,123,20,25,225,212,48,63,183,225,33,2,93,180,180,148,251,65,115,202,210,70,165,118,243,52,212,132,115,248,245,16],[144,157,189,82,176,46,54,94,60,12,196,147,53,159,45,59,43,185,22,80,144,29,175,185,34,172,80,83,63,100,171,224,193,42,161,51,192,98,131,220,120,68,10,124,237,63,251,90],[132,37,210,0,234,196,48,132,62,233,130,231,108,248,236,206,237,38,214,84,140,178,86,84,51,96,214,161,48,202,191,107,217,41,36,198,185,45,184,254,14,248,91,177,73,158,72,38],[130,107,238,84,94,74,104,13,212,3,187,136,134,188,148,253,79,50,213,23,133,60,99,172,187,199,46,123,30,193,203,86,227,247,168,124,211,106,168,217,109,63,60,59,51,208,199,181],[131,74,180,2,128,108,169,171,254,207,213,159,62,33,11,1,194,94,204,205,122,41,90,202,184,6,126,93,79,14,87,39,56,72,195,161,23,26,214,66,222,208,161,221,163,87,39,80],[162,19,6,118,102,183,84,136,64,12,8,17,26,235,78,207,199,48,69,239,191,181,90,210,30,141,194,29,104,196,177,241,109,8,216,186,68,212,80,241,209,141,17,98,148,31,191,249],[153,42,217,112,106,168,57,5,150,206,203,36,194,146,4,120,54,209,226,190,226,93,14,158,1,140,98,144,195,254,223,89,25,150,36,205,197,94,149,62,36,159,113,54,78,112,236,228],[128,234,162,185,69,65,234,129,142,205,102,156,160,237,214,245,227,115,150,113,143,119,103,39,237,20,140,211,29,91,157,152,28,251,175,168,137,150,52,16,184,167,217,202,119,210,16,252],[162,99,217,22,112,209,187,26,218,154,163,9,166,219,110,208,67,173,88,232,25,97,206,148,93,186,233,102,151,221,172,13,146,86,221,255,221,154,124,32,172,164,87,82,52,140,152,119],[177,251,96,232,140,51,61,70,255,198,112,67,126,34,252,83,138,111,114,221,62,95,3,109,78,192,207,179,63,98,51,221,178,11,173,69,190,79,252,65,243,32,119,178,227,22,236,195],[175,5,87,4,34,19,10,55,85,240,79,107,65,164,128,30,166,201,108,166,124,91,125,43,244,12,139,44,65,254,127,27,0,97,209,1,78,127,9,209,0,76,177,199,207,188,69,179],[149,100,185,44,156,80,31,235,201,77,67,218,82,29,2,55,104,157,173,109,196,98,10,53,212,102,166,40,84,145,6,46,49,120,9,223,60,209,127,80,51,113,209,40,103,192,118,105],[152,207,50,155,238,139,146,221,80,230,188,28,100,68,8,188,91,238,151,17,9,187,114,115,203,60,155,29,127,76,118,244,217,146,240,0,174,182,119,62,28,117,249,39,194,47,178,76],[151,9,253,197,161,170,241,141,37,86,156,136,186,112,217,249,106,91,100,187,178,30,27,86,102,123,105,16,75,76,105,197,172,178,182,52,185,128,61,165,168,247,233,48,154,227,173,154],[134,255,12,153,144,193,212,160,228,134,35,152,170,174,161,99,228,65,98,196,71,53,38,101,8,131,115,130,39,149,102,163,139,120,165,255,38,38,2,47,213,19,58,34,70,216,163,241],[142,249,159,165,206,110,116,109,117,200,150,203,245,165,68,25,170,238,152,28,217,149,236,161,1,154,240,225,163,121,144,234,253,158,194,158,21,7,97,88,55,218,68,116,230,30,239,83],[177,20,38,58,78,187,3,252,111,177,45,41,154,253,77,175,131,246,227,92,201,204,51,42,41,216,151,54,144,201,23,104,137,92,161,173,252,131,3,132,50,135,111,4,171,39,144,98],[178,46,227,200,250,130,148,134,28,173,39,132,82,250,125,77,102,4,96,244,51,1,7,21,87,83,80,152,162,168,85,136,11,119,75,131,83,110,13,196,19,44,124,166,141,48,34,154],[145,28,253,149,109,32,13,50,188,33,28,248,255,186,115,236,57,87,100,141,185,159,157,17,126,203,105,47,69,208,133,217,23,130,12,134,105,207,105,198,189,114,167,142,189,201,100,94],[182,219,152,252,165,234,85,226,83,85,71,5,79,171,209,72,243,160,160,20,203,52,137,106,255,45,51,221,113,199,175,15,71,166,204,172,15,149,130,224,35,121,97,183,198,30,239,115],[162,13,127,164,216,68,240,140,217,155,192,78,173,47,106,230,182,230,56,17,33,208,102,52,197,118,248,63,124,135,221,178,8,165,149,109,21,120,154,87,77,43,77,42,136,171,210,147],[170,52,207,49,203,160,224,241,67,63,103,176,254,192,67,160,169,109,63,115,127,150,70,142,73,183,159,12,101,150,205,104,56,80,183,203,130,100,203,226,22,169,57,58,160,32,232,249],[164,168,105,219,214,92,246,241,170,179,103,196,19,139,64,117,201,3,134,182,32,90,38,21,199,254,22,198,167,96,195,109,113,208,42,141,159,205,250,123,164,192,12,121,77,30,144,242],[163,113,238,89,173,119,33,152,90,30,169,74,142,243,70,130,43,196,151,82,102,125,236,128,115,167,152,96,113,163,117,180,104,7,226,16,207,213,125,179,118,122,166,231,198,242,72,52],[166,78,100,188,84,12,86,45,201,122,122,32,109,53,213,171,33,0,53,207,112,148,229,144,209,9,223,27,190,205,62,90,217,25,190,125,138,55,155,50,84,86,152,120,99,46,19,18],[175,125,221,84,181,201,120,2,54,70,77,24,113,154,52,251,177,34,171,220,230,189,24,4,102,32,211,130,231,168,119,1,51,130,97,225,244,164,183,228,41,66,14,150,105,184,93,35],[174,215,8,195,222,56,171,84,51,142,232,54,229,6,48,75,126,51,59,138,194,117,131,170,254,161,244,7,89,64,230,192,78,108,229,253,40,120,132,210,192,48,159,19,187,210,251,136],[160,149,91,63,22,199,115,54,7,221,171,142,86,45,61,129,13,155,141,109,123,104,42,247,14,208,10,14,162,143,60,205,23,127,115,49,61,133,128,55,41,9,12,114,81,14,86,108],[160,64,91,46,216,66,27,102,94,252,166,208,203,171,52,212,204,242,55,156,43,118,216,90,124,54,165,149,49,99,13,249,231,74,169,23,173,3,44,223,25,147,219,56,140,22,149,178],[176,95,234,43,2,165,209,134,48,179,131,162,45,244,109,244,242,138,139,4,213,38,116,160,46,145,42,6,117,114,27,222,117,119,16,5,136,69,54,159,154,111,205,217,34,247,113,57],[135,194,147,45,43,141,181,20,90,119,242,165,40,88,116,144,254,116,107,132,185,101,189,28,83,177,101,32,191,97,96,25,54,124,244,88,83,88,58,4,188,138,178,159,0,229,32,254],[128,17,112,166,32,43,31,125,223,22,250,189,60,241,252,203,158,110,127,171,73,56,43,146,65,51,180,96,31,5,244,2,9,218,58,188,251,159,189,135,218,149,20,20,186,172,235,177],[172,13,121,70,116,198,57,101,46,61,152,114,92,169,110,226,112,72,251,3,196,96,126,80,144,122,252,137,108,202,87,12,126,131,239,114,71,168,244,167,246,235,232,251,53,161,143,34],[149,227,244,128,153,77,127,250,25,60,66,62,70,127,51,204,220,16,137,191,84,3,15,238,248,8,129,215,185,187,40,144,37,1,132,31,67,142,248,55,89,85,26,130,121,228,201,119],[140,93,231,127,119,48,144,51,130,58,89,109,167,38,138,79,64,235,5,153,78,221,5,7,180,252,165,112,153,214,90,162,91,156,242,254,156,55,251,204,202,166,108,50,111,90,105,180],[147,138,226,58,104,36,246,166,144,226,162,5,83,253,76,40,43,96,183,122,135,144,234,197,198,68,81,2,240,141,153,41,41,134,218,35,236,115,22,101,218,209,43,31,205,109,243,39],[163,60,155,207,141,150,108,99,166,219,206,142,137,153,10,248,249,173,40,68,56,230,37,87,26,67,161,95,66,166,34,101,40,223,119,65,98,104,224,86,187,148,120,228,41,81,175,253],[161,175,112,131,26,228,77,198,150,122,50,131,59,136,28,155,120,73,47,186,114,71,80,214,96,196,17,234,224,114,19,164,229,193,35,217,143,135,21,196,67,171,191,99,140,164,103,60],[153,238,128,140,99,172,167,152,103,24,158,26,132,129,240,108,185,37,175,81,201,247,112,16,229,122,146,0,82,114,174,197,190,210,13,191,50,217,70,170,233,118,179,164,25,166,132,241],[165,221,205,168,135,34,252,199,96,60,127,248,200,141,207,118,80,246,53,8,214,11,223,243,91,57,94,151,232,69,149,38,8,92,11,216,101,11,71,215,237,212,188,24,22,148,82,189],[139,8,88,200,26,145,167,68,0,161,120,139,203,171,161,145,209,127,36,44,221,139,110,1,138,47,69,133,177,233,210,251,216,75,212,61,17,167,232,109,100,21,216,25,222,179,196,185],[172,50,165,78,164,109,120,151,169,39,140,48,30,159,138,12,40,178,139,86,224,236,233,37,24,13,36,71,28,6,223,138,28,125,187,164,77,36,49,42,220,46,171,82,110,152,222,175],[139,172,249,25,151,65,23,41,98,251,46,254,207,48,68,65,5,79,206,34,0,105,83,105,59,18,240,37,23,117,103,52,157,228,215,160,81,221,159,47,224,152,12,208,238,218,27,62],[169,148,20,175,149,7,208,218,233,152,246,86,143,77,231,105,205,163,16,194,23,188,175,132,88,119,163,137,171,184,216,89,132,95,99,23,249,28,139,15,41,31,160,183,47,208,55,154],[146,165,78,229,29,17,126,254,30,107,60,149,111,216,27,14,128,173,234,245,1,107,244,194,35,64,42,141,177,219,149,224,207,162,134,24,99,185,225,215,49,5,151,208,126,189,51,1],[172,188,76,144,56,96,82,225,64,84,69,149,72,229,37,89,211,166,35,253,66,204,145,116,219,252,93,51,60,97,197,8,22,146,105,143,215,118,252,61,49,134,232,88,159,170,180,157],[142,219,238,94,152,39,154,18,235,127,161,74,103,110,142,11,62,63,25,17,238,66,227,114,127,137,242,92,71,87,211,46,83,57,2,47,118,185,243,31,16,245,70,95,42,44,187,118],[177,239,27,12,97,68,89,156,168,143,171,148,197,105,23,8,121,49,14,182,135,163,67,245,3,189,224,113,226,5,154,218,255,172,108,224,190,237,50,221,14,227,21,210,74,114,221,98],[136,36,114,109,46,250,82,34,186,137,251,145,46,10,252,117,19,190,132,210,192,168,213,178,170,245,167,56,107,89,96,203,182,160,88,30,111,198,181,120,197,97,225,171,57,82,163,174],[142,12,123,169,80,124,242,188,154,95,9,173,2,80,150,85,142,225,124,205,172,67,110,146,140,60,18,101,229,33,36,160,253,220,22,114,230,226,32,57,70,44,46,201,213,51,37,9],[150,103,154,4,170,29,62,150,169,189,115,177,19,83,240,233,201,239,44,206,130,142,253,240,162,189,16,232,243,96,186,151,89,233,194,78,181,130,111,237,249,246,72,15,223,172,83,96],[141,43,85,179,44,124,210,123,42,90,211,12,212,197,75,111,31,247,66,96,234,141,224,6,210,2,87,128,167,152,157,56,188,66,158,118,128,230,12,28,116,30,216,43,145,68,65,227],[185,165,8,192,167,197,104,163,175,250,117,93,203,220,81,173,80,3,76,241,242,78,35,46,205,63,108,83,57,127,12,3,142,75,0,20,69,237,192,30,121,200,54,83,181,76,22,104],[128,140,225,165,106,123,0,15,116,166,77,71,110,63,83,213,236,114,176,224,94,79,168,206,112,232,53,150,89,76,23,137,180,46,125,63,213,10,222,129,80,84,113,212,117,72,252,121],[145,137,119,227,110,97,221,181,238,127,81,4,16,165,126,150,134,148,128,74,214,170,47,227,237,2,89,248,144,93,133,220,113,135,80,156,88,107,174,194,104,121,176,97,133,2,199,200],[138,11,47,150,36,70,244,147,67,46,230,182,154,69,94,85,89,183,192,41,204,162,86,112,108,102,196,210,141,84,159,93,33,251,14,230,248,254,83,130,179,33,60,194,21,153,136,217],[167,24,223,11,89,133,125,180,1,106,237,83,199,213,15,116,55,101,138,229,28,182,49,201,111,220,119,145,91,81,149,86,38,64,99,12,170,39,203,111,85,21,118,126,231,39,236,134],[138,252,118,127,116,58,239,74,163,138,84,251,18,174,123,111,163,158,79,212,173,167,102,40,202,208,149,60,104,53,210,208,174,134,123,112,12,54,113,155,114,2,207,166,146,109,153,186],[180,112,247,219,15,202,160,10,67,15,181,187,58,66,102,137,230,97,161,11,140,19,154,185,195,97,48,182,122,119,26,119,236,173,195,80,78,156,230,59,209,24,184,219,49,48,104,239],[142,243,97,48,74,218,97,253,134,194,102,241,135,11,108,132,103,154,136,98,64,169,222,252,57,222,104,99,161,22,200,146,59,55,38,148,59,27,175,0,112,225,194,38,196,89,62,255],[131,248,172,131,48,132,13,138,177,93,170,39,207,117,178,197,128,188,190,2,19,1,103,239,18,38,207,75,105,51,91,92,62,253,224,32,129,68,135,240,152,209,31,133,4,67,55,196],[178,254,39,190,159,176,98,240,25,93,82,148,56,240,250,250,78,105,85,193,155,125,191,117,187,26,55,234,197,229,71,197,138,34,62,208,213,0,142,194,102,39,222,255,151,201,61,146],[164,4,212,63,5,222,79,46,78,249,37,203,64,13,0,35,218,15,156,67,17,52,26,134,55,143,228,44,250,14,161,69,108,87,170,138,138,173,16,21,60,152,158,59,96,105,151,195],[151,183,221,249,237,222,216,72,241,164,248,228,202,56,110,61,54,70,167,79,31,136,149,76,73,148,182,39,96,113,31,208,147,194,81,13,49,148,42,195,58,124,236,223,60,171,104,73],[133,219,194,70,122,248,44,251,227,241,29,157,106,150,228,93,225,181,103,49,33,232,133,32,205,253,187,180,13,182,129,18,46,32,147,72,144,55,194,136,247,108,94,82,97,131,230,91],[164,120,18,137,88,155,74,98,239,40,89,255,13,187,100,8,167,131,44,78,163,214,214,47,133,194,77,235,17,87,208,233,170,88,93,98,16,210,94,192,44,202,242,110,176,227,218,61],[151,206,125,79,3,223,45,140,49,56,226,235,103,244,123,140,120,53,30,21,147,122,70,193,63,39,85,44,115,81,96,20,72,137,140,77,83,101,5,37,26,197,228,202,33,60,2,152],[182,151,117,246,11,242,6,226,154,193,42,7,170,95,163,148,250,251,35,224,73,244,149,16,55,40,213,34,86,89,157,52,26,102,106,138,72,212,188,252,133,64,9,224,101,198,13,243],[133,207,90,222,229,228,44,200,194,163,107,203,254,248,173,197,94,205,200,59,83,80,62,177,231,139,169,227,193,125,90,159,210,139,125,173,249,244,56,184,246,255,47,224,39,176,99,237],[146,27,147,47,70,206,22,72,104,60,237,54,104,72,31,20,134,153,79,34,190,227,226,63,164,206,255,82,52,41,117,56,221,29,165,109,105,223,85,162,66,22,248,34,224,14,235,166],[175,235,66,168,166,23,38,226,8,208,123,35,222,105,75,184,32,108,125,89,88,104,75,160,207,56,254,187,131,130,119,59,65,147,56,7,11,241,190,101,21,219,94,90,45,1,154,212],[136,233,210,100,170,131,115,241,22,25,65,63,9,233,250,80,222,213,236,77,45,12,120,86,66,60,213,6,198,24,5,253,60,180,78,113,230,45,241,110,148,119,80,4,245,179,51,22],[147,48,184,7,21,120,207,47,232,180,134,225,162,153,233,29,9,97,46,69,233,114,2,190,127,145,190,187,173,241,121,161,143,230,190,183,63,140,57,237,124,92,251,129,2,171,124,100],[172,174,167,121,215,224,159,209,46,154,191,234,65,86,158,138,140,42,58,113,153,81,235,15,126,184,37,115,94,105,45,205,125,13,173,217,59,192,88,5,131,123,9,143,176,38,255,56],[176,204,155,144,216,63,255,7,27,10,239,173,171,209,89,32,37,186,188,236,183,30,113,130,121,220,184,231,30,54,172,8,11,198,45,203,174,177,157,48,122,51,93,169,10,188,175,74],[148,3,46,25,197,131,167,142,135,88,227,3,8,137,139,252,39,80,230,234,203,147,180,145,206,137,114,133,44,209,100,21,162,47,140,254,110,81,73,33,249,244,251,183,32,215,87,52],[174,163,137,162,190,95,59,118,149,204,199,51,149,74,70,49,110,110,109,45,253,78,7,70,24,77,101,20,248,137,196,178,224,106,197,155,252,66,44,198,205,194,64,87,12,17,194,66],[128,221,216,40,140,40,181,149,30,98,77,193,156,1,123,17,193,137,197,185,89,111,231,182,148,188,0,194,72,108,197,6,16,29,120,53,0,92,105,76,8,249,111,254,12,49,243,37],[167,68,239,22,45,179,222,188,36,16,174,51,179,67,73,53,132,197,105,46,122,213,130,135,211,150,68,220,205,221,34,95,10,184,65,78,50,153,72,90,65,254,213,32,60,108,18,231],[151,137,232,201,44,83,197,234,141,102,108,199,144,114,213,120,214,16,254,6,242,196,147,30,131,165,180,84,64,121,102,26,194,70,247,172,3,252,103,18,244,243,64,140,109,37,223,214],[151,231,45,63,97,73,26,152,66,162,26,94,61,42,121,130,220,10,167,134,28,3,215,70,112,109,76,11,60,37,21,180,83,120,132,222,30,137,59,181,62,237,187,153,119,112,72,34],[128,158,215,175,62,152,180,138,142,166,22,165,8,134,30,225,85,153,148,82,18,83,141,165,52,73,67,87,77,2,5,153,230,207,74,54,18,58,84,241,170,110,3,105,162,188,47,217],[179,137,17,248,252,100,190,100,159,1,214,146,26,206,113,118,209,16,60,172,2,167,191,192,128,41,62,253,231,23,118,147,53,166,107,2,91,197,205,3,11,202,248,240,78,88,125,33],[183,130,20,180,84,244,151,103,68,240,104,157,102,32,103,187,20,95,123,127,64,251,109,148,38,176,45,167,56,103,25,165,166,53,162,246,60,235,36,234,28,179,185,143,63,48,25,115],[171,114,234,95,127,58,64,112,247,200,105,204,218,112,244,59,61,31,135,93,97,180,181,160,116,187,132,83,64,77,99,11,106,95,22,78,148,33,70,2,244,180,202,82,240,241,13,246],[151,31,165,206,130,81,25,85,12,106,101,189,151,79,230,237,168,243,130,33,239,220,92,88,124,158,136,87,72,133,193,35,48,33,104,103,14,31,211,165,4,74,171,41,228,183,209,57],[134,249,154,205,44,50,148,129,20,27,89,31,20,136,115,223,255,219,238,127,66,201,209,218,217,186,17,184,185,248,243,239,40,4,23,209,186,61,56,55,60,119,91,181,126,204,213,81],[134,236,122,44,161,22,118,184,180,137,110,102,55,133,180,23,41,223,17,105,17,37,49,209,254,235,53,119,230,184,1,36,252,242,10,53,133,184,59,120,110,179,157,138,153,221,134,147],[183,11,68,202,133,105,65,25,141,236,63,189,61,36,155,102,126,109,111,163,162,87,248,166,121,67,107,33,243,121,169,226,255,44,97,252,195,114,203,168,131,53,75,179,10,162,224,151],[144,253,177,229,43,240,109,42,30,167,188,117,222,110,84,14,118,216,148,148,27,143,103,172,152,65,203,40,111,209,111,2,104,12,210,1,220,21,137,102,57,163,33,181,196,179,226,161],[174,61,8,50,216,15,118,61,124,25,142,71,177,167,88,94,49,17,218,5,56,164,18,80,97,98,67,22,3,247,86,63,9,223,93,152,130,19,22,185,176,242,156,233,123,153,135,139],[153,232,234,31,106,201,234,214,112,90,67,195,119,7,44,241,183,81,145,105,81,246,180,71,208,40,132,164,173,83,203,93,62,8,178,109,84,142,219,169,222,228,40,38,10,46,157,233],[131,133,244,116,77,180,226,96,231,123,34,253,250,48,162,163,77,55,39,133,203,132,147,165,76,167,13,83,124,4,12,9,51,245,254,108,222,50,21,240,17,227,132,230,100,222,52,34],[167,134,117,211,46,127,240,209,170,198,184,115,193,134,100,114,250,125,90,232,158,153,56,13,91,18,32,192,184,109,178,246,138,215,190,235,179,111,140,254,169,106,86,42,65,125,49,90],[152,232,178,183,233,95,110,55,59,1,154,210,222,40,175,31,66,26,173,232,67,201,188,166,230,241,208,208,184,64,195,108,196,35,46,102,43,141,135,178,26,31,20,12,201,44,195,191],[130,135,26,67,184,230,32,55,108,86,240,131,35,5,125,18,96,242,237,52,232,116,139,48,129,93,128,161,138,51,107,220,164,79,120,194,190,58,184,91,182,196,89,115,0,53,234,134],[148,145,84,49,62,180,98,154,16,144,234,34,162,213,74,219,114,126,218,247,75,236,98,122,218,156,160,44,23,1,176,130,90,22,90,11,71,251,100,190,156,16,40,14,39,164,125,142],[161,183,145,2,146,122,161,3,50,16,134,103,86,114,150,254,0,223,70,225,231,87,210,12,160,17,35,8,31,234,91,35,226,114,147,72,24,85,51,105,227,195,204,173,208,22,143,128],[142,226,228,161,47,59,181,194,75,252,182,112,8,217,186,147,193,174,33,217,88,92,176,173,254,118,10,54,83,144,170,24,99,62,189,192,50,150,108,49,32,24,198,51,165,168,118,249],[178,100,149,34,98,180,118,234,115,103,160,238,13,139,49,17,245,34,14,165,183,92,28,34,205,218,212,99,151,174,114,129,45,66,107,56,125,130,249,174,32,13,39,158,166,97,185,193],[162,42,142,50,22,239,234,54,131,203,28,126,149,26,106,247,35,17,41,96,98,169,239,66,148,15,30,60,232,39,77,14,220,108,203,145,32,58,89,47,187,243,120,229,128,100,190,177],[176,68,51,176,135,178,93,85,48,128,230,72,177,100,101,12,192,107,114,229,237,11,137,56,71,229,251,203,80,38,135,127,254,241,124,130,49,242,34,247,134,144,94,60,101,240,154,234],[162,145,41,148,166,147,190,5,100,41,202,97,86,143,200,184,82,32,56,10,244,86,62,107,172,2,106,46,90,3,73,71,106,181,35,118,69,27,242,151,155,152,143,230,238,29,154,17],[179,235,124,36,120,49,212,135,123,159,204,123,4,26,166,15,227,115,216,40,172,124,81,120,32,232,206,153,166,200,213,10,25,92,225,243,232,102,156,200,147,97,38,180,108,83,3,19],[168,158,178,246,243,102,79,19,21,246,126,159,235,212,147,203,231,244,155,144,175,71,23,37,63,31,239,156,238,49,26,189,74,18,164,218,234,36,155,199,48,61,146,155,230,195,170,250],[168,43,127,238,81,10,186,192,237,195,164,179,157,3,49,110,125,91,86,38,19,170,243,96,137,225,87,58,234,231,158,159,139,69,223,31,204,215,104,138,238,220,88,6,49,169,221,76],[162,93,142,100,103,103,97,1,4,34,231,210,67,13,129,133,241,236,68,138,40,212,121,7,251,74,20,239,40,165,106,193,90,182,121,44,129,206,29,188,242,47,44,126,152,203,208,58],[183,64,231,140,179,78,211,99,33,41,56,46,150,68,49,178,164,45,101,35,79,129,233,32,91,19,88,195,8,130,215,183,74,28,252,231,88,210,233,213,125,249,230,32,221,251,36,26],[141,133,22,59,239,202,34,14,204,203,140,248,201,199,2,210,148,197,134,143,210,21,172,177,199,154,187,60,85,124,118,237,89,36,107,68,188,203,219,198,195,230,7,251,129,133,124,56],[168,51,18,81,114,75,43,209,104,1,84,33,94,108,25,116,94,110,151,96,176,190,216,151,170,1,31,200,226,189,59,73,157,106,116,169,71,72,217,24,217,190,76,35,104,74,253,96],[152,216,50,60,121,66,211,174,208,134,25,242,252,129,180,157,107,194,74,79,201,15,157,234,176,57,96,93,156,116,212,17,199,72,65,241,119,128,132,61,178,55,254,197,151,106,130,3],[161,127,237,185,198,201,144,231,124,150,200,54,237,118,192,9,163,184,24,156,38,205,171,46,153,224,252,61,204,229,154,99,153,163,181,106,105,42,162,150,120,161,237,146,23,5,74,10],[131,74,114,186,140,185,106,110,158,8,250,234,63,174,240,84,128,25,60,158,20,7,179,17,91,145,185,208,165,178,191,165,235,113,109,112,119,217,47,129,157,119,98,151,73,220,243,141],[153,56,110,188,198,16,113,235,177,110,54,68,128,199,177,104,21,164,75,228,242,184,98,162,17,181,32,190,88,150,94,143,164,151,187,197,150,142,127,166,161,243,126,10,21,92,212,206],[129,7,5,75,81,212,220,2,119,186,126,39,226,45,51,140,64,193,251,13,247,173,210,77,26,27,216,67,93,101,29,145,27,48,96,29,107,8,143,154,242,25,92,107,178,247,75,117],[141,200,18,231,170,73,54,64,220,122,128,250,139,186,126,99,94,30,210,206,105,147,202,40,82,145,69,58,26,29,232,208,191,93,97,99,102,125,147,127,43,59,218,92,175,102,134,91],[183,152,210,229,194,59,102,246,62,150,55,37,145,221,142,103,244,106,218,197,58,119,183,133,99,168,136,22,161,20,145,82,90,132,197,30,203,154,55,240,105,244,6,202,147,28,35,12],[174,153,231,33,46,229,10,138,122,232,76,93,75,105,196,27,64,228,224,125,101,237,246,45,237,156,251,92,43,194,48,65,50,176,197,43,249,167,27,140,127,204,222,212,134,9,15,229],[129,211,145,194,199,207,114,104,247,174,6,126,140,15,22,60,68,149,153,164,202,130,71,71,74,24,203,116,39,156,231,131,230,73,218,194,56,189,248,11,215,110,74,39,159,30,165,158],[130,248,148,72,179,138,206,173,248,251,132,24,202,250,51,50,173,162,117,175,35,173,146,0,14,7,91,147,7,233,14,121,76,157,27,17,227,64,214,178,222,217,92,10,152,119,94,108],[134,244,142,237,254,43,102,210,164,196,135,28,105,52,113,245,44,251,139,101,109,23,104,142,154,54,209,197,117,84,92,92,129,242,93,205,79,1,84,155,128,87,94,201,41,238,183,114],[183,18,38,138,247,102,105,151,221,124,156,102,142,24,142,189,32,133,150,95,101,41,113,95,46,19,141,79,65,185,78,126,107,146,61,137,220,10,12,190,6,7,117,216,30,139,76,189],[144,8,11,124,89,148,82,138,82,53,184,226,116,74,38,102,44,139,245,146,179,46,180,186,168,68,166,15,37,45,148,139,5,149,220,99,113,127,235,13,7,109,213,187,98,214,42,61],[145,51,216,14,136,57,81,117,22,255,89,160,44,231,109,250,128,191,155,66,21,50,104,224,66,228,12,180,69,22,157,210,159,112,98,24,89,113,41,179,3,78,96,93,153,195,34,88],[164,198,132,209,49,158,45,128,77,140,75,192,154,124,251,252,187,206,58,73,245,226,165,16,224,173,30,151,233,194,20,97,146,248,80,104,173,115,16,1,35,160,182,248,132,105,90,181],[168,220,88,231,244,162,64,6,253,23,48,130,210,142,192,125,13,115,125,167,87,186,41,223,210,205,181,11,167,27,29,244,140,3,106,101,25,8,247,240,202,177,193,46,249,197,198,189],[132,104,52,237,49,57,140,181,252,32,119,81,252,196,86,209,155,16,108,203,65,235,94,147,230,201,0,210,44,226,140,85,198,225,196,1,70,146,119,218,222,207,146,152,139,38,111,86],[140,140,75,25,247,175,188,95,177,56,248,108,70,91,41,196,238,232,135,196,85,82,111,131,125,181,163,116,163,98,67,194,221,114,115,161,142,199,217,245,157,53,98,16,116,186,165,140],[137,185,129,204,251,252,190,223,221,22,249,55,90,14,232,80,221,124,79,4,232,211,218,35,128,7,242,144,211,195,75,90,55,174,202,23,148,96,93,96,185,89,220,228,33,177,206,248],[176,86,63,58,100,224,149,128,172,75,33,6,74,56,140,189,141,123,52,21,129,41,36,186,124,87,254,245,156,59,248,148,166,88,26,152,20,115,173,29,222,80,15,77,106,29,50,228],[130,107,237,248,121,73,199,42,127,154,242,81,99,159,105,184,100,41,86,2,48,158,253,148,132,46,87,47,185,95,205,205,200,249,163,0,30,88,33,123,116,178,241,119,22,124,23,59],[167,240,87,149,141,174,113,208,227,4,202,157,198,210,79,115,245,134,104,196,115,86,45,146,187,102,96,145,239,69,167,70,76,103,99,34,178,101,136,248,236,226,250,120,176,110,159,126],[139,150,188,48,98,125,171,180,241,126,94,179,135,225,53,184,181,50,16,95,160,152,38,217,224,51,164,234,233,213,172,142,148,237,12,144,33,132,60,148,211,221,93,52,197,141,140,118],[145,79,236,144,242,168,123,130,135,7,197,19,143,236,151,197,43,164,228,55,115,150,61,192,228,87,4,129,171,103,69,66,156,115,238,196,153,76,211,184,203,82,109,28,228,116,29,77],[161,252,72,13,235,4,112,17,244,218,247,66,155,55,174,147,19,74,87,179,153,132,35,48,215,79,247,200,74,214,57,1,135,49,29,247,86,22,241,79,48,85,249,229,179,88,8,13],[151,226,241,47,238,174,31,50,77,204,70,162,48,84,137,21,191,236,197,251,41,228,176,247,220,105,162,24,134,50,178,126,181,187,254,150,89,95,90,193,66,223,114,253,186,240,200,99],[168,222,240,195,162,120,7,204,230,36,21,94,238,242,45,249,52,118,7,162,156,229,56,121,244,104,220,89,190,102,114,104,116,7,162,218,40,254,34,144,244,98,201,144,159,84,55,233],[139,238,29,128,64,41,251,64,79,1,48,35,202,249,79,182,204,89,180,135,20,96,114,232,194,39,31,169,241,244,184,233,33,137,186,155,184,231,123,160,247,112,131,238,121,54,235,145],[143,144,65,111,147,141,228,127,40,4,236,179,86,196,145,38,135,38,162,212,132,20,141,20,101,1,245,218,117,184,61,106,15,160,102,102,167,211,99,132,90,74,28,95,50,196,191,110],[179,174,1,247,207,239,217,0,35,46,68,243,173,54,104,83,66,114,209,254,209,174,126,246,231,172,246,8,150,83,144,9,241,10,236,159,36,96,214,42,216,234,220,252,95,172,86,118],[149,165,147,35,247,250,58,195,6,44,56,108,8,21,232,69,23,70,174,166,28,173,95,100,41,113,80,221,29,189,172,174,59,190,194,25,232,199,62,117,57,94,21,194,221,114,213,42],[138,167,174,154,128,164,73,164,82,150,62,65,226,3,133,8,196,60,191,95,163,102,124,201,192,134,118,198,10,1,111,158,64,53,158,10,104,110,28,77,141,147,138,214,72,142,13,140],[133,83,40,109,251,206,232,155,129,252,34,72,238,141,110,105,90,162,211,197,243,129,114,74,18,101,159,159,80,59,122,171,86,9,182,144,206,1,130,67,142,176,140,147,189,188,30,201],[171,91,25,194,178,219,226,64,155,172,60,10,103,81,89,223,129,17,60,138,239,59,77,231,106,104,47,222,36,106,113,29,222,163,67,248,26,67,160,225,243,248,206,69,78,125,159,175],[172,136,216,134,189,222,166,216,73,142,154,90,231,95,31,221,35,226,157,153,240,157,177,126,255,60,219,215,207,58,115,121,133,112,2,68,112,169,134,20,174,111,227,147,252,163,134,229],[129,110,165,62,117,39,59,164,229,251,240,147,144,235,120,150,5,160,173,239,235,190,234,5,19,49,50,129,60,11,150,239,140,177,227,160,19,246,82,177,236,25,160,98,115,247,10,179],[153,72,63,116,87,23,24,202,252,58,66,42,238,110,235,174,11,110,18,154,234,40,152,196,94,236,251,223,79,120,171,44,167,104,253,147,13,87,74,81,164,28,115,116,15,113,214,130],[180,145,155,75,153,21,154,86,103,37,153,215,120,11,127,220,255,149,17,5,11,202,195,138,187,147,214,173,154,197,42,151,82,112,16,54,174,24,98,38,225,241,55,245,110,130,164,223],[137,215,100,206,190,217,216,187,33,85,171,190,67,185,74,105,228,74,30,192,227,141,197,133,11,46,224,143,201,220,187,255,1,226,230,137,93,30,171,76,226,105,37,127,138,203,0,148],[128,89,162,180,157,102,20,47,90,144,51,194,97,240,4,2,29,138,157,46,193,155,174,11,82,250,161,160,13,4,111,35,199,254,11,157,153,139,203,102,124,11,12,110,30,129,204,201],[164,250,207,48,27,63,159,62,48,2,208,98,32,100,31,101,176,223,191,119,182,210,64,122,35,38,95,39,55,136,241,127,110,19,65,168,98,162,165,73,20,174,211,193,15,33,96,208],[128,185,157,103,228,28,240,24,84,189,199,23,93,95,45,233,118,151,182,203,210,96,145,240,36,171,250,220,97,115,116,122,153,68,161,242,233,2,230,119,249,86,166,71,29,36,136,233],[133,237,97,165,189,80,159,169,6,255,149,102,7,78,10,211,114,133,58,115,66,18,228,109,190,22,161,141,115,168,201,155,204,28,37,131,14,212,1,67,124,128,204,242,182,17,152,43],[161,102,63,157,212,108,131,68,214,98,87,180,20,159,165,199,228,97,5,1,173,82,11,51,125,161,80,45,236,156,97,56,163,205,163,184,36,7,106,249,83,11,188,47,4,225,76,127],[176,188,225,230,111,233,188,219,226,203,128,46,180,150,126,15,94,243,79,145,133,177,195,68,56,194,160,84,124,234,143,57,26,206,175,236,249,8,24,139,100,186,55,12,114,235,188,189],[135,90,45,151,195,73,166,219,39,190,161,222,116,141,127,63,45,202,141,65,206,178,156,4,173,169,222,2,179,15,99,212,30,27,176,98,75,215,238,35,57,140,211,1,185,133,185,157],[167,124,188,113,39,7,246,124,199,63,65,226,71,18,83,214,9,156,218,178,130,61,174,200,42,206,237,28,19,185,235,47,103,254,8,123,227,137,26,114,125,22,50,34,134,93,54,107],[137,158,121,20,109,38,34,5,93,173,164,126,196,229,129,36,14,176,119,107,215,196,182,13,233,79,191,198,207,155,150,192,224,102,255,162,50,122,223,138,157,200,30,169,129,14,23,115],[163,207,114,232,198,220,110,222,13,118,193,1,235,63,138,245,245,46,37,141,69,15,13,104,32,107,252,137,63,136,85,192,153,172,185,197,26,154,78,219,178,199,20,30,17,254,243,126],[138,249,140,16,238,142,133,61,133,188,33,103,99,135,182,212,0,180,187,131,83,94,110,234,139,5,140,180,244,243,229,173,23,32,192,1,151,247,43,79,81,167,25,98,124,51,165,36],[169,186,3,195,165,92,124,21,39,90,168,205,230,96,183,206,98,62,15,119,129,94,83,185,237,221,242,113,215,141,168,18,211,93,24,216,63,214,244,117,232,38,234,40,106,248,118,110],[174,148,177,20,20,126,158,76,242,143,7,209,30,38,217,249,23,52,4,119,89,179,16,125,152,13,135,1,34,49,46,28,161,67,105,222,196,207,75,49,204,65,63,29,105,10,250,204],[174,80,234,44,79,13,202,207,61,196,10,14,54,105,156,171,25,181,251,38,162,66,166,128,31,139,240,249,242,41,67,32,166,204,59,159,95,141,216,107,73,48,89,18,230,135,158,175],[171,78,70,109,26,11,108,251,72,187,243,5,211,117,76,170,188,204,55,134,151,95,60,142,85,37,238,93,198,167,211,201,34,188,53,42,235,31,134,96,38,78,156,161,76,244,110,63],[133,102,126,35,115,178,16,166,116,248,82,212,64,79,116,217,93,67,254,233,31,200,235,166,243,41,69,195,138,193,26,130,221,181,31,73,195,216,93,27,220,118,120,183,29,14,150,50],[170,168,175,104,75,98,77,253,36,164,182,143,221,10,109,160,245,146,27,247,86,246,31,167,216,24,116,243,120,22,200,207,8,204,20,54,99,198,225,157,251,171,44,82,36,7,154,60],[161,231,139,225,245,182,21,2,107,96,135,243,187,129,10,176,87,160,38,85,219,221,34,63,22,110,144,117,150,107,137,39,62,128,38,231,100,116,227,15,251,102,64,123,170,198,167,161],[136,252,100,130,94,231,160,239,111,142,146,46,176,170,104,254,243,127,244,127,250,222,138,82,5,149,189,136,18,149,203,95,91,144,78,253,246,198,126,148,226,209,245,197,83,231,176,49],[141,149,127,81,199,224,32,108,210,228,3,245,230,6,216,31,89,149,165,118,220,194,53,192,217,148,160,135,149,60,184,81,98,79,152,181,252,88,43,108,243,249,65,221,60,76,86,81],[130,190,76,99,137,115,8,129,26,174,37,211,252,191,187,91,46,45,225,161,115,251,17,86,6,81,129,202,67,255,59,93,87,81,48,25,148,212,70,64,159,31,207,10,116,84,180,102],[144,164,202,56,61,56,138,237,100,85,86,45,49,99,142,128,195,232,24,206,231,38,165,10,226,105,117,185,54,78,1,248,169,129,178,210,13,123,80,1,119,100,197,26,239,158,206,196],[185,106,100,103,8,184,192,248,100,109,141,154,158,221,118,8,123,128,140,63,49,124,202,80,201,94,177,210,213,212,185,203,109,223,95,251,6,233,89,58,88,253,116,217,151,202,41,236],[151,190,251,196,185,227,118,124,214,55,150,225,22,110,230,107,180,157,118,42,157,41,144,255,75,98,81,5,81,62,36,83,33,55,69,95,32,6,102,81,18,147,66,25,91,39,105,62],[173,229,85,33,203,206,141,166,236,109,253,149,151,37,199,8,117,135,114,216,196,53,246,9,156,3,218,66,254,105,80,165,46,151,48,218,59,236,42,204,39,142,135,163,192,185,178,209],[164,217,3,169,29,42,200,149,191,58,46,227,89,157,66,153,205,144,124,255,92,93,32,133,244,63,119,109,241,251,144,234,111,74,141,35,104,130,249,196,110,89,183,136,65,211,249,197],[131,71,132,74,249,114,47,79,245,47,59,35,202,238,188,145,126,51,117,107,12,246,75,77,115,95,233,20,60,127,36,81,96,88,76,186,125,53,112,68,194,111,116,93,75,207,141,215],[167,59,139,215,229,159,112,46,28,52,82,17,129,76,61,193,134,172,0,238,30,23,169,238,123,171,221,242,143,93,154,83,240,212,45,10,77,62,235,84,201,155,41,73,127,201,217,48],[129,126,176,199,202,1,16,138,133,208,100,45,97,161,179,165,56,164,96,129,120,109,17,172,195,11,30,126,73,81,193,20,38,158,123,175,65,119,183,21,120,39,176,154,225,159,197,84],[165,26,148,216,75,199,194,102,46,32,78,91,60,232,132,78,141,158,131,249,155,99,0,28,154,225,6,9,221,35,93,137,157,222,123,140,97,90,200,158,142,102,114,199,49,143,253,75],[181,0,44,171,180,248,247,193,81,217,240,197,198,30,64,166,200,60,24,189,194,179,92,57,180,94,76,28,173,52,13,6,117,47,134,28,106,13,75,76,105,27,58,223,89,211,14,249],[138,113,180,32,165,216,138,254,168,89,123,87,86,29,184,69,91,252,198,144,1,193,192,50,2,16,97,201,131,226,199,192,48,223,175,149,92,88,209,156,26,160,173,155,181,198,173,156],[151,125,49,75,104,166,34,142,61,12,214,119,131,7,143,93,37,12,77,72,169,171,233,4,156,25,20,107,180,12,117,96,208,24,132,26,212,111,75,160,9,175,224,247,240,159,246,132],[142,178,229,180,185,160,104,174,182,25,245,27,201,241,237,98,145,92,72,248,193,225,118,137,107,141,222,104,107,2,33,207,51,11,137,58,87,85,238,31,24,127,112,181,178,38,200,50],[138,223,21,190,253,116,178,160,250,247,7,109,3,69,220,204,150,123,47,165,171,60,58,5,154,139,54,223,109,165,20,241,224,26,135,87,235,1,7,198,21,172,23,40,221,126,43,33],[136,165,109,124,188,144,178,68,117,61,218,18,149,191,144,109,174,117,95,227,207,103,190,30,172,83,65,172,111,3,226,61,138,57,157,38,192,200,75,216,175,58,138,102,139,81,120,45],[136,209,61,204,10,198,249,153,224,204,26,139,134,114,95,118,182,174,170,170,104,29,196,236,106,17,118,48,118,179,7,231,26,78,65,248,12,166,237,229,13,217,191,198,229,55,5,145],[176,209,208,114,155,74,194,214,254,134,213,31,252,50,118,254,122,183,253,174,25,68,171,212,132,131,34,163,152,206,230,25,26,241,36,228,174,249,210,221,82,153,148,221,161,177,5,13],[179,38,162,96,219,49,167,135,177,211,6,59,75,231,5,112,100,59,115,247,150,153,64,150,213,113,87,240,90,212,196,31,70,190,220,167,189,246,250,193,214,238,233,129,124,243,35,154],[177,132,123,101,222,254,36,151,78,140,51,48,153,13,61,161,228,118,235,78,233,28,97,104,155,202,153,34,243,187,2,192,12,130,253,251,32,243,81,142,220,83,191,174,127,201,83,79],[177,78,68,173,84,123,252,85,255,168,143,4,253,93,22,37,53,238,135,52,36,196,248,158,180,128,163,253,187,182,195,138,120,237,153,59,27,21,73,61,35,143,98,69,100,212,232,52],[171,72,179,194,172,171,26,17,121,15,141,45,213,185,152,244,206,231,43,160,223,94,118,172,186,159,109,210,158,234,238,181,57,167,106,15,158,255,109,94,44,21,27,124,20,155,104,5],[171,195,190,57,164,22,86,7,45,32,242,75,5,56,121,101,98,100,127,187,11,86,37,56,107,153,79,63,137,124,15,27,71,107,72,21,75,157,70,109,9,57,247,69,28,138,82,18],[183,183,6,57,64,115,107,190,207,83,54,25,223,216,53,234,69,146,19,247,14,249,180,64,50,117,70,253,64,44,131,149,91,214,249,200,186,18,212,249,254,41,59,194,182,87,98,61],[175,81,69,197,21,107,134,109,246,221,45,143,184,206,197,132,118,18,62,202,129,200,235,113,169,203,84,213,209,184,3,102,107,104,189,180,14,167,135,218,37,34,137,147,185,100,16,135],[151,62,70,240,171,204,48,242,225,7,165,127,77,190,32,38,155,56,211,215,2,65,201,94,14,195,0,195,37,78,225,62,178,94,195,109,160,101,242,222,162,4,153,83,101,141,198,244],[164,201,250,141,49,60,171,245,26,73,46,78,218,174,205,131,100,252,165,188,225,83,135,247,125,97,81,127,100,102,221,231,159,68,143,148,158,124,163,196,18,217,215,223,225,231,12,226],[172,108,193,194,121,156,27,238,219,116,2,202,154,199,33,223,196,101,99,223,154,174,55,39,220,237,98,168,40,105,140,152,6,183,27,152,76,70,35,22,103,90,38,120,133,102,1,27],[140,80,107,140,42,32,62,224,237,154,122,70,202,125,82,154,156,227,58,149,5,103,2,102,22,153,59,56,144,62,16,29,93,100,174,199,108,138,53,163,107,1,56,235,135,235,233,223],[169,163,218,189,133,97,66,184,225,214,43,202,99,239,168,31,126,197,133,84,9,251,217,56,63,130,146,226,180,100,21,167,250,201,65,164,177,25,153,220,73,40,183,148,179,20,49,126],[142,46,117,95,254,23,148,107,114,209,114,247,23,145,39,100,179,32,81,20,206,35,10,111,146,211,63,231,175,51,122,106,26,73,196,94,29,43,19,125,227,199,224,251,157,14,14,202],[143,216,178,205,45,78,184,212,25,111,61,127,162,89,234,196,106,116,102,133,200,246,206,77,191,177,81,105,23,31,240,167,249,201,148,94,219,104,37,233,19,20,247,201,186,27,177,68],[136,98,217,132,113,193,121,176,220,153,200,167,52,190,101,25,175,210,90,148,210,223,35,102,237,139,17,54,29,32,92,2,198,246,80,231,115,203,185,60,14,176,207,228,141,162,57,35],[172,71,228,159,165,21,146,86,218,183,115,184,15,225,70,22,148,166,13,75,149,215,251,49,39,253,164,131,93,56,50,28,161,82,165,92,152,192,139,173,158,246,222,164,18,164,7,200],[150,141,54,235,191,233,229,33,95,103,168,246,101,165,229,155,49,184,141,142,185,147,210,22,203,2,77,225,150,95,124,105,44,239,13,173,28,220,27,240,3,23,215,176,33,97,32,158],[133,212,161,78,4,131,184,214,129,216,145,73,143,241,53,6,78,234,8,49,69,203,217,159,247,138,237,113,186,250,76,211,197,6,150,159,54,152,80,226,77,229,205,222,67,230,160,186],[171,85,28,67,143,12,193,63,252,207,223,136,165,146,119,151,39,224,112,105,8,85,144,87,94,250,136,146,226,154,31,188,107,214,138,16,159,242,8,46,83,164,20,253,115,160,108,242],[168,41,196,121,0,165,223,227,182,228,122,174,137,229,248,204,133,239,139,211,18,78,229,99,91,227,196,231,231,74,19,226,103,74,109,192,20,133,79,88,178,185,136,46,111,91,240,157],[172,178,36,201,186,86,195,198,39,254,244,56,142,102,236,244,179,120,150,32,162,164,97,17,205,196,95,139,161,246,104,153,87,229,42,173,129,49,155,66,52,130,84,110,27,124,128,21],[145,250,184,245,195,22,85,115,69,160,183,35,140,37,50,184,226,65,240,80,224,134,168,204,159,71,246,63,116,79,137,40,43,66,219,253,38,248,164,10,226,156,55,181,49,58,139,109],[131,162,246,74,240,54,162,213,106,90,169,120,2,112,66,84,251,29,118,240,196,34,28,66,130,58,215,28,252,218,158,176,41,235,46,149,154,162,107,34,1,168,213,122,156,90,43,157],[151,201,70,255,131,9,40,165,222,146,143,243,68,225,216,181,219,21,2,48,76,169,51,14,104,180,60,71,59,180,41,154,126,181,64,99,76,104,171,64,63,119,120,247,175,192,107,206],[180,140,103,126,61,115,238,121,235,108,44,165,188,64,75,7,97,126,149,195,218,155,121,201,195,241,67,78,229,14,162,28,76,155,128,117,33,229,209,97,121,230,107,47,33,255,3,221],[143,107,133,186,244,237,171,193,87,213,195,28,215,154,179,39,27,21,43,233,155,101,49,39,70,39,87,236,109,63,95,146,212,196,40,167,58,104,170,207,99,253,104,162,230,149,71,48],[182,166,64,35,58,84,43,211,173,174,212,210,188,217,194,193,159,149,173,123,125,128,155,195,27,40,254,202,7,163,187,2,206,113,77,191,22,84,98,114,140,215,90,18,99,145,19,65],[168,128,184,4,221,206,21,75,11,92,91,219,139,138,111,116,21,141,189,143,122,224,22,232,234,87,128,162,178,234,99,143,177,145,185,160,20,26,37,140,147,140,8,217,249,39,180,100],[150,147,59,116,100,236,110,84,118,83,20,182,18,237,82,43,226,111,128,189,5,166,92,179,238,43,236,36,171,247,43,8,121,230,119,104,186,59,73,126,224,197,73,210,6,169,51,31],[165,177,232,232,99,176,166,239,191,244,117,124,219,9,194,170,37,219,44,0,220,130,208,117,219,155,186,59,5,54,170,235,0,8,99,108,142,118,238,124,80,20,163,166,226,83,98,183],[168,50,154,225,254,99,130,34,42,235,234,129,205,149,4,130,98,34,8,22,190,126,186,92,124,124,110,151,27,86,58,251,106,188,157,226,124,111,149,67,150,63,163,229,0,145,150,181],[163,45,17,14,237,195,212,236,162,226,49,77,36,233,82,32,96,193,113,220,86,12,63,125,91,227,6,226,94,42,131,24,135,132,109,13,32,126,109,34,162,143,19,4,237,212,130,129],[151,137,75,253,228,167,134,100,43,13,21,134,200,173,139,231,34,149,40,175,159,220,203,47,18,6,204,104,139,183,230,113,136,107,184,7,170,1,198,230,97,221,174,220,114,171,38,109],[150,206,144,24,50,243,126,250,42,173,247,143,183,171,96,130,66,145,27,74,208,99,168,223,122,114,116,82,21,103,99,112,188,71,79,118,203,68,212,10,208,84,175,136,3,222,197,6],[168,34,159,60,250,127,161,18,148,143,29,31,136,191,140,12,242,116,112,237,115,181,148,179,82,92,108,7,40,75,119,94,21,66,111,165,32,138,243,181,249,169,185,2,238,170,195,202],[181,48,72,27,216,113,22,66,189,19,48,107,238,193,35,243,171,48,50,34,139,42,54,216,212,128,8,113,255,105,47,32,179,240,194,56,43,56,2,16,34,34,228,200,142,72,140,173],[166,144,181,167,214,212,138,175,154,100,171,175,4,113,118,25,171,191,174,220,184,109,23,11,210,166,124,145,86,176,109,113,136,143,96,114,247,60,72,137,80,151,77,134,221,76,156,194],[168,241,69,185,44,199,255,179,201,201,156,48,223,20,77,220,77,28,107,37,78,25,219,108,94,131,205,34,37,1,232,18,14,70,171,56,139,82,201,84,31,42,149,57,53,177,67,141],[184,42,180,203,144,188,253,149,153,134,211,116,3,118,103,252,146,67,204,73,82,231,128,131,174,145,4,100,250,220,92,243,204,14,128,93,51,5,172,222,75,143,56,60,206,77,147,32],[173,26,52,200,9,31,56,67,53,29,153,10,249,27,182,111,94,93,229,187,50,115,86,132,244,6,130,168,37,156,41,51,161,215,43,38,131,125,180,254,97,53,71,114,218,49,204,126],[135,140,3,158,239,32,141,80,137,1,120,219,182,107,77,65,90,39,220,159,89,1,167,241,124,82,26,75,40,171,240,136,201,145,86,32,250,203,45,87,101,249,56,8,121,218,234,5],[138,208,161,163,108,179,141,26,18,163,30,121,217,252,128,195,27,87,30,13,85,34,128,103,12,140,60,157,5,83,219,30,83,174,21,174,188,180,211,39,192,144,51,66,146,233,9,136],[138,229,143,98,130,202,249,108,107,103,247,224,245,57,110,222,196,249,79,178,77,162,173,141,16,208,81,227,173,101,232,23,69,238,133,93,208,171,219,217,145,169,243,172,163,20,241,119],[182,249,208,190,95,174,237,17,55,90,69,125,158,149,165,228,92,57,32,140,66,219,125,77,28,55,176,209,176,51,250,183,53,158,103,73,106,129,100,32,192,36,100,255,28,100,40,151],[183,226,94,97,9,254,19,208,154,111,225,103,15,138,64,224,120,64,46,248,119,24,190,86,7,218,14,129,191,84,161,138,230,104,186,124,181,139,186,126,213,28,45,206,13,102,49,220],[134,114,149,180,47,129,6,203,161,101,112,49,4,83,30,165,188,10,230,20,52,201,187,96,108,84,125,20,245,36,173,104,7,93,140,93,246,106,9,197,112,90,149,109,197,106,10,132],[168,115,246,113,149,115,128,176,167,9,131,229,121,18,178,123,132,105,174,239,110,13,73,210,206,5,16,139,157,108,41,217,157,139,97,89,114,208,226,199,159,220,132,215,108,18,247,2],[149,47,60,209,46,18,29,193,166,115,82,134,42,179,111,111,135,80,27,37,239,50,52,83,250,140,126,20,193,211,124,88,142,147,127,232,130,135,160,23,160,175,156,18,9,110,29,204],[174,32,63,225,23,170,5,97,95,63,49,133,65,11,157,26,176,25,226,128,73,171,27,80,61,216,237,170,92,246,21,63,0,45,51,181,123,108,255,204,238,27,9,96,13,150,108,7],[168,123,206,121,84,45,195,113,227,14,151,77,165,174,164,30,43,200,173,30,2,174,65,5,122,95,204,117,240,58,108,210,214,195,185,110,245,130,12,14,18,14,245,29,103,218,177,58],[139,160,66,16,194,233,15,71,8,59,46,149,238,185,132,224,171,94,60,33,218,37,148,64,85,233,58,8,147,72,222,176,240,138,162,210,26,167,139,185,148,129,23,72,119,78,124,113],[166,130,246,57,243,99,200,219,74,94,100,111,200,71,22,113,101,97,202,184,110,116,235,117,198,219,147,85,66,244,4,92,61,177,222,44,109,224,46,106,146,173,36,207,33,20,158,134],[184,59,6,26,142,230,186,154,56,232,38,152,20,64,20,151,35,232,88,44,147,241,130,53,192,80,140,255,210,197,65,112,129,41,162,78,134,211,115,56,229,101,92,122,14,226,67,44],[146,172,109,199,85,44,156,28,217,195,26,222,96,247,146,178,65,68,140,52,212,149,136,216,19,34,224,115,213,215,151,208,237,160,251,113,199,198,99,88,9,148,200,139,90,63,63,150],[175,177,103,236,148,255,188,76,236,210,220,170,86,191,65,29,241,226,239,157,27,109,224,95,251,19,79,69,213,96,76,51,6,201,74,43,36,43,156,205,117,9,220,184,144,9,188,100],[172,247,84,168,195,241,11,71,94,96,43,18,184,214,153,78,205,201,22,17,164,249,1,28,38,82,220,219,98,97,198,4,62,19,130,176,85,84,139,128,25,36,154,233,114,94,78,63],[174,84,161,95,221,205,200,50,224,79,17,89,65,204,4,88,233,39,112,205,65,166,41,201,7,48,61,187,210,220,100,164,209,242,215,172,40,154,50,105,8,244,188,117,205,14,110,33],[170,69,237,211,153,160,252,214,48,178,120,251,200,141,143,254,155,88,46,35,244,111,157,34,185,33,10,137,108,203,66,181,98,70,230,186,253,95,213,187,215,180,122,230,233,232,102,205],[141,95,112,148,151,43,26,24,65,192,8,51,83,208,81,110,182,94,104,250,1,88,123,105,64,172,159,65,22,207,228,182,224,98,130,25,144,54,240,50,77,178,196,238,194,200,102,9],[183,122,8,156,120,46,227,56,31,160,18,180,136,119,164,169,122,43,231,95,30,122,233,54,118,216,178,6,216,125,153,251,63,24,120,185,128,211,193,99,251,92,69,16,215,43,220,7],[148,12,20,78,229,116,96,179,99,174,172,251,29,22,232,227,116,207,56,152,189,24,165,157,132,39,18,138,190,118,7,212,233,95,225,217,75,241,31,198,8,88,73,144,66,139,197,164],[166,17,139,200,5,145,80,44,69,13,137,250,166,202,137,189,231,213,38,4,249,120,255,123,160,179,63,118,35,148,211,62,156,219,100,136,213,232,130,91,211,81,10,121,173,195,108,102],[131,123,148,161,57,22,20,109,37,97,226,85,125,111,21,247,20,30,19,210,90,141,65,65,97,228,166,96,24,173,125,56,212,238,4,146,214,200,115,71,218,214,138,143,117,64,83,160],[129,69,11,165,198,96,207,92,37,122,200,10,85,219,215,126,89,192,106,126,175,169,180,134,127,39,54,240,192,56,182,71,233,220,82,114,201,19,194,248,16,38,143,229,78,48,99,64],[171,19,183,146,232,110,12,254,226,161,16,199,207,72,18,227,69,222,154,236,129,40,209,144,2,232,218,232,126,1,181,231,164,163,53,96,87,237,114,85,231,24,42,182,32,123,69,197],[168,68,138,4,143,122,21,79,230,166,124,47,78,226,19,150,216,99,32,245,113,166,180,91,68,102,202,0,142,71,244,202,149,249,205,93,162,29,201,195,16,131,250,172,203,215,190,247],[149,83,53,243,205,27,164,155,163,170,151,61,22,174,67,230,181,199,99,0,169,104,65,146,77,148,104,87,90,255,202,42,184,254,209,241,179,214,230,79,63,114,29,226,187,8,178,230],[183,21,177,45,182,60,139,120,166,100,199,12,212,116,128,204,161,35,79,120,61,97,183,46,109,78,98,96,107,147,117,16,53,111,138,200,72,194,253,36,25,42,237,67,100,91,246,19],[182,216,252,95,188,190,85,85,135,133,144,240,26,29,61,41,123,19,229,137,8,80,201,156,171,179,182,200,213,196,79,162,206,2,20,237,204,250,181,82,0,60,231,144,26,188,102,126],[153,38,115,205,129,197,197,184,166,156,175,180,27,53,3,136,191,130,124,221,16,231,74,69,4,227,248,141,120,72,56,248,193,90,188,101,57,231,10,208,97,26,139,93,20,244,201,34],[143,25,236,238,239,39,149,60,158,60,106,211,167,208,0,174,205,55,77,167,95,172,255,213,182,40,102,35,196,167,24,103,111,140,242,16,154,198,39,13,42,7,128,174,102,159,56,71],[176,179,211,49,123,225,210,216,168,70,88,111,28,70,40,116,49,79,106,81,233,120,235,230,187,8,184,212,224,145,114,149,100,137,187,22,125,103,0,9,141,244,243,33,137,50,95,75],[180,209,206,87,255,251,189,68,10,138,244,53,203,95,3,102,23,121,16,103,221,177,5,232,99,39,205,5,136,203,39,95,14,111,98,11,242,158,50,136,234,176,132,61,181,110,7,206],[184,178,120,146,117,233,46,21,210,145,60,148,121,83,110,30,193,221,175,250,121,11,60,68,223,116,209,206,17,81,122,46,33,239,74,150,204,203,156,213,46,6,160,253,221,19,230,163],[182,63,202,123,205,127,8,73,106,55,88,85,191,211,14,182,123,85,96,167,210,199,188,247,241,237,119,123,121,122,25,125,76,11,56,72,76,114,168,200,48,92,249,207,44,24,91,219],[135,147,146,137,33,9,60,4,25,233,92,151,22,115,14,180,201,179,103,253,253,99,122,228,94,116,87,208,108,154,136,63,174,221,108,80,45,172,143,36,126,136,69,187,254,12,154,185],[151,24,87,183,21,248,114,165,238,172,60,5,94,135,217,207,46,143,37,53,120,49,73,113,61,112,21,106,91,75,203,168,222,131,5,174,107,200,239,230,120,192,190,179,62,82,10,176],[153,168,254,236,35,229,12,149,13,68,0,198,152,76,215,40,47,151,1,187,163,14,188,6,136,229,85,121,98,90,139,223,252,217,101,215,49,170,183,202,165,90,165,54,253,211,15,161],[148,213,255,90,176,23,238,180,106,53,23,73,237,4,197,181,208,223,136,165,88,122,200,64,121,141,109,251,210,128,115,194,55,54,62,162,200,98,172,64,237,182,252,188,241,215,76,3],[182,28,191,244,145,203,173,238,179,249,107,195,61,69,125,116,89,36,124,10,24,30,170,28,136,250,83,21,224,159,242,6,41,229,209,36,42,228,199,121,0,132,229,18,142,94,210,160],[138,125,197,37,250,39,198,53,246,85,62,49,110,167,111,146,254,122,102,90,52,143,176,198,9,1,204,202,52,96,236,200,197,3,245,24,211,205,88,134,149,124,146,160,156,187,102,193],[169,110,44,9,253,167,79,128,67,168,91,73,215,133,170,224,86,200,182,8,183,13,76,108,193,231,184,245,129,172,47,2,128,76,113,148,71,223,215,43,111,209,137,206,185,28,46,64],[146,28,167,175,28,181,211,170,180,0,223,185,175,210,37,226,16,185,173,60,181,72,4,177,19,85,132,219,144,0,20,100,27,42,118,9,84,190,136,4,138,128,56,39,110,113,115,220],[172,158,158,64,66,248,183,199,15,87,115,195,70,166,233,233,28,151,50,68,130,249,254,170,24,155,191,217,17,229,79,221,125,13,84,95,50,131,68,66,213,11,133,127,204,170,48,56],[164,191,8,13,12,131,218,73,211,85,120,234,245,16,168,146,105,223,179,237,180,237,141,233,252,176,230,170,217,132,57,135,2,183,127,123,205,156,189,238,151,10,0,114,82,129,68,196],[179,143,235,77,191,201,49,46,165,102,187,206,188,228,50,42,35,97,232,27,188,178,101,73,83,67,60,122,115,28,200,128,20,183,224,42,158,17,100,158,250,137,7,30,75,11,239,45],[172,152,74,109,45,171,54,157,133,26,84,202,120,5,253,168,66,83,34,150,12,253,146,13,151,236,227,124,131,94,208,101,25,142,227,145,238,113,236,78,58,218,67,11,61,58,29,186],[132,114,20,114,170,147,190,69,31,223,141,40,186,209,94,55,163,174,229,203,213,150,240,148,239,10,134,51,78,151,191,184,42,115,168,115,158,225,19,28,199,106,70,76,0,73,111,48],[185,121,195,181,201,192,13,75,189,102,84,120,42,82,150,51,227,191,84,238,9,105,8,12,226,225,153,31,152,204,208,136,3,135,171,91,27,202,37,40,197,116,138,191,95,246,130,176],[173,250,150,249,151,48,181,201,88,230,115,112,63,162,187,28,110,203,42,126,240,165,92,34,141,62,231,68,68,35,79,74,3,62,163,122,158,20,230,106,228,173,72,35,71,46,186,212],[173,211,206,45,126,230,34,109,40,172,108,95,5,198,23,67,53,161,213,46,203,141,91,148,36,218,132,71,170,115,24,174,55,211,173,173,4,147,202,179,178,5,14,144,15,105,200,159],[175,75,69,23,87,111,3,236,170,249,204,161,129,190,158,192,232,179,91,44,203,122,85,220,113,49,115,226,91,108,128,205,79,4,234,5,229,209,193,219,68,154,52,173,86,213,141,103],[143,5,71,218,28,68,210,7,140,103,4,169,211,70,236,103,251,124,221,63,1,169,144,170,93,59,79,183,169,39,76,65,230,63,62,114,185,163,107,216,48,11,51,90,172,60,192,243],[179,11,16,244,86,126,36,192,126,139,173,38,50,162,58,13,115,120,19,5,100,158,101,160,123,219,39,38,102,164,78,16,76,202,95,26,236,141,28,62,163,82,124,81,239,87,72,108],[167,160,162,142,3,109,224,116,99,48,81,41,202,202,82,33,31,160,127,81,136,18,55,149,134,204,6,107,168,56,190,212,123,231,195,122,225,234,118,169,180,1,234,251,93,172,189,170],[151,80,48,145,177,197,116,114,14,201,51,43,171,33,38,99,177,248,52,100,250,200,3,177,127,46,79,165,61,239,20,250,90,166,196,177,25,238,86,90,86,71,215,164,238,74,43,189],[149,255,214,114,219,171,130,78,177,82,242,26,246,206,88,223,63,226,70,64,129,127,181,3,27,25,210,3,143,250,166,137,249,132,203,74,64,19,60,217,182,24,21,186,242,181,19,6],[139,47,170,93,254,88,133,100,239,226,81,216,92,71,164,51,243,54,236,211,182,240,31,62,91,23,78,255,185,57,27,63,4,110,155,187,61,227,143,208,199,69,9,198,249,225,121,227],[160,203,217,181,195,247,215,220,224,77,71,35,144,113,120,18,37,176,32,218,31,251,20,160,229,14,147,151,148,184,153,232,96,173,197,217,153,124,233,245,146,57,157,135,248,12,129,250],[137,74,236,179,158,140,160,200,75,243,215,214,134,26,12,190,44,226,164,120,84,138,193,218,11,70,146,201,130,149,24,86,102,151,9,112,76,104,126,109,178,31,52,125,241,108,100,239],[136,16,6,114,197,190,161,93,103,88,231,112,38,168,158,220,254,1,90,84,66,88,140,182,34,149,205,164,15,116,223,159,140,186,12,161,209,235,178,178,12,154,85,159,182,38,211,253],[176,187,126,16,2,90,237,243,102,243,221,232,106,63,88,136,142,71,129,95,87,211,132,80,124,25,3,159,5,109,102,33,87,108,233,223,165,184,194,119,255,51,126,244,65,5,241,206],[137,85,150,175,206,92,182,132,162,109,56,151,143,20,248,224,42,242,89,251,253,60,167,110,118,135,97,215,74,137,134,132,135,157,172,209,137,20,223,179,13,178,183,139,105,166,246,170],[140,63,235,136,60,118,243,82,155,35,19,8,107,17,84,58,66,11,166,246,190,52,94,180,141,101,122,229,104,198,5,0,72,163,158,50,161,164,53,13,32,72,91,194,163,6,44,250],[166,240,214,37,33,182,146,16,4,221,153,56,202,248,9,144,63,97,91,53,17,63,188,29,67,239,247,62,67,128,128,221,106,97,39,110,44,177,103,109,105,65,19,126,107,62,66,83],[139,141,99,127,27,112,228,135,159,34,77,53,119,148,211,84,207,21,29,58,0,20,215,138,118,101,35,109,144,167,154,34,243,22,37,132,112,204,33,140,104,86,157,108,216,52,21,127],[165,8,214,14,29,55,57,243,232,119,93,145,109,0,213,71,181,108,131,178,128,237,115,199,50,198,173,48,245,104,226,96,77,187,11,19,46,144,247,211,105,141,50,216,222,209,0,61],[161,164,154,158,200,246,52,183,184,2,67,81,240,239,128,105,183,177,235,198,184,53,76,168,166,136,210,15,253,27,210,124,1,8,237,156,150,76,200,98,67,108,232,237,152,206,56,39],[169,118,220,195,153,188,153,197,255,11,67,171,76,106,53,105,104,74,96,141,120,123,202,92,169,3,130,173,21,130,251,113,245,69,140,174,155,250,10,218,211,86,102,216,41,189,214,213],[162,12,202,225,251,23,41,58,139,191,64,222,72,80,5,216,49,112,235,245,132,74,70,14,68,96,158,123,185,235,243,208,17,93,165,187,117,88,11,118,221,63,149,29,86,140,0,64],[171,141,74,245,158,150,229,124,140,248,60,224,47,193,104,185,185,99,203,24,124,189,115,201,172,26,99,110,132,151,147,227,226,248,86,253,92,26,84,202,167,113,116,6,25,165,167,221],[160,241,168,195,184,118,127,150,140,230,130,13,159,221,130,74,196,214,157,125,181,86,76,46,76,22,22,138,174,206,105,129,55,253,221,117,250,254,195,94,28,143,224,107,180,36,17,116],[160,20,190,46,98,112,98,246,77,178,88,149,45,65,50,216,127,228,226,201,151,62,133,187,168,28,179,201,57,3,208,225,161,221,208,215,29,59,25,95,122,90,119,122,230,151,85,9],[162,246,65,174,95,26,116,179,177,193,38,207,38,18,109,218,36,1,89,46,207,71,83,195,195,108,188,246,77,211,158,218,186,93,123,195,130,62,173,217,234,160,86,170,41,115,91,45],[168,166,3,240,191,123,233,225,178,205,210,237,187,221,164,248,152,218,137,153,169,8,117,76,190,94,18,224,250,145,177,29,61,133,241,168,119,253,36,97,160,247,219,69,253,233,18,44],[181,11,175,28,84,226,160,240,113,145,218,66,23,4,209,12,68,233,250,222,42,152,141,108,188,121,221,200,134,141,127,122,93,209,118,133,184,56,32,68,45,153,79,3,188,156,88,242],[176,101,132,101,95,26,18,214,42,102,241,36,9,55,237,0,80,168,254,108,121,240,137,224,125,244,140,108,157,242,191,130,57,225,70,21,157,237,83,170,155,61,173,122,183,198,232,21],[173,109,13,137,22,126,14,34,211,127,240,223,155,17,6,28,26,141,90,120,195,182,64,222,113,146,119,144,51,89,60,210,196,39,226,149,42,96,140,161,35,212,10,126,16,227,7,111],[175,214,110,235,82,49,14,39,132,113,29,153,129,170,49,228,222,147,83,197,209,122,192,180,135,139,203,246,166,108,26,92,20,23,249,75,119,67,14,84,34,16,56,81,209,240,166,146],[146,85,214,179,151,125,237,207,16,110,2,242,71,133,48,132,156,185,87,17,233,92,168,123,213,245,225,46,52,45,158,194,132,118,102,121,72,139,124,42,243,143,76,161,61,214,193,4],[148,22,225,160,130,186,145,88,97,84,120,59,7,182,115,185,66,111,189,140,70,119,173,21,249,225,97,163,136,174,156,227,172,18,253,63,105,37,12,77,79,26,179,75,203,168,17,72],[150,246,227,118,253,210,20,52,130,7,150,57,78,51,0,189,139,75,130,155,72,230,139,180,220,207,249,18,74,208,251,56,126,141,45,182,237,35,22,143,8,101,212,90,225,178,128,152],[131,215,71,17,231,224,5,129,188,150,200,252,234,161,229,183,79,42,223,189,4,124,0,199,215,51,50,152,113,75,173,161,177,191,236,181,209,209,184,184,53,168,128,209,110,122,125,118],[150,86,81,4,110,214,123,121,177,117,218,244,219,0,174,79,74,148,39,107,197,38,212,32,136,50,41,67,82,98,100,135,7,198,109,233,50,186,141,127,62,43,68,153,174,58,248,72],[168,125,75,124,138,110,219,228,134,43,237,235,46,185,209,114,192,186,159,203,164,212,230,122,150,19,100,83,169,174,31,175,113,223,208,245,11,23,162,109,212,232,161,194,216,163,5,102],[129,223,69,184,170,172,131,234,92,39,4,94,211,47,61,248,219,95,37,15,137,100,16,65,199,28,156,245,214,17,156,182,77,166,206,15,161,221,19,58,125,97,47,184,196,112,193,169],[148,14,71,116,69,77,142,252,141,5,20,135,223,8,183,181,98,175,159,143,238,190,210,85,124,207,35,7,10,45,212,226,205,254,107,167,107,239,156,112,65,67,73,182,245,155,208,184],[152,191,145,211,244,152,74,55,173,208,65,86,43,28,192,219,213,212,152,140,33,158,122,129,93,232,73,67,1,233,187,151,74,207,190,86,219,38,114,35,81,177,213,251,64,121,126,203],[139,47,43,205,9,161,202,78,45,74,233,163,88,169,43,195,117,139,46,159,70,124,229,84,71,141,31,141,71,148,139,111,161,170,233,234,205,96,219,243,186,88,45,29,202,72,82,172],[142,177,74,42,60,57,243,161,58,96,78,83,255,232,67,40,156,189,137,122,84,169,36,190,185,99,216,77,112,253,115,76,234,48,2,103,170,92,250,117,7,241,34,1,205,94,163,156],[149,200,37,213,105,217,155,144,61,170,244,82,193,231,148,125,125,223,126,2,226,37,81,168,139,13,35,233,23,115,53,24,176,247,87,220,85,57,79,70,246,97,213,112,241,203,231,250],[140,175,209,206,242,90,116,162,212,241,230,140,64,205,160,74,97,55,44,168,217,40,148,163,111,211,68,168,75,151,108,36,72,32,53,229,157,102,173,121,212,248,170,29,207,66,86,249],[160,63,87,123,179,109,128,22,51,135,18,14,22,194,173,173,56,121,27,247,143,86,187,178,216,156,49,39,17,117,191,196,140,243,249,197,61,173,68,181,120,194,190,101,161,44,182,226],[165,133,113,169,23,117,114,216,67,1,61,166,120,175,157,74,69,215,178,154,254,168,89,232,239,36,134,120,73,15,172,35,228,206,179,126,255,169,113,91,118,115,64,35,112,201,243,198],[176,212,218,249,123,218,208,43,146,7,252,216,187,249,77,223,0,168,104,60,176,58,149,75,246,148,116,135,222,191,189,188,247,86,155,1,54,117,46,149,17,229,17,224,107,83,10,30],[130,22,187,211,255,191,65,255,51,132,117,181,168,106,65,15,228,224,84,253,240,45,214,51,13,16,239,54,146,240,144,85,40,78,135,21,38,38,10,111,179,125,234,224,87,218,135,129],[176,9,170,162,164,243,218,124,20,174,222,198,121,241,76,96,209,184,180,157,81,96,170,62,81,222,1,159,10,16,18,109,30,138,244,126,71,172,123,176,95,61,139,193,212,18,11,54],[184,178,33,221,3,34,107,165,183,57,11,149,10,233,138,42,76,191,201,170,170,19,45,221,145,24,70,35,98,222,32,24,224,49,206,240,190,197,247,245,105,36,111,116,218,93,100,65],[147,33,173,81,163,229,89,94,45,180,28,102,0,145,67,239,7,144,122,172,218,143,31,254,36,114,81,33,46,128,70,226,47,62,27,54,88,94,51,92,162,36,20,135,201,97,15,181],[133,155,55,160,73,56,227,39,9,56,241,116,222,96,74,68,177,136,46,237,44,171,59,149,92,170,220,94,252,42,138,46,24,84,137,66,203,123,232,232,135,0,122,70,138,196,153,252],[182,33,158,205,242,159,167,68,154,254,68,213,139,239,230,62,97,13,24,27,198,187,62,85,6,110,27,50,93,21,229,228,108,195,115,144,172,26,86,125,62,183,48,39,94,31,108,15],[169,68,218,34,168,45,255,247,222,173,61,236,52,19,83,214,20,111,156,109,3,150,44,146,210,174,221,111,168,98,29,134,83,48,140,99,170,20,88,73,99,209,147,130,172,160,69,160],[160,139,79,204,38,12,143,189,101,202,98,87,134,125,145,228,91,12,98,9,73,30,141,54,159,123,254,54,18,108,87,36,7,200,122,105,198,90,157,134,189,249,35,246,132,41,171,202],[178,123,3,228,244,164,65,53,216,231,26,250,59,159,34,67,174,158,187,201,175,165,1,70,14,197,191,110,162,64,146,118,221,214,122,245,133,247,106,172,243,232,190,75,227,181,178,240],[143,234,135,91,140,191,107,161,149,69,75,138,10,33,26,172,129,47,27,60,203,15,192,1,87,27,127,65,38,14,43,117,66,109,214,87,116,130,190,161,206,57,91,103,107,247,165,227],[183,220,244,70,41,117,68,35,108,96,7,15,63,134,22,29,48,133,194,125,23,178,34,78,184,139,115,242,67,61,185,64,145,149,2,247,173,97,222,53,44,85,180,166,71,135,229,53],[161,130,27,192,229,61,48,159,123,128,36,93,254,32,60,173,228,49,152,70,2,8,116,92,118,223,166,228,176,94,177,159,4,20,96,190,115,126,4,72,39,186,87,63,119,210,238,24],[138,149,50,228,239,186,51,190,207,122,152,171,196,234,80,190,63,179,47,34,185,123,83,217,208,77,32,143,159,245,28,106,216,41,54,163,203,146,24,57,192,80,225,37,52,171,103,143],[170,135,221,185,200,87,246,151,183,121,13,173,50,20,246,56,227,75,85,145,49,167,89,177,207,215,21,1,143,160,99,192,71,144,1,126,5,42,20,7,241,210,123,238,164,142,238,12],[136,68,91,212,249,64,100,43,159,158,235,247,217,210,69,140,179,202,164,22,13,78,142,34,159,221,218,152,202,132,203,19,43,125,149,248,238,206,249,234,232,204,194,140,43,138,86,133],[144,177,157,46,155,160,151,0,221,134,150,250,129,182,27,215,64,25,117,250,213,97,206,35,95,153,84,16,144,121,34,2,93,235,22,206,26,109,172,232,106,61,55,158,229,78,83,124],[161,174,143,200,14,120,192,72,84,98,187,149,36,1,4,105,158,149,188,71,69,24,92,149,62,103,143,253,208,156,1,32,201,139,209,234,86,176,164,184,206,176,62,35,232,207,157,52],[139,166,181,101,198,39,250,10,210,73,137,9,222,13,219,234,88,216,25,37,5,82,72,6,236,114,185,11,112,67,21,16,24,143,198,254,140,10,216,19,168,140,68,51,93,217,66,150],[169,97,80,164,145,152,8,97,80,107,58,186,93,36,56,113,108,239,33,243,190,44,90,71,112,110,52,120,189,79,77,118,161,85,199,94,18,221,36,20,86,151,2,162,186,3,0,78],[185,70,152,66,176,54,2,186,54,8,49,0,186,3,62,46,34,176,179,52,194,152,101,150,253,151,102,108,83,56,145,59,87,11,36,195,144,152,243,127,200,14,150,130,243,227,211,120],[133,101,233,155,181,156,242,230,26,132,242,13,83,219,209,179,88,210,25,63,155,100,194,38,47,186,1,110,255,143,109,130,218,20,84,42,139,14,63,129,194,90,82,8,85,230,136,153]],"finalized_header":{"slot":"32","proposer_index":"0","parent_root":"0x0000000000000000000000000000000000000000000000000000000000000000","state_root":"0x197a4b7dc00c75ee5c6d03c0e03f541cc4835a20b427a007bcb1a264b5cd268e","body_root":"0xdab4175862e44372d1e0148b2449aff923352eba4b7efd4805194e0720cf5afb"},"sync_committee_branch":[[86,129,244,105,55,145,204,110,41,118,238,89,5,110,185,150,189,45,149,248,58,234,168,240,52,197,56,179,60,156,28,146],[238,129,156,168,109,208,216,32,17,238,21,252,96,225,118,158,43,165,28,140,14,116,182,107,45,45,197,223,134,161,192,120],[152,93,247,153,214,234,137,109,252,79,100,205,57,121,254,114,65,213,19,246,24,197,156,16,255,20,207,57,69,139,175,74],[110,211,142,94,6,128,7,99,93,122,179,185,34,100,118,177,122,81,82,200,22,17,180,0,237,192,18,14,240,147,108,131],[155,36,233,182,3,218,183,52,31,229,11,170,186,135,40,250,236,16,108,30,173,17,32,146,190,16,108,215,239,76,73,95],[68,177,30,58,180,74,214,199,111,188,103,22,162,155,83,145,41,251,226,97,205,72,114,173,12,185,219,75,73,41,191,198]],"finalized_header_multiproof":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[174,31,68,103,145,53,142,235,23,222,189,38,70,20,202,235,127,114,85,140,8,92,115,190,13,222,40,75,76,99,169,87],[0,188,128,156,108,0,17,90,23,162,240,26,172,140,64,99,244,136,213,165,242,54,218,72,159,198,217,94,78,213,148,172]],"finalized_header_helper_indices":[10,4,3]} \ No newline at end of file diff --git a/test_data/sync_step_512.json b/test_data/sync_step_512.json index 1bede730..577a960a 100644 --- a/test_data/sync_step_512.json +++ b/test_data/sync_step_512.json @@ -1 +1 @@ -{"signature_compressed":[173,181,129,60,24,201,3,158,215,13,204,9,19,12,182,175,42,103,148,199,66,101,147,98,58,217,71,185,35,144,194,44,73,120,13,93,168,27,122,174,3,151,152,251,98,122,173,249,9,16,124,15,94,36,102,24,196,144,167,72,175,250,11,157,237,104,40,28,253,85,53,135,235,74,117,159,222,184,159,6,61,208,228,215,152,236,215,110,18,72,59,230,23,83,205,3],"pubkeys_uncompressed":[[2,28,98,160,223,223,232,155,95,169,36,213,77,46,193,37,82,170,83,121,106,183,220,152,79,168,33,159,112,66,212,99,52,177,95,178,240,198,228,9,91,138,30,47,229,81,241,245,10,144,215,167,99,41,216,49,118,17,76,129,180,96,222,57,153,35,179,203,155,60,16,32,184,202,34,129,99,197,214,42,87,112,115,178,208,71,139,95,114,206,220,122,23,234,173,82],[6,202,167,69,210,146,194,78,172,205,30,136,1,157,20,74,49,40,131,41,5,87,20,150,171,160,162,101,73,127,139,71,70,54,165,113,231,1,225,131,115,234,240,149,53,219,222,8,12,147,77,189,119,189,147,113,130,45,70,53,80,28,195,127,76,164,42,112,131,75,162,143,10,87,220,79,206,117,58,158,181,254,43,116,201,78,49,231,185,240,195,172,216,211,153,79],[24,254,136,66,172,54,205,127,249,123,23,106,90,5,15,139,41,26,19,123,11,165,224,85,197,201,201,247,103,223,42,27,172,186,219,174,174,125,174,136,118,21,64,62,207,238,86,192,11,182,32,59,12,181,142,204,2,181,179,10,5,240,36,73,107,249,228,113,56,94,108,7,51,154,145,126,4,225,221,46,61,115,182,46,211,61,42,62,61,53,69,102,155,69,177,33],[8,250,70,159,17,111,22,45,50,52,8,56,19,10,16,71,98,68,159,173,6,214,239,226,21,198,148,165,206,123,141,28,157,236,111,51,239,141,20,126,171,179,99,133,107,135,72,18,22,160,251,225,33,206,167,14,76,202,130,147,75,58,143,120,101,166,87,205,187,169,239,209,208,101,40,81,223,243,201,243,71,210,47,55,127,11,29,21,169,42,172,2,218,31,139,246],[17,102,110,227,41,1,60,137,200,7,127,243,204,5,230,182,123,34,8,236,152,155,65,42,207,99,21,78,107,124,37,213,185,27,83,205,21,156,35,90,231,209,167,70,214,132,154,162,5,122,87,54,37,143,176,38,22,131,57,234,119,78,254,163,58,34,7,62,31,159,114,66,102,62,132,254,130,106,42,227,85,106,68,120,99,38,30,23,62,35,39,203,86,101,135,227],[0,71,99,191,238,204,157,32,38,51,234,238,4,198,124,166,132,22,68,141,46,129,179,187,88,225,4,147,84,86,76,14,113,28,124,150,179,105,107,113,174,175,124,29,247,218,207,87,1,157,180,62,105,149,241,195,211,189,150,148,1,55,166,112,79,6,47,158,22,49,242,99,113,150,68,8,188,175,23,81,243,0,152,127,120,35,197,112,223,15,28,179,227,174,114,186],[7,113,155,26,245,111,65,85,246,252,129,241,199,221,39,231,86,69,50,150,30,28,54,145,198,41,70,128,100,219,158,116,37,4,34,176,158,177,52,218,146,50,202,217,36,63,86,82,21,44,110,9,240,215,171,42,31,106,3,32,109,84,116,183,144,16,11,11,91,127,172,62,253,134,48,155,182,79,218,81,94,70,208,15,223,16,202,198,237,96,70,176,20,183,132,76],[21,64,105,160,57,113,59,244,71,191,33,10,241,29,123,72,94,185,69,95,218,150,57,213,127,152,211,6,197,197,29,15,225,230,172,228,34,172,245,234,101,77,164,174,182,71,112,238,21,191,145,138,8,188,197,45,29,3,87,221,130,118,58,185,121,30,156,255,236,86,238,64,183,29,191,203,123,189,211,3,8,47,76,141,11,173,227,104,171,119,197,47,223,46,216,89],[21,6,94,32,197,70,193,37,9,60,45,157,111,88,25,203,110,250,109,47,8,39,108,175,87,83,209,30,119,28,197,101,56,68,12,246,118,234,190,96,215,225,46,179,234,83,243,178,10,221,166,116,46,57,93,212,141,55,125,43,180,118,80,218,219,172,6,4,43,201,66,123,197,113,153,38,90,176,37,255,207,168,195,161,95,138,182,124,110,225,154,238,107,179,188,99],[10,190,24,80,2,87,114,37,110,124,239,49,51,1,65,147,193,252,43,188,144,124,165,78,98,167,152,224,11,227,237,61,25,198,131,220,101,100,246,30,13,129,98,194,88,253,155,225,17,97,31,130,75,181,167,205,99,248,86,191,141,197,215,118,23,65,132,41,187,103,16,246,237,89,2,14,109,122,105,61,112,64,70,176,109,190,235,14,134,184,230,105,111,186,131,202],[11,227,243,235,103,106,100,242,176,143,125,246,156,114,126,254,131,126,40,81,11,46,214,23,211,120,67,7,206,38,61,90,255,154,89,219,3,238,134,25,99,1,184,104,1,178,135,168,22,28,172,75,189,99,131,142,49,115,85,120,167,244,151,184,211,179,1,218,222,222,187,108,219,6,188,56,138,216,216,89,211,148,173,157,102,62,37,174,227,147,70,130,97,253,195,231],[10,116,206,213,225,95,190,128,10,192,56,121,236,67,207,251,119,189,193,30,17,245,141,249,137,237,114,120,247,35,147,21,235,14,157,17,153,109,96,71,165,36,196,127,162,153,216,12,5,229,143,103,188,128,16,107,43,128,119,91,83,114,139,135,44,158,180,3,100,167,65,7,113,231,106,42,109,41,116,68,13,171,141,15,110,113,39,34,80,182,140,191,41,76,64,32],[15,45,71,37,17,222,4,18,231,183,150,73,27,230,165,170,94,40,4,76,109,84,122,61,197,19,41,143,205,157,34,221,6,210,174,5,226,28,33,34,241,223,200,188,239,57,30,246,3,246,43,157,214,233,117,18,56,246,50,4,78,133,109,45,225,61,146,0,101,22,40,53,61,16,216,45,195,118,233,47,249,128,128,173,19,232,39,200,42,235,201,206,232,15,105,190],[8,136,125,187,33,35,174,99,250,79,98,75,199,248,83,164,22,115,149,38,232,6,152,43,145,164,39,143,74,151,70,165,206,84,223,175,165,36,192,107,189,11,247,18,60,169,66,58,20,246,107,236,164,50,79,147,194,129,177,149,53,242,247,190,28,140,56,243,204,46,99,74,11,14,177,62,254,163,111,143,120,188,99,14,254,87,119,239,139,52,106,109,178,124,188,54],[25,172,78,48,15,201,208,18,40,145,86,118,83,163,238,108,5,144,114,67,57,52,146,25,62,65,109,140,238,72,204,67,154,143,137,215,40,156,127,96,200,193,209,82,46,59,35,142,12,172,24,100,188,82,21,105,142,236,52,236,85,218,33,220,37,52,51,146,206,121,248,101,75,181,69,161,108,26,227,63,225,44,40,159,50,166,189,109,207,4,80,183,46,88,224,127],[12,255,49,184,221,183,179,217,114,90,161,138,48,183,183,26,3,86,50,115,126,122,31,50,142,102,149,210,87,11,226,213,236,68,187,156,189,240,197,204,141,106,120,10,221,71,76,182,3,11,138,125,248,67,250,120,152,144,34,88,250,178,227,42,73,1,26,52,168,209,127,177,79,222,137,118,48,29,186,251,217,76,77,91,204,39,138,42,9,41,177,103,224,16,40,34],[11,35,231,22,124,2,218,147,176,30,53,127,76,140,115,166,245,7,81,220,141,30,243,14,100,68,191,70,127,49,175,177,118,221,68,131,135,50,160,19,209,24,223,80,52,120,138,137,18,240,93,67,101,111,229,174,148,218,157,41,68,33,215,141,232,111,139,224,200,146,43,155,151,255,132,52,129,183,140,251,53,212,96,169,191,229,128,101,96,156,177,113,166,59,29,237],[15,121,19,154,115,72,97,62,95,223,204,139,231,205,2,77,46,177,17,215,151,152,60,245,63,3,142,79,201,133,155,119,221,135,244,162,1,245,105,167,247,240,75,171,223,141,202,91,25,2,203,167,12,90,89,114,208,79,152,117,232,178,243,253,158,218,198,188,252,28,117,179,171,185,167,30,120,120,5,133,119,159,145,89,154,212,245,185,176,38,54,92,123,41,6,132],[3,215,60,77,34,243,72,189,163,0,204,255,76,142,194,237,229,108,112,226,223,209,227,50,25,147,137,130,53,72,84,123,216,237,183,231,81,163,144,177,111,50,180,106,110,199,58,201,5,59,61,183,139,47,61,145,71,60,1,38,185,125,226,101,255,77,127,5,157,71,111,149,245,98,173,109,203,159,28,80,223,140,165,82,154,93,186,145,242,98,64,180,19,15,198,80],[11,72,2,117,255,95,49,16,89,110,28,242,241,237,175,240,95,197,189,210,3,8,119,132,159,105,135,203,185,76,167,241,240,7,88,247,222,36,27,99,140,110,89,12,223,157,29,24,25,235,105,119,207,202,59,254,104,47,194,11,60,120,112,4,141,64,198,148,181,145,177,17,25,88,29,169,239,223,94,155,245,235,47,105,88,18,169,143,246,10,205,44,189,23,184,93],[3,99,68,214,130,116,57,122,103,23,213,1,202,57,65,12,18,173,233,153,231,215,174,200,182,159,130,89,19,240,10,168,89,105,16,250,112,26,60,43,53,61,142,221,76,226,124,244,17,7,221,91,204,136,104,252,117,47,255,61,112,190,65,151,77,234,163,53,13,20,68,58,145,193,142,14,233,198,172,73,109,82,51,44,180,228,249,156,111,46,75,0,12,33,229,230],[17,205,42,14,167,49,33,139,69,43,113,121,87,137,86,147,229,201,1,60,61,170,2,85,84,226,102,181,106,19,221,50,137,239,246,17,207,97,228,48,22,139,208,56,92,203,243,58,0,168,159,142,254,66,101,154,112,61,190,29,219,133,86,89,135,60,163,1,141,40,156,8,107,156,178,30,87,10,232,84,65,100,97,180,38,225,96,31,253,150,145,0,211,236,102,6],[24,204,90,199,137,15,156,168,84,60,33,233,38,137,132,252,93,19,186,247,203,183,60,17,147,226,20,139,202,44,70,187,17,230,8,229,124,221,83,71,70,32,237,39,155,102,173,133,11,34,127,130,133,43,208,83,222,248,54,73,213,240,35,240,103,118,255,190,120,78,11,228,173,4,98,237,102,56,1,109,192,11,36,61,36,21,150,147,244,38,51,207,245,136,180,29],[18,222,89,17,172,135,10,33,178,140,37,22,77,86,218,103,253,210,228,135,117,212,74,117,238,159,33,113,140,249,181,237,193,118,178,47,50,114,12,129,220,18,43,224,19,83,47,198,9,205,80,88,68,206,65,1,248,12,245,149,215,161,9,168,78,118,78,95,221,111,106,43,62,36,8,168,62,58,45,200,4,51,239,149,53,3,42,174,237,203,249,72,33,152,61,144],[8,191,154,133,55,219,240,146,173,162,201,139,140,57,208,82,56,243,35,106,76,246,95,102,141,24,102,173,129,73,132,169,190,170,116,166,226,26,16,214,160,128,188,130,37,202,221,77,8,107,224,206,116,59,124,253,128,67,249,105,225,150,99,234,50,14,108,35,89,52,215,173,33,6,236,151,146,34,217,200,24,234,15,165,59,69,26,247,111,57,156,8,165,109,243,206],[0,219,92,117,117,72,162,175,195,22,119,81,73,120,97,149,7,47,183,172,223,119,103,79,177,125,67,137,225,43,31,156,118,10,9,180,232,10,216,169,220,163,65,118,70,63,61,183,24,211,213,247,89,40,229,133,183,59,242,118,56,68,87,166,174,120,148,222,89,126,132,164,156,207,95,155,87,67,67,19,5,72,93,151,124,177,47,11,128,134,164,122,13,154,5,93],[21,133,57,179,239,235,227,106,170,198,18,255,5,107,205,68,201,150,31,5,26,90,94,72,92,63,154,208,146,14,228,236,171,137,27,6,94,19,60,238,223,5,39,119,41,19,101,141,14,218,110,211,214,55,154,168,150,166,95,25,39,74,243,240,176,86,86,181,117,57,161,217,81,184,80,3,212,54,233,222,241,189,106,153,167,230,123,93,184,151,9,167,54,147,208,204],[10,63,189,230,183,231,231,39,32,163,1,2,230,136,166,110,195,81,146,0,184,87,212,42,148,233,219,166,181,109,164,254,119,164,73,1,93,127,37,199,155,176,67,29,140,32,212,170,0,206,72,53,28,119,31,96,159,86,191,57,183,202,52,122,143,171,0,182,182,206,169,117,197,154,224,52,184,0,116,97,140,183,57,187,117,102,86,152,68,200,47,147,81,245,206,107],[9,85,133,74,85,101,230,145,66,162,103,197,206,179,223,40,113,36,70,102,82,158,206,22,84,255,92,239,38,106,50,0,48,5,166,223,181,168,1,120,197,160,183,175,54,3,128,169,3,34,137,132,83,94,86,173,217,34,145,31,143,99,201,146,77,132,173,25,25,93,49,94,88,150,160,181,16,222,133,200,11,117,117,198,204,216,163,130,36,4,4,1,196,182,106,185],[21,34,214,141,198,135,152,218,135,225,202,223,170,42,12,142,168,101,41,239,199,174,115,235,126,99,204,12,19,37,175,95,32,255,81,145,84,214,98,196,213,89,147,131,149,218,169,46,6,37,148,160,21,218,106,95,81,132,76,204,73,20,146,212,132,66,126,241,6,110,102,62,254,95,178,108,80,195,85,69,5,122,50,159,35,123,204,142,7,46,1,211,78,174,66,236],[16,8,189,242,187,81,107,124,17,219,52,185,237,194,128,102,138,254,167,45,241,185,49,232,229,32,38,200,111,236,162,172,243,92,130,77,205,34,34,56,138,181,158,88,238,222,3,103,19,243,53,79,30,45,30,115,70,210,84,188,93,154,9,203,91,81,205,248,107,254,193,186,216,43,56,143,164,41,10,140,190,5,221,192,245,9,225,236,118,22,241,124,52,138,171,106],[16,143,134,162,250,244,51,191,27,135,222,110,23,187,103,176,27,197,90,119,253,95,128,33,221,34,252,229,73,186,152,61,99,86,33,225,227,61,107,71,86,61,195,254,168,151,130,58,24,17,31,249,55,234,32,238,241,115,132,0,26,55,155,90,192,158,73,12,213,11,119,44,165,151,181,73,154,54,160,236,104,56,1,164,205,80,181,130,0,73,148,210,125,9,118,188],[18,190,156,187,3,234,104,148,54,16,194,126,110,141,198,65,97,47,158,7,118,219,69,114,223,234,248,44,55,161,236,57,91,170,46,18,212,129,94,144,143,15,93,119,120,112,9,1,21,94,176,150,76,121,176,153,194,104,9,82,44,29,95,244,163,247,212,102,73,97,63,222,199,52,128,140,196,18,114,170,207,134,30,162,34,223,240,185,204,93,171,79,85,47,53,86],[4,73,140,152,152,173,107,83,105,132,17,19,174,221,175,43,177,17,4,152,158,154,111,85,101,158,106,165,9,151,93,158,169,151,13,66,150,106,253,239,185,64,250,234,203,60,20,30,11,236,172,97,249,55,89,115,64,221,77,72,47,180,41,38,174,90,22,251,197,185,46,251,219,221,195,170,208,221,249,59,28,227,45,104,252,252,63,204,131,175,145,143,46,95,65,7],[4,63,8,148,34,216,48,215,45,135,100,47,184,210,49,77,50,133,231,54,124,83,59,242,184,106,163,55,156,253,0,151,180,57,104,147,181,110,171,171,54,209,251,96,138,211,188,142,5,21,185,10,46,217,147,183,84,79,83,101,195,4,247,110,181,167,46,44,198,40,154,252,127,23,217,105,148,97,44,114,118,142,170,229,38,200,74,108,102,208,25,76,92,255,106,134],[24,250,206,188,95,201,194,129,56,37,220,233,185,117,149,220,21,41,240,26,186,20,110,157,103,113,78,106,152,8,136,149,28,254,58,176,141,196,111,142,34,59,194,95,160,237,96,229,9,4,241,233,46,225,74,58,190,33,75,44,220,100,217,129,141,8,246,217,222,87,150,231,165,89,47,232,122,251,17,21,209,97,126,30,228,107,95,233,168,131,184,115,196,177,110,165],[24,32,126,216,126,121,215,166,101,188,158,247,16,178,59,150,107,62,173,124,32,169,229,125,192,218,73,48,106,127,95,119,84,177,71,34,106,19,6,16,33,26,193,203,151,89,171,188,17,153,67,192,53,158,105,177,231,32,226,227,15,23,115,54,115,144,116,181,64,220,182,29,195,5,32,86,250,40,11,216,136,56,72,175,19,241,88,223,221,154,29,97,171,30,235,35],[3,143,177,130,202,213,82,159,36,205,167,149,227,23,101,158,4,200,139,203,60,212,11,198,51,136,78,143,93,253,101,183,106,241,102,43,154,30,223,183,86,179,24,216,90,244,30,229,12,246,67,26,75,139,145,131,175,78,49,75,5,89,193,80,97,56,157,86,108,58,28,243,150,166,105,34,9,62,41,178,90,241,48,195,196,137,144,27,193,154,157,193,2,35,78,65],[14,224,118,87,84,166,74,164,92,175,107,204,132,205,105,20,71,38,229,49,0,136,93,177,193,234,175,120,70,5,59,66,40,255,113,107,216,136,40,144,26,108,137,182,251,229,13,251,20,206,11,95,222,28,247,185,89,76,135,254,24,194,45,108,247,249,122,2,152,139,74,108,146,112,30,255,133,214,19,153,15,4,71,7,121,250,123,175,135,70,31,79,63,178,93,185],[14,122,18,215,11,120,174,63,114,199,63,156,203,93,14,217,94,168,76,3,195,7,121,165,42,46,26,237,100,1,214,219,11,132,170,231,232,79,78,26,159,231,139,25,181,209,32,20,18,91,54,29,120,175,127,211,254,111,49,111,212,117,250,158,57,139,32,38,239,139,108,145,174,33,227,60,145,58,115,107,217,121,117,39,90,44,113,138,23,66,183,166,165,151,24,68],[19,137,89,174,111,112,168,33,241,124,81,141,17,146,180,238,85,163,0,79,187,108,46,188,232,255,186,104,157,95,31,174,151,81,17,80,227,181,119,7,180,153,163,45,132,154,21,43,13,103,13,17,239,189,119,246,190,27,34,195,182,81,242,62,229,161,90,175,172,12,107,61,142,42,28,159,195,71,28,153,166,5,26,70,135,218,31,38,195,127,161,214,184,76,119,122],[14,75,140,252,255,220,129,107,129,114,18,250,100,186,159,153,4,159,220,225,24,193,53,29,24,75,63,170,177,76,183,53,175,93,207,243,79,172,87,125,107,253,31,249,167,219,116,178,21,174,138,0,58,195,208,196,196,45,126,1,113,89,222,234,84,229,42,195,45,163,252,54,129,129,246,108,78,36,42,228,249,156,249,139,224,98,10,160,146,81,177,65,32,117,71,206],[23,157,197,199,208,227,252,197,209,213,174,125,91,24,202,9,73,1,223,251,125,181,97,251,91,181,147,176,177,18,170,42,191,156,100,142,47,20,27,28,91,202,17,246,220,172,104,133,1,66,166,104,251,33,163,223,25,98,28,240,47,224,196,79,207,95,55,20,223,21,233,28,177,159,57,227,220,51,134,45,16,213,175,183,227,215,130,54,100,40,3,149,150,226,156,94],[4,227,22,249,59,19,68,82,29,100,13,183,39,28,123,132,156,239,100,98,102,95,23,253,249,199,178,152,25,62,110,169,134,130,86,52,8,127,4,72,67,186,163,217,72,163,47,118,4,231,132,148,221,123,131,209,48,31,158,140,74,146,13,87,105,119,193,250,48,199,90,230,187,249,32,178,7,42,50,94,250,22,246,238,80,85,72,195,126,176,190,196,110,201,72,163],[14,249,90,18,77,143,196,186,101,148,28,142,6,59,143,75,157,36,121,50,201,221,236,216,21,23,197,46,48,135,171,17,99,128,137,5,35,171,51,203,166,193,194,116,235,142,251,237,4,153,31,134,145,221,195,23,51,146,134,7,2,164,187,202,15,171,139,61,63,134,187,121,157,198,101,225,235,29,172,183,58,103,244,86,190,70,218,157,170,122,166,87,203,193,152,24],[25,48,249,134,92,246,14,29,208,85,59,81,170,211,14,196,6,214,181,108,67,149,225,51,17,165,198,43,54,34,236,232,250,9,147,86,128,158,109,191,247,40,45,52,45,119,225,13,5,212,11,9,71,193,199,96,237,33,246,165,77,191,84,162,17,125,115,65,243,153,86,2,41,140,234,208,229,20,244,35,82,119,128,232,137,130,1,90,12,125,3,146,191,83,158,27],[13,170,210,13,202,78,120,244,184,253,9,22,50,123,78,119,92,205,31,229,252,69,195,10,137,154,178,156,60,90,207,122,229,56,3,211,86,183,231,205,19,168,142,12,143,162,58,175,17,186,0,178,103,143,143,10,27,203,56,84,46,67,89,243,184,253,188,194,87,76,76,1,78,91,246,176,151,200,204,151,65,180,233,40,190,219,50,82,178,170,100,225,136,64,71,82],[12,209,19,19,218,211,26,50,131,228,73,238,99,217,41,13,70,184,191,233,69,129,66,35,96,82,127,55,169,110,146,183,13,103,243,47,246,89,18,45,243,82,246,13,0,128,56,174,7,82,134,30,43,43,68,43,210,13,97,207,212,133,45,114,173,81,237,249,188,160,234,192,83,250,219,94,150,191,194,51,196,225,210,108,91,58,222,161,137,162,171,19,23,113,2,149],[2,20,78,85,115,53,165,15,85,138,251,57,7,82,177,194,150,23,224,51,78,178,109,137,111,245,60,85,222,231,53,242,202,115,96,107,194,151,206,243,83,130,157,188,99,77,35,194,17,172,15,5,144,78,125,6,217,122,244,220,73,11,73,53,145,219,180,206,191,21,120,140,96,137,151,5,144,41,174,103,84,0,251,206,252,231,32,253,45,135,206,86,110,37,27,140],[5,107,129,136,73,210,42,69,21,177,222,248,215,250,199,196,242,64,60,35,102,154,143,33,91,25,49,195,46,165,194,168,10,183,0,163,214,95,96,75,199,107,31,112,46,169,121,209,22,86,68,0,188,19,52,137,50,98,83,96,200,136,23,116,240,206,95,19,105,74,128,180,71,12,219,24,73,60,173,141,24,196,6,16,183,5,144,202,237,174,24,231,15,70,234,8],[25,230,208,180,238,66,20,239,70,187,24,5,229,16,17,105,237,158,69,201,67,148,194,240,21,161,7,12,201,231,32,220,104,199,65,186,237,216,197,57,16,187,198,79,224,198,48,133,0,151,110,102,188,229,122,38,163,31,213,84,107,141,123,25,210,21,166,42,1,193,176,222,149,84,182,51,196,185,18,62,41,184,164,240,191,249,66,151,42,21,3,107,173,142,99,150],[20,228,68,42,212,13,8,102,121,32,128,230,47,118,72,20,174,96,63,212,208,10,153,203,116,45,22,92,108,193,195,166,188,189,27,0,89,152,228,86,182,185,124,15,172,5,10,48,1,131,145,3,207,148,51,224,144,101,53,219,220,148,207,5,23,82,120,134,199,210,106,49,142,178,96,151,94,47,212,196,242,54,41,123,23,150,70,139,98,135,172,224,151,170,51,98],[9,140,111,72,188,162,22,166,229,117,129,175,71,108,8,133,90,151,44,105,179,63,123,59,13,205,134,110,210,211,80,91,122,190,84,222,123,192,75,201,2,245,230,167,64,183,148,116,12,177,82,121,46,162,187,123,174,156,80,177,216,165,79,37,35,237,25,63,210,206,36,47,60,86,115,148,63,242,30,212,105,88,49,183,169,16,85,21,30,154,203,252,83,104,188,130],[13,209,206,8,185,105,177,4,238,18,51,41,111,189,70,207,138,87,65,179,100,42,64,120,171,222,20,151,143,94,188,252,116,111,172,245,141,111,117,143,241,223,171,80,194,211,21,9,3,61,235,75,225,106,197,238,228,93,229,159,113,72,179,242,51,137,84,240,54,54,51,30,55,100,209,244,132,114,201,44,102,75,233,140,203,192,80,2,64,165,7,78,21,11,24,43],[18,94,78,194,191,140,19,39,241,160,192,21,100,8,6,49,55,26,84,169,45,104,229,29,70,168,252,71,90,58,11,211,207,142,250,83,36,192,232,41,252,126,74,205,37,183,176,162,2,244,195,152,165,176,165,194,135,97,68,43,136,253,168,113,121,103,68,32,245,230,229,156,124,74,241,247,33,202,173,131,71,2,30,38,255,190,101,69,22,25,7,137,148,136,186,162],[6,81,145,82,24,235,57,187,171,238,76,185,220,13,164,87,117,52,104,108,79,136,198,127,61,75,26,36,88,134,34,24,253,196,130,37,97,44,226,106,109,93,13,223,212,10,215,191,13,36,102,105,113,114,146,248,9,141,202,189,147,185,144,169,161,44,98,50,189,23,18,21,195,191,116,176,122,187,0,122,197,140,39,134,170,202,155,85,242,25,140,165,177,49,163,7],[7,93,77,197,56,55,216,217,232,90,207,177,231,145,183,235,246,16,16,31,107,42,91,225,93,69,30,146,255,194,69,21,234,151,87,161,32,223,96,198,6,21,184,22,117,40,213,18,19,108,172,129,92,56,75,128,73,221,136,12,177,168,89,167,231,227,13,41,247,147,162,194,65,221,178,68,153,203,151,73,199,187,252,133,179,191,17,110,131,46,48,14,70,49,3,64],[4,95,160,39,119,54,163,152,225,21,248,245,75,107,158,231,53,49,68,79,197,227,213,217,156,210,185,195,97,183,110,124,56,231,161,130,208,59,129,234,203,86,252,27,80,146,86,22,2,101,150,27,34,10,87,120,34,139,118,126,239,125,229,29,98,34,4,154,232,129,4,185,179,81,125,132,57,151,19,105,13,209,205,102,98,204,167,65,166,160,1,87,245,244,124,101],[13,79,107,138,5,254,167,72,123,167,237,81,179,116,147,20,187,12,52,117,56,70,54,74,3,22,235,86,121,229,171,97,115,127,17,237,229,56,7,109,239,34,1,42,163,43,35,182,23,150,40,86,133,203,123,16,71,193,143,19,143,189,218,19,10,8,60,155,246,158,74,234,21,177,216,236,22,216,81,222,77,161,221,22,84,154,253,19,154,19,43,20,128,220,105,152],[22,164,59,243,93,161,135,99,131,227,29,211,160,178,124,82,165,44,174,216,249,212,76,4,253,66,66,91,58,58,119,185,127,188,163,181,113,3,121,31,179,51,93,199,33,83,227,83,6,211,157,111,180,101,208,90,141,219,115,117,232,112,224,159,149,177,135,24,163,187,111,164,45,109,146,251,89,64,148,71,102,75,255,206,29,181,165,159,88,174,71,27,116,25,255,158],[12,153,230,96,75,182,199,214,99,116,133,70,89,244,129,205,84,216,218,203,139,157,112,134,235,1,5,131,180,244,102,127,15,204,248,156,192,186,93,172,107,139,146,135,234,33,180,84,18,76,28,71,180,23,140,119,207,140,14,173,83,39,190,235,110,15,161,149,8,243,177,76,116,41,119,243,206,191,46,67,80,71,76,148,38,138,55,212,180,115,52,37,11,87,49,93],[11,55,135,243,209,210,82,101,130,153,123,28,80,241,105,3,238,87,99,21,242,204,38,133,104,194,7,16,87,196,155,34,101,235,224,158,174,152,222,171,183,43,50,44,28,74,135,190,14,47,9,47,51,194,96,161,198,195,183,178,250,29,47,230,3,57,241,195,216,58,30,202,5,18,25,237,203,106,109,120,6,99,150,210,208,45,20,159,121,41,113,227,33,71,241,9],[4,242,172,245,123,149,205,228,243,233,42,75,88,255,201,40,209,71,29,194,217,9,250,225,219,225,53,58,43,27,3,248,146,246,37,114,128,45,251,208,60,85,53,217,6,216,252,158,9,142,230,84,102,255,14,76,21,245,126,243,40,217,231,254,120,23,12,103,179,192,189,31,10,180,74,191,161,133,128,13,35,34,125,127,167,223,106,105,233,7,187,144,107,50,173,7],[3,17,7,208,52,211,187,85,196,67,97,166,209,75,161,179,80,205,203,243,53,188,148,158,143,241,54,251,65,67,81,22,8,236,107,3,159,143,19,183,72,71,39,126,146,181,121,41,22,155,26,152,248,249,183,5,54,198,207,19,84,10,106,20,211,172,31,80,142,169,181,40,145,16,4,166,105,238,240,250,210,158,40,55,158,131,163,208,144,118,145,100,156,163,88,121],[9,149,157,231,177,106,169,52,88,2,87,199,245,81,190,5,17,164,39,18,22,221,173,159,95,59,226,205,153,93,14,162,112,91,239,90,200,251,58,50,121,70,157,106,54,132,239,74,18,79,86,110,89,208,219,166,53,80,230,236,143,231,254,10,19,28,44,180,78,206,195,163,102,236,234,0,230,19,5,177,195,134,162,145,34,245,67,196,35,210,194,123,66,141,76,6],[18,209,254,201,182,204,175,133,64,86,108,44,157,193,254,88,149,17,6,44,83,120,242,77,27,93,95,116,236,76,110,250,1,229,130,176,80,182,196,8,184,95,133,110,16,40,104,201,13,237,70,122,35,185,217,104,14,107,105,112,246,102,165,190,9,197,107,200,10,123,197,197,126,176,154,69,11,9,172,174,176,42,255,9,241,174,131,223,208,244,201,116,9,76,237,156],[12,18,178,185,71,107,220,201,91,63,124,183,118,218,221,183,190,237,191,139,180,128,57,149,193,90,12,133,111,116,77,243,220,40,12,204,103,186,167,215,55,116,213,78,140,60,9,7,11,202,124,149,56,76,136,255,24,20,136,47,100,176,238,192,230,9,240,128,49,130,77,117,113,253,18,252,4,202,204,255,206,111,74,216,22,116,145,42,198,23,40,161,89,120,170,161],[23,54,43,148,153,55,55,27,74,215,69,218,115,176,153,41,159,22,127,254,29,138,253,151,203,142,213,179,108,24,99,76,204,236,31,157,59,249,87,147,124,12,251,69,136,203,196,182,17,73,149,66,249,247,222,145,247,0,81,245,26,199,253,57,230,34,12,69,145,197,48,5,71,58,75,151,236,33,47,55,59,221,72,99,124,142,112,136,28,142,63,3,33,76,28,82],[12,163,41,78,63,133,149,53,198,109,161,37,152,89,244,139,162,112,24,126,51,64,30,65,212,24,88,121,54,247,209,98,239,76,168,135,142,238,110,103,2,134,230,174,56,44,191,114,9,223,179,212,14,244,20,81,44,97,113,100,134,139,210,214,8,55,180,166,111,85,159,160,216,4,161,226,170,131,227,20,3,244,65,192,49,189,247,86,103,98,235,24,55,25,96,140],[1,237,240,146,84,172,198,90,213,86,150,153,232,106,157,246,139,202,119,183,191,159,162,12,28,88,74,163,50,250,73,222,174,50,233,150,171,218,214,129,61,248,45,165,94,6,197,181,21,197,97,55,51,176,157,63,6,174,59,61,116,190,219,230,77,181,74,136,7,139,110,153,195,33,166,91,19,36,43,84,193,174,96,88,34,169,252,6,42,222,221,85,215,35,32,193],[1,176,1,239,50,186,84,218,216,95,69,143,23,66,68,85,255,54,231,19,85,235,206,231,108,200,156,28,215,65,177,2,169,115,248,45,219,108,50,156,244,81,16,109,211,228,219,34,19,237,33,149,180,56,249,81,124,153,186,173,190,116,203,178,189,54,215,79,74,44,95,9,185,116,15,13,71,63,134,167,90,213,99,97,161,239,168,54,19,195,192,37,253,230,126,176],[1,80,183,4,215,49,119,38,180,159,209,21,197,204,188,39,160,137,0,35,96,225,93,32,192,185,167,181,185,223,130,87,144,144,182,105,225,135,35,220,39,66,61,245,80,224,253,50,18,52,55,172,160,64,127,113,94,12,96,69,185,84,176,223,36,15,86,225,20,180,162,72,19,163,195,39,15,21,237,173,129,25,131,177,99,176,50,187,205,228,83,53,77,73,52,239],[13,82,21,37,195,52,247,235,76,113,63,208,176,16,48,79,230,62,226,126,211,60,106,126,207,157,92,225,88,246,51,167,251,130,67,127,141,103,62,150,155,195,131,13,242,207,10,114,24,18,10,246,228,115,44,176,204,37,26,145,172,65,180,65,142,208,122,225,158,34,174,228,151,99,119,210,140,254,202,18,37,1,57,159,36,169,98,16,28,82,232,228,40,129,209,101],[23,86,64,219,62,67,71,65,133,54,85,47,105,55,42,183,26,185,47,24,205,189,40,45,20,2,88,49,154,200,178,9,245,6,138,118,96,123,176,83,170,206,237,220,29,220,162,185,2,172,112,234,173,63,215,4,126,135,118,33,208,49,235,1,201,253,158,224,91,35,76,69,212,41,158,237,183,215,9,102,3,25,89,187,92,117,248,193,7,220,220,168,86,54,55,107],[17,135,101,233,166,101,66,103,177,114,152,244,46,113,28,38,135,42,249,119,112,6,33,58,128,44,139,172,193,106,214,106,166,239,62,163,28,118,112,160,24,24,4,100,147,177,132,174,17,198,210,71,255,26,52,74,69,117,198,113,33,65,189,96,66,152,211,93,152,227,209,9,142,251,236,214,58,58,69,131,10,64,72,45,178,18,33,235,207,232,120,8,87,202,168,235],[14,88,149,45,87,180,50,191,81,144,9,38,37,175,51,26,27,200,132,131,11,82,168,160,88,215,189,164,208,181,169,195,157,227,170,184,61,78,234,153,227,251,183,24,244,26,170,6,15,225,74,141,217,99,61,204,101,123,176,228,120,81,250,79,150,73,84,170,9,126,226,43,239,111,228,163,85,238,229,46,168,39,41,138,112,208,158,9,170,44,238,58,244,122,149,56],[23,75,72,49,254,248,185,247,185,172,16,247,107,246,251,173,98,117,228,195,55,204,129,98,91,184,26,118,24,197,206,51,175,134,0,112,4,79,55,230,83,62,156,118,160,247,53,115,21,204,234,160,154,240,29,8,19,36,61,136,66,76,184,132,248,101,72,215,27,119,215,159,24,69,121,100,60,168,117,215,26,91,52,187,72,143,30,7,156,194,126,42,34,71,118,88],[13,92,72,222,134,147,12,255,72,166,72,85,74,232,163,37,245,38,110,210,28,197,142,144,169,196,236,241,45,190,73,109,231,236,255,147,197,8,198,128,180,68,32,4,235,103,54,91,19,86,17,233,219,37,87,146,24,25,31,226,213,154,107,214,83,63,81,98,119,113,110,7,37,189,246,203,139,95,250,59,164,97,175,134,127,106,97,89,4,38,41,249,163,148,133,75],[17,135,53,149,129,144,121,181,212,176,47,107,92,215,72,120,196,225,157,50,171,89,220,236,223,223,36,9,131,176,185,182,40,127,192,186,174,68,107,92,31,115,196,154,253,173,135,56,10,214,111,73,148,69,172,26,7,214,198,205,67,232,182,226,220,19,159,104,30,148,251,130,253,237,9,28,153,179,151,205,76,189,189,103,103,183,150,107,61,159,238,203,173,22,36,45],[18,74,154,87,36,15,191,98,47,101,122,232,22,192,206,217,177,150,169,237,193,187,146,226,164,84,130,214,9,252,89,54,10,139,99,66,110,24,214,11,27,205,207,207,217,202,94,113,20,228,79,230,152,135,189,199,0,174,149,243,8,4,5,149,209,145,190,54,14,237,128,101,2,55,204,201,221,20,19,95,202,36,89,132,0,172,5,120,236,66,125,122,226,54,39,119],[2,74,190,54,165,76,234,10,245,88,5,132,92,33,181,104,108,47,222,92,19,29,148,159,230,229,197,40,177,118,149,1,233,139,207,210,132,188,17,57,41,80,178,192,224,170,243,65,23,30,85,31,62,186,150,133,231,155,84,230,230,245,189,23,47,207,144,126,172,128,34,25,95,20,0,35,144,192,157,159,210,247,78,99,15,25,89,251,137,65,200,157,107,148,107,146],[13,203,231,167,165,1,146,199,254,100,210,226,179,241,203,144,171,138,222,173,164,66,7,182,117,105,174,147,242,213,104,154,93,103,95,170,242,137,113,191,120,141,177,104,9,9,165,44,19,162,255,22,53,167,50,8,18,145,224,228,171,149,103,239,249,239,77,141,49,217,48,174,22,8,86,162,4,104,163,224,88,19,134,105,20,71,153,67,184,185,102,162,182,248,40,241],[2,114,85,129,167,44,183,21,104,15,192,24,254,47,114,47,28,47,162,100,231,70,163,128,183,143,90,197,113,108,3,176,59,255,126,79,140,214,52,179,77,172,13,247,137,8,60,42,18,122,135,65,146,92,109,62,219,19,231,219,87,218,255,169,146,160,149,7,220,111,226,204,45,193,170,215,156,206,160,251,14,180,69,212,41,221,236,49,206,43,208,14,212,252,175,127],[5,225,55,135,38,185,72,124,9,88,212,151,171,21,243,121,40,144,118,144,35,173,166,51,217,64,68,124,218,18,163,127,253,122,73,155,132,209,98,174,152,139,134,238,87,139,69,213,25,101,205,232,236,214,1,107,98,136,125,48,52,94,141,78,242,84,49,76,209,32,116,13,85,23,160,124,21,244,124,116,131,241,95,142,89,225,60,255,125,184,236,135,152,101,80,244],[0,238,162,202,46,71,86,93,228,7,75,155,38,143,70,198,79,0,88,141,166,225,10,80,128,138,12,30,169,202,183,208,62,6,117,174,9,21,78,138,107,32,137,11,150,49,188,170,21,24,213,75,180,198,210,28,45,146,223,6,74,183,232,123,5,10,42,43,157,137,164,245,248,13,96,67,221,159,97,41,136,177,53,179,251,72,164,118,136,15,242,215,49,98,29,199],[24,135,11,214,162,175,169,68,191,203,56,240,80,249,48,137,214,210,12,36,213,55,139,119,50,253,183,192,214,9,82,111,68,203,196,170,43,13,65,193,52,192,186,81,250,164,251,155,8,77,17,13,41,40,232,218,137,65,77,219,93,95,181,17,79,193,215,29,136,82,124,162,128,122,188,164,24,240,4,206,26,30,182,116,152,142,245,180,249,113,75,15,223,13,51,212],[22,87,133,124,83,187,48,80,54,70,150,215,163,30,187,218,37,24,150,239,233,185,199,147,42,27,31,27,165,14,167,177,181,107,22,105,234,253,115,47,171,98,54,242,239,16,9,199,22,75,32,7,34,40,161,138,243,64,205,170,194,111,190,162,79,207,211,57,206,1,241,110,130,48,32,216,164,116,19,170,175,186,141,180,88,92,41,33,122,130,38,97,213,61,240,116],[16,98,35,210,157,163,107,60,201,40,70,16,213,80,21,232,217,6,38,142,44,224,136,114,170,190,80,253,243,246,98,125,218,15,45,154,28,126,236,26,115,214,157,35,50,39,88,163,1,165,157,40,220,179,66,21,247,22,226,153,168,10,206,7,172,26,187,230,186,93,238,44,177,252,107,233,197,227,75,183,181,172,150,244,59,127,189,128,142,219,224,28,146,41,139,104],[21,222,172,71,81,45,193,180,56,160,206,250,239,129,119,191,42,224,85,174,248,247,190,1,98,154,206,141,239,163,7,103,124,153,16,0,201,123,45,36,95,6,201,36,20,238,176,200,10,125,1,162,119,94,112,20,245,122,164,165,187,10,251,93,154,72,197,221,38,122,125,134,30,137,149,187,135,41,143,40,42,61,55,194,32,73,132,234,117,98,26,141,183,169,68,224],[20,153,194,184,98,181,71,146,34,212,174,148,235,30,23,36,98,37,93,47,57,227,103,45,178,108,133,82,144,76,83,227,196,25,172,244,17,67,95,231,71,92,96,60,115,122,96,189,15,91,60,118,201,249,156,65,204,251,116,97,33,145,211,144,119,206,169,80,6,238,79,15,55,3,13,48,158,171,37,76,22,54,178,197,91,219,61,118,251,58,24,232,216,23,186,193],[21,42,175,102,163,109,82,114,207,212,97,65,90,152,122,59,100,245,99,12,127,185,19,136,106,181,2,89,128,26,164,67,247,209,55,188,138,114,186,74,32,178,203,53,241,175,7,147,6,187,35,164,134,169,122,157,6,60,61,246,23,84,31,4,2,20,217,179,80,215,8,122,152,179,188,177,3,131,82,55,189,225,151,104,33,94,235,74,179,57,176,33,193,248,106,17],[11,216,61,56,67,215,83,105,203,177,170,254,132,238,97,255,162,80,156,50,77,161,32,143,179,18,176,174,175,231,175,254,77,211,143,57,39,239,195,5,91,234,39,167,65,70,168,200,16,34,226,152,7,209,29,38,18,241,105,207,242,95,249,153,191,198,255,174,230,69,118,134,170,24,67,210,169,248,238,40,249,15,150,158,194,117,14,243,54,229,235,170,93,178,251,41],[18,191,237,219,180,34,52,143,150,163,219,31,30,152,239,73,46,164,81,136,240,231,36,64,34,246,250,165,129,200,130,196,38,147,162,47,118,147,66,20,42,237,77,116,51,134,224,197,6,156,91,30,222,176,157,173,143,235,38,68,199,22,81,112,44,238,129,134,218,136,159,6,72,57,27,61,85,127,120,23,243,253,116,157,129,197,2,234,196,41,108,183,99,72,89,169],[2,235,44,221,220,45,127,139,237,248,67,166,228,107,1,243,39,236,220,214,56,167,236,72,132,206,111,141,179,152,89,93,223,104,17,39,146,184,41,187,165,190,201,82,152,181,80,130,4,91,158,221,150,238,56,20,173,114,186,87,194,36,113,6,81,174,19,135,93,111,159,55,25,110,33,196,78,154,131,216,197,108,9,53,182,151,76,8,76,111,69,108,122,160,82,125],[23,182,116,57,183,112,153,146,155,47,46,4,170,243,155,18,4,145,161,108,91,112,105,142,182,245,68,89,4,4,48,149,15,11,161,241,76,46,160,187,216,129,100,107,84,102,60,146,23,250,38,6,49,56,72,223,139,113,132,171,192,84,130,168,107,190,156,0,1,137,187,213,4,168,8,83,238,14,61,46,222,28,49,96,235,209,144,202,5,41,123,36,64,232,3,51],[25,167,99,254,161,40,226,89,49,246,233,26,119,42,119,58,88,128,114,55,193,138,105,178,106,9,144,55,22,45,215,68,161,240,9,19,222,148,77,140,7,21,50,108,182,58,70,235,20,1,53,228,55,67,137,237,185,15,69,83,190,137,164,184,252,17,119,58,10,121,124,201,199,173,33,56,175,13,89,14,28,219,243,185,254,238,132,125,228,32,11,4,225,70,3,231],[20,196,111,4,101,84,44,117,65,86,81,85,210,35,152,28,199,238,219,234,188,112,149,211,143,14,173,250,107,111,12,193,58,88,89,80,119,210,85,53,220,11,56,130,138,195,240,160,23,203,96,101,71,225,33,233,63,62,68,7,1,115,80,26,199,94,81,212,156,138,222,122,84,231,63,65,94,71,164,47,245,226,48,127,255,159,232,72,220,21,215,169,114,77,89,239],[25,188,156,118,211,137,146,210,166,67,88,218,47,98,249,95,94,159,22,188,24,188,43,84,165,131,209,39,37,108,4,180,130,255,243,169,114,248,229,8,230,147,241,7,79,55,145,162,8,33,61,206,21,203,250,43,11,117,11,135,235,131,40,102,126,207,97,206,103,161,4,249,109,62,60,45,139,198,144,217,83,200,95,119,48,8,157,153,50,176,59,91,178,2,251,85],[2,42,149,145,238,32,18,50,132,68,206,203,10,3,4,243,5,37,77,207,101,15,218,231,158,66,14,104,49,1,80,146,196,34,84,64,189,221,168,130,240,20,164,97,35,110,149,13,11,247,114,118,107,182,185,243,206,62,94,210,242,188,171,183,117,190,128,237,180,188,140,63,98,208,75,180,64,20,206,176,150,232,131,93,255,87,1,76,88,164,112,175,48,31,74,110],[8,227,50,84,34,18,200,79,250,60,59,98,52,224,74,216,22,107,78,245,62,187,163,177,35,88,214,65,80,161,187,209,106,163,83,209,196,245,214,193,248,236,248,230,56,102,47,98,5,176,164,178,142,248,42,131,49,187,202,188,101,234,110,173,10,182,122,103,245,19,180,179,118,159,195,181,150,242,46,232,73,228,25,121,37,60,94,109,115,223,202,215,252,54,204,37],[14,101,174,182,175,231,251,76,93,74,86,120,7,135,31,255,233,16,54,55,15,47,232,39,120,195,74,133,33,213,53,83,240,216,145,182,21,186,90,205,196,44,241,130,171,106,145,55,8,118,113,123,118,157,126,39,59,86,70,69,19,106,187,180,216,212,10,163,181,62,94,76,179,225,155,54,95,163,96,17,60,91,170,143,110,142,59,226,130,95,251,221,154,234,225,173],[14,100,22,111,47,221,250,243,98,196,91,142,238,180,133,57,110,123,201,123,19,141,197,132,12,244,124,160,219,57,132,192,216,38,72,52,232,92,170,5,119,222,243,202,195,190,215,74,9,4,49,109,67,224,226,244,0,227,243,150,24,37,79,86,134,180,237,226,55,127,213,102,200,109,238,77,142,129,185,142,68,145,196,136,253,180,18,73,11,15,97,170,71,121,16,16],[15,137,157,121,13,124,205,219,210,127,231,217,221,188,223,243,120,233,84,230,30,96,67,200,170,82,187,207,38,103,65,213,132,56,24,84,132,131,38,60,242,0,127,25,214,172,13,157,18,101,17,91,107,62,191,139,2,61,149,178,145,129,175,28,65,172,64,127,69,23,136,190,157,141,82,205,160,145,42,123,122,158,166,128,9,121,112,66,218,160,214,227,238,106,97,24],[4,203,88,60,43,137,8,87,111,232,210,170,121,214,14,96,118,46,203,44,60,175,87,144,140,196,1,182,88,177,10,57,166,28,245,212,202,169,3,148,15,212,229,25,109,180,76,133,21,132,184,193,126,24,70,153,0,53,254,191,44,249,136,42,217,16,190,26,189,193,145,172,222,99,66,112,235,215,10,112,45,135,24,22,252,29,143,56,233,167,154,16,202,172,16,254],[2,191,132,191,199,65,221,57,128,32,97,62,246,160,82,143,97,87,11,180,109,183,226,49,58,131,142,15,45,88,34,212,192,253,100,160,39,151,137,222,235,96,100,112,96,179,254,73,22,8,254,220,117,99,143,198,75,4,72,34,86,9,128,69,58,88,242,188,56,134,193,63,109,33,241,38,5,252,167,166,97,169,149,11,252,95,21,180,182,190,161,125,72,98,18,208],[3,39,37,152,58,5,101,245,50,155,64,51,70,132,121,132,11,169,159,110,211,111,111,123,181,90,67,229,125,30,234,50,81,255,171,148,215,170,186,209,180,221,183,81,102,159,15,52,3,48,168,36,204,123,180,14,165,17,76,5,55,152,156,210,255,37,222,189,97,124,244,44,120,162,15,109,26,176,85,51,101,158,136,5,29,103,142,43,228,232,130,131,181,236,138,202],[14,136,207,48,36,38,122,244,101,139,73,150,174,70,85,53,155,18,151,123,133,7,129,91,241,40,172,74,134,183,15,118,242,95,242,231,248,53,75,170,25,248,121,177,238,103,242,236,23,78,98,248,69,233,81,214,193,99,182,230,211,196,54,58,251,43,208,16,241,121,133,110,109,27,13,74,207,233,233,175,45,111,209,192,83,200,23,77,75,89,35,208,227,44,219,97],[7,215,161,26,239,179,62,186,21,111,44,108,125,187,51,235,45,144,185,254,46,46,164,176,136,180,206,114,147,107,235,198,180,23,149,239,11,90,15,199,54,73,253,207,173,189,229,147,10,71,160,89,110,79,11,100,145,83,103,163,108,11,33,54,76,107,155,146,4,25,214,118,143,214,142,141,58,157,179,134,254,7,235,48,118,21,220,81,112,87,76,176,223,206,72,111],[10,158,3,107,48,114,200,39,171,124,100,144,214,25,85,61,207,242,219,255,207,255,16,75,2,84,183,118,174,209,60,155,1,140,201,168,182,77,10,221,48,5,215,76,155,145,83,133,14,98,245,118,216,116,255,26,229,83,143,136,117,38,34,197,112,229,183,176,117,49,24,221,42,227,30,128,146,31,189,68,165,137,66,228,62,232,165,77,226,104,88,32,74,28,114,141],[4,254,176,202,52,145,248,74,7,15,92,47,193,220,250,173,255,109,212,100,240,151,157,242,194,90,181,80,116,55,131,219,101,120,73,145,195,106,12,28,127,29,183,179,193,235,10,31,21,208,2,238,72,134,111,60,76,90,113,153,66,125,209,69,32,201,14,245,250,167,75,70,149,27,28,33,74,242,32,74,92,215,34,156,25,238,146,203,3,56,246,141,249,153,79,192],[7,42,47,141,70,191,102,117,82,62,166,87,79,45,247,51,161,29,202,225,237,166,158,125,133,48,188,176,238,247,37,111,85,129,242,217,211,29,160,236,98,33,57,246,12,93,75,225,9,185,97,146,178,29,187,130,104,65,253,81,100,82,212,163,74,236,83,101,106,31,0,123,43,64,125,89,19,169,122,185,38,250,25,96,86,52,150,186,203,136,42,253,180,223,163,28],[23,14,175,231,73,7,209,43,216,31,236,132,0,141,197,25,17,225,18,125,224,103,231,3,206,100,103,53,248,136,228,218,145,220,102,30,164,169,149,59,168,66,0,23,104,10,188,174,9,183,150,8,90,75,168,228,154,29,148,21,154,142,83,1,21,39,45,96,15,236,50,113,106,5,122,228,179,251,203,127,17,27,150,108,17,227,158,199,192,126,25,200,6,137,246,73],[6,161,112,82,89,213,106,84,7,29,25,128,83,163,184,161,162,152,191,233,134,163,113,164,103,196,28,172,25,131,110,109,108,224,143,229,139,198,13,143,185,108,96,213,175,46,223,38,13,48,228,104,66,179,152,153,184,123,173,86,150,83,90,118,157,147,135,38,35,87,52,232,140,91,198,54,21,159,207,76,72,11,55,233,250,136,245,234,159,186,23,95,31,46,210,16],[1,11,0,228,126,203,226,88,49,126,122,225,102,8,38,9,48,236,159,5,20,87,104,96,57,71,62,39,222,211,112,232,69,120,73,19,224,73,25,205,146,181,95,62,218,148,8,65,10,75,136,38,54,150,242,232,97,214,137,148,138,244,15,234,123,196,7,144,82,214,15,173,17,24,157,150,152,220,69,167,103,16,133,244,243,67,192,140,224,134,60,11,181,110,161,243],[12,63,126,203,243,61,170,7,235,255,235,131,174,72,31,2,22,80,42,6,192,170,204,114,68,255,208,174,35,42,13,139,16,252,164,79,233,141,67,166,75,83,94,210,105,114,217,56,4,169,93,250,249,29,30,95,36,113,213,202,68,102,235,200,115,210,253,199,78,213,155,217,4,102,219,127,134,61,172,149,6,174,210,124,78,162,41,163,135,119,202,255,7,146,163,132],[14,249,144,20,17,248,74,58,84,17,90,114,90,200,183,171,21,229,191,126,38,64,112,90,223,181,114,52,239,185,180,151,107,32,121,83,187,38,254,233,198,97,122,242,127,41,47,142,20,95,161,205,194,173,146,197,113,234,64,115,73,110,32,148,138,44,89,234,191,173,5,152,22,220,37,1,216,134,229,26,229,188,240,94,225,140,156,61,54,42,168,78,159,116,169,70],[18,50,236,192,73,187,220,121,32,223,15,244,223,237,106,76,56,127,45,166,167,34,26,117,205,169,14,237,229,112,254,33,225,92,61,94,21,69,139,139,33,137,103,109,181,57,2,17,4,243,80,42,97,12,197,201,236,167,191,54,182,54,204,12,161,227,47,22,79,132,186,207,135,166,241,255,101,24,116,3,37,224,15,214,48,104,216,33,247,110,148,148,56,204,54,112],[8,106,69,246,69,131,219,196,193,118,101,235,238,188,135,50,19,158,175,17,85,222,22,112,249,142,46,244,121,149,235,140,67,182,64,189,235,210,165,92,159,156,186,179,144,168,100,31,16,131,179,119,124,178,11,139,179,124,182,110,30,229,52,225,175,7,162,192,96,15,206,124,162,6,118,245,74,201,188,10,238,207,49,250,64,165,131,155,16,104,26,195,205,125,100,93],[20,47,61,83,88,198,92,145,242,237,10,194,67,228,40,215,168,133,20,96,107,135,119,37,249,160,159,41,255,208,73,163,68,160,213,139,217,218,115,177,146,122,69,67,230,134,242,140,8,93,98,114,122,69,24,97,87,90,30,169,146,84,125,225,99,169,71,176,174,216,203,13,73,14,105,133,83,98,248,100,120,52,84,223,99,51,138,67,24,123,158,164,112,218,5,56],[4,179,194,219,56,234,105,5,28,96,101,187,75,242,172,121,149,99,50,54,46,42,119,204,248,168,147,64,98,145,4,86,202,203,1,31,96,244,237,1,185,59,255,168,153,64,18,67,1,31,219,85,38,15,199,153,215,82,219,81,169,223,106,113,179,123,231,76,231,70,224,212,45,110,137,158,125,92,220,193,87,83,4,76,226,62,209,171,178,144,77,34,151,53,186,18],[8,240,51,47,207,167,48,79,55,160,65,221,218,250,166,36,97,34,164,41,142,195,52,251,227,20,231,193,110,149,58,196,226,62,69,149,251,80,237,135,150,196,8,41,183,246,104,134,4,27,125,31,151,166,229,99,206,11,195,188,174,183,142,156,22,234,185,151,254,77,60,34,246,44,255,70,66,95,62,139,32,151,155,19,123,42,248,185,105,185,79,52,59,128,240,204],[0,94,188,150,3,46,63,93,50,201,206,241,244,63,156,151,229,224,49,209,233,58,153,240,184,52,242,5,51,70,120,167,42,212,203,80,173,240,45,89,239,94,231,16,232,207,244,203,15,39,127,158,31,50,89,252,170,98,236,75,231,147,38,78,199,248,137,148,205,66,20,116,175,46,97,131,124,18,126,174,195,57,43,91,140,104,239,252,170,170,255,72,19,241,170,31],[5,53,249,60,222,23,209,13,109,117,103,224,73,245,238,55,25,68,33,56,71,70,194,107,241,55,196,193,163,7,95,175,185,223,178,86,21,88,253,165,168,195,45,31,121,100,76,187,4,208,64,251,110,193,125,153,65,67,53,74,118,250,173,169,56,239,99,209,51,137,196,28,200,218,110,255,249,178,10,238,215,61,150,208,182,21,14,165,4,28,52,112,210,24,215,154],[25,116,80,92,9,221,205,220,17,221,164,109,88,95,185,148,146,112,4,190,113,154,97,153,156,77,79,159,246,34,20,40,169,122,73,143,242,178,33,246,97,239,203,31,74,246,140,237,1,220,237,177,198,44,2,88,214,65,75,109,223,140,244,167,238,55,233,129,138,189,79,211,61,203,197,13,222,151,53,228,169,66,168,103,102,30,92,187,149,77,170,1,14,148,96,4],[22,125,20,138,94,79,217,160,133,224,220,7,145,123,98,33,52,107,202,251,157,66,146,91,49,231,117,254,54,11,149,65,106,114,161,30,211,105,138,18,194,83,42,255,145,62,19,147,11,133,229,30,238,155,4,44,176,100,10,126,44,13,18,244,101,23,189,149,198,74,105,101,229,85,28,42,219,158,171,83,192,224,131,193,117,126,110,187,187,93,183,252,9,202,107,202],[20,78,85,201,116,40,218,97,59,35,250,130,101,253,207,152,250,195,221,68,147,151,7,243,63,32,140,103,166,24,246,79,224,22,122,17,47,204,35,234,21,223,59,87,25,196,233,248,4,15,196,0,253,192,26,92,105,63,5,214,198,107,183,184,21,134,217,102,186,129,159,87,198,121,141,91,245,249,195,82,220,86,66,232,64,176,110,166,145,124,40,237,56,135,115,21],[14,182,144,39,134,196,208,1,253,2,205,122,168,207,191,1,117,90,210,151,227,16,199,234,142,202,71,104,224,46,9,139,27,138,6,142,240,134,27,87,140,112,145,215,233,221,236,187,9,67,185,56,245,143,96,130,187,22,111,102,128,175,246,45,153,84,108,180,213,156,121,75,31,125,0,242,73,16,96,84,215,148,4,149,19,108,37,160,242,212,110,153,182,39,169,82],[18,160,252,48,71,23,205,247,137,88,206,78,175,142,170,88,111,217,100,16,28,96,165,14,186,92,10,249,70,166,241,255,226,58,131,105,11,96,11,56,130,27,159,142,184,229,106,251,11,100,52,164,50,19,141,244,65,31,33,244,172,200,106,131,209,40,3,56,49,0,93,239,170,172,127,100,152,35,26,81,93,118,99,138,51,110,166,213,200,228,143,51,18,84,209,179],[10,218,47,190,180,192,105,179,9,155,182,6,204,118,109,64,81,146,0,192,226,7,97,6,233,193,136,99,172,22,234,114,12,30,128,53,30,251,206,30,132,98,104,42,3,199,62,237,13,43,153,157,177,9,42,167,97,244,67,152,149,48,27,34,138,61,111,139,27,145,12,17,157,7,11,196,59,198,69,187,176,29,152,178,152,39,83,46,81,139,106,130,188,244,199,52],[16,110,255,91,189,26,180,194,135,239,117,188,138,199,39,161,227,55,141,36,147,66,237,148,206,104,21,43,144,242,193,4,5,217,231,165,186,188,39,87,173,166,67,103,244,197,183,150,0,7,138,236,174,189,35,237,202,76,145,204,205,112,152,81,235,36,110,146,198,90,55,99,216,58,159,66,84,131,190,238,36,220,57,107,132,214,210,193,247,61,16,106,108,147,102,164],[11,158,41,14,220,81,136,40,6,106,136,82,38,29,135,229,148,47,117,202,3,146,69,65,224,111,220,66,196,31,18,130,183,221,19,48,200,187,225,249,122,188,88,99,93,126,196,72,7,143,66,109,169,169,153,14,128,169,182,106,72,91,121,175,33,194,190,129,157,40,137,215,236,79,186,18,33,249,250,184,26,226,191,91,182,156,195,62,126,246,119,130,195,167,152,181],[21,50,206,209,31,16,161,224,168,191,8,3,46,221,255,65,23,32,246,157,66,67,244,32,165,203,196,137,10,27,247,4,19,133,146,87,32,248,84,97,31,58,126,208,253,65,20,249,1,233,7,212,126,191,83,179,84,64,214,191,238,116,215,145,143,139,121,227,99,239,241,51,178,241,132,101,161,219,169,251,157,127,67,134,8,64,118,165,213,196,248,138,216,8,130,194],[20,58,67,226,75,36,88,252,114,167,63,50,157,232,38,66,128,27,197,65,171,105,46,169,21,202,198,92,111,222,139,129,162,40,95,135,129,11,157,207,65,56,243,143,149,180,37,19,1,237,34,79,231,169,206,233,57,41,224,238,36,22,26,90,211,110,175,171,63,198,46,5,138,39,23,171,205,172,101,143,98,113,156,10,240,129,228,229,16,78,190,183,199,197,213,159],[15,8,201,149,149,124,135,121,15,225,83,251,207,149,160,171,101,92,65,213,17,250,59,196,196,121,123,168,228,159,232,27,5,17,22,55,19,255,242,120,172,138,253,70,210,17,164,200,14,13,30,205,111,94,211,35,10,228,168,57,99,234,222,54,109,109,128,42,22,74,35,140,210,190,120,214,162,64,149,192,27,178,108,79,20,243,102,250,206,79,109,47,226,155,167,87],[21,228,238,99,238,9,115,129,62,57,219,214,70,77,106,78,122,75,139,144,245,242,54,229,77,80,36,93,147,53,220,5,159,16,224,6,23,149,118,138,191,62,46,23,141,253,95,209,7,130,175,139,72,99,26,53,208,108,40,68,202,48,211,246,155,251,17,243,66,245,63,166,178,90,150,130,224,229,200,226,171,240,155,198,75,141,241,46,46,183,149,13,51,72,42,177],[19,241,123,115,196,101,213,17,65,56,176,53,138,241,19,99,102,235,70,95,185,240,1,147,214,131,86,136,82,161,204,58,237,188,94,103,238,91,22,27,239,213,252,98,4,184,228,250,5,60,242,3,126,205,177,134,118,247,6,81,125,90,70,187,238,12,202,35,150,52,250,235,236,132,188,52,60,165,185,194,207,179,158,100,241,87,218,247,215,26,234,121,206,210,38,7],[16,166,70,111,247,71,255,9,160,245,235,153,232,239,208,122,244,241,246,114,189,114,169,93,178,8,120,103,76,115,198,57,40,156,113,82,63,213,253,134,202,228,192,118,137,21,107,197,13,19,121,62,58,211,56,148,53,199,149,139,42,89,172,18,68,3,194,72,172,126,84,118,46,37,80,60,145,3,229,206,158,137,223,154,164,120,197,27,88,27,92,122,26,124,37,200],[2,187,84,38,184,98,240,208,137,15,213,198,60,223,62,250,19,146,116,193,78,171,38,88,136,254,97,188,69,221,194,220,201,128,220,38,138,146,44,73,239,138,236,12,241,228,106,216,16,3,187,126,111,77,107,172,106,99,12,56,145,13,5,54,144,227,192,139,62,39,113,84,242,247,113,244,173,214,29,35,72,173,62,249,179,79,185,158,16,235,46,43,91,254,185,124],[14,148,201,4,150,20,44,125,117,68,116,66,178,93,186,158,69,241,124,50,65,72,175,242,29,105,69,111,66,32,183,138,112,41,110,250,191,193,159,168,90,171,76,102,41,11,253,163,10,100,192,201,38,217,159,155,45,36,107,53,255,129,77,210,12,109,83,163,193,8,120,19,214,132,162,44,81,43,234,233,143,135,88,98,73,124,18,14,26,99,4,215,74,72,139,195],[21,75,178,107,44,159,127,229,36,190,22,27,0,29,207,67,225,29,135,28,171,125,113,63,124,59,104,224,181,146,39,214,43,99,69,14,176,41,107,41,63,112,145,215,62,107,35,40,23,105,120,8,94,145,223,43,211,94,141,50,59,124,175,15,110,154,156,249,212,38,194,52,25,121,10,174,97,129,99,31,158,176,153,127,34,59,58,245,111,167,249,91,251,196,241,218],[2,195,190,57,224,202,177,188,177,33,71,223,6,95,79,188,66,28,162,182,201,95,3,140,30,220,151,127,120,98,139,159,81,41,133,194,254,141,122,25,117,190,61,238,220,107,158,133,4,201,155,208,126,127,117,136,25,77,172,208,90,12,202,39,236,92,32,54,76,239,171,136,123,133,2,94,28,177,216,101,207,29,163,120,147,195,9,32,78,219,36,181,85,120,94,215],[3,14,41,2,62,208,48,68,81,2,161,108,60,119,44,229,13,108,24,61,231,180,45,38,235,186,175,170,226,140,121,114,168,80,20,123,255,243,175,218,73,146,153,9,92,71,123,162,5,208,78,125,213,233,208,74,10,195,190,228,245,22,113,126,144,28,162,144,76,142,105,48,252,0,240,140,103,119,245,213,122,9,167,222,209,69,228,27,91,158,173,121,29,61,108,180],[6,112,219,28,13,157,4,145,118,158,101,234,3,254,83,244,249,88,25,187,201,105,207,170,240,57,191,65,123,5,103,20,1,18,180,224,115,91,83,85,186,113,89,0,120,247,12,219,4,210,114,216,74,218,74,159,69,20,239,30,178,250,61,3,206,84,120,93,236,222,202,163,218,169,34,154,238,40,149,227,112,162,186,86,116,170,183,127,150,124,173,106,227,89,41,35],[17,122,158,251,55,212,254,152,139,2,47,141,82,231,49,71,211,178,125,69,201,145,101,41,12,116,66,134,65,238,185,32,218,64,42,115,8,157,40,156,113,45,140,6,180,238,137,39,3,171,143,147,86,24,53,45,37,249,59,71,182,54,190,37,226,246,186,4,238,187,115,9,230,71,194,80,159,188,172,79,9,112,187,80,195,182,158,35,9,156,19,137,87,117,242,66],[23,75,120,1,26,253,16,17,74,70,210,243,251,132,250,127,162,110,186,232,191,89,125,229,105,215,77,170,177,106,216,139,110,43,109,70,63,79,138,139,76,152,8,92,159,166,89,194,0,177,63,33,20,148,47,193,49,91,121,80,149,124,187,31,111,214,89,49,99,137,30,12,123,134,225,52,254,174,160,23,242,253,222,51,172,249,9,175,174,44,157,139,117,45,164,181],[21,199,103,42,72,114,231,176,40,222,134,178,68,82,164,205,251,62,232,146,152,171,155,3,100,244,171,124,84,84,254,61,167,29,100,44,185,134,125,229,127,192,223,44,142,198,191,220,14,118,253,56,23,163,251,215,94,53,99,128,38,225,108,223,87,105,23,55,200,57,75,43,233,218,20,254,199,131,194,165,76,64,9,94,164,136,228,124,69,72,36,221,54,18,202,141],[13,156,116,31,151,104,202,54,185,148,101,95,120,212,255,197,28,172,37,240,204,173,116,168,111,75,132,131,54,158,182,89,104,10,253,42,63,39,216,141,63,217,12,92,7,195,226,65,3,176,166,227,2,202,219,33,245,69,185,4,250,175,206,250,176,161,88,113,251,123,246,141,36,111,176,112,117,91,18,8,128,3,8,145,173,140,49,137,121,115,75,156,208,20,154,24],[5,29,198,115,131,192,187,108,245,58,178,200,42,235,61,221,77,244,233,187,42,235,3,56,100,81,204,169,90,127,95,234,106,13,196,166,52,80,111,49,143,206,107,24,167,62,16,65,4,33,70,140,109,95,107,146,25,47,251,63,246,252,41,186,197,220,254,76,114,94,38,171,246,174,255,207,225,168,155,17,142,245,54,152,28,34,245,143,106,103,79,126,67,198,135,241],[25,220,141,167,20,47,55,154,200,73,58,25,228,173,162,41,33,136,229,241,199,114,90,96,236,72,83,2,7,13,118,136,56,88,210,165,105,47,68,135,32,107,123,206,86,157,241,219,25,169,15,122,128,105,195,71,129,43,145,255,75,125,121,207,212,49,145,121,173,219,158,58,149,210,202,185,210,203,162,111,193,6,7,132,61,118,93,154,189,82,231,56,35,116,98,144],[3,41,62,125,21,12,29,95,104,204,179,217,66,210,46,186,16,49,203,218,122,176,248,40,59,159,0,125,87,17,180,19,23,210,217,120,119,239,198,78,31,255,5,1,175,141,167,165,12,25,182,163,164,2,188,1,255,176,134,59,21,232,77,210,121,173,71,151,126,163,73,120,209,99,232,78,90,201,163,164,141,193,3,254,176,29,133,151,98,222,153,185,248,122,116,136],[11,18,209,23,149,219,185,74,249,65,213,40,255,224,125,4,64,18,80,71,191,28,176,134,74,216,105,14,140,91,243,249,168,186,201,198,4,150,115,92,181,131,139,164,130,34,122,49,10,186,56,106,187,226,160,255,122,212,89,186,199,254,157,162,209,246,10,144,157,133,155,206,180,91,112,245,51,39,148,126,32,52,0,188,74,239,194,235,241,208,107,148,29,146,116,206],[13,221,154,225,245,142,61,156,96,43,233,168,140,34,171,115,28,74,40,180,251,164,56,8,70,151,200,138,103,51,246,54,171,30,163,111,129,175,113,249,50,92,64,13,42,234,56,206,23,23,218,55,0,39,213,153,101,86,49,154,174,163,55,85,149,123,170,50,19,167,29,239,25,101,9,158,137,185,7,46,181,82,27,173,181,176,196,234,187,159,224,109,138,231,151,224],[17,24,199,138,88,141,81,209,177,185,53,69,132,68,150,193,106,26,175,78,32,51,26,217,78,99,136,173,10,171,51,105,68,43,53,214,45,162,39,72,131,82,223,119,186,138,187,215,6,97,190,55,219,171,251,0,231,106,119,61,232,103,113,246,73,11,70,164,18,163,31,75,188,142,141,153,185,85,173,120,47,63,161,198,74,131,44,55,77,213,162,221,29,24,16,217],[16,118,57,255,47,6,21,69,24,252,14,137,85,119,215,92,72,100,23,2,158,151,214,7,82,180,252,78,231,177,35,4,139,179,155,102,60,89,235,122,117,134,50,216,84,167,20,165,4,98,86,201,211,49,140,72,246,194,252,43,142,109,123,28,76,71,206,239,211,243,184,224,36,242,237,191,214,219,241,224,98,41,140,255,137,65,162,164,173,33,228,119,151,105,174,162],[25,95,56,123,92,243,202,213,139,178,242,97,47,110,178,76,224,49,204,59,124,21,208,190,197,106,86,82,77,189,16,46,159,219,141,18,74,24,50,187,224,177,22,43,21,174,153,239,25,242,53,58,211,189,43,24,219,35,16,172,130,108,129,146,65,130,134,71,66,241,60,30,158,2,11,25,139,190,165,224,41,163,241,105,195,119,202,63,18,166,118,114,186,164,84,253],[9,236,29,105,57,7,45,30,202,98,55,118,181,186,129,24,148,52,126,147,76,140,143,82,207,94,51,35,132,228,85,217,74,80,189,99,130,194,65,103,233,118,139,15,134,34,69,152,25,224,42,160,196,6,131,168,167,202,91,13,224,147,44,223,119,88,255,49,76,35,180,144,142,192,176,18,66,6,190,4,200,102,101,40,163,121,15,163,95,177,90,75,101,150,225,239],[8,140,51,185,11,115,244,163,123,169,131,18,202,176,189,152,221,121,7,178,255,159,223,38,143,11,173,156,227,92,254,140,234,73,207,127,90,27,6,44,120,28,217,169,171,246,13,80,2,141,45,58,22,226,201,36,128,215,24,113,73,114,138,188,200,68,25,89,246,115,242,243,36,154,159,36,146,240,55,187,16,15,137,122,77,107,74,227,49,37,67,148,156,128,19,163],[5,42,200,129,215,146,107,68,91,42,126,89,33,149,34,213,35,155,26,213,200,191,25,42,15,71,62,145,231,218,226,172,77,60,50,78,73,151,135,184,107,155,187,253,165,50,105,213,0,28,252,100,190,156,31,151,118,58,57,13,54,130,142,252,235,190,125,131,113,201,241,198,61,204,160,114,171,176,192,76,11,226,48,102,178,49,153,53,221,29,140,138,209,108,127,98],[20,85,119,174,165,18,61,24,11,51,183,28,80,55,249,249,65,197,251,203,136,74,16,64,177,81,160,144,41,128,46,133,178,231,6,236,180,219,62,58,62,152,175,17,17,139,73,231,13,198,141,215,87,94,178,125,37,68,221,98,77,85,164,99,67,58,238,147,232,180,92,119,140,34,86,31,9,67,186,39,161,136,50,96,67,102,198,121,29,133,124,127,229,132,67,234],[12,165,66,114,11,213,196,32,13,159,28,214,171,105,170,217,155,171,57,80,115,106,94,241,165,184,106,102,165,106,126,242,202,46,125,186,200,152,214,93,230,205,95,17,54,121,4,189,20,57,147,7,34,241,162,164,77,123,21,187,161,16,211,80,49,71,68,226,89,31,119,90,135,249,11,241,188,75,222,138,90,114,184,160,59,157,139,111,254,57,217,41,174,212,230,134],[22,185,53,251,214,148,159,193,229,103,32,228,16,117,179,164,184,248,167,91,242,165,89,203,150,221,227,99,86,221,9,172,2,72,175,37,175,144,68,134,181,20,145,211,50,234,91,156,10,122,153,72,238,160,62,57,35,159,173,92,26,233,61,58,34,11,114,62,140,160,57,233,240,214,152,47,32,17,201,210,233,29,89,110,90,71,86,41,227,66,230,188,199,104,147,161],[14,15,222,234,177,190,77,143,166,171,242,238,18,185,20,212,225,31,166,104,120,117,215,6,239,89,0,107,244,231,198,110,13,9,191,135,104,232,189,127,153,194,27,193,161,107,123,109,13,18,162,148,195,94,179,82,69,11,245,143,142,212,82,102,139,47,185,135,239,73,42,245,46,63,95,137,244,89,44,114,176,209,161,233,9,243,61,73,80,92,174,151,56,54,84,80],[22,249,249,82,122,153,71,240,8,42,255,102,219,118,139,64,188,173,201,96,126,147,251,69,226,177,143,168,85,43,91,63,63,118,8,205,7,188,211,230,61,234,179,45,95,162,113,102,16,198,4,159,107,100,122,139,82,158,34,248,217,10,26,104,185,2,211,197,113,56,172,149,41,46,92,79,96,46,17,164,74,251,140,121,32,180,234,217,7,133,130,61,37,166,144,192],[3,192,239,195,78,193,31,80,119,8,170,215,243,141,31,252,91,187,220,141,147,135,249,162,87,173,141,217,159,130,48,209,163,149,56,47,190,238,218,59,244,221,41,249,8,1,84,26,25,51,31,173,131,183,168,119,112,83,62,152,39,23,167,219,52,132,177,190,72,223,238,111,101,159,197,34,108,219,176,145,17,237,57,26,140,107,57,233,61,145,114,34,28,0,55,157],[10,246,216,255,234,218,62,255,77,77,161,59,57,196,142,8,41,50,45,237,200,149,253,82,121,168,49,67,190,117,155,15,212,199,10,45,55,123,142,9,216,115,78,209,202,158,193,218,21,189,67,244,124,240,244,137,168,108,225,29,249,63,15,161,35,78,162,56,167,114,128,219,9,37,147,203,135,193,9,164,197,52,149,52,67,192,203,123,20,223,143,39,130,183,9,179],[15,72,142,143,180,203,92,65,216,6,252,31,7,202,169,104,154,47,211,17,83,248,115,120,167,68,4,39,58,114,110,238,130,71,252,235,79,27,106,27,187,91,29,155,102,188,191,184,1,166,249,90,144,113,3,136,11,230,253,210,145,171,122,142,142,56,171,152,113,129,232,78,244,227,6,129,24,197,62,174,121,66,11,181,72,76,174,31,167,1,139,87,16,25,149,244],[6,85,134,153,158,60,209,89,59,36,7,89,112,100,166,15,70,112,209,77,222,218,44,45,132,239,120,182,206,199,27,112,156,46,202,217,108,104,127,23,87,255,184,185,1,166,160,105,18,37,247,12,197,41,237,120,125,2,156,167,213,18,189,202,28,90,224,123,230,235,104,221,253,138,43,249,89,232,220,135,19,49,178,102,159,146,151,12,187,98,26,92,135,124,103,136],[23,14,145,92,25,222,51,124,221,238,25,125,48,176,19,198,49,192,89,4,166,215,137,205,140,129,136,19,63,131,13,78,14,157,57,247,21,197,153,246,144,6,231,243,97,19,128,225,0,80,45,55,169,10,21,21,144,235,61,181,152,15,199,157,39,226,221,98,4,83,46,162,113,142,17,144,252,67,132,249,187,126,239,183,136,53,8,50,187,25,161,24,56,84,197,13],[25,39,213,31,8,209,190,131,82,225,202,132,218,238,203,205,25,49,67,164,215,74,93,168,18,44,93,191,240,68,23,244,10,67,10,187,8,135,244,175,56,132,101,100,245,184,142,20,11,212,253,187,17,226,138,174,248,23,139,93,29,228,66,61,128,9,65,245,127,245,152,228,27,137,150,89,191,232,150,108,40,93,174,133,72,37,74,243,178,167,46,170,20,99,202,52],[20,104,167,160,44,160,83,167,4,48,103,64,232,161,133,105,148,123,20,25,225,212,48,63,183,225,33,2,93,180,180,148,251,65,115,202,210,70,165,118,243,52,212,132,115,248,245,16,19,193,102,68,191,102,239,178,89,198,231,90,191,177,222,253,212,79,0,43,222,104,149,186,176,153,106,190,229,247,29,76,142,188,34,249,52,183,119,62,247,91,160,207,161,84,172,112],[16,157,189,82,176,46,54,94,60,12,196,147,53,159,45,59,43,185,22,80,144,29,175,185,34,172,80,83,63,100,171,224,193,42,161,51,192,98,131,220,120,68,10,124,237,63,251,90,11,167,23,137,84,163,167,119,145,210,134,93,26,161,134,239,215,117,95,77,85,120,217,39,159,139,149,221,187,171,64,155,65,19,142,242,249,246,85,139,59,131,91,206,48,226,134,81],[4,37,210,0,234,196,48,132,62,233,130,231,108,248,236,206,237,38,214,84,140,178,86,84,51,96,214,161,48,202,191,107,217,41,36,198,185,45,184,254,14,248,91,177,73,158,72,38,11,144,95,157,136,252,210,20,186,200,3,207,230,95,250,10,81,232,172,250,182,79,138,252,1,6,247,61,241,153,39,131,187,176,186,172,169,192,11,102,141,175,188,67,20,121,159,211],[2,107,238,84,94,74,104,13,212,3,187,136,134,188,148,253,79,50,213,23,133,60,99,172,187,199,46,123,30,193,203,86,227,247,168,124,211,106,168,217,109,63,60,59,51,208,199,181,2,48,197,41,26,97,15,102,2,199,221,141,35,154,32,231,166,129,185,112,172,112,74,194,48,187,103,246,114,227,163,151,172,178,33,107,100,87,205,174,170,137,182,203,245,176,108,41],[3,74,180,2,128,108,169,171,254,207,213,159,62,33,11,1,194,94,204,205,122,41,90,202,184,6,126,93,79,14,87,39,56,72,195,161,23,26,214,66,222,208,161,221,163,87,39,80,1,31,114,112,136,6,133,96,184,186,177,130,19,167,211,128,51,106,73,2,7,199,152,191,38,106,145,15,169,56,24,222,138,136,153,129,85,146,119,42,24,85,91,195,150,188,123,252],[2,19,6,118,102,183,84,136,64,12,8,17,26,235,78,207,199,48,69,239,191,181,90,210,30,141,194,29,104,196,177,241,109,8,216,186,68,212,80,241,209,141,17,98,148,31,191,249,22,64,190,6,112,18,3,13,151,94,98,224,115,20,130,184,159,35,212,118,230,192,27,176,58,50,21,203,37,140,86,69,97,140,81,6,93,162,196,100,238,11,97,56,173,164,93,89],[25,42,217,112,106,168,57,5,150,206,203,36,194,146,4,120,54,209,226,190,226,93,14,158,1,140,98,144,195,254,223,89,25,150,36,205,197,94,149,62,36,159,113,54,78,112,236,228,4,231,220,9,86,8,248,19,241,72,28,117,168,16,119,227,47,202,199,66,23,94,144,43,45,74,61,113,175,98,17,239,40,223,2,202,19,183,38,82,43,195,83,206,71,194,88,168],[0,234,162,185,69,65,234,129,142,205,102,156,160,237,214,245,227,115,150,113,143,119,103,39,237,20,140,211,29,91,157,152,28,251,175,168,137,150,52,16,184,167,217,202,119,210,16,252,9,114,177,86,31,245,227,212,45,25,167,34,213,201,8,61,29,54,81,243,239,139,127,203,233,111,218,88,231,134,252,162,112,226,173,178,119,118,203,182,176,194,122,107,11,68,23,150],[2,99,217,22,112,209,187,26,218,154,163,9,166,219,110,208,67,173,88,232,25,97,206,148,93,186,233,102,151,221,172,13,146,86,221,255,221,154,124,32,172,164,87,82,52,140,152,119,19,206,52,160,99,29,95,64,237,193,51,209,229,134,33,176,211,129,180,212,136,205,99,95,30,192,98,207,235,40,86,138,57,241,184,24,234,202,98,163,102,110,200,117,213,252,82,186],[17,251,96,232,140,51,61,70,255,198,112,67,126,34,252,83,138,111,114,221,62,95,3,109,78,192,207,179,63,98,51,221,178,11,173,69,190,79,252,65,243,32,119,178,227,22,236,195,17,175,228,139,103,157,57,214,108,179,63,202,49,160,229,144,38,212,142,162,181,97,58,165,173,62,241,28,212,193,103,9,114,9,163,211,226,121,1,212,82,104,211,182,24,138,217,26],[15,5,87,4,34,19,10,55,85,240,79,107,65,164,128,30,166,201,108,166,124,91,125,43,244,12,139,44,65,254,127,27,0,97,209,1,78,127,9,209,0,76,177,199,207,188,69,179,20,114,47,140,230,19,125,10,140,102,119,160,83,202,88,174,9,203,22,146,197,131,81,109,219,20,87,90,36,136,107,143,16,29,18,160,80,173,132,132,221,248,225,161,48,245,245,158],[21,100,185,44,156,80,31,235,201,77,67,218,82,29,2,55,104,157,173,109,196,98,10,53,212,102,166,40,84,145,6,46,49,120,9,223,60,209,127,80,51,113,209,40,103,192,118,105,12,226,41,29,238,7,10,37,166,47,4,94,243,136,249,138,245,183,214,74,66,0,190,1,84,55,129,189,229,131,103,251,115,236,205,30,107,29,122,36,89,147,212,145,233,10,238,198],[24,207,50,155,238,139,146,221,80,230,188,28,100,68,8,188,91,238,151,17,9,187,114,115,203,60,155,29,127,76,118,244,217,146,240,0,174,182,119,62,28,117,249,39,194,47,178,76,5,197,109,206,163,65,153,160,68,13,12,5,111,199,138,141,217,190,252,98,48,206,161,180,116,188,162,184,116,60,37,219,93,208,65,185,202,21,141,161,32,202,217,194,45,173,2,136],[23,9,253,197,161,170,241,141,37,86,156,136,186,112,217,249,106,91,100,187,178,30,27,86,102,123,105,16,75,76,105,197,172,178,182,52,185,128,61,165,168,247,233,48,154,227,173,154,5,209,212,252,65,156,44,248,57,166,242,228,70,243,48,48,214,125,134,185,64,91,66,138,32,73,30,27,167,173,189,29,95,4,42,184,74,138,122,185,250,207,224,55,187,14,50,61],[6,255,12,153,144,193,212,160,228,134,35,152,170,174,161,99,228,65,98,196,71,53,38,101,8,131,115,130,39,149,102,163,139,120,165,255,38,38,2,47,213,19,58,34,70,216,163,241,0,8,64,28,186,220,222,11,45,240,245,236,77,193,111,14,92,135,73,183,250,193,164,49,57,180,48,197,171,44,36,197,236,47,59,36,223,36,82,27,173,98,174,201,51,148,4,70],[14,249,159,165,206,110,116,109,117,200,150,203,245,165,68,25,170,238,152,28,217,149,236,161,1,154,240,225,163,121,144,234,253,158,194,158,21,7,97,88,55,218,68,116,230,30,239,83,7,99,121,144,1,107,201,198,132,193,24,242,16,117,36,59,208,206,139,154,35,188,66,241,138,206,241,53,86,220,53,154,213,232,98,57,196,229,140,92,236,97,91,58,62,166,204,216],[17,20,38,58,78,187,3,252,111,177,45,41,154,253,77,175,131,246,227,92,201,204,51,42,41,216,151,54,144,201,23,104,137,92,161,173,252,131,3,132,50,135,111,4,171,39,144,98,20,40,114,255,26,136,213,62,64,42,107,222,170,156,72,94,33,149,107,208,112,155,207,90,48,15,95,155,186,133,127,209,70,61,229,44,238,6,39,134,135,47,196,32,234,199,66,115],[18,46,227,200,250,130,148,134,28,173,39,132,82,250,125,77,102,4,96,244,51,1,7,21,87,83,80,152,162,168,85,136,11,119,75,131,83,110,13,196,19,44,124,166,141,48,34,154,21,103,90,251,119,39,23,186,228,177,35,84,13,87,223,58,246,30,224,92,169,228,95,81,239,98,86,220,152,183,220,159,56,79,49,153,167,23,173,155,36,165,202,119,178,97,189,128],[17,28,253,149,109,32,13,50,188,33,28,248,255,186,115,236,57,87,100,141,185,159,157,17,126,203,105,47,69,208,133,217,23,130,12,134,105,207,105,198,189,114,167,142,189,201,100,94,12,214,40,43,206,3,127,110,97,203,132,41,180,120,224,161,225,82,25,53,242,120,2,43,223,250,105,225,92,23,140,134,154,182,42,182,2,25,168,55,3,251,130,119,136,134,98,228],[22,219,152,252,165,234,85,226,83,85,71,5,79,171,209,72,243,160,160,20,203,52,137,106,255,45,51,221,113,199,175,15,71,166,204,172,15,149,130,224,35,121,97,183,198,30,239,115,22,227,220,53,59,67,56,208,53,43,106,179,74,125,152,38,22,158,172,226,212,248,221,74,138,249,108,59,59,140,241,109,176,206,110,153,39,60,137,121,202,69,138,238,247,234,173,138],[2,13,127,164,216,68,240,140,217,155,192,78,173,47,106,230,182,230,56,17,33,208,102,52,197,118,248,63,124,135,221,178,8,165,149,109,21,120,154,87,77,43,77,42,136,171,210,147,19,86,15,174,115,180,230,114,122,225,175,28,199,63,179,76,148,155,140,140,85,48,106,185,219,5,88,190,193,40,98,146,15,1,57,11,114,52,139,235,233,14,96,178,230,175,75,82],[10,52,207,49,203,160,224,241,67,63,103,176,254,192,67,160,169,109,63,115,127,150,70,142,73,183,159,12,101,150,205,104,56,80,183,203,130,100,203,226,22,169,57,58,160,32,232,249,25,165,2,139,125,45,225,154,58,93,55,163,240,172,80,56,101,212,152,235,40,137,84,193,11,37,53,96,86,223,58,38,214,80,218,89,239,32,113,125,188,172,170,147,135,249,131,26],[4,168,105,219,214,92,246,241,170,179,103,196,19,139,64,117,201,3,134,182,32,90,38,21,199,254,22,198,167,96,195,109,113,208,42,141,159,205,250,123,164,192,12,121,77,30,144,242,21,173,33,60,106,145,90,3,68,73,111,133,39,60,18,18,14,188,81,133,53,160,230,243,12,180,130,209,128,60,60,220,206,158,73,255,178,148,177,5,182,50,74,70,143,253,65,232],[3,113,238,89,173,119,33,152,90,30,169,74,142,243,70,130,43,196,151,82,102,125,236,128,115,167,152,96,113,163,117,180,104,7,226,16,207,213,125,179,118,122,166,231,198,242,72,52,21,56,163,178,171,52,218,39,71,246,156,211,55,180,246,2,157,52,14,42,25,224,198,159,201,158,146,94,103,45,225,236,225,5,175,233,81,164,39,119,34,121,207,216,229,86,31,70],[6,78,100,188,84,12,86,45,201,122,122,32,109,53,213,171,33,0,53,207,112,148,229,144,209,9,223,27,190,205,62,90,217,25,190,125,138,55,155,50,84,86,152,120,99,46,19,18,17,7,117,186,241,12,76,53,140,125,95,88,68,22,180,82,66,188,174,134,113,23,234,48,161,5,243,29,60,146,25,13,21,127,213,91,247,61,240,42,165,22,87,132,29,224,12,152],[15,125,221,84,181,201,120,2,54,70,77,24,113,154,52,251,177,34,171,220,230,189,24,4,102,32,211,130,231,168,119,1,51,130,97,225,244,164,183,228,41,66,14,150,105,184,93,35,18,17,42,1,103,81,244,127,248,142,213,178,35,130,111,221,84,133,156,127,127,98,137,37,182,78,51,220,208,113,182,8,10,191,180,176,11,14,130,67,44,99,103,74,108,142,96,196],[14,215,8,195,222,56,171,84,51,142,232,54,229,6,48,75,126,51,59,138,194,117,131,170,254,161,244,7,89,64,230,192,78,108,229,253,40,120,132,210,192,48,159,19,187,210,251,136,21,157,138,202,126,90,187,90,53,99,92,188,45,182,120,254,119,127,189,18,252,198,153,109,176,77,103,128,125,216,138,75,125,139,123,4,79,166,81,145,78,131,24,5,10,118,129,130],[0,149,91,63,22,199,115,54,7,221,171,142,86,45,61,129,13,155,141,109,123,104,42,247,14,208,10,14,162,143,60,205,23,127,115,49,61,133,128,55,41,9,12,114,81,14,86,108,22,143,161,131,236,180,240,222,214,247,142,155,134,202,160,9,159,199,95,88,80,246,71,189,123,29,161,133,178,93,162,118,79,142,36,249,42,149,181,80,94,78,229,198,6,247,241,209],[0,64,91,46,216,66,27,102,94,252,166,208,203,171,52,212,204,242,55,156,43,118,216,90,124,54,165,149,49,99,13,249,231,74,169,23,173,3,44,223,25,147,219,56,140,22,149,178,15,194,249,254,253,149,27,178,32,248,149,42,244,139,169,30,106,232,214,168,234,60,209,108,135,16,158,126,81,62,67,132,98,99,113,87,163,123,186,70,252,131,155,240,30,0,10,146],[16,95,234,43,2,165,209,134,48,179,131,162,45,244,109,244,242,138,139,4,213,38,116,160,46,145,42,6,117,114,27,222,117,119,16,5,136,69,54,159,154,111,205,217,34,247,113,57,13,100,209,190,166,87,38,209,17,234,53,250,153,21,203,39,223,178,190,60,72,81,169,60,185,3,103,223,219,116,25,165,117,206,244,88,134,155,143,131,25,129,15,122,98,42,149,129],[7,194,147,45,43,141,181,20,90,119,242,165,40,88,116,144,254,116,107,132,185,101,189,28,83,177,101,32,191,97,96,25,54,124,244,88,83,88,58,4,188,138,178,159,0,229,32,254,4,145,21,103,91,52,112,159,182,114,233,148,161,36,164,154,57,37,99,67,181,239,116,233,202,56,199,225,93,94,13,79,228,155,169,247,236,234,175,15,60,235,143,102,93,105,186,89],[0,17,112,166,32,43,31,125,223,22,250,189,60,241,252,203,158,110,127,171,73,56,43,146,65,51,180,96,31,5,244,2,9,218,58,188,251,159,189,135,218,149,20,20,186,172,235,177,8,57,9,66,146,211,131,105,48,175,99,74,145,237,172,152,252,207,63,41,76,115,231,65,61,128,163,141,64,216,168,137,117,104,26,137,101,153,75,147,62,184,59,54,103,79,33,29],[12,13,121,70,116,198,57,101,46,61,152,114,92,169,110,226,112,72,251,3,196,96,126,80,144,122,252,137,108,202,87,12,126,131,239,114,71,168,244,167,246,235,232,251,53,161,143,34,20,182,165,221,18,203,140,194,123,21,126,229,15,248,106,24,249,190,156,113,80,169,211,214,4,30,74,52,219,255,145,171,166,113,126,229,76,63,191,133,208,158,75,164,10,197,6,53],[21,227,244,128,153,77,127,250,25,60,66,62,70,127,51,204,220,16,137,191,84,3,15,238,248,8,129,215,185,187,40,144,37,1,132,31,67,142,248,55,89,85,26,130,121,228,201,119,6,97,243,200,96,209,115,27,136,151,108,31,11,44,107,169,84,94,116,143,46,99,135,79,182,197,254,60,173,58,22,207,66,4,95,232,223,11,26,147,84,215,185,33,236,199,171,49],[12,93,231,127,119,48,144,51,130,58,89,109,167,38,138,79,64,235,5,153,78,221,5,7,180,252,165,112,153,214,90,162,91,156,242,254,156,55,251,204,202,166,108,50,111,90,105,180,11,107,211,163,137,192,216,156,155,208,32,143,102,15,40,240,35,172,49,33,159,12,164,243,91,241,94,142,216,110,139,26,183,167,118,216,192,128,160,70,211,90,189,45,176,254,132,51],[19,138,226,58,104,36,246,166,144,226,162,5,83,253,76,40,43,96,183,122,135,144,234,197,198,68,81,2,240,141,153,41,41,134,218,35,236,115,22,101,218,209,43,31,205,109,243,39,7,199,230,139,57,103,191,99,235,169,138,206,127,165,213,253,245,102,227,2,29,98,118,196,6,203,162,2,33,252,197,7,167,179,74,220,62,216,226,19,73,103,62,168,127,201,113,178],[3,60,155,207,141,150,108,99,166,219,206,142,137,153,10,248,249,173,40,68,56,230,37,87,26,67,161,95,66,166,34,101,40,223,119,65,98,104,224,86,187,148,120,228,41,81,175,253,13,239,4,175,110,231,28,96,159,33,131,139,234,167,214,195,203,142,240,163,240,249,46,8,184,210,68,24,207,232,112,155,81,104,137,42,211,92,21,108,248,67,181,170,56,81,190,241],[1,175,112,131,26,228,77,198,150,122,50,131,59,136,28,155,120,73,47,186,114,71,80,214,96,196,17,234,224,114,19,164,229,193,35,217,143,135,21,196,67,171,191,99,140,164,103,60,16,208,178,208,166,175,37,126,255,37,236,117,239,99,3,196,125,168,92,62,90,70,38,129,247,42,20,224,198,32,200,169,245,98,107,95,252,8,186,54,240,20,234,79,178,197,1,131],[25,238,128,140,99,172,167,152,103,24,158,26,132,129,240,108,185,37,175,81,201,247,112,16,229,122,146,0,82,114,174,197,190,210,13,191,50,217,70,170,233,118,179,164,25,166,132,241,0,189,48,149,168,254,249,142,50,112,162,116,41,129,4,115,52,216,81,73,6,4,235,11,52,251,216,144,143,128,150,103,146,81,89,93,152,76,246,113,110,196,103,176,169,168,254,60],[5,221,205,168,135,34,252,199,96,60,127,248,200,141,207,118,80,246,53,8,214,11,223,243,91,57,94,151,232,69,149,38,8,92,11,216,101,11,71,215,237,212,188,24,22,148,82,189,21,231,207,120,169,16,0,253,146,187,240,51,146,226,231,60,87,66,81,162,148,242,237,194,238,135,0,71,55,96,95,132,161,179,140,111,31,42,241,63,8,183,85,253,238,17,182,128],[11,8,88,200,26,145,167,68,0,161,120,139,203,171,161,145,209,127,36,44,221,139,110,1,138,47,69,133,177,233,210,251,216,75,212,61,17,167,232,109,100,21,216,25,222,179,196,185,7,249,34,118,180,163,215,34,23,172,113,160,221,97,108,228,166,0,50,86,4,145,53,123,250,50,126,115,247,206,36,14,21,16,130,28,198,9,193,18,156,107,4,134,106,119,155,149],[12,50,165,78,164,109,120,151,169,39,140,48,30,159,138,12,40,178,139,86,224,236,233,37,24,13,36,71,28,6,223,138,28,125,187,164,77,36,49,42,220,46,171,82,110,152,222,175,15,180,202,229,105,243,145,39,21,106,70,63,90,159,137,187,103,124,116,14,155,237,135,170,227,104,133,10,103,182,47,85,41,29,14,25,30,42,77,33,127,12,171,104,17,225,128,224],[11,172,249,25,151,65,23,41,98,251,46,254,207,48,68,65,5,79,206,34,0,105,83,105,59,18,240,37,23,117,103,52,157,228,215,160,81,221,159,47,224,152,12,208,238,218,27,62,5,130,50,154,8,213,200,6,255,206,153,253,33,96,62,248,168,238,137,55,224,127,128,66,47,189,125,0,228,231,241,146,145,18,216,97,32,23,10,73,162,141,63,215,201,10,68,118],[9,148,20,175,149,7,208,218,233,152,246,86,143,77,231,105,205,163,16,194,23,188,175,132,88,119,163,137,171,184,216,89,132,95,99,23,249,28,139,15,41,31,160,183,47,208,55,154,14,148,1,219,193,237,38,49,139,100,187,111,114,1,207,62,154,222,180,174,33,238,31,119,18,238,226,217,59,119,84,100,219,213,114,111,136,94,233,38,30,188,110,180,26,143,65,96],[18,165,78,229,29,17,126,254,30,107,60,149,111,216,27,14,128,173,234,245,1,107,244,194,35,64,42,141,177,219,149,224,207,162,134,24,99,185,225,215,49,5,151,208,126,189,51,1,9,46,99,152,180,59,2,158,49,16,96,20,95,135,252,212,50,123,48,248,197,28,99,236,246,120,83,109,14,16,212,238,87,252,126,157,188,170,227,116,39,25,164,96,204,216,197,143],[12,188,76,144,56,96,82,225,64,84,69,149,72,229,37,89,211,166,35,253,66,204,145,116,219,252,93,51,60,97,197,8,22,146,105,143,215,118,252,61,49,134,232,88,159,170,180,157,18,24,225,193,44,170,89,14,167,191,119,101,234,103,219,190,228,152,215,163,202,96,136,44,141,75,98,232,218,83,240,182,205,226,201,155,216,62,79,12,8,102,187,83,234,147,153,86],[14,219,238,94,152,39,154,18,235,127,161,74,103,110,142,11,62,63,25,17,238,66,227,114,127,137,242,92,71,87,211,46,83,57,2,47,118,185,243,31,16,245,70,95,42,44,187,118,1,107,253,202,117,131,246,2,79,155,100,63,173,166,116,125,206,87,219,25,220,244,124,39,82,200,17,64,102,150,192,109,205,88,228,62,127,203,175,18,191,152,3,65,71,153,55,29],[17,239,27,12,97,68,89,156,168,143,171,148,197,105,23,8,121,49,14,182,135,163,67,245,3,189,224,113,226,5,154,218,255,172,108,224,190,237,50,221,14,227,21,210,74,114,221,98,15,197,228,216,153,143,70,36,159,187,228,36,125,151,116,229,207,197,94,177,247,69,156,222,204,3,164,61,186,153,113,128,203,202,154,136,93,2,45,59,62,151,94,246,107,241,187,228],[8,36,114,109,46,250,82,34,186,137,251,145,46,10,252,117,19,190,132,210,192,168,213,178,170,245,167,56,107,89,96,203,182,160,88,30,111,198,181,120,197,97,225,171,57,82,163,174,1,159,204,129,100,104,39,106,33,104,17,66,23,172,146,169,137,137,5,124,13,235,144,195,73,109,166,28,138,5,167,245,98,46,51,63,99,61,53,85,22,162,131,128,69,76,41,237],[14,12,123,169,80,124,242,188,154,95,9,173,2,80,150,85,142,225,124,205,172,67,110,146,140,60,18,101,229,33,36,160,253,220,22,114,230,226,32,57,70,44,46,201,213,51,37,9,3,204,84,119,138,100,160,9,87,115,81,152,109,86,33,31,103,169,221,246,36,90,79,106,62,7,43,188,189,194,56,81,234,140,60,244,221,204,43,75,198,95,31,26,198,211,158,184],[22,103,154,4,170,29,62,150,169,189,115,177,19,83,240,233,201,239,44,206,130,142,253,240,162,189,16,232,243,96,186,151,89,233,194,78,181,130,111,237,249,246,72,15,223,172,83,96,1,199,230,21,159,151,64,97,7,110,74,126,95,83,213,151,117,6,184,125,72,162,231,225,165,221,173,204,139,59,250,77,179,234,110,171,125,144,206,193,20,113,35,239,229,161,78,96],[13,43,85,179,44,124,210,123,42,90,211,12,212,197,75,111,31,247,66,96,234,141,224,6,210,2,87,128,167,152,157,56,188,66,158,118,128,230,12,28,116,30,216,43,145,68,65,227,6,57,36,64,22,26,21,30,138,250,57,166,3,136,53,188,129,167,41,48,176,133,20,18,162,242,225,218,117,17,73,45,213,30,112,167,180,25,161,178,150,210,24,39,97,178,243,142],[25,165,8,192,167,197,104,163,175,250,117,93,203,220,81,173,80,3,76,241,242,78,35,46,205,63,108,83,57,127,12,3,142,75,0,20,69,237,192,30,121,200,54,83,181,76,22,104,15,28,43,4,157,68,223,53,216,202,0,107,51,204,129,211,212,243,132,215,60,232,12,58,102,243,220,57,128,247,11,106,48,34,195,34,208,81,14,139,76,143,253,21,46,202,83,100],[0,140,225,165,106,123,0,15,116,166,77,71,110,63,83,213,236,114,176,224,94,79,168,206,112,232,53,150,89,76,23,137,180,46,125,63,213,10,222,129,80,84,113,212,117,72,252,121,3,86,82,179,19,5,69,44,235,22,88,204,48,108,137,20,184,179,140,157,19,191,41,194,116,52,229,141,181,116,139,57,88,99,23,231,127,155,158,64,32,210,213,48,205,232,169,37],[17,137,119,227,110,97,221,181,238,127,81,4,16,165,126,150,134,148,128,74,214,170,47,227,237,2,89,248,144,93,133,220,113,135,80,156,88,107,174,194,104,121,176,97,133,2,199,200,3,221,221,46,135,84,156,57,230,81,2,75,89,185,68,208,214,95,236,219,211,99,45,210,165,63,129,230,131,119,113,118,243,134,119,239,132,113,71,103,100,101,224,168,152,12,27,34],[10,11,47,150,36,70,244,147,67,46,230,182,154,69,94,85,89,183,192,41,204,162,86,112,108,102,196,210,141,84,159,93,33,251,14,230,248,254,83,130,179,33,60,194,21,153,136,217,4,168,66,67,56,190,45,101,179,208,176,231,19,143,11,222,111,46,181,69,212,33,160,24,94,75,41,203,31,61,2,57,113,235,75,98,59,45,76,120,245,104,5,45,135,242,215,189],[7,24,223,11,89,133,125,180,1,106,237,83,199,213,15,116,55,101,138,229,28,182,49,201,111,220,119,145,91,81,149,86,38,64,99,12,170,39,203,111,85,21,118,126,231,39,236,134,21,17,112,61,254,89,199,232,65,183,95,248,196,161,184,152,81,39,28,16,220,89,131,11,48,242,75,47,243,172,142,14,33,106,30,112,142,130,162,58,45,98,121,166,122,68,103,123],[10,252,118,127,116,58,239,74,163,138,84,251,18,174,123,111,163,158,79,212,173,167,102,40,202,208,149,60,104,53,210,208,174,134,123,112,12,54,113,155,114,2,207,166,146,109,153,186,6,248,46,242,199,29,123,245,219,167,255,38,168,93,170,26,211,122,99,90,39,187,169,96,157,254,109,80,159,108,82,153,218,159,201,150,201,22,89,34,110,96,135,95,180,16,65,190],[20,112,247,219,15,202,160,10,67,15,181,187,58,66,102,137,230,97,161,11,140,19,154,185,195,97,48,182,122,119,26,119,236,173,195,80,78,156,230,59,209,24,184,219,49,48,104,239,21,252,188,184,96,34,222,119,214,255,172,66,70,97,21,222,67,97,230,204,21,24,159,80,150,22,182,58,127,142,174,53,24,231,198,62,151,182,178,19,84,63,47,23,54,18,200,41],[14,243,97,48,74,218,97,253,134,194,102,241,135,11,108,132,103,154,136,98,64,169,222,252,57,222,104,99,161,22,200,146,59,55,38,148,59,27,175,0,112,225,194,38,196,89,62,255,8,171,108,62,48,124,144,211,36,249,150,83,173,239,186,158,96,145,153,170,168,223,204,218,72,18,54,219,186,162,85,249,181,101,242,101,81,55,100,90,196,66,36,4,156,152,231,140],[3,248,172,131,48,132,13,138,177,93,170,39,207,117,178,197,128,188,190,2,19,1,103,239,18,38,207,75,105,51,91,92,62,253,224,32,129,68,135,240,152,209,31,133,4,67,55,196,2,104,187,162,254,4,24,25,243,40,64,178,164,205,50,23,150,125,43,103,235,125,116,20,19,23,182,88,150,59,179,233,39,204,145,187,73,82,229,5,69,160,132,152,70,73,235,125],[18,254,39,190,159,176,98,240,25,93,82,148,56,240,250,250,78,105,85,193,155,125,191,117,187,26,55,234,197,229,71,197,138,34,62,208,213,0,142,194,102,39,222,255,151,201,61,146,22,209,156,85,33,67,61,3,223,63,58,176,159,10,104,171,241,166,241,69,196,48,55,234,231,189,197,217,230,202,1,236,94,107,78,35,254,102,22,196,103,140,106,16,80,194,176,60],[4,4,212,63,5,222,79,46,78,249,37,203,64,13,0,35,218,15,156,67,17,52,26,134,55,143,228,44,250,14,161,69,108,87,170,138,138,173,16,21,60,152,158,59,96,105,151,195,21,128,45,3,208,245,125,59,56,177,190,186,19,223,62,233,177,128,229,61,44,149,13,165,217,172,5,140,113,114,171,196,101,216,62,235,57,101,195,15,78,98,227,3,95,114,2,113],[23,183,221,249,237,222,216,72,241,164,248,228,202,56,110,61,54,70,167,79,31,136,149,76,73,148,182,39,96,113,31,208,147,194,81,13,49,148,42,195,58,124,236,223,60,171,104,73,11,66,88,177,179,139,42,119,125,254,176,144,142,144,210,130,142,93,42,217,50,60,202,221,41,95,64,164,17,48,156,129,149,138,126,45,246,157,124,1,141,232,246,2,148,9,168,43],[5,219,194,70,122,248,44,251,227,241,29,157,106,150,228,93,225,181,103,49,33,232,133,32,205,253,187,180,13,182,129,18,46,32,147,72,144,55,194,136,247,108,94,82,97,131,230,91,9,97,123,120,18,113,6,204,121,174,237,234,3,254,115,34,184,222,185,196,35,61,71,120,146,12,58,162,202,109,26,20,94,86,7,153,162,188,59,45,153,249,100,81,96,95,173,205],[4,120,18,137,88,155,74,98,239,40,89,255,13,187,100,8,167,131,44,78,163,214,214,47,133,194,77,235,17,87,208,233,170,88,93,98,16,210,94,192,44,202,242,110,176,227,218,61,15,89,186,18,10,111,117,215,144,245,254,29,118,144,201,43,170,182,252,181,88,119,77,151,240,162,240,188,215,90,197,58,26,166,192,253,129,196,5,199,197,196,13,220,110,177,104,45],[23,206,125,79,3,223,45,140,49,56,226,235,103,244,123,140,120,53,30,21,147,122,70,193,63,39,85,44,115,81,96,20,72,137,140,77,83,101,5,37,26,197,228,202,33,60,2,152,0,216,33,226,38,30,81,12,171,45,235,153,255,202,243,220,147,254,66,212,77,53,79,54,153,18,119,90,113,217,183,122,82,2,181,5,128,132,122,254,72,5,57,83,151,59,157,207],[22,151,117,246,11,242,6,226,154,193,42,7,170,95,163,148,250,251,35,224,73,244,149,16,55,40,213,34,86,89,157,52,26,102,106,138,72,212,188,252,133,64,9,224,101,198,13,243,22,82,215,186,223,183,161,146,24,105,72,76,108,121,87,37,248,93,131,183,138,171,56,235,1,7,216,182,238,129,227,171,57,134,177,177,102,38,122,122,168,42,118,129,231,121,71,8],[5,207,90,222,229,228,44,200,194,163,107,203,254,248,173,197,94,205,200,59,83,80,62,177,231,139,169,227,193,125,90,159,210,139,125,173,249,244,56,184,246,255,47,224,39,176,99,237,4,62,141,59,43,162,197,144,68,103,185,59,24,125,243,97,16,241,18,166,198,223,5,15,156,111,58,104,232,26,68,188,192,229,165,156,229,123,198,235,149,162,249,133,89,122,8,180],[18,27,147,47,70,206,22,72,104,60,237,54,104,72,31,20,134,153,79,34,190,227,226,63,164,206,255,82,52,41,117,56,221,29,165,109,105,223,85,162,66,22,248,34,224,14,235,166,1,249,28,26,252,49,70,69,156,175,112,166,69,78,173,27,165,157,20,104,99,35,22,160,5,82,206,177,225,110,174,221,207,213,142,141,223,108,48,227,210,61,61,78,178,33,188,35],[15,235,66,168,166,23,38,226,8,208,123,35,222,105,75,184,32,108,125,89,88,104,75,160,207,56,254,187,131,130,119,59,65,147,56,7,11,241,190,101,21,219,94,90,45,1,154,212,15,45,47,253,183,111,95,103,225,142,172,118,10,157,65,104,76,185,56,8,240,91,167,34,233,137,119,199,186,214,122,159,185,167,49,20,20,190,83,157,196,7,66,141,108,103,129,47],[8,233,210,100,170,131,115,241,22,25,65,63,9,233,250,80,222,213,236,77,45,12,120,86,66,60,213,6,198,24,5,253,60,180,78,113,230,45,241,110,148,119,80,4,245,179,51,22,1,80,61,226,26,143,163,49,231,39,0,130,22,46,254,232,94,35,183,36,120,73,157,108,3,73,138,168,50,54,254,129,215,46,187,40,220,178,245,21,181,141,69,184,250,36,209,202],[19,48,184,7,21,120,207,47,232,180,134,225,162,153,233,29,9,97,46,69,233,114,2,190,127,145,190,187,173,241,121,161,143,230,190,183,63,140,57,237,124,92,251,129,2,171,124,100,4,50,7,43,98,183,224,102,119,169,72,72,156,133,115,83,40,13,40,167,242,117,230,201,21,206,154,66,168,49,69,244,208,108,137,209,49,177,43,12,114,106,106,139,202,133,79,63],[12,174,167,121,215,224,159,209,46,154,191,234,65,86,158,138,140,42,58,113,153,81,235,15,126,184,37,115,94,105,45,205,125,13,173,217,59,192,88,5,131,123,9,143,176,38,255,56,13,227,206,38,56,179,174,242,229,141,78,184,122,226,18,14,246,85,134,124,77,93,115,57,28,191,5,38,151,104,64,59,59,253,58,97,51,3,135,60,243,103,223,79,22,197,101,217],[16,204,155,144,216,63,255,7,27,10,239,173,171,209,89,32,37,186,188,236,183,30,113,130,121,220,184,231,30,54,172,8,11,198,45,203,174,177,157,48,122,51,93,169,10,188,175,74,17,81,255,250,75,109,217,194,180,12,116,140,20,149,82,233,180,110,150,183,113,217,189,196,153,13,120,37,107,196,69,113,182,86,1,211,208,201,138,202,211,66,55,55,96,53,214,245],[20,3,46,25,197,131,167,142,135,88,227,3,8,137,139,252,39,80,230,234,203,147,180,145,206,137,114,133,44,209,100,21,162,47,140,254,110,81,73,33,249,244,251,183,32,215,87,52,9,156,93,113,23,56,19,106,250,182,40,70,235,208,90,121,159,145,114,243,51,144,238,22,115,108,118,184,210,222,84,128,191,30,32,44,175,135,9,179,97,98,192,111,70,177,134,83],[14,163,137,162,190,95,59,118,149,204,199,51,149,74,70,49,110,110,109,45,253,78,7,70,24,77,101,20,248,137,196,178,224,106,197,155,252,66,44,198,205,194,64,87,12,17,194,66,24,171,2,86,181,36,41,19,243,142,18,226,148,44,96,42,113,185,96,237,246,84,48,97,130,178,33,95,223,28,3,50,248,52,73,98,188,32,237,54,70,85,128,242,61,236,6,93],[0,221,216,40,140,40,181,149,30,98,77,193,156,1,123,17,193,137,197,185,89,111,231,182,148,188,0,194,72,108,197,6,16,29,120,53,0,92,105,76,8,249,111,254,12,49,243,37,10,164,171,255,130,51,43,116,224,16,167,99,243,186,173,38,17,131,141,76,86,246,67,200,182,144,99,120,243,37,201,247,195,118,129,112,234,243,222,207,86,138,224,111,227,7,223,12],[7,68,239,22,45,179,222,188,36,16,174,51,179,67,73,53,132,197,105,46,122,213,130,135,211,150,68,220,205,221,34,95,10,184,65,78,50,153,72,90,65,254,213,32,60,108,18,231,20,110,130,177,51,237,238,145,97,145,246,215,42,227,255,77,30,231,251,209,112,145,156,217,199,143,118,38,212,161,45,233,192,11,227,8,138,160,23,143,33,221,107,62,210,213,50,117],[23,137,232,201,44,83,197,234,141,102,108,199,144,114,213,120,214,16,254,6,242,196,147,30,131,165,180,84,64,121,102,26,194,70,247,172,3,252,103,18,244,243,64,140,109,37,223,214,10,216,23,130,44,17,219,17,116,76,34,171,110,101,17,51,204,246,93,33,28,249,178,214,102,220,201,0,23,149,156,62,32,153,100,6,111,220,96,0,210,189,108,133,63,120,3,218],[23,231,45,63,97,73,26,152,66,162,26,94,61,42,121,130,220,10,167,134,28,3,215,70,112,109,76,11,60,37,21,180,83,120,132,222,30,137,59,181,62,237,187,153,119,112,72,34,3,189,220,128,141,75,240,195,108,142,131,244,170,116,57,102,47,190,2,15,206,184,254,69,130,63,110,226,247,14,223,212,111,168,100,116,143,179,15,47,143,209,201,128,219,87,252,243],[0,158,215,175,62,152,180,138,142,166,22,165,8,134,30,225,85,153,148,82,18,83,141,165,52,73,67,87,77,2,5,153,230,207,74,54,18,58,84,241,170,110,3,105,162,188,47,217,1,34,237,216,201,90,107,219,162,72,27,229,79,86,12,212,3,119,161,8,171,159,212,96,104,79,47,72,220,181,125,31,138,145,48,3,97,138,239,50,114,234,153,148,182,219,39,17],[19,137,17,248,252,100,190,100,159,1,214,146,26,206,113,118,209,16,60,172,2,167,191,192,128,41,62,253,231,23,118,147,53,166,107,2,91,197,205,3,11,202,248,240,78,88,125,33,24,78,86,140,130,8,232,193,255,126,161,7,108,54,24,232,241,197,9,54,65,240,194,141,155,16,245,175,143,183,238,42,182,1,193,41,179,133,59,38,201,4,132,219,49,91,219,10],[23,130,20,180,84,244,151,103,68,240,104,157,102,32,103,187,20,95,123,127,64,251,109,148,38,176,45,167,56,103,25,165,166,53,162,246,60,235,36,234,28,179,185,143,63,48,25,115,18,125,48,137,231,85,75,32,22,228,243,83,198,221,197,142,18,191,81,190,197,13,27,191,95,104,79,230,205,70,253,158,85,153,52,98,108,74,57,165,251,133,112,71,144,160,8,66],[11,114,234,95,127,58,64,112,247,200,105,204,218,112,244,59,61,31,135,93,97,180,181,160,116,187,132,83,64,77,99,11,106,95,22,78,148,33,70,2,244,180,202,82,240,241,13,246,25,53,145,198,69,205,199,40,125,195,61,65,66,109,62,207,213,63,231,125,198,192,234,254,12,22,128,157,137,248,69,158,42,47,67,229,81,108,255,59,127,34,197,59,80,183,230,164],[23,31,165,206,130,81,25,85,12,106,101,189,151,79,230,237,168,243,130,33,239,220,92,88,124,158,136,87,72,133,193,35,48,33,104,103,14,31,211,165,4,74,171,41,228,183,209,57,11,95,185,178,12,99,112,191,190,4,81,106,12,14,108,139,226,124,128,11,196,93,188,230,169,153,103,208,247,8,54,51,91,98,176,208,253,135,126,81,148,107,203,127,52,14,86,27],[6,249,154,205,44,50,148,129,20,27,89,31,20,136,115,223,255,219,238,127,66,201,209,218,217,186,17,184,185,248,243,239,40,4,23,209,186,61,56,55,60,119,91,181,126,204,213,81,2,208,185,113,226,211,55,162,1,40,119,226,252,103,14,119,4,78,83,241,156,69,0,89,174,201,0,116,52,245,140,65,219,90,171,71,195,6,153,227,37,40,127,193,165,45,48,96],[6,236,122,44,161,22,118,184,180,137,110,102,55,133,180,23,41,223,17,105,17,37,49,209,254,235,53,119,230,184,1,36,252,242,10,53,133,184,59,120,110,179,157,138,153,221,134,147,1,164,166,99,63,136,43,248,223,209,220,10,196,61,216,247,162,15,29,172,182,149,20,80,43,54,92,174,236,146,78,198,36,54,2,120,55,190,182,159,25,158,105,251,182,61,19,181],[23,11,68,202,133,105,65,25,141,236,63,189,61,36,155,102,126,109,111,163,162,87,248,166,121,67,107,33,243,121,169,226,255,44,97,252,195,114,203,168,131,53,75,179,10,162,224,151,15,188,157,82,180,229,187,205,75,18,137,165,18,244,14,3,37,189,171,11,27,127,105,197,16,24,119,188,31,172,153,115,229,250,220,72,20,44,67,200,224,123,49,145,22,232,129,13],[16,253,177,229,43,240,109,42,30,167,188,117,222,110,84,14,118,216,148,148,27,143,103,172,152,65,203,40,111,209,111,2,104,12,210,1,220,21,137,102,57,163,33,181,196,179,226,161,11,34,93,168,10,52,202,183,162,230,248,33,43,147,68,240,217,231,121,3,242,2,152,216,234,32,255,115,1,177,207,141,98,230,213,253,186,110,207,96,218,225,53,169,250,224,106,178],[14,61,8,50,216,15,118,61,124,25,142,71,177,167,88,94,49,17,218,5,56,164,18,80,97,98,67,22,3,247,86,63,9,223,93,152,130,19,22,185,176,242,156,233,123,153,135,139,24,87,185,123,126,23,96,185,90,140,58,137,82,250,188,159,174,126,223,105,46,121,73,217,230,153,90,106,197,230,57,88,92,165,69,182,81,184,68,94,252,117,177,90,131,140,172,101],[25,232,234,31,106,201,234,214,112,90,67,195,119,7,44,241,183,81,145,105,81,246,180,71,208,40,132,164,173,83,203,93,62,8,178,109,84,142,219,169,222,228,40,38,10,46,157,233,9,246,160,189,211,143,234,68,253,121,222,17,176,5,11,28,177,206,204,179,100,190,83,69,84,65,89,174,129,156,150,135,209,53,213,216,220,64,184,243,181,231,187,174,203,178,121,210],[3,133,244,116,77,180,226,96,231,123,34,253,250,48,162,163,77,55,39,133,203,132,147,165,76,167,13,83,124,4,12,9,51,245,254,108,222,50,21,240,17,227,132,230,100,222,52,34,10,219,138,156,166,26,232,81,203,109,10,100,15,108,63,85,34,18,211,171,29,149,182,56,146,200,100,3,114,194,19,178,134,219,134,45,177,61,144,37,12,152,205,6,192,195,109,177],[7,134,117,211,46,127,240,209,170,198,184,115,193,134,100,114,250,125,90,232,158,153,56,13,91,18,32,192,184,109,178,246,138,215,190,235,179,111,140,254,169,106,86,42,65,125,49,90,15,131,203,247,248,29,117,86,155,148,53,237,139,105,97,83,17,77,251,127,139,39,15,212,198,212,247,241,132,131,97,203,244,161,123,86,191,162,62,136,88,122,248,149,207,147,101,161],[24,232,178,183,233,95,110,55,59,1,154,210,222,40,175,31,66,26,173,232,67,201,188,166,230,241,208,208,184,64,195,108,196,35,46,102,43,141,135,178,26,31,20,12,201,44,195,191,4,88,78,198,160,23,75,204,47,189,20,118,8,56,147,125,119,167,232,43,76,55,113,34,210,150,99,59,16,36,137,245,201,243,250,7,31,162,249,240,244,255,53,93,246,164,130,247],[2,135,26,67,184,230,32,55,108,86,240,131,35,5,125,18,96,242,237,52,232,116,139,48,129,93,128,161,138,51,107,220,164,79,120,194,190,58,184,91,182,196,89,115,0,53,234,134,4,32,211,237,183,8,193,145,26,28,130,160,253,222,24,150,139,38,11,148,13,173,31,221,248,20,117,129,41,144,212,73,28,95,189,67,195,41,60,120,82,74,227,72,194,137,117,204],[20,145,84,49,62,180,98,154,16,144,234,34,162,213,74,219,114,126,218,247,75,236,98,122,218,156,160,44,23,1,176,130,90,22,90,11,71,251,100,190,156,16,40,14,39,164,125,142,6,32,101,19,179,158,207,75,120,18,29,248,255,30,28,40,58,202,48,64,20,154,236,186,88,70,139,27,224,163,249,159,112,88,63,21,16,91,189,233,32,94,7,43,108,47,218,30],[1,183,145,2,146,122,161,3,50,16,134,103,86,114,150,254,0,223,70,225,231,87,210,12,160,17,35,8,31,234,91,35,226,114,147,72,24,85,51,105,227,195,204,173,208,22,143,128,16,84,111,172,10,49,122,40,231,215,250,29,37,19,231,88,158,186,249,209,34,190,151,209,13,225,105,227,218,0,27,51,9,159,117,143,254,86,86,179,4,226,198,241,224,120,128,152],[14,226,228,161,47,59,181,194,75,252,182,112,8,217,186,147,193,174,33,217,88,92,176,173,254,118,10,54,83,144,170,24,99,62,189,192,50,150,108,49,32,24,198,51,165,168,118,249,3,96,69,44,150,92,114,167,253,179,165,222,55,182,16,150,156,112,115,137,11,19,21,146,218,216,166,152,219,1,228,118,119,75,137,165,78,73,154,185,85,80,71,164,175,124,66,27],[18,100,149,34,98,180,118,234,115,103,160,238,13,139,49,17,245,34,14,165,183,92,28,34,205,218,212,99,151,174,114,129,45,66,107,56,125,130,249,174,32,13,39,158,166,97,185,193,25,196,16,2,213,124,13,48,119,168,183,120,37,204,21,9,123,25,80,177,126,154,237,37,170,237,240,11,72,60,198,145,75,223,37,74,133,167,18,247,118,41,89,217,6,79,58,247],[2,42,142,50,22,239,234,54,131,203,28,126,149,26,106,247,35,17,41,96,98,169,239,66,148,15,30,60,232,39,77,14,220,108,203,145,32,58,89,47,187,243,120,229,128,100,190,177,19,40,101,110,176,241,100,124,34,170,76,79,204,122,167,203,200,231,11,205,14,209,99,29,64,172,215,126,86,182,59,197,199,38,171,187,144,243,227,72,63,35,215,188,187,115,147,89],[16,68,51,176,135,178,93,85,48,128,230,72,177,100,101,12,192,107,114,229,237,11,137,56,71,229,251,203,80,38,135,127,254,241,124,130,49,242,34,247,134,144,94,60,101,240,154,234,23,21,87,198,164,228,138,237,5,119,8,83,166,76,43,57,43,108,33,184,114,207,204,83,134,103,71,251,24,82,241,14,169,11,152,116,198,29,11,172,0,251,180,175,251,121,246,119],[2,145,41,148,166,147,190,5,100,41,202,97,86,143,200,184,82,32,56,10,244,86,62,107,172,2,106,46,90,3,73,71,106,181,35,118,69,27,242,151,155,152,143,230,238,29,154,17,14,21,153,9,213,225,161,176,142,137,147,67,1,22,134,204,27,214,81,199,228,4,148,0,110,123,76,227,92,205,93,240,18,254,196,11,198,90,131,115,27,184,129,42,133,132,106,158],[19,235,124,36,120,49,212,135,123,159,204,123,4,26,166,15,227,115,216,40,172,124,81,120,32,232,206,153,166,200,213,10,25,92,225,243,232,102,156,200,147,97,38,180,108,83,3,19,20,150,242,240,192,224,14,245,177,175,73,61,109,185,51,234,101,212,156,248,211,220,203,110,181,175,110,149,128,60,183,244,27,12,50,46,22,131,33,233,104,88,136,62,209,98,51,86],[8,158,178,246,243,102,79,19,21,246,126,159,235,212,147,203,231,244,155,144,175,71,23,37,63,31,239,156,238,49,26,189,74,18,164,218,234,36,155,199,48,61,146,155,230,195,170,250,14,234,48,70,222,162,38,72,124,229,240,125,187,236,98,208,49,10,153,152,231,37,157,181,237,109,243,224,141,25,37,27,252,172,8,157,182,76,159,62,230,143,222,26,206,13,146,129],[8,43,127,238,81,10,186,192,237,195,164,179,157,3,49,110,125,91,86,38,19,170,243,96,137,225,87,58,234,231,158,159,139,69,223,31,204,215,104,138,238,220,88,6,49,169,221,76,15,125,52,235,119,143,66,193,221,199,214,8,78,168,36,74,14,40,241,59,165,107,161,63,114,18,182,254,90,64,89,144,237,124,229,77,155,19,214,165,37,183,70,171,186,156,45,201],[2,93,142,100,103,103,97,1,4,34,231,210,67,13,129,133,241,236,68,138,40,212,121,7,251,74,20,239,40,165,106,193,90,182,121,44,129,206,29,188,242,47,44,126,152,203,208,58,17,214,64,191,188,86,218,224,215,20,90,22,132,216,137,219,138,25,18,161,6,86,233,5,93,41,23,90,227,168,7,49,232,103,196,154,249,1,143,123,221,54,184,129,3,107,205,160],[23,64,231,140,179,78,211,99,33,41,56,46,150,68,49,178,164,45,101,35,79,129,233,32,91,19,88,195,8,130,215,183,74,28,252,231,88,210,233,213,125,249,230,32,221,251,36,26,17,15,182,201,174,235,76,143,71,218,194,96,103,138,202,8,15,142,129,96,155,73,246,242,102,116,159,70,140,53,30,175,57,73,175,253,28,187,166,79,175,249,199,27,154,194,7,116],[13,133,22,59,239,202,34,14,204,203,140,248,201,199,2,210,148,197,134,143,210,21,172,177,199,154,187,60,85,124,118,237,89,36,107,68,188,203,219,198,195,230,7,251,129,133,124,56,12,34,89,180,15,135,129,187,31,156,204,125,225,117,121,238,223,175,187,195,223,239,161,7,95,13,8,197,196,65,171,185,245,30,96,218,136,3,65,234,123,49,19,3,65,5,12,49],[8,51,18,81,114,75,43,209,104,1,84,33,94,108,25,116,94,110,151,96,176,190,216,151,170,1,31,200,226,189,59,73,157,106,116,169,71,72,217,24,217,190,76,35,104,74,253,96,18,115,38,180,228,213,131,84,41,38,17,19,114,138,183,155,12,83,230,218,14,255,242,73,91,19,86,224,207,13,42,41,156,143,6,151,240,122,12,13,77,184,225,74,199,214,211,195],[24,216,50,60,121,66,211,174,208,134,25,242,252,129,180,157,107,194,74,79,201,15,157,234,176,57,96,93,156,116,212,17,199,72,65,241,119,128,132,61,178,55,254,197,151,106,130,3,7,67,61,248,243,197,185,194,56,108,252,117,195,81,105,16,189,246,99,102,112,60,21,161,18,207,156,122,165,39,201,124,37,253,23,171,232,45,102,213,209,154,0,110,254,42,143,78],[1,127,237,185,198,201,144,231,124,150,200,54,237,118,192,9,163,184,24,156,38,205,171,46,153,224,252,61,204,229,154,99,153,163,181,106,105,42,162,150,120,161,237,146,23,5,74,10,21,189,53,89,63,157,197,112,249,230,185,127,119,84,173,54,9,130,2,149,208,0,46,111,83,118,213,194,34,3,101,243,165,144,254,171,102,192,13,119,138,28,217,90,26,91,123,162],[3,74,114,186,140,185,106,110,158,8,250,234,63,174,240,84,128,25,60,158,20,7,179,17,91,145,185,208,165,178,191,165,235,113,109,112,119,217,47,129,157,119,98,151,73,220,243,141,11,63,3,99,160,140,51,237,111,140,68,98,119,58,134,155,2,179,126,133,105,193,11,134,231,95,204,223,147,96,181,83,62,212,33,107,195,28,198,63,145,103,24,140,103,62,215,244],[25,56,110,188,198,16,113,235,177,110,54,68,128,199,177,104,21,164,75,228,242,184,98,162,17,181,32,190,88,150,94,143,164,151,187,197,150,142,127,166,161,243,126,10,21,92,212,206,0,206,59,102,174,47,129,163,242,47,146,50,153,190,144,80,60,169,122,181,12,82,138,231,25,135,173,125,66,132,68,118,117,163,140,189,127,29,182,14,181,250,22,249,49,42,93,3],[1,7,5,75,81,212,220,2,119,186,126,39,226,45,51,140,64,193,251,13,247,173,210,77,26,27,216,67,93,101,29,145,27,48,96,29,107,8,143,154,242,25,92,107,178,247,75,117,3,133,131,159,214,151,16,219,151,141,111,28,64,74,71,181,0,37,120,242,42,180,84,145,219,56,4,6,82,100,29,109,129,253,48,27,232,97,174,254,132,204,190,152,197,47,5,111],[13,200,18,231,170,73,54,64,220,122,128,250,139,186,126,99,94,30,210,206,105,147,202,40,82,145,69,58,26,29,232,208,191,93,97,99,102,125,147,127,43,59,218,92,175,102,134,91,9,143,99,51,80,142,36,195,30,34,24,21,169,8,182,182,222,128,11,206,61,224,62,169,190,122,28,74,104,229,54,97,70,184,62,113,41,184,144,187,238,248,209,203,133,107,106,29],[23,152,210,229,194,59,102,246,62,150,55,37,145,221,142,103,244,106,218,197,58,119,183,133,99,168,136,22,161,20,145,82,90,132,197,30,203,154,55,240,105,244,6,202,147,28,35,12,13,251,22,71,227,72,35,201,33,54,26,231,82,218,101,53,48,158,176,94,204,187,215,186,191,244,129,38,245,19,249,223,61,10,236,173,228,86,127,33,139,92,90,116,104,53,65,117],[14,153,231,33,46,229,10,138,122,232,76,93,75,105,196,27,64,228,224,125,101,237,246,45,237,156,251,92,43,194,48,65,50,176,197,43,249,167,27,140,127,204,222,212,134,9,15,229,15,199,25,120,158,183,31,1,212,103,74,126,7,78,158,85,141,31,100,182,130,6,114,80,20,43,120,98,86,35,119,253,125,127,189,148,63,104,73,95,189,227,12,248,149,84,193,242],[1,211,145,194,199,207,114,104,247,174,6,126,140,15,22,60,68,149,153,164,202,130,71,71,74,24,203,116,39,156,231,131,230,73,218,194,56,189,248,11,215,110,74,39,159,30,165,158,10,11,50,48,159,240,159,56,8,179,73,58,75,156,167,55,48,82,137,88,98,132,155,107,109,87,235,62,165,174,155,15,101,53,249,92,180,178,213,217,161,124,54,195,99,111,10,68],[2,248,148,72,179,138,206,173,248,251,132,24,202,250,51,50,173,162,117,175,35,173,146,0,14,7,91,147,7,233,14,121,76,157,27,17,227,64,214,178,222,217,92,10,152,119,94,108,3,106,221,182,234,99,204,68,121,237,91,17,58,14,41,163,135,189,233,56,191,159,222,89,132,233,165,180,240,6,245,209,157,66,186,125,11,173,186,170,233,36,72,44,51,139,95,80],[6,244,142,237,254,43,102,210,164,196,135,28,105,52,113,245,44,251,139,101,109,23,104,142,154,54,209,197,117,84,92,92,129,242,93,205,79,1,84,155,128,87,94,201,41,238,183,114,0,189,15,137,239,219,145,237,96,41,22,25,197,96,174,247,177,13,53,57,141,101,239,110,205,78,128,64,130,28,145,110,97,179,53,248,69,131,154,2,253,245,186,49,104,214,197,157],[23,18,38,138,247,102,105,151,221,124,156,102,142,24,142,189,32,133,150,95,101,41,113,95,46,19,141,79,65,185,78,126,107,146,61,137,220,10,12,190,6,7,117,216,30,139,76,189,24,138,252,233,175,133,50,54,229,151,130,166,24,124,114,81,28,130,61,242,172,38,107,192,189,192,97,130,47,181,40,135,179,231,232,184,100,126,159,247,45,100,131,182,242,94,196,175],[16,8,11,124,89,148,82,138,82,53,184,226,116,74,38,102,44,139,245,146,179,46,180,186,168,68,166,15,37,45,148,139,5,149,220,99,113,127,235,13,7,109,213,187,98,214,42,61,6,75,8,248,66,64,85,233,186,5,30,240,154,50,210,223,87,22,101,55,179,177,16,62,149,253,126,53,214,155,39,14,49,200,249,183,24,169,252,118,157,174,107,94,39,249,20,144],[17,51,216,14,136,57,81,117,22,255,89,160,44,231,109,250,128,191,155,66,21,50,104,224,66,228,12,180,69,22,157,210,159,112,98,24,89,113,41,179,3,78,96,93,153,195,34,88,1,18,102,10,214,199,203,182,186,75,232,251,62,233,180,7,113,36,204,176,36,96,171,56,85,4,255,59,45,207,243,153,250,170,6,16,200,196,202,126,170,104,85,233,17,6,122,142],[4,198,132,209,49,158,45,128,77,140,75,192,154,124,251,252,187,206,58,73,245,226,165,16,224,173,30,151,233,194,20,97,146,248,80,104,173,115,16,1,35,160,182,248,132,105,90,181,25,192,91,253,163,186,60,168,177,187,160,117,129,81,16,254,244,133,240,114,219,108,210,239,139,159,142,17,127,165,185,3,197,159,240,213,148,244,130,181,189,227,52,233,89,192,57,187],[8,220,88,231,244,162,64,6,253,23,48,130,210,142,192,125,13,115,125,167,87,186,41,223,210,205,181,11,167,27,29,244,140,3,106,101,25,8,247,240,202,177,193,46,249,197,198,189,17,134,80,47,249,115,124,110,163,85,123,134,19,10,58,74,163,17,28,97,212,122,133,105,147,100,185,141,104,201,114,209,235,190,211,192,240,129,75,110,138,215,210,165,9,31,219,76],[4,104,52,237,49,57,140,181,252,32,119,81,252,196,86,209,155,16,108,203,65,235,94,147,230,201,0,210,44,226,140,85,198,225,196,1,70,146,119,218,222,207,146,152,139,38,111,86,4,215,127,186,109,28,171,82,81,91,172,155,192,254,23,5,110,80,198,0,145,229,123,151,235,42,181,226,94,69,186,108,76,86,223,26,232,177,133,199,243,128,244,7,190,62,208,158],[12,140,75,25,247,175,188,95,177,56,248,108,70,91,41,196,238,232,135,196,85,82,111,131,125,181,163,116,163,98,67,194,221,114,115,161,142,199,217,245,157,53,98,16,116,186,165,140,7,30,223,174,234,32,243,121,119,178,27,102,149,69,47,99,57,170,149,176,90,144,54,48,255,122,76,33,106,162,200,147,216,157,242,133,244,180,38,211,130,11,127,149,213,167,82,104],[9,185,129,204,251,252,190,223,221,22,249,55,90,14,232,80,221,124,79,4,232,211,218,35,128,7,242,144,211,195,75,90,55,174,202,23,148,96,93,96,185,89,220,228,33,177,206,248,4,252,237,188,197,250,171,21,91,93,133,124,241,168,40,145,228,22,234,152,86,110,178,17,100,196,39,60,128,24,139,238,100,51,126,235,10,43,47,187,120,189,227,209,251,236,74,217],[16,86,63,58,100,224,149,128,172,75,33,6,74,56,140,189,141,123,52,21,129,41,36,186,124,87,254,245,156,59,248,148,166,88,26,152,20,115,173,29,222,80,15,77,106,29,50,228,25,173,195,198,116,201,6,41,160,92,230,216,147,143,195,212,120,250,254,65,28,228,7,6,198,111,102,174,76,84,49,55,58,103,68,218,179,178,147,113,193,155,56,160,198,9,42,131],[2,107,237,248,121,73,199,42,127,154,242,81,99,159,105,184,100,41,86,2,48,158,253,148,132,46,87,47,185,95,205,205,200,249,163,0,30,88,33,123,116,178,241,119,22,124,23,59,12,126,63,118,56,16,3,174,101,179,173,210,227,183,165,120,176,210,117,186,188,190,235,155,87,54,195,83,189,12,227,162,79,42,208,36,5,7,233,97,190,238,60,236,136,235,25,47],[7,240,87,149,141,174,113,208,227,4,202,157,198,210,79,115,245,134,104,196,115,86,45,146,187,102,96,145,239,69,167,70,76,103,99,34,178,101,136,248,236,226,250,120,176,110,159,126,19,166,219,30,179,253,150,190,117,75,55,77,184,187,78,155,111,81,67,215,229,120,70,77,203,226,21,62,155,178,204,98,2,48,85,153,51,4,103,24,241,131,227,113,94,87,54,83],[11,150,188,48,98,125,171,180,241,126,94,179,135,225,53,184,181,50,16,95,160,152,38,217,224,51,164,234,233,213,172,142,148,237,12,144,33,132,60,148,211,221,93,52,197,141,140,118,4,107,96,109,33,234,189,175,230,116,166,60,56,110,40,108,140,57,165,13,14,215,211,231,13,232,153,159,14,13,177,218,15,234,69,240,200,206,82,230,32,252,202,237,237,143,24,50],[17,79,236,144,242,168,123,130,135,7,197,19,143,236,151,197,43,164,228,55,115,150,61,192,228,87,4,129,171,103,69,66,156,115,238,196,153,76,211,184,203,82,109,28,228,116,29,77,6,155,76,198,234,167,250,143,47,253,176,50,165,223,28,174,128,134,240,151,123,29,19,44,163,188,153,164,228,18,138,205,0,57,21,11,202,53,168,10,69,20,171,68,94,89,198,249],[1,252,72,13,235,4,112,17,244,218,247,66,155,55,174,147,19,74,87,179,153,132,35,48,215,79,247,200,74,214,57,1,135,49,29,247,86,22,241,79,48,85,249,229,179,88,8,13,16,83,95,58,104,38,8,216,33,107,81,181,88,202,102,136,216,171,97,218,248,233,178,250,223,179,234,6,90,255,39,109,35,76,65,181,135,69,98,96,244,177,101,160,126,125,184,64],[23,226,241,47,238,174,31,50,77,204,70,162,48,84,137,21,191,236,197,251,41,228,176,247,220,105,162,24,134,50,178,126,181,187,254,150,89,95,90,193,66,223,114,253,186,240,200,99,6,216,213,161,246,41,193,32,175,96,235,88,39,137,254,114,166,171,0,152,243,129,209,34,218,120,19,103,53,27,187,117,28,92,155,220,23,224,221,242,17,162,223,92,6,166,85,40],[8,222,240,195,162,120,7,204,230,36,21,94,238,242,45,249,52,118,7,162,156,229,56,121,244,104,220,89,190,102,114,104,116,7,162,218,40,254,34,144,244,98,201,144,159,84,55,233,17,10,107,131,254,135,198,172,44,83,100,119,109,10,57,89,192,226,223,234,179,175,20,126,18,249,30,166,78,170,219,249,128,217,229,238,148,27,220,97,163,115,229,100,204,231,242,34],[11,238,29,128,64,41,251,64,79,1,48,35,202,249,79,182,204,89,180,135,20,96,114,232,194,39,31,169,241,244,184,233,33,137,186,155,184,231,123,160,247,112,131,238,121,54,235,145,3,186,101,218,153,178,58,114,137,57,99,218,188,239,177,172,20,57,110,15,198,80,110,70,209,58,1,9,252,191,37,29,135,215,85,83,118,51,169,211,166,130,66,204,231,140,111,112],[15,144,65,111,147,141,228,127,40,4,236,179,86,196,145,38,135,38,162,212,132,20,141,20,101,1,245,218,117,184,61,106,15,160,102,102,167,211,99,132,90,74,28,95,50,196,191,110,1,36,75,176,205,223,6,71,22,127,63,227,202,54,62,98,175,224,132,118,223,197,49,203,146,107,143,199,103,202,247,249,13,14,32,185,130,43,208,97,143,29,159,213,66,196,172,54],[19,174,1,247,207,239,217,0,35,46,68,243,173,54,104,83,66,114,209,254,209,174,126,246,231,172,246,8,150,83,144,9,241,10,236,159,36,96,214,42,216,234,220,252,95,172,86,118,24,232,94,100,171,111,46,190,74,114,164,224,12,84,199,32,87,60,35,123,140,228,139,30,42,188,248,54,21,155,182,173,145,190,81,255,200,128,243,209,110,143,132,157,26,6,128,166],[21,165,147,35,247,250,58,195,6,44,56,108,8,21,232,69,23,70,174,166,28,173,95,100,41,113,80,221,29,189,172,174,59,190,194,25,232,199,62,117,57,94,21,194,221,114,213,42,5,73,73,247,29,143,233,28,140,165,173,53,214,55,126,177,86,228,117,80,158,118,154,77,105,246,129,47,4,235,143,207,241,63,158,98,138,142,234,221,173,125,71,210,29,107,180,61],[10,167,174,154,128,164,73,164,82,150,62,65,226,3,133,8,196,60,191,95,163,102,124,201,192,134,118,198,10,1,111,158,64,53,158,10,104,110,28,77,141,147,138,214,72,142,13,140,5,40,134,180,14,37,60,24,157,89,108,140,182,60,184,36,25,103,184,139,83,163,13,103,37,214,149,195,58,95,254,169,118,71,110,168,104,132,237,191,248,18,95,13,58,41,128,253],[5,83,40,109,251,206,232,155,129,252,34,72,238,141,110,105,90,162,211,197,243,129,114,74,18,101,159,159,80,59,122,171,86,9,182,144,206,1,130,67,142,176,140,147,189,188,30,201,8,48,72,72,41,166,150,5,195,207,91,31,134,177,177,51,147,90,8,81,33,182,221,55,54,173,53,186,42,74,107,74,51,169,125,224,63,70,127,102,190,238,235,173,239,86,211,66],[11,91,25,194,178,219,226,64,155,172,60,10,103,81,89,223,129,17,60,138,239,59,77,231,106,104,47,222,36,106,113,29,222,163,67,248,26,67,160,225,243,248,206,69,78,125,159,175,15,118,56,156,108,166,210,234,228,189,188,89,74,144,181,162,23,95,17,49,182,99,2,91,71,188,17,62,28,167,222,118,99,89,234,129,43,116,180,164,215,163,110,0,103,27,147,140],[12,136,216,134,189,222,166,216,73,142,154,90,231,95,31,221,35,226,157,153,240,157,177,126,255,60,219,215,207,58,115,121,133,112,2,68,112,169,134,20,174,111,227,147,252,163,134,229,22,81,12,186,227,170,55,115,227,227,146,163,231,51,4,29,59,155,123,159,30,215,160,35,46,80,229,15,111,175,133,63,106,60,217,1,110,144,159,111,94,57,0,241,134,41,160,107],[1,110,165,62,117,39,59,164,229,251,240,147,144,235,120,150,5,160,173,239,235,190,234,5,19,49,50,129,60,11,150,239,140,177,227,160,19,246,82,177,236,25,160,98,115,247,10,179,9,54,234,239,138,97,141,162,110,102,140,42,240,90,253,174,36,203,6,131,219,171,1,216,145,130,148,91,193,23,15,103,88,59,55,151,126,36,103,182,192,103,235,95,68,244,158,36],[25,72,63,116,87,23,24,202,252,58,66,42,238,110,235,174,11,110,18,154,234,40,152,196,94,236,251,223,79,120,171,44,167,104,253,147,13,87,74,81,164,28,115,116,15,113,214,130,6,255,143,77,222,25,35,200,124,156,221,40,208,161,213,229,163,255,218,108,69,113,104,209,95,122,75,75,218,211,227,197,75,153,51,164,246,7,17,113,148,238,196,106,210,185,210,140],[20,145,155,75,153,21,154,86,103,37,153,215,120,11,127,220,255,149,17,5,11,202,195,138,187,147,214,173,154,197,42,151,82,112,16,54,174,24,98,38,225,241,55,245,110,130,164,223,20,86,4,199,246,220,112,205,243,103,246,98,93,175,11,79,119,100,126,103,73,187,241,5,160,52,99,238,252,92,142,198,3,144,92,224,16,117,133,43,102,155,178,188,186,76,186,56],[9,215,100,206,190,217,216,187,33,85,171,190,67,185,74,105,228,74,30,192,227,141,197,133,11,46,224,143,201,220,187,255,1,226,230,137,93,30,171,76,226,105,37,127,138,203,0,148,7,149,91,117,216,243,170,125,44,120,58,78,107,179,168,240,36,70,165,62,148,90,139,222,112,160,41,159,155,21,210,184,184,213,46,220,3,55,227,183,205,53,146,188,192,253,227,64],[0,89,162,180,157,102,20,47,90,144,51,194,97,240,4,2,29,138,157,46,193,155,174,11,82,250,161,160,13,4,111,35,199,254,11,157,153,139,203,102,124,11,12,110,30,129,204,201,3,19,233,57,187,73,254,104,91,94,185,221,60,227,120,123,22,210,192,59,222,235,154,77,104,225,69,161,176,20,116,167,165,81,206,171,2,55,180,5,232,202,210,46,102,75,74,225],[4,250,207,48,27,63,159,62,48,2,208,98,32,100,31,101,176,223,191,119,182,210,64,122,35,38,95,39,55,136,241,127,110,19,65,168,98,162,165,73,20,174,211,193,15,33,96,208,14,103,55,181,196,4,226,54,19,219,180,102,82,252,239,78,10,5,175,178,130,210,107,23,133,149,184,230,219,233,65,50,85,194,76,154,24,166,9,0,240,205,179,151,151,192,229,43],[0,185,157,103,228,28,240,24,84,189,199,23,93,95,45,233,118,151,182,203,210,96,145,240,36,171,250,220,97,115,116,122,153,68,161,242,233,2,230,119,249,86,166,71,29,36,136,233,5,77,195,139,187,249,74,52,63,215,86,64,1,199,215,255,186,242,11,237,229,252,113,167,66,155,26,188,35,215,205,226,163,182,107,149,191,222,202,31,244,42,96,19,58,126,27,37],[5,237,97,165,189,80,159,169,6,255,149,102,7,78,10,211,114,133,58,115,66,18,228,109,190,22,161,141,115,168,201,155,204,28,37,131,14,212,1,67,124,128,204,242,182,17,152,43,5,228,169,138,218,134,143,225,101,245,36,131,152,189,205,46,111,200,16,212,172,81,126,120,217,181,217,24,103,139,7,121,143,239,140,2,46,182,13,173,122,132,42,162,68,105,167,50],[1,102,63,157,212,108,131,68,214,98,87,180,20,159,165,199,228,97,5,1,173,82,11,51,125,161,80,45,236,156,97,56,163,205,163,184,36,7,106,249,83,11,188,47,4,225,76,127,21,101,158,175,49,246,148,95,25,175,83,77,252,218,54,185,66,34,247,39,115,159,72,173,42,251,177,242,13,166,79,61,217,250,203,180,212,62,68,69,170,143,78,26,134,46,197,55],[16,188,225,230,111,233,188,219,226,203,128,46,180,150,126,15,94,243,79,145,133,177,195,68,56,194,160,84,124,234,143,57,26,206,175,236,249,8,24,139,100,186,55,12,114,235,188,189,17,166,142,106,242,122,47,222,107,125,99,225,82,133,113,22,168,226,75,243,134,92,204,46,74,143,122,93,222,190,189,215,202,5,179,12,90,148,46,72,49,144,42,36,193,198,82,248],[7,90,45,151,195,73,166,219,39,190,161,222,116,141,127,63,45,202,141,65,206,178,156,4,173,169,222,2,179,15,99,212,30,27,176,98,75,215,238,35,57,140,211,1,185,133,185,157,4,66,20,162,226,234,247,38,158,62,205,142,118,126,230,147,197,26,16,102,183,9,61,191,50,141,239,45,65,53,182,131,129,147,63,5,197,17,39,187,213,90,238,23,84,174,176,148],[7,124,188,113,39,7,246,124,199,63,65,226,71,18,83,214,9,156,218,178,130,61,174,200,42,206,237,28,19,185,235,47,103,254,8,123,227,137,26,114,125,22,50,34,134,93,54,107,17,197,156,100,60,105,56,222,60,98,80,13,176,99,24,96,117,239,244,141,25,79,129,134,13,102,147,117,60,175,107,127,83,185,172,189,23,154,247,67,238,35,169,177,36,165,54,31],[9,158,121,20,109,38,34,5,93,173,164,126,196,229,129,36,14,176,119,107,215,196,182,13,233,79,191,198,207,155,150,192,224,102,255,162,50,122,223,138,157,200,30,169,129,14,23,115,0,137,9,82,51,115,176,51,82,191,50,127,36,233,225,191,230,115,5,45,174,151,247,192,206,6,36,149,171,0,208,30,70,64,101,30,138,124,127,68,168,207,188,33,114,233,195,94],[3,207,114,232,198,220,110,222,13,118,193,1,235,63,138,245,245,46,37,141,69,15,13,104,32,107,252,137,63,136,85,192,153,172,185,197,26,154,78,219,178,199,20,30,17,254,243,126,25,45,238,66,209,26,154,223,31,8,210,199,50,208,165,99,172,208,139,224,68,80,147,50,196,122,165,162,230,213,248,234,172,176,114,10,132,125,51,82,110,70,122,207,25,118,229,63],[10,249,140,16,238,142,133,61,133,188,33,103,99,135,182,212,0,180,187,131,83,94,110,234,139,5,140,180,244,243,229,173,23,32,192,1,151,247,43,79,81,167,25,98,124,51,165,36,9,250,41,240,245,41,75,110,54,101,185,122,139,210,80,2,41,59,223,42,246,119,162,164,98,124,15,205,253,159,212,202,40,55,180,173,215,248,160,23,245,227,43,156,247,39,165,23],[9,186,3,195,165,92,124,21,39,90,168,205,230,96,183,206,98,62,15,119,129,94,83,185,237,221,242,113,215,141,168,18,211,93,24,216,63,214,244,117,232,38,234,40,106,248,118,110,16,85,164,229,62,109,110,138,167,71,110,87,175,221,79,49,124,160,243,134,226,168,11,209,146,206,235,70,83,26,46,245,39,83,253,52,165,60,36,18,113,63,242,10,155,158,3,31],[14,148,177,20,20,126,158,76,242,143,7,209,30,38,217,249,23,52,4,119,89,179,16,125,152,13,135,1,34,49,46,28,161,67,105,222,196,207,75,49,204,65,63,29,105,10,250,204,19,93,203,39,81,222,60,113,134,157,209,183,253,91,97,162,71,132,11,40,109,61,198,26,7,84,42,111,18,35,87,134,195,103,233,58,45,32,103,88,171,1,64,243,65,119,76,108],[14,80,234,44,79,13,202,207,61,196,10,14,54,105,156,171,25,181,251,38,162,66,166,128,31,139,240,249,242,41,67,32,166,204,59,159,95,141,216,107,73,48,89,18,230,135,158,175,16,215,181,254,251,49,31,93,52,35,8,94,244,84,60,142,240,57,57,114,185,222,49,157,8,202,203,166,242,122,202,209,73,51,228,10,198,46,72,160,167,97,181,254,18,168,50,169],[11,78,70,109,26,11,108,251,72,187,243,5,211,117,76,170,188,204,55,134,151,95,60,142,85,37,238,93,198,167,211,201,34,188,53,42,235,31,134,96,38,78,156,161,76,244,110,63,17,161,108,150,25,133,214,104,109,220,135,103,179,71,135,5,216,195,172,176,63,185,115,82,245,13,75,162,61,62,34,117,69,188,96,138,81,100,48,250,149,203,64,210,46,164,75,73],[5,102,126,35,115,178,16,166,116,248,82,212,64,79,116,217,93,67,254,233,31,200,235,166,243,41,69,195,138,193,26,130,221,181,31,73,195,216,93,27,220,118,120,183,29,14,150,50,1,54,71,45,171,221,69,7,92,40,64,116,76,5,80,224,167,178,10,170,116,229,102,91,26,168,24,189,220,136,153,221,209,22,226,141,66,96,83,249,122,189,197,172,118,206,94,34],[10,168,175,104,75,98,77,253,36,164,182,143,221,10,109,160,245,146,27,247,86,246,31,167,216,24,116,243,120,22,200,207,8,204,20,54,99,198,225,157,251,171,44,82,36,7,154,60,19,216,23,198,150,202,113,77,2,39,92,154,46,252,142,250,100,183,1,43,66,207,122,12,111,136,8,148,75,208,95,57,118,29,221,6,19,217,228,15,176,171,210,171,84,13,150,187],[1,231,139,225,245,182,21,2,107,96,135,243,187,129,10,176,87,160,38,85,219,221,34,63,22,110,144,117,150,107,137,39,62,128,38,231,100,116,227,15,251,102,64,123,170,198,167,161,19,216,78,125,67,20,37,233,23,80,134,10,142,241,36,228,186,15,239,247,204,88,168,58,96,222,195,113,248,109,162,205,175,69,241,108,247,224,33,0,38,214,31,100,22,227,75,158],[8,252,100,130,94,231,160,239,111,142,146,46,176,170,104,254,243,127,244,127,250,222,138,82,5,149,189,136,18,149,203,95,91,144,78,253,246,198,126,148,226,209,245,197,83,231,176,49,0,51,84,181,168,115,202,170,64,147,65,208,198,69,164,246,31,197,134,153,148,19,87,93,72,65,102,103,189,26,72,109,102,83,9,190,8,50,129,192,166,142,217,12,63,115,95,112],[13,149,127,81,199,224,32,108,210,228,3,245,230,6,216,31,89,149,165,118,220,194,53,192,217,148,160,135,149,60,184,81,98,79,152,181,252,88,43,108,243,249,65,221,60,76,86,81,7,175,23,213,125,224,216,240,158,61,156,42,153,109,9,244,195,116,104,114,120,179,143,12,142,24,49,109,189,176,221,186,210,201,114,88,52,25,47,145,134,196,89,216,9,244,230,135],[2,190,76,99,137,115,8,129,26,174,37,211,252,191,187,91,46,45,225,161,115,251,17,86,6,81,129,202,67,255,59,93,87,81,48,25,148,212,70,64,159,31,207,10,116,84,180,102,6,158,119,238,114,23,236,71,171,206,161,44,77,85,121,236,75,135,166,15,176,1,72,30,158,88,36,94,50,55,223,110,16,130,107,95,95,209,6,0,184,22,87,223,97,32,56,138],[16,164,202,56,61,56,138,237,100,85,86,45,49,99,142,128,195,232,24,206,231,38,165,10,226,105,117,185,54,78,1,248,169,129,178,210,13,123,80,1,119,100,197,26,239,158,206,196,2,150,34,228,26,63,0,39,164,230,230,131,29,173,148,131,142,169,178,150,235,6,152,221,221,178,8,84,153,130,59,135,154,168,146,154,225,90,49,211,42,209,251,58,83,121,208,2],[25,106,100,103,8,184,192,248,100,109,141,154,158,221,118,8,123,128,140,63,49,124,202,80,201,94,177,210,213,212,185,203,109,223,95,251,6,233,89,58,88,253,116,217,151,202,41,236,17,235,136,234,91,3,4,76,83,124,246,11,81,39,249,253,36,66,56,108,71,178,202,163,179,78,157,41,81,225,98,90,199,71,55,14,253,168,38,9,104,157,209,6,163,222,71,124],[23,190,251,196,185,227,118,124,214,55,150,225,22,110,230,107,180,157,118,42,157,41,144,255,75,98,81,5,81,62,36,83,33,55,69,95,32,6,102,81,18,147,66,25,91,39,105,62,7,127,191,244,200,204,217,179,60,183,167,207,183,70,190,2,254,220,38,56,247,171,162,104,203,174,202,223,148,178,175,3,27,112,83,230,233,137,212,20,103,63,58,112,143,149,16,189],[13,229,85,33,203,206,141,166,236,109,253,149,151,37,199,8,117,135,114,216,196,53,246,9,156,3,218,66,254,105,80,165,46,151,48,218,59,236,42,204,39,142,135,163,192,185,178,209,15,174,76,124,104,36,146,132,121,194,73,149,41,59,113,116,124,142,254,100,239,165,76,0,93,86,183,132,159,160,24,97,20,4,19,68,197,215,249,15,75,250,111,246,192,65,106,254],[4,217,3,169,29,42,200,149,191,58,46,227,89,157,66,153,205,144,124,255,92,93,32,133,244,63,119,109,241,251,144,234,111,74,141,35,104,130,249,196,110,89,183,136,65,211,249,197,15,2,166,54,250,76,22,212,4,106,114,61,55,137,229,128,30,14,170,149,43,105,148,18,189,161,143,180,69,255,118,52,17,22,18,230,197,91,39,186,41,227,7,169,213,24,194,199],[3,71,132,74,249,114,47,79,245,47,59,35,202,238,188,145,126,51,117,107,12,246,75,77,115,95,233,20,60,127,36,81,96,88,76,186,125,53,112,68,194,111,116,93,75,207,141,215,12,4,19,132,5,104,55,110,217,20,202,81,138,157,229,116,78,68,246,133,62,235,234,120,106,46,24,214,7,228,130,16,74,38,56,20,96,13,255,77,132,63,128,102,251,40,38,5],[7,59,139,215,229,159,112,46,28,52,82,17,129,76,61,193,134,172,0,238,30,23,169,238,123,171,221,242,143,93,154,83,240,212,45,10,77,62,235,84,201,155,41,73,127,201,217,48,22,30,60,253,111,198,70,251,186,189,151,35,207,165,180,224,46,164,151,2,67,130,251,82,5,115,76,178,225,4,134,235,170,83,115,249,45,197,19,190,248,103,178,71,19,37,82,178],[1,126,176,199,202,1,16,138,133,208,100,45,97,161,179,165,56,164,96,129,120,109,17,172,195,11,30,126,73,81,193,20,38,158,123,175,65,119,183,21,120,39,176,154,225,159,197,84,7,23,219,80,40,250,83,103,94,133,114,5,207,221,70,92,191,43,108,171,145,142,59,86,27,38,224,243,18,186,108,89,94,142,127,114,32,254,99,163,33,189,208,14,59,30,203,142],[5,26,148,216,75,199,194,102,46,32,78,91,60,232,132,78,141,158,131,249,155,99,0,28,154,225,6,9,221,35,93,137,157,222,123,140,97,90,200,158,142,102,114,199,49,143,253,75,17,58,88,192,167,177,55,94,28,62,168,210,32,147,159,104,138,160,133,87,55,255,69,205,104,85,212,254,191,133,13,235,66,188,245,90,233,132,39,198,214,182,57,157,111,116,133,226],[21,0,44,171,180,248,247,193,81,217,240,197,198,30,64,166,200,60,24,189,194,179,92,57,180,94,76,28,173,52,13,6,117,47,134,28,106,13,75,76,105,27,58,223,89,211,14,249,25,212,163,83,181,100,47,31,234,131,130,192,51,197,237,229,12,167,59,173,2,134,34,8,232,121,90,69,112,215,12,136,60,133,180,20,70,78,63,181,86,48,145,66,227,164,248,175],[10,113,180,32,165,216,138,254,168,89,123,87,86,29,184,69,91,252,198,144,1,193,192,50,2,16,97,201,131,226,199,192,48,223,175,149,92,88,209,156,26,160,173,155,181,198,173,156,2,5,8,184,254,2,150,204,215,25,76,49,82,202,5,6,112,115,224,178,30,170,162,166,61,76,104,80,237,2,46,44,202,84,54,124,178,61,25,28,215,207,27,169,150,34,46,246],[23,125,49,75,104,166,34,142,61,12,214,119,131,7,143,93,37,12,77,72,169,171,233,4,156,25,20,107,180,12,117,96,208,24,132,26,212,111,75,160,9,175,224,247,240,159,246,132,6,174,205,198,234,123,230,86,130,197,3,84,169,216,194,217,175,69,185,55,217,66,228,81,11,211,8,197,255,226,140,167,69,234,50,116,46,199,107,158,192,62,176,254,19,2,45,64],[14,178,229,180,185,160,104,174,182,25,245,27,201,241,237,98,145,92,72,248,193,225,118,137,107,141,222,104,107,2,33,207,51,11,137,58,87,85,238,31,24,127,112,181,178,38,200,50,10,197,117,215,223,196,165,186,47,251,255,100,137,108,80,88,43,208,67,60,13,173,47,93,200,46,123,37,207,189,232,151,202,86,88,207,10,77,31,172,200,244,236,164,200,220,113,86],[10,223,21,190,253,116,178,160,250,247,7,109,3,69,220,204,150,123,47,165,171,60,58,5,154,139,54,223,109,165,20,241,224,26,135,87,235,1,7,198,21,172,23,40,221,126,43,33,9,70,72,246,219,84,130,61,115,120,118,225,233,123,135,212,171,74,97,247,2,85,232,153,63,86,145,171,129,129,148,58,89,228,51,45,91,177,194,4,81,189,62,146,115,53,121,238],[8,165,109,124,188,144,178,68,117,61,218,18,149,191,144,109,174,117,95,227,207,103,190,30,172,83,65,172,111,3,226,61,138,57,157,38,192,200,75,216,175,58,138,102,139,81,120,45,7,49,156,189,157,107,14,6,24,123,110,111,86,45,91,167,113,255,166,179,90,89,155,200,11,216,212,176,189,138,181,152,166,22,148,119,182,95,197,203,191,219,185,151,204,135,47,124],[8,209,61,204,10,198,249,153,224,204,26,139,134,114,95,118,182,174,170,170,104,29,196,236,106,17,118,48,118,179,7,231,26,78,65,248,12,166,237,229,13,217,191,198,229,55,5,145,9,146,144,197,155,223,234,153,90,244,159,231,205,191,86,216,169,20,0,23,143,143,12,176,154,221,236,238,40,41,224,52,42,152,98,88,1,61,165,135,97,132,202,201,65,231,85,31],[16,209,208,114,155,74,194,214,254,134,213,31,252,50,118,254,122,183,253,174,25,68,171,212,132,131,34,163,152,206,230,25,26,241,36,228,174,249,210,221,82,153,148,221,161,177,5,13,22,18,157,237,235,241,168,214,81,185,98,187,182,86,80,239,160,150,74,76,137,200,101,33,123,184,72,90,172,24,34,57,193,227,94,112,176,53,46,62,43,213,231,190,77,61,210,49],[19,38,162,96,219,49,167,135,177,211,6,59,75,231,5,112,100,59,115,247,150,153,64,150,213,113,87,240,90,212,196,31,70,190,220,167,189,246,250,193,214,238,233,129,124,243,35,154,21,117,92,240,135,164,249,131,237,113,183,130,235,156,139,11,12,74,93,94,222,151,246,244,70,179,75,101,75,205,36,129,74,221,215,148,146,129,49,1,0,158,69,166,81,221,180,105],[17,132,123,101,222,254,36,151,78,140,51,48,153,13,61,161,228,118,235,78,233,28,97,104,155,202,153,34,243,187,2,192,12,130,253,251,32,243,81,142,220,83,191,174,127,201,83,79,14,25,85,150,226,147,41,131,134,180,66,160,49,176,112,250,164,36,33,216,201,25,7,250,74,20,11,38,111,237,50,143,121,222,68,147,173,176,11,139,77,82,230,30,26,98,72,140],[17,78,68,173,84,123,252,85,255,168,143,4,253,93,22,37,53,238,135,52,36,196,248,158,180,128,163,253,187,182,195,138,120,237,153,59,27,21,73,61,35,143,98,69,100,212,232,52,17,200,239,47,64,133,210,101,111,195,141,116,80,98,84,82,186,214,38,177,6,172,34,55,5,1,99,44,65,77,143,98,21,225,119,221,18,96,82,98,64,76,244,171,205,2,175,11],[11,72,179,194,172,171,26,17,121,15,141,45,213,185,152,244,206,231,43,160,223,94,118,172,186,159,109,210,158,234,238,181,57,167,106,15,158,255,109,94,44,21,27,124,20,155,104,5,21,56,144,104,53,110,137,19,115,221,145,175,169,108,84,31,227,208,130,240,205,71,174,200,163,244,199,197,16,176,44,232,133,59,5,80,125,204,2,194,252,211,111,39,89,212,220,166],[11,195,190,57,164,22,86,7,45,32,242,75,5,56,121,101,98,100,127,187,11,86,37,56,107,153,79,63,137,124,15,27,71,107,72,21,75,157,70,109,9,57,247,69,28,138,82,18,13,106,123,132,174,92,176,38,160,254,42,224,33,134,153,145,131,207,14,25,203,191,43,66,218,138,65,62,254,218,22,105,252,79,119,64,236,34,188,47,228,51,244,63,177,59,160,192],[23,183,6,57,64,115,107,190,207,83,54,25,223,216,53,234,69,146,19,247,14,249,180,64,50,117,70,253,64,44,131,149,91,214,249,200,186,18,212,249,254,41,59,194,182,87,98,61,21,226,252,155,97,195,57,189,240,168,12,16,39,104,199,236,234,162,207,111,48,69,88,182,48,80,183,1,226,105,119,19,47,10,60,188,255,104,33,221,235,246,22,12,114,40,4,195],[15,81,69,197,21,107,134,109,246,221,45,143,184,206,197,132,118,18,62,202,129,200,235,113,169,203,84,213,209,184,3,102,107,104,189,180,14,167,135,218,37,34,137,147,185,100,16,135,20,253,149,88,149,240,88,156,132,110,144,26,210,109,146,123,84,73,225,73,188,251,240,110,94,32,249,194,164,102,143,31,183,230,202,62,213,172,120,179,103,126,149,56,91,153,245,132],[23,62,70,240,171,204,48,242,225,7,165,127,77,190,32,38,155,56,211,215,2,65,201,94,14,195,0,195,37,78,225,62,178,94,195,109,160,101,242,222,162,4,153,83,101,141,198,244,0,56,70,216,147,84,190,95,235,41,115,171,169,101,54,167,230,140,130,172,22,142,21,105,241,254,101,143,175,127,211,180,208,250,180,117,254,179,103,177,130,108,15,13,180,176,144,36],[4,201,250,141,49,60,171,245,26,73,46,78,218,174,205,131,100,252,165,188,225,83,135,247,125,97,81,127,100,102,221,231,159,68,143,148,158,124,163,196,18,217,215,223,225,231,12,226,17,100,52,12,228,186,19,158,242,217,45,205,175,175,173,70,26,58,33,2,143,207,193,128,203,147,166,100,56,2,223,237,6,192,60,28,213,123,78,37,212,45,34,171,22,25,169,159],[12,108,193,194,121,156,27,238,219,116,2,202,154,199,33,223,196,101,99,223,154,174,55,39,220,237,98,168,40,105,140,152,6,183,27,152,76,70,35,22,103,90,38,120,133,102,1,27,18,192,33,236,232,158,249,89,237,33,144,186,253,213,24,224,46,175,92,177,232,239,50,181,187,231,53,23,58,183,17,127,212,213,186,56,175,186,131,143,201,81,122,213,226,20,30,30],[12,80,107,140,42,32,62,224,237,154,122,70,202,125,82,154,156,227,58,149,5,103,2,102,22,153,59,56,144,62,16,29,93,100,174,199,108,138,53,163,107,1,56,235,135,235,233,223,0,0,206,249,249,23,207,212,125,97,213,1,89,184,136,110,130,187,92,111,84,155,182,241,151,81,75,74,253,160,48,68,204,39,216,38,186,12,48,94,30,235,30,179,204,223,35,11],[9,163,218,189,133,97,66,184,225,214,43,202,99,239,168,31,126,197,133,84,9,251,217,56,63,130,146,226,180,100,21,167,250,201,65,164,177,25,153,220,73,40,183,148,179,20,49,126,16,108,176,131,244,240,91,200,59,232,79,220,24,33,187,132,10,136,237,155,58,59,227,174,75,229,245,184,165,248,222,8,50,194,127,164,123,139,63,90,84,68,105,77,104,150,182,67],[14,46,117,95,254,23,148,107,114,209,114,247,23,145,39,100,179,32,81,20,206,35,10,111,146,211,63,231,175,51,122,106,26,73,196,94,29,43,19,125,227,199,224,251,157,14,14,202,8,75,176,186,93,249,21,11,101,198,0,109,201,63,167,104,161,138,225,117,30,56,207,214,4,79,56,103,61,163,88,145,106,216,201,144,25,124,97,246,174,143,53,177,199,203,99,218],[15,216,178,205,45,78,184,212,25,111,61,127,162,89,234,196,106,116,102,133,200,246,206,77,191,177,81,105,23,31,240,167,249,201,148,94,219,104,37,233,19,20,247,201,186,27,177,68,10,62,238,253,83,102,99,54,35,43,159,49,218,251,43,245,200,218,146,99,51,90,113,244,0,80,31,174,17,108,235,215,177,208,233,187,230,126,50,33,6,21,237,67,7,69,133,227],[8,98,217,132,113,193,121,176,220,153,200,167,52,190,101,25,175,210,90,148,210,223,35,102,237,139,17,54,29,32,92,2,198,246,80,231,115,203,185,60,14,176,207,228,141,162,57,35,2,56,45,27,142,236,184,234,190,192,11,44,18,141,106,251,80,113,207,233,231,35,44,139,50,102,230,251,11,166,177,176,107,229,134,191,247,111,161,51,160,104,3,149,18,159,216,96],[12,71,228,159,165,21,146,86,218,183,115,184,15,225,70,22,148,166,13,75,149,215,251,49,39,253,164,131,93,56,50,28,161,82,165,92,152,192,139,173,158,246,222,164,18,164,7,200,15,182,110,55,52,23,220,44,23,67,160,66,165,25,201,54,168,19,7,118,43,232,36,12,239,32,134,177,229,189,212,136,157,218,38,136,75,166,152,232,243,240,159,211,212,252,73,152],[22,141,54,235,191,233,229,33,95,103,168,246,101,165,229,155,49,184,141,142,185,147,210,22,203,2,77,225,150,95,124,105,44,239,13,173,28,220,27,240,3,23,215,176,33,97,32,158,11,237,62,143,162,215,187,163,29,149,130,207,156,97,128,215,203,26,212,48,71,10,123,161,255,210,79,45,195,102,221,215,114,149,207,217,105,61,55,188,42,2,131,45,27,217,2,4],[5,212,161,78,4,131,184,214,129,216,145,73,143,241,53,6,78,234,8,49,69,203,217,159,247,138,237,113,186,250,76,211,197,6,150,159,54,152,80,226,77,229,205,222,67,230,160,186,7,220,127,12,102,146,243,13,91,177,89,243,225,60,149,36,219,197,131,72,166,242,254,184,229,123,134,55,88,28,77,96,84,7,231,49,158,54,107,20,207,253,158,37,125,23,98,110],[11,85,28,67,143,12,193,63,252,207,223,136,165,146,119,151,39,224,112,105,8,85,144,87,94,250,136,146,226,154,31,188,107,214,138,16,159,242,8,46,83,164,20,253,115,160,108,242,15,183,236,184,157,25,201,225,19,48,172,166,96,103,80,173,239,109,68,92,58,62,25,140,202,118,126,170,142,192,77,175,228,150,92,147,115,203,156,142,135,193,103,169,33,238,1,88],[8,41,196,121,0,165,223,227,182,228,122,174,137,229,248,204,133,239,139,211,18,78,229,99,91,227,196,231,231,74,19,226,103,74,109,192,20,133,79,88,178,185,136,46,111,91,240,157,15,181,23,99,178,227,59,119,10,207,67,236,108,160,36,199,160,56,162,46,220,243,127,111,58,247,73,105,167,175,139,41,67,197,146,36,59,18,241,60,133,21,135,144,76,199,241,228],[12,178,36,201,186,86,195,198,39,254,244,56,142,102,236,244,179,120,150,32,162,164,97,17,205,196,95,139,161,246,104,153,87,229,42,173,129,49,155,66,52,130,84,110,27,124,128,21,22,37,232,104,60,67,67,123,179,165,208,210,47,44,84,209,181,60,205,224,184,197,167,84,30,172,3,101,119,121,238,13,228,61,64,31,67,97,35,54,219,215,147,237,124,69,232,31],[17,250,184,245,195,22,85,115,69,160,183,35,140,37,50,184,226,65,240,80,224,134,168,204,159,71,246,63,116,79,137,40,43,66,219,253,38,248,164,10,226,156,55,181,49,58,139,109,7,109,171,172,102,87,131,208,195,12,58,129,83,135,165,226,32,54,182,252,122,135,153,141,243,56,216,113,204,117,88,136,232,244,31,225,236,96,140,8,17,209,207,85,174,95,176,243],[3,162,246,74,240,54,162,213,106,90,169,120,2,112,66,84,251,29,118,240,196,34,28,66,130,58,215,28,252,218,158,176,41,235,46,149,154,162,107,34,1,168,213,122,156,90,43,157,7,3,36,58,189,211,249,119,53,158,204,59,178,240,53,168,177,131,83,29,255,92,56,55,78,120,58,107,136,194,92,19,27,236,27,185,145,55,146,72,93,228,226,187,130,221,156,87],[23,201,70,255,131,9,40,165,222,146,143,243,68,225,216,181,219,21,2,48,76,169,51,14,104,180,60,71,59,180,41,154,126,181,64,99,76,104,171,64,63,119,120,247,175,192,107,206,6,8,67,255,195,59,175,143,137,227,30,129,18,250,43,192,103,87,82,75,232,169,191,142,144,6,153,125,98,3,241,94,189,191,220,125,64,211,157,84,115,61,13,3,125,180,126,158],[20,140,103,126,61,115,238,121,235,108,44,165,188,64,75,7,97,126,149,195,218,155,121,201,195,241,67,78,229,14,162,28,76,155,128,117,33,229,209,97,121,230,107,47,33,255,3,221,22,146,191,189,86,126,24,173,44,137,147,236,25,218,26,91,200,197,52,72,176,2,154,3,57,212,189,202,28,48,136,220,174,254,172,204,79,28,232,234,27,19,193,44,188,247,199,74],[15,107,133,186,244,237,171,193,87,213,195,28,215,154,179,39,27,21,43,233,155,101,49,39,70,39,87,236,109,63,95,146,212,196,40,167,58,104,170,207,99,253,104,162,230,149,71,48,7,7,141,219,65,1,195,39,152,175,54,55,76,29,2,57,249,198,109,255,146,148,32,243,189,71,96,252,52,23,241,214,14,78,224,170,195,59,52,84,142,83,131,66,177,57,62,87],[22,166,64,35,58,84,43,211,173,174,212,210,188,217,194,193,159,149,173,123,125,128,155,195,27,40,254,202,7,163,187,2,206,113,77,191,22,84,98,114,140,215,90,18,99,145,19,65,13,96,175,250,211,179,19,210,236,174,209,84,172,228,165,79,72,198,171,38,116,93,149,65,78,129,36,177,51,85,180,234,5,123,187,81,51,255,194,239,135,136,222,204,162,217,101,169],[8,128,184,4,221,206,21,75,11,92,91,219,139,138,111,116,21,141,189,143,122,224,22,232,234,87,128,162,178,234,99,143,177,145,185,160,20,26,37,140,147,140,8,217,249,39,180,100,18,39,215,223,157,101,12,201,92,49,139,229,206,168,229,192,110,250,200,64,107,214,87,244,110,181,165,131,214,162,47,236,12,103,81,84,29,55,97,101,214,146,10,155,254,1,33,202],[22,147,59,116,100,236,110,84,118,83,20,182,18,237,82,43,226,111,128,189,5,166,92,179,238,43,236,36,171,247,43,8,121,230,119,104,186,59,73,126,224,197,73,210,6,169,51,31,12,10,149,192,168,197,197,215,104,27,216,130,235,32,205,28,163,198,247,172,151,99,15,218,142,63,5,216,113,133,120,198,245,193,58,197,103,224,132,251,62,51,131,13,251,196,222,194],[5,177,232,232,99,176,166,239,191,244,117,124,219,9,194,170,37,219,44,0,220,130,208,117,219,155,186,59,5,54,170,235,0,8,99,108,142,118,238,124,80,20,163,166,226,83,98,183,16,241,54,253,225,142,11,240,71,20,24,13,199,217,73,201,60,83,198,154,17,57,185,223,181,44,14,173,127,135,22,125,42,62,42,101,119,67,205,58,123,156,76,168,103,47,179,231],[8,50,154,225,254,99,130,34,42,235,234,129,205,149,4,130,98,34,8,22,190,126,186,92,124,124,110,151,27,86,58,251,106,188,157,226,124,111,149,67,150,63,163,229,0,145,150,181,22,186,239,212,91,28,196,124,173,69,176,83,39,61,152,245,252,226,104,32,139,252,192,249,56,48,78,72,138,34,78,51,198,214,46,50,234,22,138,62,28,97,95,19,86,87,82,89],[3,45,17,14,237,195,212,236,162,226,49,77,36,233,82,32,96,193,113,220,86,12,63,125,91,227,6,226,94,42,131,24,135,132,109,13,32,126,109,34,162,143,19,4,237,212,130,129,18,113,52,140,198,174,135,4,171,16,144,58,126,242,77,94,27,218,149,130,216,101,60,130,113,48,87,64,29,191,251,200,34,239,30,219,113,135,127,41,212,183,245,74,54,84,109,209],[23,137,75,253,228,167,134,100,43,13,21,134,200,173,139,231,34,149,40,175,159,220,203,47,18,6,204,104,139,183,230,113,136,107,184,7,170,1,198,230,97,221,174,220,114,171,38,109,12,68,5,215,74,177,18,87,21,139,124,69,237,114,77,144,36,169,86,64,202,190,240,231,104,111,248,116,103,202,152,76,136,202,24,132,8,111,187,116,180,164,72,245,73,81,214,155],[22,206,144,24,50,243,126,250,42,173,247,143,183,171,96,130,66,145,27,74,208,99,168,223,122,114,116,82,21,103,99,112,188,71,79,118,203,68,212,10,208,84,175,136,3,222,197,6,12,222,57,222,242,63,150,24,187,152,176,22,194,33,162,254,228,160,1,89,53,253,219,217,1,186,44,118,151,106,211,22,27,26,249,247,141,218,162,10,71,41,83,107,37,147,22,94],[8,34,159,60,250,127,161,18,148,143,29,31,136,191,140,12,242,116,112,237,115,181,148,179,82,92,108,7,40,75,119,94,21,66,111,165,32,138,243,181,249,169,185,2,238,170,195,202,20,177,120,152,72,211,18,14,164,32,11,149,142,211,137,250,57,169,214,175,136,210,78,180,115,178,181,46,1,48,61,134,92,122,79,87,215,123,180,159,251,234,148,21,28,81,220,31],[21,48,72,27,216,113,22,66,189,19,48,107,238,193,35,243,171,48,50,34,139,42,54,216,212,128,8,113,255,105,47,32,179,240,194,56,43,56,2,16,34,34,228,200,142,72,140,173,19,1,47,164,7,92,144,80,54,167,12,1,249,29,75,228,110,60,8,196,107,111,165,83,44,171,127,194,211,228,167,214,111,166,145,152,72,43,155,122,168,66,167,243,89,222,247,192],[6,144,181,167,214,212,138,175,154,100,171,175,4,113,118,25,171,191,174,220,184,109,23,11,210,166,124,145,86,176,109,113,136,143,96,114,247,60,72,137,80,151,77,134,221,76,156,194,21,95,74,115,85,93,110,99,22,118,118,6,179,158,216,132,228,102,253,31,165,102,101,1,48,245,80,75,18,99,42,152,152,4,167,180,136,90,192,223,200,66,118,8,180,65,140,90],[8,241,69,185,44,199,255,179,201,201,156,48,223,20,77,220,77,28,107,37,78,25,219,108,94,131,205,34,37,1,232,18,14,70,171,56,139,82,201,84,31,42,149,57,53,177,67,141,23,11,132,244,159,125,86,94,230,81,12,107,66,38,129,44,140,209,2,145,206,0,247,204,191,66,45,96,17,137,121,96,121,203,244,142,235,32,96,120,234,131,83,139,247,23,247,212],[24,42,180,203,144,188,253,149,153,134,211,116,3,118,103,252,146,67,204,73,82,231,128,131,174,145,4,100,250,220,92,243,204,14,128,93,51,5,172,222,75,143,56,60,206,77,147,32,18,81,82,104,48,51,34,244,139,87,123,163,64,54,133,199,145,86,121,224,200,231,234,147,129,190,185,244,125,77,150,38,209,6,127,111,101,130,74,86,132,83,5,65,22,61,132,181],[13,26,52,200,9,31,56,67,53,29,153,10,249,27,182,111,94,93,229,187,50,115,86,132,244,6,130,168,37,156,41,51,161,215,43,38,131,125,180,254,97,53,71,114,218,49,204,126,18,158,142,168,169,122,40,188,193,189,35,102,247,11,232,113,86,190,223,28,207,254,156,191,209,84,207,211,63,105,185,182,24,92,174,52,177,197,188,49,134,106,201,104,162,236,116,207],[7,140,3,158,239,32,141,80,137,1,120,219,182,107,77,65,90,39,220,159,89,1,167,241,124,82,26,75,40,171,240,136,201,145,86,32,250,203,45,87,101,249,56,8,121,218,234,5,8,113,91,153,209,162,83,127,134,25,252,208,106,105,178,104,3,233,92,163,35,187,251,216,36,120,101,192,24,83,1,174,246,236,161,13,219,10,44,31,33,55,239,100,155,165,225,67],[10,208,161,163,108,179,141,26,18,163,30,121,217,252,128,195,27,87,30,13,85,34,128,103,12,140,60,157,5,83,219,30,83,174,21,174,188,180,211,39,192,144,51,66,146,233,9,136,3,12,186,216,244,234,114,67,8,135,74,54,128,136,233,179,28,53,195,255,78,221,187,157,144,230,65,101,159,234,235,210,45,134,158,208,77,158,199,142,234,181,181,9,72,225,123,118],[10,229,143,98,130,202,249,108,107,103,247,224,245,57,110,222,196,249,79,178,77,162,173,141,16,208,81,227,173,101,232,23,69,238,133,93,208,171,219,217,145,169,243,172,163,20,241,119,5,234,170,197,38,101,136,28,19,145,71,75,24,133,94,1,20,99,61,116,15,128,161,8,116,139,149,246,25,97,23,97,1,64,213,184,253,8,203,85,173,238,180,27,187,135,21,145],[22,249,208,190,95,174,237,17,55,90,69,125,158,149,165,228,92,57,32,140,66,219,125,77,28,55,176,209,176,51,250,183,53,158,103,73,106,129,100,32,192,36,100,255,28,100,40,151,17,121,206,182,28,93,94,175,146,143,151,207,3,215,220,23,143,161,109,95,11,248,34,200,36,178,41,178,221,220,167,13,165,103,226,252,205,193,230,62,193,160,229,33,72,109,59,72],[23,226,94,97,9,254,19,208,154,111,225,103,15,138,64,224,120,64,46,248,119,24,190,86,7,218,14,129,191,84,161,138,230,104,186,124,181,139,186,126,213,28,45,206,13,102,49,220,13,173,184,218,235,97,1,21,94,194,57,156,208,189,225,192,54,22,85,146,95,7,136,238,50,0,243,162,224,172,38,81,238,112,182,225,41,142,125,21,99,41,97,129,122,2,108,229],[6,114,149,180,47,129,6,203,161,101,112,49,4,83,30,165,188,10,230,20,52,201,187,96,108,84,125,20,245,36,173,104,7,93,140,93,246,106,9,197,112,90,149,109,197,106,10,132,2,232,142,255,42,85,7,158,182,233,107,129,202,95,117,184,124,104,54,224,228,76,82,88,71,49,33,82,79,74,192,20,209,98,101,209,49,57,17,169,82,151,80,19,240,25,244,149],[8,115,246,113,149,115,128,176,167,9,131,229,121,18,178,123,132,105,174,239,110,13,73,210,206,5,16,139,157,108,41,217,157,139,97,89,114,208,226,199,159,220,132,215,108,18,247,2,15,183,25,46,179,207,62,215,81,5,46,34,199,68,239,184,47,69,124,67,247,19,53,220,191,211,201,101,166,200,37,187,117,238,127,69,30,63,188,228,211,243,3,211,125,92,57,167],[21,47,60,209,46,18,29,193,166,115,82,134,42,179,111,111,135,80,27,37,239,50,52,83,250,140,126,20,193,211,124,88,142,147,127,232,130,135,160,23,160,175,156,18,9,110,29,204,12,182,99,107,147,64,107,31,186,52,100,129,6,50,235,250,247,228,34,145,9,72,134,125,109,184,115,221,162,1,55,220,38,34,216,22,212,191,17,43,52,180,202,87,178,67,117,188],[14,32,63,225,23,170,5,97,95,63,49,133,65,11,157,26,176,25,226,128,73,171,27,80,61,216,237,170,92,246,21,63,0,45,51,181,123,108,255,204,238,27,9,96,13,150,108,7,18,69,99,53,228,135,154,14,150,212,190,99,99,144,133,100,99,147,96,252,60,106,156,94,49,140,171,16,233,172,188,204,30,83,143,173,101,88,155,41,219,154,234,40,253,239,131,156],[8,123,206,121,84,45,195,113,227,14,151,77,165,174,164,30,43,200,173,30,2,174,65,5,122,95,204,117,240,58,108,210,214,195,185,110,245,130,12,14,18,14,245,29,103,218,177,58,21,164,120,252,98,135,111,97,84,113,187,168,184,40,40,117,194,184,197,177,76,126,170,72,229,184,62,107,112,132,42,229,61,225,182,221,103,24,144,224,208,255,146,219,99,25,64,183],[11,160,66,16,194,233,15,71,8,59,46,149,238,185,132,224,171,94,60,33,218,37,148,64,85,233,58,8,147,72,222,176,240,138,162,210,26,167,139,185,148,129,23,72,119,78,124,113,7,211,63,101,191,176,201,229,47,109,240,73,68,100,28,180,154,214,239,138,146,93,131,218,193,66,114,7,164,108,73,87,245,83,201,118,58,252,233,120,11,135,83,217,138,128,175,124],[6,130,246,57,243,99,200,219,74,94,100,111,200,71,22,113,101,97,202,184,110,116,235,117,198,219,147,85,66,244,4,92,61,177,222,44,109,224,46,106,146,173,36,207,33,20,158,134,13,150,212,235,84,159,0,77,163,177,192,242,228,110,90,92,171,191,120,13,212,32,155,118,252,101,54,134,225,63,212,215,24,78,133,125,75,231,243,109,204,27,60,180,204,213,78,210],[24,59,6,26,142,230,186,154,56,232,38,152,20,64,20,151,35,232,88,44,147,241,130,53,192,80,140,255,210,197,65,112,129,41,162,78,134,211,115,56,229,101,92,122,14,226,67,44,24,158,214,166,152,106,241,241,241,154,88,197,191,143,254,119,37,81,223,138,141,30,174,112,87,108,236,185,67,86,72,136,80,240,62,36,106,248,124,241,57,45,177,103,47,132,124,30],[18,172,109,199,85,44,156,28,217,195,26,222,96,247,146,178,65,68,140,52,212,149,136,216,19,34,224,115,213,215,151,208,237,160,251,113,199,198,99,88,9,148,200,139,90,63,63,150,4,159,118,198,229,147,36,193,140,163,87,92,107,249,168,138,243,184,201,229,158,168,14,154,79,73,131,44,17,255,202,98,230,229,215,172,226,213,189,241,253,31,13,191,64,53,81,57],[15,177,103,236,148,255,188,76,236,210,220,170,86,191,65,29,241,226,239,157,27,109,224,95,251,19,79,69,213,96,76,51,6,201,74,43,36,43,156,205,117,9,220,184,144,9,188,100,22,43,228,9,192,123,5,90,253,203,31,50,126,13,28,104,157,152,234,156,15,161,38,228,162,18,249,206,99,6,70,133,187,61,119,86,183,52,0,227,95,208,35,191,169,129,208,130],[12,247,84,168,195,241,11,71,94,96,43,18,184,214,153,78,205,201,22,17,164,249,1,28,38,82,220,219,98,97,198,4,62,19,130,176,85,84,139,128,25,36,154,233,114,94,78,63,16,138,2,254,223,31,176,248,50,129,207,53,87,189,93,205,118,129,236,166,233,99,194,45,20,151,47,142,217,55,57,54,254,115,92,63,222,92,148,83,183,98,190,118,150,198,150,236],[14,84,161,95,221,205,200,50,224,79,17,89,65,204,4,88,233,39,112,205,65,166,41,201,7,48,61,187,210,220,100,164,209,242,215,172,40,154,50,105,8,244,188,117,205,14,110,33,25,85,86,171,18,21,0,50,235,175,233,71,199,51,133,41,247,56,75,99,133,45,163,14,77,244,253,70,30,46,201,34,52,3,55,121,95,213,86,190,142,132,235,14,222,92,207,154],[10,69,237,211,153,160,252,214,48,178,120,251,200,141,143,254,155,88,46,35,244,111,157,34,185,33,10,137,108,203,66,181,98,70,230,186,253,95,213,187,215,180,122,230,233,232,102,205,18,130,182,199,120,193,107,114,23,18,161,136,7,152,202,9,105,31,80,106,119,213,243,167,102,29,103,237,250,47,91,0,192,240,137,142,19,68,224,199,150,126,219,185,221,238,231,248],[13,95,112,148,151,43,26,24,65,192,8,51,83,208,81,110,182,94,104,250,1,88,123,105,64,172,159,65,22,207,228,182,224,98,130,25,144,54,240,50,77,178,196,238,194,200,102,9,0,161,171,101,241,62,166,131,55,4,185,84,141,90,45,126,123,213,213,211,201,139,137,49,33,14,243,18,224,183,209,108,235,85,119,192,75,109,213,102,113,30,43,250,54,183,28,4],[23,122,8,156,120,46,227,56,31,160,18,180,136,119,164,169,122,43,231,95,30,122,233,54,118,216,178,6,216,125,153,251,63,24,120,185,128,211,193,99,251,92,69,16,215,43,220,7,23,12,163,240,143,231,13,82,15,93,130,254,43,160,145,208,21,175,110,111,56,143,112,55,16,231,4,78,92,102,72,79,68,40,56,23,32,108,17,55,203,238,155,0,230,164,81,225],[20,12,20,78,229,116,96,179,99,174,172,251,29,22,232,227,116,207,56,152,189,24,165,157,132,39,18,138,190,118,7,212,233,95,225,217,75,241,31,198,8,88,73,144,66,139,197,164,1,49,234,125,135,228,101,87,102,38,62,221,59,161,33,94,201,30,13,237,179,142,140,239,101,192,178,237,219,134,192,66,54,195,89,196,9,153,170,164,73,243,45,115,52,203,110,16],[6,17,139,200,5,145,80,44,69,13,137,250,166,202,137,189,231,213,38,4,249,120,255,123,160,179,63,118,35,148,211,62,156,219,100,136,213,232,130,91,211,81,10,121,173,195,108,102,22,106,111,16,225,64,115,130,179,83,66,157,60,36,44,95,253,36,157,121,73,167,191,180,56,167,226,226,156,65,126,125,107,66,48,160,226,16,144,39,211,154,204,48,227,222,218,7],[3,123,148,161,57,22,20,109,37,97,226,85,125,111,21,247,20,30,19,210,90,141,65,65,97,228,166,96,24,173,125,56,212,238,4,146,214,200,115,71,218,214,138,143,117,64,83,160,4,40,126,200,179,173,93,70,95,131,46,183,63,96,73,171,63,254,86,172,163,214,55,2,189,196,215,2,0,36,172,252,200,51,20,169,181,220,203,55,105,155,230,167,102,44,65,237],[1,69,11,165,198,96,207,92,37,122,200,10,85,219,215,126,89,192,106,126,175,169,180,134,127,39,54,240,192,56,182,71,233,220,82,114,201,19,194,248,16,38,143,229,78,48,99,64,10,204,240,190,53,47,62,157,235,78,236,116,205,220,237,219,130,240,244,168,96,23,134,14,158,220,131,7,110,182,65,251,49,156,111,168,2,39,23,203,155,62,6,26,61,126,90,31],[11,19,183,146,232,110,12,254,226,161,16,199,207,72,18,227,69,222,154,236,129,40,209,144,2,232,218,232,126,1,181,231,164,163,53,96,87,237,114,85,231,24,42,182,32,123,69,197,20,24,229,228,104,110,62,234,2,115,171,229,89,40,19,154,223,108,74,9,35,44,145,150,154,38,161,230,189,50,47,177,226,239,177,16,77,222,171,177,189,3,195,83,35,14,154,197],[8,68,138,4,143,122,21,79,230,166,124,47,78,226,19,150,216,99,32,245,113,166,180,91,68,102,202,0,142,71,244,202,149,249,205,93,162,29,201,195,16,131,250,172,203,215,190,247,18,147,240,169,217,185,127,110,65,140,136,60,169,230,146,250,101,186,82,165,237,118,73,153,196,167,31,178,39,220,161,177,23,215,55,233,185,65,214,81,190,49,177,125,19,73,186,115],[21,83,53,243,205,27,164,155,163,170,151,61,22,174,67,230,181,199,99,0,169,104,65,146,77,148,104,87,90,255,202,42,184,254,209,241,179,214,230,79,63,114,29,226,187,8,178,230,3,136,66,213,223,220,73,169,95,88,238,136,42,117,19,140,110,162,102,195,48,171,172,101,147,99,59,2,93,223,189,104,236,164,0,54,109,2,48,216,63,25,44,148,110,21,236,75],[23,21,177,45,182,60,139,120,166,100,199,12,212,116,128,204,161,35,79,120,61,97,183,46,109,78,98,96,107,147,117,16,53,111,138,200,72,194,253,36,25,42,237,67,100,91,246,19,18,127,99,23,172,28,189,117,84,248,66,156,103,42,245,3,175,88,52,168,160,48,239,25,216,120,132,239,217,121,130,226,27,29,188,90,205,236,54,182,72,205,232,252,54,116,149,101],[22,216,252,95,188,190,85,85,135,133,144,240,26,29,61,41,123,19,229,137,8,80,201,156,171,179,182,200,213,196,79,162,206,2,20,237,204,250,181,82,0,60,231,144,26,188,102,126,13,105,170,151,135,6,246,245,207,74,254,67,122,243,74,75,142,58,207,194,113,214,185,250,230,143,76,75,189,128,128,151,98,223,125,202,44,208,252,41,2,129,53,13,15,50,9,143],[25,38,115,205,129,197,197,184,166,156,175,180,27,53,3,136,191,130,124,221,16,231,74,69,4,227,248,141,120,72,56,248,193,90,188,101,57,231,10,208,97,26,139,93,20,244,201,34,8,119,0,71,153,192,3,70,53,218,28,206,213,253,202,199,153,202,140,174,210,249,68,119,28,122,143,174,201,70,210,79,15,143,15,222,246,210,169,4,176,50,249,187,156,26,68,219],[15,25,236,238,239,39,149,60,158,60,106,211,167,208,0,174,205,55,77,167,95,172,255,213,182,40,102,35,196,167,24,103,111,140,242,16,154,198,39,13,42,7,128,174,102,159,56,71,10,129,12,191,48,165,164,57,20,162,110,182,151,41,149,213,255,167,102,166,222,212,65,217,15,61,233,45,119,71,66,44,67,206,12,143,248,107,176,232,36,3,190,174,126,30,227,185],[16,179,211,49,123,225,210,216,168,70,88,111,28,70,40,116,49,79,106,81,233,120,235,230,187,8,184,212,224,145,114,149,100,137,187,22,125,103,0,9,141,244,243,33,137,50,95,75,21,108,75,40,188,216,15,102,252,171,134,215,56,43,87,24,18,33,159,70,174,172,105,167,6,164,201,105,212,209,102,2,164,234,160,12,231,216,141,67,50,166,205,7,5,86,16,20],[20,209,206,87,255,251,189,68,10,138,244,53,203,95,3,102,23,121,16,103,221,177,5,232,99,39,205,5,136,203,39,95,14,111,98,11,242,158,50,136,234,176,132,61,181,110,7,206,21,79,99,17,83,168,94,250,186,255,185,79,134,39,255,222,169,240,229,149,82,181,195,62,56,19,73,165,142,78,96,227,253,243,83,33,234,220,98,163,41,118,73,202,239,189,100,249],[24,178,120,146,117,233,46,21,210,145,60,148,121,83,110,30,193,221,175,250,121,11,60,68,223,116,209,206,17,81,122,46,33,239,74,150,204,203,156,213,46,6,160,253,221,19,230,163,22,199,231,71,193,19,23,160,211,200,152,73,71,166,69,200,24,203,227,141,75,32,95,54,241,65,23,44,197,50,154,157,181,20,172,99,181,198,168,217,26,196,239,82,176,47,213,228],[22,63,202,123,205,127,8,73,106,55,88,85,191,211,14,182,123,85,96,167,210,199,188,247,241,237,119,123,121,122,25,125,76,11,56,72,76,114,168,200,48,92,249,207,44,24,91,219,17,176,135,105,44,196,221,102,21,148,167,53,250,248,208,229,196,71,97,192,123,197,154,212,203,77,200,166,179,55,254,35,137,160,1,107,178,14,52,82,199,34,58,59,198,33,51,110],[7,147,146,137,33,9,60,4,25,233,92,151,22,115,14,180,201,179,103,253,253,99,122,228,94,116,87,208,108,154,136,63,174,221,108,80,45,172,143,36,126,136,69,187,254,12,154,185,0,57,78,57,177,24,72,77,202,124,204,55,227,170,68,155,64,155,179,184,117,98,203,198,76,111,181,241,74,123,216,77,136,192,111,169,129,68,125,226,52,161,45,118,217,107,168,167],[23,24,87,183,21,248,114,165,238,172,60,5,94,135,217,207,46,143,37,53,120,49,73,113,61,112,21,106,91,75,203,168,222,131,5,174,107,200,239,230,120,192,190,179,62,82,10,176,0,75,156,208,31,33,30,189,136,175,74,200,119,1,33,67,2,148,243,177,57,40,57,92,243,195,70,203,72,35,192,140,104,56,134,134,214,97,168,186,142,166,23,41,236,16,51,190],[25,168,254,236,35,229,12,149,13,68,0,198,152,76,215,40,47,151,1,187,163,14,188,6,136,229,85,121,98,90,139,223,252,217,101,215,49,170,183,202,165,90,165,54,253,211,15,161,2,243,90,188,139,161,117,228,221,65,180,36,217,37,50,85,24,72,185,161,34,223,104,62,135,185,174,223,213,232,90,25,175,187,123,215,19,34,37,115,243,17,7,60,61,229,0,139],[20,213,255,90,176,23,238,180,106,53,23,73,237,4,197,181,208,223,136,165,88,122,200,64,121,141,109,251,210,128,115,194,55,54,62,162,200,98,172,64,237,182,252,188,241,215,76,3,3,197,215,94,213,101,103,239,242,192,147,236,14,210,196,48,9,180,233,84,175,138,112,134,23,124,235,1,84,243,53,172,216,137,231,57,125,166,198,109,187,51,150,140,237,212,189,220],[22,28,191,244,145,203,173,238,179,249,107,195,61,69,125,116,89,36,124,10,24,30,170,28,136,250,83,21,224,159,242,6,41,229,209,36,42,228,199,121,0,132,229,18,142,94,210,160,14,92,0,240,123,204,127,164,80,227,58,211,76,230,155,102,229,247,24,42,47,70,14,161,92,175,92,115,210,94,215,216,127,138,127,217,233,166,28,160,244,158,194,185,160,50,200,229],[10,125,197,37,250,39,198,53,246,85,62,49,110,167,111,146,254,122,102,90,52,143,176,198,9,1,204,202,52,96,236,200,197,3,245,24,211,205,88,134,149,124,146,160,156,187,102,193,3,75,5,239,65,39,143,123,39,169,185,162,194,73,102,136,178,10,194,105,242,42,232,157,54,221,70,237,209,116,224,198,129,224,230,159,58,195,92,145,78,43,182,216,3,15,196,114],[9,110,44,9,253,167,79,128,67,168,91,73,215,133,170,224,86,200,182,8,183,13,76,108,193,231,184,245,129,172,47,2,128,76,113,148,71,223,215,43,111,209,137,206,185,28,46,64,14,80,7,240,176,206,60,43,95,194,199,187,41,253,147,14,236,99,180,10,219,201,131,138,20,184,20,158,224,143,87,245,181,234,247,202,43,77,163,198,238,49,176,60,101,238,197,19],[18,28,167,175,28,181,211,170,180,0,223,185,175,210,37,226,16,185,173,60,181,72,4,177,19,85,132,219,144,0,20,100,27,42,118,9,84,190,136,4,138,128,56,39,110,113,115,220,11,60,219,112,44,134,110,89,85,191,69,61,26,238,211,91,254,243,66,239,28,196,214,79,157,150,233,83,218,130,245,80,8,82,36,18,100,152,163,17,177,153,107,63,198,78,9,15],[12,158,158,64,66,248,183,199,15,87,115,195,70,166,233,233,28,151,50,68,130,249,254,170,24,155,191,217,17,229,79,221,125,13,84,95,50,131,68,66,213,11,133,127,204,170,48,56,19,128,171,60,6,124,248,52,139,0,167,107,170,48,97,151,134,121,242,83,179,32,79,219,173,158,129,164,30,180,62,46,136,6,225,145,77,40,74,61,205,37,135,113,162,157,47,34],[4,191,8,13,12,131,218,73,211,85,120,234,245,16,168,146,105,223,179,237,180,237,141,233,252,176,230,170,217,132,57,135,2,183,127,123,205,156,189,238,151,10,0,114,82,129,68,196,20,78,107,235,89,237,241,82,217,144,129,245,231,135,93,117,68,33,135,249,121,117,223,50,47,179,9,111,17,245,143,94,40,212,164,41,125,208,14,16,82,61,206,177,97,15,34,236],[19,143,235,77,191,201,49,46,165,102,187,206,188,228,50,42,35,97,232,27,188,178,101,73,83,67,60,122,115,28,200,128,20,183,224,42,158,17,100,158,250,137,7,30,75,11,239,45,13,216,110,206,203,81,189,233,178,191,198,216,181,224,207,44,22,137,191,179,245,69,78,187,84,188,152,70,140,182,1,150,153,100,53,8,136,234,160,156,83,160,32,45,129,235,141,139],[12,152,74,109,45,171,54,157,133,26,84,202,120,5,253,168,66,83,34,150,12,253,146,13,151,236,227,124,131,94,208,101,25,142,227,145,238,113,236,78,58,218,67,11,61,58,29,186,24,38,60,239,63,40,214,154,5,135,234,240,169,91,116,25,52,55,150,72,165,29,23,198,65,196,202,74,208,21,75,154,125,123,239,98,4,89,180,120,50,233,89,27,235,37,133,180],[4,114,20,114,170,147,190,69,31,223,141,40,186,209,94,55,163,174,229,203,213,150,240,148,239,10,134,51,78,151,191,184,42,115,168,115,158,225,19,28,199,106,70,76,0,73,111,48,1,177,193,87,149,88,244,204,63,60,247,108,171,124,59,230,85,134,109,21,132,122,196,211,111,97,152,159,201,248,143,140,14,177,88,149,79,203,123,190,108,77,98,219,26,130,39,211],[25,121,195,181,201,192,13,75,189,102,84,120,42,82,150,51,227,191,84,238,9,105,8,12,226,225,153,31,152,204,208,136,3,135,171,91,27,202,37,40,197,116,138,191,95,246,130,176,19,105,37,3,136,157,198,117,105,201,222,234,158,182,242,222,106,104,80,141,73,254,120,252,28,150,133,198,112,119,216,218,49,118,219,42,127,220,15,49,174,48,130,207,143,160,73,46],[13,250,150,249,151,48,181,201,88,230,115,112,63,162,187,28,110,203,42,126,240,165,92,34,141,62,231,68,68,35,79,74,3,62,163,122,158,20,230,106,228,173,72,35,71,46,186,212,17,138,212,242,84,157,15,112,82,10,83,76,38,80,34,245,166,112,66,35,227,202,248,218,47,159,35,59,219,155,50,33,8,180,126,119,54,114,168,243,240,72,200,33,19,119,238,94],[13,211,206,45,126,230,34,109,40,172,108,95,5,198,23,67,53,161,213,46,203,141,91,148,36,218,132,71,170,115,24,174,55,211,173,173,4,147,202,179,178,5,14,144,15,105,200,159,13,2,143,164,132,56,58,89,15,236,114,246,216,144,52,26,222,87,121,197,181,231,166,101,246,81,100,74,8,156,10,235,175,72,91,132,18,35,168,125,102,205,48,42,68,220,115,173],[15,75,69,23,87,111,3,236,170,249,204,161,129,190,158,192,232,179,91,44,203,122,85,220,113,49,115,226,91,108,128,205,79,4,234,5,229,209,193,219,68,154,52,173,86,213,141,103,19,113,29,64,13,135,9,131,186,209,7,138,14,141,116,62,239,81,228,9,62,47,37,85,0,148,140,239,167,223,249,198,221,120,133,157,147,117,45,118,45,44,42,139,251,3,148,241],[15,5,71,218,28,68,210,7,140,103,4,169,211,70,236,103,251,124,221,63,1,169,144,170,93,59,79,183,169,39,76,65,230,63,62,114,185,163,107,216,48,11,51,90,172,60,192,243,7,25,192,43,58,53,7,199,91,71,234,113,139,21,146,130,33,57,176,130,45,236,139,212,49,251,226,117,197,33,221,71,12,30,78,199,79,231,143,135,161,94,107,2,217,120,21,172],[19,11,16,244,86,126,36,192,126,139,173,38,50,162,58,13,115,120,19,5,100,158,101,160,123,219,39,38,102,164,78,16,76,202,95,26,236,141,28,62,163,82,124,81,239,87,72,108,14,211,220,191,197,77,136,20,14,229,63,61,132,72,68,79,19,182,184,219,63,202,44,52,178,50,220,20,220,81,141,210,43,216,31,88,88,30,10,110,229,85,241,240,115,228,235,167],[7,160,162,142,3,109,224,116,99,48,81,41,202,202,82,33,31,160,127,81,136,18,55,149,134,204,6,107,168,56,190,212,123,231,195,122,225,234,118,169,180,1,234,251,93,172,189,170,18,181,150,255,14,47,73,222,47,17,107,9,121,185,2,73,246,211,140,145,155,63,157,255,19,104,118,227,158,42,79,209,192,23,149,51,247,60,16,87,249,206,62,66,248,196,229,183],[23,80,48,145,177,197,116,114,14,201,51,43,171,33,38,99,177,248,52,100,250,200,3,177,127,46,79,165,61,239,20,250,90,166,196,177,25,238,86,90,86,71,215,164,238,74,43,189,1,139,239,203,239,185,198,134,62,64,35,241,187,191,59,195,35,199,98,25,192,19,118,114,255,251,93,109,168,89,80,229,17,210,247,116,114,51,72,50,214,106,53,155,3,239,144,59],[21,255,214,114,219,171,130,78,177,82,242,26,246,206,88,223,63,226,70,64,129,127,181,3,27,25,210,3,143,250,166,137,249,132,203,74,64,19,60,217,182,24,21,186,242,181,19,6,10,94,194,174,180,183,127,124,59,56,118,23,12,52,59,157,52,119,65,77,125,143,184,123,26,250,60,102,26,249,16,75,227,55,241,125,114,238,138,227,57,114,117,127,143,138,120,106],[11,47,170,93,254,88,133,100,239,226,81,216,92,71,164,51,243,54,236,211,182,240,31,62,91,23,78,255,185,57,27,63,4,110,155,187,61,227,143,208,199,69,9,198,249,225,121,227,4,71,9,130,224,137,30,116,26,120,247,189,137,50,108,47,27,138,155,49,26,44,145,65,128,97,247,48,189,157,152,91,30,90,86,32,117,9,213,195,103,56,214,141,228,1,55,163],[0,203,217,181,195,247,215,220,224,77,71,35,144,113,120,18,37,176,32,218,31,251,20,160,229,14,147,151,148,184,153,232,96,173,197,217,153,124,233,245,146,57,157,135,248,12,129,250,19,79,45,89,18,112,147,89,146,38,200,154,56,190,163,39,213,231,149,212,24,46,54,199,204,205,137,119,69,112,137,37,165,43,108,204,15,199,111,73,82,195,224,184,248,58,252,146],[9,74,236,179,158,140,160,200,75,243,215,214,134,26,12,190,44,226,164,120,84,138,193,218,11,70,146,201,130,149,24,86,102,151,9,112,76,104,126,109,178,31,52,125,241,108,100,239,6,251,9,2,104,175,145,93,231,147,43,38,124,45,14,156,78,133,41,72,108,146,185,231,91,78,88,61,38,131,196,67,212,183,100,54,195,189,23,107,233,68,241,138,254,230,20,205],[8,16,6,114,197,190,161,93,103,88,231,112,38,168,158,220,254,1,90,84,66,88,140,182,34,149,205,164,15,116,223,159,140,186,12,161,209,235,178,178,12,154,85,159,182,38,211,253,9,197,142,243,62,182,253,29,164,0,133,190,248,196,162,83,16,237,3,196,186,52,0,121,33,86,105,255,147,113,63,224,109,206,228,13,221,241,242,249,181,60,69,195,200,109,112,105],[16,187,126,16,2,90,237,243,102,243,221,232,106,63,88,136,142,71,129,95,87,211,132,80,124,25,3,159,5,109,102,33,87,108,233,223,165,184,194,119,255,51,126,244,65,5,241,206,19,242,239,161,129,56,206,72,153,28,176,115,97,127,179,159,246,135,213,112,169,236,249,75,33,215,129,126,171,162,207,66,68,72,207,131,189,251,109,166,253,7,191,119,198,123,136,234],[9,85,150,175,206,92,182,132,162,109,56,151,143,20,248,224,42,242,89,251,253,60,167,110,118,135,97,215,74,137,134,132,135,157,172,209,137,20,223,179,13,178,183,139,105,166,246,170,3,205,212,190,246,33,71,79,50,255,87,46,127,122,158,36,163,255,64,128,130,173,85,82,117,43,217,86,121,127,95,46,54,103,206,248,6,80,107,123,106,221,150,152,89,254,240,199],[12,63,235,136,60,118,243,82,155,35,19,8,107,17,84,58,66,11,166,246,190,52,94,180,141,101,122,229,104,198,5,0,72,163,158,50,161,164,53,13,32,72,91,194,163,6,44,250,8,248,212,196,235,9,111,67,237,169,171,213,0,193,64,165,54,26,234,163,117,252,15,42,28,186,120,98,144,182,12,8,9,143,60,56,31,75,17,247,214,164,204,113,127,130,58,117],[6,240,214,37,33,182,146,16,4,221,153,56,202,248,9,144,63,97,91,53,17,63,188,29,67,239,247,62,67,128,128,221,106,97,39,110,44,177,103,109,105,65,19,126,107,62,66,83,17,156,224,35,242,17,204,234,188,39,222,211,122,116,160,174,105,158,193,128,125,24,63,6,238,38,253,10,104,247,215,129,201,78,222,175,86,18,151,246,112,12,84,216,0,13,153,52],[11,141,99,127,27,112,228,135,159,34,77,53,119,148,211,84,207,21,29,58,0,20,215,138,118,101,35,109,144,167,154,34,243,22,37,132,112,204,33,140,104,86,157,108,216,52,21,127,5,193,95,225,118,82,163,138,18,221,92,129,67,81,140,135,150,92,42,248,119,3,133,17,95,44,136,137,203,133,20,82,230,76,168,219,90,91,247,170,45,6,93,139,77,190,87,178],[5,8,214,14,29,55,57,243,232,119,93,145,109,0,213,71,181,108,131,178,128,237,115,199,50,198,173,48,245,104,226,96,77,187,11,19,46,144,247,211,105,141,50,216,222,209,0,61,25,206,14,253,233,236,33,201,240,174,244,77,106,29,51,196,234,249,45,238,48,195,228,195,207,173,40,71,89,223,244,169,18,27,240,214,120,78,255,28,116,184,180,207,49,220,107,130],[1,164,154,158,200,246,52,183,184,2,67,81,240,239,128,105,183,177,235,198,184,53,76,168,166,136,210,15,253,27,210,124,1,8,237,156,150,76,200,98,67,108,232,237,152,206,56,39,16,90,21,197,245,217,78,212,250,101,66,124,222,106,220,176,29,32,231,196,54,158,10,158,203,8,223,172,18,164,228,213,17,98,250,42,135,149,221,141,179,205,115,31,93,120,61,92],[9,118,220,195,153,188,153,197,255,11,67,171,76,106,53,105,104,74,96,141,120,123,202,92,169,3,130,173,21,130,251,113,245,69,140,174,155,250,10,218,211,86,102,216,41,189,214,213,18,46,22,178,85,81,150,81,187,235,77,192,136,135,235,45,47,166,135,57,161,95,142,179,237,37,162,211,156,149,57,121,179,53,193,223,218,111,34,11,234,25,107,252,127,152,90,95],[2,12,202,225,251,23,41,58,139,191,64,222,72,80,5,216,49,112,235,245,132,74,70,14,68,96,158,123,185,235,243,208,17,93,165,187,117,88,11,118,221,63,149,29,86,140,0,64,17,58,191,139,220,211,59,32,169,63,85,223,9,153,71,218,243,220,73,116,247,144,170,222,136,136,43,52,137,47,96,241,66,47,220,90,149,158,163,165,128,11,169,117,231,201,242,77],[11,141,74,245,158,150,229,124,140,248,60,224,47,193,104,185,185,99,203,24,124,189,115,201,172,26,99,110,132,151,147,227,226,248,86,253,92,26,84,202,167,113,116,6,25,165,167,221,22,242,252,29,31,84,250,95,152,62,244,91,154,158,136,223,232,131,4,172,8,185,65,182,15,179,78,137,90,254,133,119,131,89,180,119,134,165,65,91,184,208,123,109,201,141,61,53],[0,241,168,195,184,118,127,150,140,230,130,13,159,221,130,74,196,214,157,125,181,86,76,46,76,22,22,138,174,206,105,129,55,253,221,117,250,254,195,94,28,143,224,107,180,36,17,116,20,207,186,10,24,71,249,151,217,243,77,104,85,179,80,59,61,63,28,39,182,175,21,246,95,177,116,208,102,185,152,207,108,94,122,26,252,113,84,251,159,92,1,22,10,43,193,214],[0,20,190,46,98,112,98,246,77,178,88,149,45,65,50,216,127,228,226,201,151,62,133,187,168,28,179,201,57,3,208,225,161,221,208,215,29,59,25,95,122,90,119,122,230,151,85,9,21,188,186,226,129,70,170,228,208,46,68,118,198,49,20,166,177,188,139,94,49,193,127,180,154,121,153,225,17,109,138,50,15,43,5,212,210,34,111,147,129,112,197,135,112,246,130,234],[2,246,65,174,95,26,116,179,177,193,38,207,38,18,109,218,36,1,89,46,207,71,83,195,195,108,188,246,77,211,158,218,186,93,123,195,130,62,173,217,234,160,86,170,41,115,91,45,13,237,125,192,132,107,57,85,120,178,237,97,24,171,182,86,247,127,3,22,44,216,222,200,28,151,82,165,249,171,242,89,86,171,45,191,226,19,176,230,53,213,13,94,50,151,176,172],[8,166,3,240,191,123,233,225,178,205,210,237,187,221,164,248,152,218,137,153,169,8,117,76,190,94,18,224,250,145,177,29,61,133,241,168,119,253,36,97,160,247,219,69,253,233,18,44,15,66,250,161,0,96,141,163,136,27,40,53,2,196,17,55,16,120,147,0,11,136,238,32,234,236,159,107,97,43,29,250,81,98,225,19,248,88,182,206,173,230,89,184,166,189,242,196],[21,11,175,28,84,226,160,240,113,145,218,66,23,4,209,12,68,233,250,222,42,152,141,108,188,121,221,200,134,141,127,122,93,209,118,133,184,56,32,68,45,153,79,3,188,156,88,242,16,57,153,204,120,196,159,38,84,71,38,9,45,103,195,157,72,22,191,65,78,148,88,178,70,153,74,81,36,160,36,148,136,42,245,14,103,210,199,195,1,61,255,12,37,51,26,125],[16,101,132,101,95,26,18,214,42,102,241,36,9,55,237,0,80,168,254,108,121,240,137,224,125,244,140,108,157,242,191,130,57,225,70,21,157,237,83,170,155,61,173,122,183,198,232,21,20,6,5,236,14,240,7,15,24,154,125,41,179,176,212,65,128,65,170,87,214,117,155,212,241,203,207,216,224,123,231,238,9,96,53,249,246,33,209,244,151,91,31,66,118,115,59,81],[13,109,13,137,22,126,14,34,211,127,240,223,155,17,6,28,26,141,90,120,195,182,64,222,113,146,119,144,51,89,60,210,196,39,226,149,42,96,140,161,35,212,10,126,16,227,7,111,22,230,164,216,168,228,204,151,229,216,195,207,255,70,142,86,143,62,87,193,83,67,183,19,220,169,133,239,80,66,61,172,10,73,103,221,147,40,245,248,54,162,160,39,245,146,58,154],[15,214,110,235,82,49,14,39,132,113,29,153,129,170,49,228,222,147,83,197,209,122,192,180,135,139,203,246,166,108,26,92,20,23,249,75,119,67,14,84,34,16,56,81,209,240,166,146,21,103,26,219,230,178,11,247,168,132,110,119,109,56,246,133,215,229,212,249,34,53,29,193,155,66,229,167,87,250,135,52,136,147,78,48,57,74,194,107,137,163,226,236,9,109,161,134],[18,85,214,179,151,125,237,207,16,110,2,242,71,133,48,132,156,185,87,17,233,92,168,123,213,245,225,46,52,45,158,194,132,118,102,121,72,139,124,42,243,143,76,161,61,214,193,4,5,84,137,47,69,55,108,28,147,123,106,112,119,206,62,81,153,118,251,138,47,80,98,3,196,46,122,218,173,56,226,121,75,227,3,218,36,67,47,174,70,212,71,124,245,99,89,190],[20,22,225,160,130,186,145,88,97,84,120,59,7,182,115,185,66,111,189,140,70,119,173,21,249,225,97,163,136,174,156,227,172,18,253,63,105,37,12,77,79,26,179,75,203,168,17,72,11,96,131,207,162,47,109,117,141,218,170,5,88,205,139,221,130,31,67,2,20,131,119,6,255,62,152,79,84,109,198,122,253,33,159,220,78,146,246,86,101,127,118,111,90,232,254,224],[22,246,227,118,253,210,20,52,130,7,150,57,78,51,0,189,139,75,130,155,72,230,139,180,220,207,249,18,74,208,251,56,126,141,45,182,237,35,22,143,8,101,212,90,225,178,128,152,8,20,221,51,252,98,190,135,197,248,108,37,221,40,2,184,208,7,175,35,179,190,56,127,201,34,68,162,241,236,230,249,145,185,239,146,206,223,56,195,69,67,91,53,128,126,145,85],[3,215,71,17,231,224,5,129,188,150,200,252,234,161,229,183,79,42,223,189,4,124,0,199,215,51,50,152,113,75,173,161,177,191,236,181,209,209,184,184,53,168,128,209,110,122,125,118,0,83,120,137,142,204,255,219,172,148,132,204,237,25,114,103,14,100,192,34,84,96,97,31,58,0,183,124,213,74,220,103,50,241,47,19,58,204,40,186,251,10,242,14,110,55,11,126],[22,86,81,4,110,214,123,121,177,117,218,244,219,0,174,79,74,148,39,107,197,38,212,32,136,50,41,67,82,98,100,135,7,198,109,233,50,186,141,127,62,43,68,153,174,58,248,72,1,187,88,7,165,18,132,100,208,22,230,2,207,119,55,124,138,177,197,156,147,73,48,248,224,160,233,248,30,218,103,221,239,176,193,255,28,59,89,26,13,79,237,146,152,241,89,85],[8,125,75,124,138,110,219,228,134,43,237,235,46,185,209,114,192,186,159,203,164,212,230,122,150,19,100,83,169,174,31,175,113,223,208,245,11,23,162,109,212,232,161,194,216,163,5,102,20,72,180,103,126,115,174,125,10,60,55,145,108,205,91,97,129,3,176,93,10,24,21,108,69,43,179,100,19,61,232,60,252,19,240,223,254,44,184,178,152,133,51,56,166,208,53,30],[1,223,69,184,170,172,131,234,92,39,4,94,211,47,61,248,219,95,37,15,137,100,16,65,199,28,156,245,214,17,156,182,77,166,206,15,161,221,19,58,125,97,47,184,196,112,193,169,3,152,13,236,222,17,64,35,159,89,90,65,203,234,98,11,244,174,68,238,104,236,123,235,194,252,26,228,98,167,86,24,62,118,61,137,188,132,65,247,160,130,38,238,97,126,188,97],[20,14,71,116,69,77,142,252,141,5,20,135,223,8,183,181,98,175,159,143,238,190,210,85,124,207,35,7,10,45,212,226,205,254,107,167,107,239,156,112,65,67,73,182,245,155,208,184,7,137,127,210,26,43,133,75,234,36,188,223,2,143,179,49,4,236,191,47,182,150,101,114,131,236,182,37,38,91,255,62,195,170,182,236,44,41,194,92,36,6,46,210,197,19,31,214],[24,191,145,211,244,152,74,55,173,208,65,86,43,28,192,219,213,212,152,140,33,158,122,129,93,232,73,67,1,233,187,151,74,207,190,86,219,38,114,35,81,177,213,251,64,121,126,203,2,137,234,206,163,130,70,117,170,29,89,97,197,108,201,12,40,202,7,153,209,5,186,179,90,211,120,158,91,244,120,64,238,76,148,189,218,133,43,156,57,148,137,151,177,87,47,78],[11,47,43,205,9,161,202,78,45,74,233,163,88,169,43,195,117,139,46,159,70,124,229,84,71,141,31,141,71,148,139,111,161,170,233,234,205,96,219,243,186,88,45,29,202,72,82,172,11,230,169,177,250,85,59,19,140,232,76,255,126,11,8,129,74,105,179,140,154,76,187,11,60,133,149,86,242,207,68,206,97,188,32,151,78,250,234,56,156,69,110,122,74,221,1,169],[14,177,74,42,60,57,243,161,58,96,78,83,255,232,67,40,156,189,137,122,84,169,36,190,185,99,216,77,112,253,115,76,234,48,2,103,170,92,250,117,7,241,34,1,205,94,163,156,4,21,217,69,1,167,169,81,84,135,165,123,24,19,20,180,108,201,234,80,181,209,2,205,23,83,174,14,181,51,174,48,32,126,84,59,186,139,22,177,55,17,110,240,197,31,221,77],[21,200,37,213,105,217,155,144,61,170,244,82,193,231,148,125,125,223,126,2,226,37,81,168,139,13,35,233,23,115,53,24,176,247,87,220,85,57,79,70,246,97,213,112,241,203,231,250,7,17,117,4,253,46,94,186,4,41,186,33,176,36,107,20,146,48,27,188,177,71,216,39,121,121,158,172,18,66,80,125,53,156,199,14,7,158,115,36,219,244,226,183,19,5,130,220],[12,175,209,206,242,90,116,162,212,241,230,140,64,205,160,74,97,55,44,168,217,40,148,163,111,211,68,168,75,151,108,36,72,32,53,229,157,102,173,121,212,248,170,29,207,66,86,249,12,8,113,50,250,109,47,201,128,21,184,15,52,88,93,186,141,54,34,248,243,197,201,90,71,49,68,29,45,128,182,100,19,79,150,94,123,194,186,64,191,102,218,169,250,250,57,168],[0,63,87,123,179,109,128,22,51,135,18,14,22,194,173,173,56,121,27,247,143,86,187,178,216,156,49,39,17,117,191,196,140,243,249,197,61,173,68,181,120,194,190,101,161,44,182,226,23,240,153,199,67,192,116,18,247,53,16,164,242,148,25,172,136,103,198,137,100,92,127,108,190,191,182,201,207,80,155,99,41,215,156,142,31,92,94,195,55,7,114,141,93,43,32,182],[5,133,113,169,23,117,114,216,67,1,61,166,120,175,157,74,69,215,178,154,254,168,89,232,239,36,134,120,73,15,172,35,228,206,179,126,255,169,113,91,118,115,64,35,112,201,243,198,14,29,71,174,217,111,117,66,101,142,27,123,97,50,166,214,250,179,127,141,199,152,60,117,68,214,241,188,34,66,57,70,33,79,13,65,141,54,39,143,127,167,169,152,10,232,199,158],[16,212,218,249,123,218,208,43,146,7,252,216,187,249,77,223,0,168,104,60,176,58,149,75,246,148,116,135,222,191,189,188,247,86,155,1,54,117,46,149,17,229,17,224,107,83,10,30,13,166,23,101,109,208,148,100,111,143,106,45,99,209,75,221,70,117,33,191,30,49,41,179,121,77,26,122,180,182,233,96,220,141,59,226,185,157,7,69,12,129,17,113,136,241,122,173],[2,22,187,211,255,191,65,255,51,132,117,181,168,106,65,15,228,224,84,253,240,45,214,51,13,16,239,54,146,240,144,85,40,78,135,21,38,38,10,111,179,125,234,224,87,218,135,129,11,138,176,90,175,85,155,105,171,51,236,171,140,187,225,116,126,181,26,126,175,110,184,142,253,12,37,46,48,9,44,252,157,22,255,30,49,95,240,66,243,51,12,41,46,242,138,90],[16,9,170,162,164,243,218,124,20,174,222,198,121,241,76,96,209,184,180,157,81,96,170,62,81,222,1,159,10,16,18,109,30,138,244,126,71,172,123,176,95,61,139,193,212,18,11,54,21,57,52,119,91,249,223,46,35,57,127,204,20,222,18,8,6,223,222,245,113,130,8,58,104,200,155,3,15,100,255,140,58,251,124,3,168,153,147,162,160,209,135,15,180,226,153,126],[24,178,33,221,3,34,107,165,183,57,11,149,10,233,138,42,76,191,201,170,170,19,45,221,145,24,70,35,98,222,32,24,224,49,206,240,190,197,247,245,105,36,111,116,218,93,100,65,25,156,182,234,85,174,145,125,250,225,51,18,243,164,207,61,222,148,86,119,108,198,249,187,6,16,47,189,56,245,236,92,37,242,42,253,177,140,47,8,29,63,11,100,241,83,60,72],[19,33,173,81,163,229,89,94,45,180,28,102,0,145,67,239,7,144,122,172,218,143,31,254,36,114,81,33,46,128,70,226,47,62,27,54,88,94,51,92,162,36,20,135,201,97,15,181,6,132,101,169,74,74,196,67,191,179,34,218,247,238,225,117,207,115,184,143,117,248,130,203,66,90,21,145,208,246,112,137,203,102,35,230,43,164,229,47,172,190,223,214,195,216,89,35],[5,155,55,160,73,56,227,39,9,56,241,116,222,96,74,68,177,136,46,237,44,171,59,149,92,170,220,94,252,42,138,46,24,84,137,66,203,123,232,232,135,0,122,70,138,196,153,252,9,187,151,119,138,43,133,190,252,102,133,118,210,251,118,6,163,144,200,99,137,55,181,87,40,200,14,251,212,48,142,44,27,145,72,160,109,149,235,105,232,108,226,53,65,101,221,113],[22,33,158,205,242,159,167,68,154,254,68,213,139,239,230,62,97,13,24,27,198,187,62,85,6,110,27,50,93,21,229,228,108,195,115,144,172,26,86,125,62,183,48,39,94,31,108,15,16,157,246,0,198,48,130,157,229,19,36,211,64,127,242,204,98,94,235,71,80,230,101,202,28,58,140,177,122,230,90,197,144,152,241,73,179,174,245,202,145,161,104,81,252,244,133,69],[9,68,218,34,168,45,255,247,222,173,61,236,52,19,83,214,20,111,156,109,3,150,44,146,210,174,221,111,168,98,29,134,83,48,140,99,170,20,88,73,99,209,147,130,172,160,69,160,20,53,117,253,24,88,186,186,106,166,160,33,186,178,187,2,103,243,153,209,202,207,125,222,72,40,47,230,126,197,194,154,240,130,109,104,62,161,190,121,205,230,60,16,53,164,221,146],[0,139,79,204,38,12,143,189,101,202,98,87,134,125,145,228,91,12,98,9,73,30,141,54,159,123,254,54,18,108,87,36,7,200,122,105,198,90,157,134,189,249,35,246,132,41,171,202,20,64,255,184,35,210,62,71,211,23,88,51,137,110,108,103,100,87,178,51,250,180,244,236,167,37,190,64,195,97,207,246,131,37,223,97,143,116,62,29,156,43,121,46,83,110,242,147],[18,123,3,228,244,164,65,53,216,231,26,250,59,159,34,67,174,158,187,201,175,165,1,70,14,197,191,110,162,64,146,118,221,214,122,245,133,247,106,172,243,232,190,75,227,181,178,240,23,202,192,144,180,80,6,22,228,232,152,93,225,235,179,43,1,30,68,204,143,132,167,49,169,151,108,146,85,97,22,233,199,19,87,33,49,146,233,73,210,208,238,56,97,88,79,191],[15,234,135,91,140,191,107,161,149,69,75,138,10,33,26,172,129,47,27,60,203,15,192,1,87,27,127,65,38,14,43,117,66,109,214,87,116,130,190,161,206,57,91,103,107,247,165,227,7,35,163,148,196,242,232,39,142,221,248,182,41,109,85,92,4,20,92,16,0,132,166,1,20,138,85,253,68,169,171,167,27,138,124,150,94,55,41,246,165,100,101,166,158,59,12,115],[23,220,244,70,41,117,68,35,108,96,7,15,63,134,22,29,48,133,194,125,23,178,34,78,184,139,115,242,67,61,185,64,145,149,2,247,173,97,222,53,44,85,180,166,71,135,229,53,21,91,63,197,238,126,245,139,107,183,73,62,235,180,46,35,3,184,118,239,187,245,34,29,125,238,137,188,194,6,175,212,43,154,153,254,61,121,218,72,14,109,234,10,86,207,192,255],[1,130,27,192,229,61,48,159,123,128,36,93,254,32,60,173,228,49,152,70,2,8,116,92,118,223,166,228,176,94,177,159,4,20,96,190,115,126,4,72,39,186,87,63,119,210,238,24,25,56,249,122,118,150,155,216,116,212,157,30,69,203,235,98,113,50,29,196,140,74,248,209,0,145,105,47,235,83,96,215,67,132,71,138,11,112,253,115,151,210,208,4,195,28,193,147],[10,149,50,228,239,186,51,190,207,122,152,171,196,234,80,190,63,179,47,34,185,123,83,217,208,77,32,143,159,245,28,106,216,41,54,163,203,146,24,57,192,80,225,37,52,171,103,143,12,109,127,87,202,51,166,220,220,233,79,205,8,131,236,189,255,164,120,16,195,198,215,21,154,226,124,221,112,191,193,116,47,133,12,138,120,75,40,116,113,186,15,32,126,218,123,5],[10,135,221,185,200,87,246,151,183,121,13,173,50,20,246,56,227,75,85,145,49,167,89,177,207,215,21,1,143,160,99,192,71,144,1,126,5,42,20,7,241,210,123,238,164,142,238,12,25,29,95,1,94,95,159,172,111,72,24,33,69,191,198,115,87,93,13,32,239,115,199,133,236,163,189,190,46,137,212,214,216,66,189,200,57,176,173,213,146,190,88,181,160,170,34,191],[8,68,91,212,249,64,100,43,159,158,235,247,217,210,69,140,179,202,164,22,13,78,142,34,159,221,218,152,202,132,203,19,43,125,149,248,238,206,249,234,232,204,194,140,43,138,86,133,6,76,5,149,29,34,132,201,46,95,216,117,28,84,45,206,42,99,32,224,41,144,129,42,105,188,250,125,75,149,151,119,93,205,49,122,183,92,35,211,53,129,51,187,103,18,128,193],[16,177,157,46,155,160,151,0,221,134,150,250,129,182,27,215,64,25,117,250,213,97,206,35,95,153,84,16,144,121,34,2,93,235,22,206,26,109,172,232,106,61,55,158,229,78,83,124,9,137,112,69,72,161,47,5,118,41,38,82,25,211,126,137,140,187,152,48,207,3,147,209,235,192,90,32,138,77,238,107,245,147,37,88,206,247,154,217,82,165,106,22,248,26,230,168],[1,174,143,200,14,120,192,72,84,98,187,149,36,1,4,105,158,149,188,71,69,24,92,149,62,103,143,253,208,156,1,32,201,139,209,234,86,176,164,184,206,176,62,35,232,207,157,52,22,192,218,105,175,36,18,58,102,206,141,154,20,96,38,139,85,243,241,125,91,135,142,5,151,148,39,3,86,246,81,79,101,87,182,173,51,2,100,195,112,95,198,6,163,192,201,80],[11,166,181,101,198,39,250,10,210,73,137,9,222,13,219,234,88,216,25,37,5,82,72,6,236,114,185,11,112,67,21,16,24,143,198,254,140,10,216,19,168,140,68,51,93,217,66,150,8,242,163,168,108,35,214,240,180,139,101,128,15,212,41,189,187,27,204,242,48,115,55,28,170,73,230,4,2,214,63,118,194,180,152,204,89,148,195,179,70,117,87,142,23,21,10,98],[9,97,80,164,145,152,8,97,80,107,58,186,93,36,56,113,108,239,33,243,190,44,90,71,112,110,52,120,189,79,77,118,161,85,199,94,18,221,36,20,86,151,2,162,186,3,0,78,21,108,157,31,167,105,246,12,54,108,55,246,120,19,254,205,103,164,120,150,148,229,135,158,63,90,6,93,65,99,121,91,35,85,222,37,39,233,96,158,42,12,115,22,218,122,249,233],[25,70,152,66,176,54,2,186,54,8,49,0,186,3,62,46,34,176,179,52,194,152,101,150,253,151,102,108,83,56,145,59,87,11,36,195,144,152,243,127,200,14,150,130,243,227,211,120,13,84,40,252,98,201,84,120,210,203,240,209,90,12,203,111,99,85,187,235,209,31,145,104,221,228,182,23,142,186,212,156,133,121,146,239,35,213,22,159,159,228,172,87,44,233,55,65],[5,101,233,155,181,156,242,230,26,132,242,13,83,219,209,179,88,210,25,63,155,100,194,38,47,186,1,110,255,143,109,130,218,20,84,42,139,14,63,129,194,90,82,8,85,230,136,153,8,108,169,32,191,45,240,254,130,41,11,67,157,88,12,100,10,62,154,60,216,40,189,211,95,113,132,164,133,50,98,248,255,212,179,250,255,151,64,164,150,220,205,204,155,147,73,99]],"pariticipation_bits":[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true],"attested_header":{"slot":"32","proposer_index":"0","parent_root":"0x0000000000000000000000000000000000000000000000000000000000000000","state_root":"0x197a4b7dc00c75ee5c6d03c0e03f541cc4835a20b427a007bcb1a264b5cd268e","body_root":"0xdab4175862e44372d1e0148b2449aff923352eba4b7efd4805194e0720cf5afb"},"finalized_header":{"slot":"0","proposer_index":"0","parent_root":"0x0000000000000000000000000000000000000000000000000000000000000000","state_root":"0x0000000000000000000000000000000000000000000000000000000000000000","body_root":"0x4c4338dfbdba72e79c108852b52774b356ae70124c1d2ed5397f4567a66d35dc"},"finality_branch":[[235,99,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[61,75,229,208,25,186,21,234,62,243,4,168,59,138,6,127,46,121,244,106,63,172,128,105,48,106,108,129,74,10,53,235],[132,125,93,24,223,75,246,58,97,156,174,15,187,209,43,213,214,3,210,195,52,32,97,31,221,245,74,217,78,45,148,83],[110,211,142,94,6,128,7,99,93,122,179,185,34,100,118,177,122,81,82,200,22,17,180,0,237,192,18,14,240,147,108,131],[155,36,233,182,3,218,183,52,31,229,11,170,186,135,40,250,236,16,108,30,173,17,32,146,190,16,108,215,239,76,73,95],[68,177,30,58,180,74,214,199,111,188,103,22,162,155,83,145,41,251,226,97,205,72,114,173,12,185,219,75,73,41,191,198]],"execution_payload_root":[113,252,113,21,128,209,154,53,22,152,218,177,57,22,102,216,73,224,96,154,234,2,9,101,21,107,94,141,140,131,162,231],"execution_payload_branch":[[66,176,82,84,29,206,69,85,125,131,211,70,52,164,90,86,210,22,212,55,94,90,149,132,246,68,92,228,230,51,36,175],[51,100,136,3,63,229,243,239,76,204,18,175,7,185,55,11,146,229,83,227,94,203,74,51,122,27,28,14,74,254,30,14],[219,86,17,78,0,253,212,193,248,92,137,43,243,90,201,168,146,137,170,236,177,235,208,169,108,222,96,106,116,139,93,113],[156,200,108,117,214,234,134,249,66,137,170,240,18,207,96,236,49,180,252,246,212,177,241,162,156,106,55,243,83,138,77,132]],"domain":[7,0,0,0,48,83,175,74,95,250,246,166,104,40,151,228,42,212,194,8,48,56,232,147,61,9,41,204,88,234,56,134]} \ No newline at end of file +{"signature_compressed":[173,181,129,60,24,201,3,158,215,13,204,9,19,12,182,175,42,103,148,199,66,101,147,98,58,217,71,185,35,144,194,44,73,120,13,93,168,27,122,174,3,151,152,251,98,122,173,249,9,16,124,15,94,36,102,24,196,144,167,72,175,250,11,157,237,104,40,28,253,85,53,135,235,74,117,159,222,184,159,6,61,208,228,215,152,236,215,110,18,72,59,230,23,83,205,3],"pubkeys_uncompressed":[[2,28,98,160,223,223,232,155,95,169,36,213,77,46,193,37,82,170,83,121,106,183,220,152,79,168,33,159,112,66,212,99,52,177,95,178,240,198,228,9,91,138,30,47,229,81,241,245,10,144,215,167,99,41,216,49,118,17,76,129,180,96,222,57,153,35,179,203,155,60,16,32,184,202,34,129,99,197,214,42,87,112,115,178,208,71,139,95,114,206,220,122,23,234,173,82],[6,202,167,69,210,146,194,78,172,205,30,136,1,157,20,74,49,40,131,41,5,87,20,150,171,160,162,101,73,127,139,71,70,54,165,113,231,1,225,131,115,234,240,149,53,219,222,8,12,147,77,189,119,189,147,113,130,45,70,53,80,28,195,127,76,164,42,112,131,75,162,143,10,87,220,79,206,117,58,158,181,254,43,116,201,78,49,231,185,240,195,172,216,211,153,79],[24,254,136,66,172,54,205,127,249,123,23,106,90,5,15,139,41,26,19,123,11,165,224,85,197,201,201,247,103,223,42,27,172,186,219,174,174,125,174,136,118,21,64,62,207,238,86,192,11,182,32,59,12,181,142,204,2,181,179,10,5,240,36,73,107,249,228,113,56,94,108,7,51,154,145,126,4,225,221,46,61,115,182,46,211,61,42,62,61,53,69,102,155,69,177,33],[8,250,70,159,17,111,22,45,50,52,8,56,19,10,16,71,98,68,159,173,6,214,239,226,21,198,148,165,206,123,141,28,157,236,111,51,239,141,20,126,171,179,99,133,107,135,72,18,22,160,251,225,33,206,167,14,76,202,130,147,75,58,143,120,101,166,87,205,187,169,239,209,208,101,40,81,223,243,201,243,71,210,47,55,127,11,29,21,169,42,172,2,218,31,139,246],[17,102,110,227,41,1,60,137,200,7,127,243,204,5,230,182,123,34,8,236,152,155,65,42,207,99,21,78,107,124,37,213,185,27,83,205,21,156,35,90,231,209,167,70,214,132,154,162,5,122,87,54,37,143,176,38,22,131,57,234,119,78,254,163,58,34,7,62,31,159,114,66,102,62,132,254,130,106,42,227,85,106,68,120,99,38,30,23,62,35,39,203,86,101,135,227],[0,71,99,191,238,204,157,32,38,51,234,238,4,198,124,166,132,22,68,141,46,129,179,187,88,225,4,147,84,86,76,14,113,28,124,150,179,105,107,113,174,175,124,29,247,218,207,87,1,157,180,62,105,149,241,195,211,189,150,148,1,55,166,112,79,6,47,158,22,49,242,99,113,150,68,8,188,175,23,81,243,0,152,127,120,35,197,112,223,15,28,179,227,174,114,186],[7,113,155,26,245,111,65,85,246,252,129,241,199,221,39,231,86,69,50,150,30,28,54,145,198,41,70,128,100,219,158,116,37,4,34,176,158,177,52,218,146,50,202,217,36,63,86,82,21,44,110,9,240,215,171,42,31,106,3,32,109,84,116,183,144,16,11,11,91,127,172,62,253,134,48,155,182,79,218,81,94,70,208,15,223,16,202,198,237,96,70,176,20,183,132,76],[21,64,105,160,57,113,59,244,71,191,33,10,241,29,123,72,94,185,69,95,218,150,57,213,127,152,211,6,197,197,29,15,225,230,172,228,34,172,245,234,101,77,164,174,182,71,112,238,21,191,145,138,8,188,197,45,29,3,87,221,130,118,58,185,121,30,156,255,236,86,238,64,183,29,191,203,123,189,211,3,8,47,76,141,11,173,227,104,171,119,197,47,223,46,216,89],[21,6,94,32,197,70,193,37,9,60,45,157,111,88,25,203,110,250,109,47,8,39,108,175,87,83,209,30,119,28,197,101,56,68,12,246,118,234,190,96,215,225,46,179,234,83,243,178,10,221,166,116,46,57,93,212,141,55,125,43,180,118,80,218,219,172,6,4,43,201,66,123,197,113,153,38,90,176,37,255,207,168,195,161,95,138,182,124,110,225,154,238,107,179,188,99],[10,190,24,80,2,87,114,37,110,124,239,49,51,1,65,147,193,252,43,188,144,124,165,78,98,167,152,224,11,227,237,61,25,198,131,220,101,100,246,30,13,129,98,194,88,253,155,225,17,97,31,130,75,181,167,205,99,248,86,191,141,197,215,118,23,65,132,41,187,103,16,246,237,89,2,14,109,122,105,61,112,64,70,176,109,190,235,14,134,184,230,105,111,186,131,202],[11,227,243,235,103,106,100,242,176,143,125,246,156,114,126,254,131,126,40,81,11,46,214,23,211,120,67,7,206,38,61,90,255,154,89,219,3,238,134,25,99,1,184,104,1,178,135,168,22,28,172,75,189,99,131,142,49,115,85,120,167,244,151,184,211,179,1,218,222,222,187,108,219,6,188,56,138,216,216,89,211,148,173,157,102,62,37,174,227,147,70,130,97,253,195,231],[10,116,206,213,225,95,190,128,10,192,56,121,236,67,207,251,119,189,193,30,17,245,141,249,137,237,114,120,247,35,147,21,235,14,157,17,153,109,96,71,165,36,196,127,162,153,216,12,5,229,143,103,188,128,16,107,43,128,119,91,83,114,139,135,44,158,180,3,100,167,65,7,113,231,106,42,109,41,116,68,13,171,141,15,110,113,39,34,80,182,140,191,41,76,64,32],[15,45,71,37,17,222,4,18,231,183,150,73,27,230,165,170,94,40,4,76,109,84,122,61,197,19,41,143,205,157,34,221,6,210,174,5,226,28,33,34,241,223,200,188,239,57,30,246,3,246,43,157,214,233,117,18,56,246,50,4,78,133,109,45,225,61,146,0,101,22,40,53,61,16,216,45,195,118,233,47,249,128,128,173,19,232,39,200,42,235,201,206,232,15,105,190],[8,136,125,187,33,35,174,99,250,79,98,75,199,248,83,164,22,115,149,38,232,6,152,43,145,164,39,143,74,151,70,165,206,84,223,175,165,36,192,107,189,11,247,18,60,169,66,58,20,246,107,236,164,50,79,147,194,129,177,149,53,242,247,190,28,140,56,243,204,46,99,74,11,14,177,62,254,163,111,143,120,188,99,14,254,87,119,239,139,52,106,109,178,124,188,54],[25,172,78,48,15,201,208,18,40,145,86,118,83,163,238,108,5,144,114,67,57,52,146,25,62,65,109,140,238,72,204,67,154,143,137,215,40,156,127,96,200,193,209,82,46,59,35,142,12,172,24,100,188,82,21,105,142,236,52,236,85,218,33,220,37,52,51,146,206,121,248,101,75,181,69,161,108,26,227,63,225,44,40,159,50,166,189,109,207,4,80,183,46,88,224,127],[12,255,49,184,221,183,179,217,114,90,161,138,48,183,183,26,3,86,50,115,126,122,31,50,142,102,149,210,87,11,226,213,236,68,187,156,189,240,197,204,141,106,120,10,221,71,76,182,3,11,138,125,248,67,250,120,152,144,34,88,250,178,227,42,73,1,26,52,168,209,127,177,79,222,137,118,48,29,186,251,217,76,77,91,204,39,138,42,9,41,177,103,224,16,40,34],[11,35,231,22,124,2,218,147,176,30,53,127,76,140,115,166,245,7,81,220,141,30,243,14,100,68,191,70,127,49,175,177,118,221,68,131,135,50,160,19,209,24,223,80,52,120,138,137,18,240,93,67,101,111,229,174,148,218,157,41,68,33,215,141,232,111,139,224,200,146,43,155,151,255,132,52,129,183,140,251,53,212,96,169,191,229,128,101,96,156,177,113,166,59,29,237],[15,121,19,154,115,72,97,62,95,223,204,139,231,205,2,77,46,177,17,215,151,152,60,245,63,3,142,79,201,133,155,119,221,135,244,162,1,245,105,167,247,240,75,171,223,141,202,91,25,2,203,167,12,90,89,114,208,79,152,117,232,178,243,253,158,218,198,188,252,28,117,179,171,185,167,30,120,120,5,133,119,159,145,89,154,212,245,185,176,38,54,92,123,41,6,132],[3,215,60,77,34,243,72,189,163,0,204,255,76,142,194,237,229,108,112,226,223,209,227,50,25,147,137,130,53,72,84,123,216,237,183,231,81,163,144,177,111,50,180,106,110,199,58,201,5,59,61,183,139,47,61,145,71,60,1,38,185,125,226,101,255,77,127,5,157,71,111,149,245,98,173,109,203,159,28,80,223,140,165,82,154,93,186,145,242,98,64,180,19,15,198,80],[11,72,2,117,255,95,49,16,89,110,28,242,241,237,175,240,95,197,189,210,3,8,119,132,159,105,135,203,185,76,167,241,240,7,88,247,222,36,27,99,140,110,89,12,223,157,29,24,25,235,105,119,207,202,59,254,104,47,194,11,60,120,112,4,141,64,198,148,181,145,177,17,25,88,29,169,239,223,94,155,245,235,47,105,88,18,169,143,246,10,205,44,189,23,184,93],[3,99,68,214,130,116,57,122,103,23,213,1,202,57,65,12,18,173,233,153,231,215,174,200,182,159,130,89,19,240,10,168,89,105,16,250,112,26,60,43,53,61,142,221,76,226,124,244,17,7,221,91,204,136,104,252,117,47,255,61,112,190,65,151,77,234,163,53,13,20,68,58,145,193,142,14,233,198,172,73,109,82,51,44,180,228,249,156,111,46,75,0,12,33,229,230],[17,205,42,14,167,49,33,139,69,43,113,121,87,137,86,147,229,201,1,60,61,170,2,85,84,226,102,181,106,19,221,50,137,239,246,17,207,97,228,48,22,139,208,56,92,203,243,58,0,168,159,142,254,66,101,154,112,61,190,29,219,133,86,89,135,60,163,1,141,40,156,8,107,156,178,30,87,10,232,84,65,100,97,180,38,225,96,31,253,150,145,0,211,236,102,6],[24,204,90,199,137,15,156,168,84,60,33,233,38,137,132,252,93,19,186,247,203,183,60,17,147,226,20,139,202,44,70,187,17,230,8,229,124,221,83,71,70,32,237,39,155,102,173,133,11,34,127,130,133,43,208,83,222,248,54,73,213,240,35,240,103,118,255,190,120,78,11,228,173,4,98,237,102,56,1,109,192,11,36,61,36,21,150,147,244,38,51,207,245,136,180,29],[18,222,89,17,172,135,10,33,178,140,37,22,77,86,218,103,253,210,228,135,117,212,74,117,238,159,33,113,140,249,181,237,193,118,178,47,50,114,12,129,220,18,43,224,19,83,47,198,9,205,80,88,68,206,65,1,248,12,245,149,215,161,9,168,78,118,78,95,221,111,106,43,62,36,8,168,62,58,45,200,4,51,239,149,53,3,42,174,237,203,249,72,33,152,61,144],[8,191,154,133,55,219,240,146,173,162,201,139,140,57,208,82,56,243,35,106,76,246,95,102,141,24,102,173,129,73,132,169,190,170,116,166,226,26,16,214,160,128,188,130,37,202,221,77,8,107,224,206,116,59,124,253,128,67,249,105,225,150,99,234,50,14,108,35,89,52,215,173,33,6,236,151,146,34,217,200,24,234,15,165,59,69,26,247,111,57,156,8,165,109,243,206],[0,219,92,117,117,72,162,175,195,22,119,81,73,120,97,149,7,47,183,172,223,119,103,79,177,125,67,137,225,43,31,156,118,10,9,180,232,10,216,169,220,163,65,118,70,63,61,183,24,211,213,247,89,40,229,133,183,59,242,118,56,68,87,166,174,120,148,222,89,126,132,164,156,207,95,155,87,67,67,19,5,72,93,151,124,177,47,11,128,134,164,122,13,154,5,93],[21,133,57,179,239,235,227,106,170,198,18,255,5,107,205,68,201,150,31,5,26,90,94,72,92,63,154,208,146,14,228,236,171,137,27,6,94,19,60,238,223,5,39,119,41,19,101,141,14,218,110,211,214,55,154,168,150,166,95,25,39,74,243,240,176,86,86,181,117,57,161,217,81,184,80,3,212,54,233,222,241,189,106,153,167,230,123,93,184,151,9,167,54,147,208,204],[10,63,189,230,183,231,231,39,32,163,1,2,230,136,166,110,195,81,146,0,184,87,212,42,148,233,219,166,181,109,164,254,119,164,73,1,93,127,37,199,155,176,67,29,140,32,212,170,0,206,72,53,28,119,31,96,159,86,191,57,183,202,52,122,143,171,0,182,182,206,169,117,197,154,224,52,184,0,116,97,140,183,57,187,117,102,86,152,68,200,47,147,81,245,206,107],[9,85,133,74,85,101,230,145,66,162,103,197,206,179,223,40,113,36,70,102,82,158,206,22,84,255,92,239,38,106,50,0,48,5,166,223,181,168,1,120,197,160,183,175,54,3,128,169,3,34,137,132,83,94,86,173,217,34,145,31,143,99,201,146,77,132,173,25,25,93,49,94,88,150,160,181,16,222,133,200,11,117,117,198,204,216,163,130,36,4,4,1,196,182,106,185],[21,34,214,141,198,135,152,218,135,225,202,223,170,42,12,142,168,101,41,239,199,174,115,235,126,99,204,12,19,37,175,95,32,255,81,145,84,214,98,196,213,89,147,131,149,218,169,46,6,37,148,160,21,218,106,95,81,132,76,204,73,20,146,212,132,66,126,241,6,110,102,62,254,95,178,108,80,195,85,69,5,122,50,159,35,123,204,142,7,46,1,211,78,174,66,236],[16,8,189,242,187,81,107,124,17,219,52,185,237,194,128,102,138,254,167,45,241,185,49,232,229,32,38,200,111,236,162,172,243,92,130,77,205,34,34,56,138,181,158,88,238,222,3,103,19,243,53,79,30,45,30,115,70,210,84,188,93,154,9,203,91,81,205,248,107,254,193,186,216,43,56,143,164,41,10,140,190,5,221,192,245,9,225,236,118,22,241,124,52,138,171,106],[16,143,134,162,250,244,51,191,27,135,222,110,23,187,103,176,27,197,90,119,253,95,128,33,221,34,252,229,73,186,152,61,99,86,33,225,227,61,107,71,86,61,195,254,168,151,130,58,24,17,31,249,55,234,32,238,241,115,132,0,26,55,155,90,192,158,73,12,213,11,119,44,165,151,181,73,154,54,160,236,104,56,1,164,205,80,181,130,0,73,148,210,125,9,118,188],[18,190,156,187,3,234,104,148,54,16,194,126,110,141,198,65,97,47,158,7,118,219,69,114,223,234,248,44,55,161,236,57,91,170,46,18,212,129,94,144,143,15,93,119,120,112,9,1,21,94,176,150,76,121,176,153,194,104,9,82,44,29,95,244,163,247,212,102,73,97,63,222,199,52,128,140,196,18,114,170,207,134,30,162,34,223,240,185,204,93,171,79,85,47,53,86],[4,73,140,152,152,173,107,83,105,132,17,19,174,221,175,43,177,17,4,152,158,154,111,85,101,158,106,165,9,151,93,158,169,151,13,66,150,106,253,239,185,64,250,234,203,60,20,30,11,236,172,97,249,55,89,115,64,221,77,72,47,180,41,38,174,90,22,251,197,185,46,251,219,221,195,170,208,221,249,59,28,227,45,104,252,252,63,204,131,175,145,143,46,95,65,7],[4,63,8,148,34,216,48,215,45,135,100,47,184,210,49,77,50,133,231,54,124,83,59,242,184,106,163,55,156,253,0,151,180,57,104,147,181,110,171,171,54,209,251,96,138,211,188,142,5,21,185,10,46,217,147,183,84,79,83,101,195,4,247,110,181,167,46,44,198,40,154,252,127,23,217,105,148,97,44,114,118,142,170,229,38,200,74,108,102,208,25,76,92,255,106,134],[24,250,206,188,95,201,194,129,56,37,220,233,185,117,149,220,21,41,240,26,186,20,110,157,103,113,78,106,152,8,136,149,28,254,58,176,141,196,111,142,34,59,194,95,160,237,96,229,9,4,241,233,46,225,74,58,190,33,75,44,220,100,217,129,141,8,246,217,222,87,150,231,165,89,47,232,122,251,17,21,209,97,126,30,228,107,95,233,168,131,184,115,196,177,110,165],[24,32,126,216,126,121,215,166,101,188,158,247,16,178,59,150,107,62,173,124,32,169,229,125,192,218,73,48,106,127,95,119,84,177,71,34,106,19,6,16,33,26,193,203,151,89,171,188,17,153,67,192,53,158,105,177,231,32,226,227,15,23,115,54,115,144,116,181,64,220,182,29,195,5,32,86,250,40,11,216,136,56,72,175,19,241,88,223,221,154,29,97,171,30,235,35],[3,143,177,130,202,213,82,159,36,205,167,149,227,23,101,158,4,200,139,203,60,212,11,198,51,136,78,143,93,253,101,183,106,241,102,43,154,30,223,183,86,179,24,216,90,244,30,229,12,246,67,26,75,139,145,131,175,78,49,75,5,89,193,80,97,56,157,86,108,58,28,243,150,166,105,34,9,62,41,178,90,241,48,195,196,137,144,27,193,154,157,193,2,35,78,65],[14,224,118,87,84,166,74,164,92,175,107,204,132,205,105,20,71,38,229,49,0,136,93,177,193,234,175,120,70,5,59,66,40,255,113,107,216,136,40,144,26,108,137,182,251,229,13,251,20,206,11,95,222,28,247,185,89,76,135,254,24,194,45,108,247,249,122,2,152,139,74,108,146,112,30,255,133,214,19,153,15,4,71,7,121,250,123,175,135,70,31,79,63,178,93,185],[14,122,18,215,11,120,174,63,114,199,63,156,203,93,14,217,94,168,76,3,195,7,121,165,42,46,26,237,100,1,214,219,11,132,170,231,232,79,78,26,159,231,139,25,181,209,32,20,18,91,54,29,120,175,127,211,254,111,49,111,212,117,250,158,57,139,32,38,239,139,108,145,174,33,227,60,145,58,115,107,217,121,117,39,90,44,113,138,23,66,183,166,165,151,24,68],[19,137,89,174,111,112,168,33,241,124,81,141,17,146,180,238,85,163,0,79,187,108,46,188,232,255,186,104,157,95,31,174,151,81,17,80,227,181,119,7,180,153,163,45,132,154,21,43,13,103,13,17,239,189,119,246,190,27,34,195,182,81,242,62,229,161,90,175,172,12,107,61,142,42,28,159,195,71,28,153,166,5,26,70,135,218,31,38,195,127,161,214,184,76,119,122],[14,75,140,252,255,220,129,107,129,114,18,250,100,186,159,153,4,159,220,225,24,193,53,29,24,75,63,170,177,76,183,53,175,93,207,243,79,172,87,125,107,253,31,249,167,219,116,178,21,174,138,0,58,195,208,196,196,45,126,1,113,89,222,234,84,229,42,195,45,163,252,54,129,129,246,108,78,36,42,228,249,156,249,139,224,98,10,160,146,81,177,65,32,117,71,206],[23,157,197,199,208,227,252,197,209,213,174,125,91,24,202,9,73,1,223,251,125,181,97,251,91,181,147,176,177,18,170,42,191,156,100,142,47,20,27,28,91,202,17,246,220,172,104,133,1,66,166,104,251,33,163,223,25,98,28,240,47,224,196,79,207,95,55,20,223,21,233,28,177,159,57,227,220,51,134,45,16,213,175,183,227,215,130,54,100,40,3,149,150,226,156,94],[4,227,22,249,59,19,68,82,29,100,13,183,39,28,123,132,156,239,100,98,102,95,23,253,249,199,178,152,25,62,110,169,134,130,86,52,8,127,4,72,67,186,163,217,72,163,47,118,4,231,132,148,221,123,131,209,48,31,158,140,74,146,13,87,105,119,193,250,48,199,90,230,187,249,32,178,7,42,50,94,250,22,246,238,80,85,72,195,126,176,190,196,110,201,72,163],[14,249,90,18,77,143,196,186,101,148,28,142,6,59,143,75,157,36,121,50,201,221,236,216,21,23,197,46,48,135,171,17,99,128,137,5,35,171,51,203,166,193,194,116,235,142,251,237,4,153,31,134,145,221,195,23,51,146,134,7,2,164,187,202,15,171,139,61,63,134,187,121,157,198,101,225,235,29,172,183,58,103,244,86,190,70,218,157,170,122,166,87,203,193,152,24],[25,48,249,134,92,246,14,29,208,85,59,81,170,211,14,196,6,214,181,108,67,149,225,51,17,165,198,43,54,34,236,232,250,9,147,86,128,158,109,191,247,40,45,52,45,119,225,13,5,212,11,9,71,193,199,96,237,33,246,165,77,191,84,162,17,125,115,65,243,153,86,2,41,140,234,208,229,20,244,35,82,119,128,232,137,130,1,90,12,125,3,146,191,83,158,27],[13,170,210,13,202,78,120,244,184,253,9,22,50,123,78,119,92,205,31,229,252,69,195,10,137,154,178,156,60,90,207,122,229,56,3,211,86,183,231,205,19,168,142,12,143,162,58,175,17,186,0,178,103,143,143,10,27,203,56,84,46,67,89,243,184,253,188,194,87,76,76,1,78,91,246,176,151,200,204,151,65,180,233,40,190,219,50,82,178,170,100,225,136,64,71,82],[12,209,19,19,218,211,26,50,131,228,73,238,99,217,41,13,70,184,191,233,69,129,66,35,96,82,127,55,169,110,146,183,13,103,243,47,246,89,18,45,243,82,246,13,0,128,56,174,7,82,134,30,43,43,68,43,210,13,97,207,212,133,45,114,173,81,237,249,188,160,234,192,83,250,219,94,150,191,194,51,196,225,210,108,91,58,222,161,137,162,171,19,23,113,2,149],[2,20,78,85,115,53,165,15,85,138,251,57,7,82,177,194,150,23,224,51,78,178,109,137,111,245,60,85,222,231,53,242,202,115,96,107,194,151,206,243,83,130,157,188,99,77,35,194,17,172,15,5,144,78,125,6,217,122,244,220,73,11,73,53,145,219,180,206,191,21,120,140,96,137,151,5,144,41,174,103,84,0,251,206,252,231,32,253,45,135,206,86,110,37,27,140],[5,107,129,136,73,210,42,69,21,177,222,248,215,250,199,196,242,64,60,35,102,154,143,33,91,25,49,195,46,165,194,168,10,183,0,163,214,95,96,75,199,107,31,112,46,169,121,209,22,86,68,0,188,19,52,137,50,98,83,96,200,136,23,116,240,206,95,19,105,74,128,180,71,12,219,24,73,60,173,141,24,196,6,16,183,5,144,202,237,174,24,231,15,70,234,8],[25,230,208,180,238,66,20,239,70,187,24,5,229,16,17,105,237,158,69,201,67,148,194,240,21,161,7,12,201,231,32,220,104,199,65,186,237,216,197,57,16,187,198,79,224,198,48,133,0,151,110,102,188,229,122,38,163,31,213,84,107,141,123,25,210,21,166,42,1,193,176,222,149,84,182,51,196,185,18,62,41,184,164,240,191,249,66,151,42,21,3,107,173,142,99,150],[20,228,68,42,212,13,8,102,121,32,128,230,47,118,72,20,174,96,63,212,208,10,153,203,116,45,22,92,108,193,195,166,188,189,27,0,89,152,228,86,182,185,124,15,172,5,10,48,1,131,145,3,207,148,51,224,144,101,53,219,220,148,207,5,23,82,120,134,199,210,106,49,142,178,96,151,94,47,212,196,242,54,41,123,23,150,70,139,98,135,172,224,151,170,51,98],[9,140,111,72,188,162,22,166,229,117,129,175,71,108,8,133,90,151,44,105,179,63,123,59,13,205,134,110,210,211,80,91,122,190,84,222,123,192,75,201,2,245,230,167,64,183,148,116,12,177,82,121,46,162,187,123,174,156,80,177,216,165,79,37,35,237,25,63,210,206,36,47,60,86,115,148,63,242,30,212,105,88,49,183,169,16,85,21,30,154,203,252,83,104,188,130],[13,209,206,8,185,105,177,4,238,18,51,41,111,189,70,207,138,87,65,179,100,42,64,120,171,222,20,151,143,94,188,252,116,111,172,245,141,111,117,143,241,223,171,80,194,211,21,9,3,61,235,75,225,106,197,238,228,93,229,159,113,72,179,242,51,137,84,240,54,54,51,30,55,100,209,244,132,114,201,44,102,75,233,140,203,192,80,2,64,165,7,78,21,11,24,43],[18,94,78,194,191,140,19,39,241,160,192,21,100,8,6,49,55,26,84,169,45,104,229,29,70,168,252,71,90,58,11,211,207,142,250,83,36,192,232,41,252,126,74,205,37,183,176,162,2,244,195,152,165,176,165,194,135,97,68,43,136,253,168,113,121,103,68,32,245,230,229,156,124,74,241,247,33,202,173,131,71,2,30,38,255,190,101,69,22,25,7,137,148,136,186,162],[6,81,145,82,24,235,57,187,171,238,76,185,220,13,164,87,117,52,104,108,79,136,198,127,61,75,26,36,88,134,34,24,253,196,130,37,97,44,226,106,109,93,13,223,212,10,215,191,13,36,102,105,113,114,146,248,9,141,202,189,147,185,144,169,161,44,98,50,189,23,18,21,195,191,116,176,122,187,0,122,197,140,39,134,170,202,155,85,242,25,140,165,177,49,163,7],[7,93,77,197,56,55,216,217,232,90,207,177,231,145,183,235,246,16,16,31,107,42,91,225,93,69,30,146,255,194,69,21,234,151,87,161,32,223,96,198,6,21,184,22,117,40,213,18,19,108,172,129,92,56,75,128,73,221,136,12,177,168,89,167,231,227,13,41,247,147,162,194,65,221,178,68,153,203,151,73,199,187,252,133,179,191,17,110,131,46,48,14,70,49,3,64],[4,95,160,39,119,54,163,152,225,21,248,245,75,107,158,231,53,49,68,79,197,227,213,217,156,210,185,195,97,183,110,124,56,231,161,130,208,59,129,234,203,86,252,27,80,146,86,22,2,101,150,27,34,10,87,120,34,139,118,126,239,125,229,29,98,34,4,154,232,129,4,185,179,81,125,132,57,151,19,105,13,209,205,102,98,204,167,65,166,160,1,87,245,244,124,101],[13,79,107,138,5,254,167,72,123,167,237,81,179,116,147,20,187,12,52,117,56,70,54,74,3,22,235,86,121,229,171,97,115,127,17,237,229,56,7,109,239,34,1,42,163,43,35,182,23,150,40,86,133,203,123,16,71,193,143,19,143,189,218,19,10,8,60,155,246,158,74,234,21,177,216,236,22,216,81,222,77,161,221,22,84,154,253,19,154,19,43,20,128,220,105,152],[22,164,59,243,93,161,135,99,131,227,29,211,160,178,124,82,165,44,174,216,249,212,76,4,253,66,66,91,58,58,119,185,127,188,163,181,113,3,121,31,179,51,93,199,33,83,227,83,6,211,157,111,180,101,208,90,141,219,115,117,232,112,224,159,149,177,135,24,163,187,111,164,45,109,146,251,89,64,148,71,102,75,255,206,29,181,165,159,88,174,71,27,116,25,255,158],[12,153,230,96,75,182,199,214,99,116,133,70,89,244,129,205,84,216,218,203,139,157,112,134,235,1,5,131,180,244,102,127,15,204,248,156,192,186,93,172,107,139,146,135,234,33,180,84,18,76,28,71,180,23,140,119,207,140,14,173,83,39,190,235,110,15,161,149,8,243,177,76,116,41,119,243,206,191,46,67,80,71,76,148,38,138,55,212,180,115,52,37,11,87,49,93],[11,55,135,243,209,210,82,101,130,153,123,28,80,241,105,3,238,87,99,21,242,204,38,133,104,194,7,16,87,196,155,34,101,235,224,158,174,152,222,171,183,43,50,44,28,74,135,190,14,47,9,47,51,194,96,161,198,195,183,178,250,29,47,230,3,57,241,195,216,58,30,202,5,18,25,237,203,106,109,120,6,99,150,210,208,45,20,159,121,41,113,227,33,71,241,9],[4,242,172,245,123,149,205,228,243,233,42,75,88,255,201,40,209,71,29,194,217,9,250,225,219,225,53,58,43,27,3,248,146,246,37,114,128,45,251,208,60,85,53,217,6,216,252,158,9,142,230,84,102,255,14,76,21,245,126,243,40,217,231,254,120,23,12,103,179,192,189,31,10,180,74,191,161,133,128,13,35,34,125,127,167,223,106,105,233,7,187,144,107,50,173,7],[3,17,7,208,52,211,187,85,196,67,97,166,209,75,161,179,80,205,203,243,53,188,148,158,143,241,54,251,65,67,81,22,8,236,107,3,159,143,19,183,72,71,39,126,146,181,121,41,22,155,26,152,248,249,183,5,54,198,207,19,84,10,106,20,211,172,31,80,142,169,181,40,145,16,4,166,105,238,240,250,210,158,40,55,158,131,163,208,144,118,145,100,156,163,88,121],[9,149,157,231,177,106,169,52,88,2,87,199,245,81,190,5,17,164,39,18,22,221,173,159,95,59,226,205,153,93,14,162,112,91,239,90,200,251,58,50,121,70,157,106,54,132,239,74,18,79,86,110,89,208,219,166,53,80,230,236,143,231,254,10,19,28,44,180,78,206,195,163,102,236,234,0,230,19,5,177,195,134,162,145,34,245,67,196,35,210,194,123,66,141,76,6],[18,209,254,201,182,204,175,133,64,86,108,44,157,193,254,88,149,17,6,44,83,120,242,77,27,93,95,116,236,76,110,250,1,229,130,176,80,182,196,8,184,95,133,110,16,40,104,201,13,237,70,122,35,185,217,104,14,107,105,112,246,102,165,190,9,197,107,200,10,123,197,197,126,176,154,69,11,9,172,174,176,42,255,9,241,174,131,223,208,244,201,116,9,76,237,156],[12,18,178,185,71,107,220,201,91,63,124,183,118,218,221,183,190,237,191,139,180,128,57,149,193,90,12,133,111,116,77,243,220,40,12,204,103,186,167,215,55,116,213,78,140,60,9,7,11,202,124,149,56,76,136,255,24,20,136,47,100,176,238,192,230,9,240,128,49,130,77,117,113,253,18,252,4,202,204,255,206,111,74,216,22,116,145,42,198,23,40,161,89,120,170,161],[23,54,43,148,153,55,55,27,74,215,69,218,115,176,153,41,159,22,127,254,29,138,253,151,203,142,213,179,108,24,99,76,204,236,31,157,59,249,87,147,124,12,251,69,136,203,196,182,17,73,149,66,249,247,222,145,247,0,81,245,26,199,253,57,230,34,12,69,145,197,48,5,71,58,75,151,236,33,47,55,59,221,72,99,124,142,112,136,28,142,63,3,33,76,28,82],[12,163,41,78,63,133,149,53,198,109,161,37,152,89,244,139,162,112,24,126,51,64,30,65,212,24,88,121,54,247,209,98,239,76,168,135,142,238,110,103,2,134,230,174,56,44,191,114,9,223,179,212,14,244,20,81,44,97,113,100,134,139,210,214,8,55,180,166,111,85,159,160,216,4,161,226,170,131,227,20,3,244,65,192,49,189,247,86,103,98,235,24,55,25,96,140],[1,237,240,146,84,172,198,90,213,86,150,153,232,106,157,246,139,202,119,183,191,159,162,12,28,88,74,163,50,250,73,222,174,50,233,150,171,218,214,129,61,248,45,165,94,6,197,181,21,197,97,55,51,176,157,63,6,174,59,61,116,190,219,230,77,181,74,136,7,139,110,153,195,33,166,91,19,36,43,84,193,174,96,88,34,169,252,6,42,222,221,85,215,35,32,193],[1,176,1,239,50,186,84,218,216,95,69,143,23,66,68,85,255,54,231,19,85,235,206,231,108,200,156,28,215,65,177,2,169,115,248,45,219,108,50,156,244,81,16,109,211,228,219,34,19,237,33,149,180,56,249,81,124,153,186,173,190,116,203,178,189,54,215,79,74,44,95,9,185,116,15,13,71,63,134,167,90,213,99,97,161,239,168,54,19,195,192,37,253,230,126,176],[1,80,183,4,215,49,119,38,180,159,209,21,197,204,188,39,160,137,0,35,96,225,93,32,192,185,167,181,185,223,130,87,144,144,182,105,225,135,35,220,39,66,61,245,80,224,253,50,18,52,55,172,160,64,127,113,94,12,96,69,185,84,176,223,36,15,86,225,20,180,162,72,19,163,195,39,15,21,237,173,129,25,131,177,99,176,50,187,205,228,83,53,77,73,52,239],[13,82,21,37,195,52,247,235,76,113,63,208,176,16,48,79,230,62,226,126,211,60,106,126,207,157,92,225,88,246,51,167,251,130,67,127,141,103,62,150,155,195,131,13,242,207,10,114,24,18,10,246,228,115,44,176,204,37,26,145,172,65,180,65,142,208,122,225,158,34,174,228,151,99,119,210,140,254,202,18,37,1,57,159,36,169,98,16,28,82,232,228,40,129,209,101],[23,86,64,219,62,67,71,65,133,54,85,47,105,55,42,183,26,185,47,24,205,189,40,45,20,2,88,49,154,200,178,9,245,6,138,118,96,123,176,83,170,206,237,220,29,220,162,185,2,172,112,234,173,63,215,4,126,135,118,33,208,49,235,1,201,253,158,224,91,35,76,69,212,41,158,237,183,215,9,102,3,25,89,187,92,117,248,193,7,220,220,168,86,54,55,107],[17,135,101,233,166,101,66,103,177,114,152,244,46,113,28,38,135,42,249,119,112,6,33,58,128,44,139,172,193,106,214,106,166,239,62,163,28,118,112,160,24,24,4,100,147,177,132,174,17,198,210,71,255,26,52,74,69,117,198,113,33,65,189,96,66,152,211,93,152,227,209,9,142,251,236,214,58,58,69,131,10,64,72,45,178,18,33,235,207,232,120,8,87,202,168,235],[14,88,149,45,87,180,50,191,81,144,9,38,37,175,51,26,27,200,132,131,11,82,168,160,88,215,189,164,208,181,169,195,157,227,170,184,61,78,234,153,227,251,183,24,244,26,170,6,15,225,74,141,217,99,61,204,101,123,176,228,120,81,250,79,150,73,84,170,9,126,226,43,239,111,228,163,85,238,229,46,168,39,41,138,112,208,158,9,170,44,238,58,244,122,149,56],[23,75,72,49,254,248,185,247,185,172,16,247,107,246,251,173,98,117,228,195,55,204,129,98,91,184,26,118,24,197,206,51,175,134,0,112,4,79,55,230,83,62,156,118,160,247,53,115,21,204,234,160,154,240,29,8,19,36,61,136,66,76,184,132,248,101,72,215,27,119,215,159,24,69,121,100,60,168,117,215,26,91,52,187,72,143,30,7,156,194,126,42,34,71,118,88],[13,92,72,222,134,147,12,255,72,166,72,85,74,232,163,37,245,38,110,210,28,197,142,144,169,196,236,241,45,190,73,109,231,236,255,147,197,8,198,128,180,68,32,4,235,103,54,91,19,86,17,233,219,37,87,146,24,25,31,226,213,154,107,214,83,63,81,98,119,113,110,7,37,189,246,203,139,95,250,59,164,97,175,134,127,106,97,89,4,38,41,249,163,148,133,75],[17,135,53,149,129,144,121,181,212,176,47,107,92,215,72,120,196,225,157,50,171,89,220,236,223,223,36,9,131,176,185,182,40,127,192,186,174,68,107,92,31,115,196,154,253,173,135,56,10,214,111,73,148,69,172,26,7,214,198,205,67,232,182,226,220,19,159,104,30,148,251,130,253,237,9,28,153,179,151,205,76,189,189,103,103,183,150,107,61,159,238,203,173,22,36,45],[18,74,154,87,36,15,191,98,47,101,122,232,22,192,206,217,177,150,169,237,193,187,146,226,164,84,130,214,9,252,89,54,10,139,99,66,110,24,214,11,27,205,207,207,217,202,94,113,20,228,79,230,152,135,189,199,0,174,149,243,8,4,5,149,209,145,190,54,14,237,128,101,2,55,204,201,221,20,19,95,202,36,89,132,0,172,5,120,236,66,125,122,226,54,39,119],[2,74,190,54,165,76,234,10,245,88,5,132,92,33,181,104,108,47,222,92,19,29,148,159,230,229,197,40,177,118,149,1,233,139,207,210,132,188,17,57,41,80,178,192,224,170,243,65,23,30,85,31,62,186,150,133,231,155,84,230,230,245,189,23,47,207,144,126,172,128,34,25,95,20,0,35,144,192,157,159,210,247,78,99,15,25,89,251,137,65,200,157,107,148,107,146],[13,203,231,167,165,1,146,199,254,100,210,226,179,241,203,144,171,138,222,173,164,66,7,182,117,105,174,147,242,213,104,154,93,103,95,170,242,137,113,191,120,141,177,104,9,9,165,44,19,162,255,22,53,167,50,8,18,145,224,228,171,149,103,239,249,239,77,141,49,217,48,174,22,8,86,162,4,104,163,224,88,19,134,105,20,71,153,67,184,185,102,162,182,248,40,241],[2,114,85,129,167,44,183,21,104,15,192,24,254,47,114,47,28,47,162,100,231,70,163,128,183,143,90,197,113,108,3,176,59,255,126,79,140,214,52,179,77,172,13,247,137,8,60,42,18,122,135,65,146,92,109,62,219,19,231,219,87,218,255,169,146,160,149,7,220,111,226,204,45,193,170,215,156,206,160,251,14,180,69,212,41,221,236,49,206,43,208,14,212,252,175,127],[5,225,55,135,38,185,72,124,9,88,212,151,171,21,243,121,40,144,118,144,35,173,166,51,217,64,68,124,218,18,163,127,253,122,73,155,132,209,98,174,152,139,134,238,87,139,69,213,25,101,205,232,236,214,1,107,98,136,125,48,52,94,141,78,242,84,49,76,209,32,116,13,85,23,160,124,21,244,124,116,131,241,95,142,89,225,60,255,125,184,236,135,152,101,80,244],[0,238,162,202,46,71,86,93,228,7,75,155,38,143,70,198,79,0,88,141,166,225,10,80,128,138,12,30,169,202,183,208,62,6,117,174,9,21,78,138,107,32,137,11,150,49,188,170,21,24,213,75,180,198,210,28,45,146,223,6,74,183,232,123,5,10,42,43,157,137,164,245,248,13,96,67,221,159,97,41,136,177,53,179,251,72,164,118,136,15,242,215,49,98,29,199],[24,135,11,214,162,175,169,68,191,203,56,240,80,249,48,137,214,210,12,36,213,55,139,119,50,253,183,192,214,9,82,111,68,203,196,170,43,13,65,193,52,192,186,81,250,164,251,155,8,77,17,13,41,40,232,218,137,65,77,219,93,95,181,17,79,193,215,29,136,82,124,162,128,122,188,164,24,240,4,206,26,30,182,116,152,142,245,180,249,113,75,15,223,13,51,212],[22,87,133,124,83,187,48,80,54,70,150,215,163,30,187,218,37,24,150,239,233,185,199,147,42,27,31,27,165,14,167,177,181,107,22,105,234,253,115,47,171,98,54,242,239,16,9,199,22,75,32,7,34,40,161,138,243,64,205,170,194,111,190,162,79,207,211,57,206,1,241,110,130,48,32,216,164,116,19,170,175,186,141,180,88,92,41,33,122,130,38,97,213,61,240,116],[16,98,35,210,157,163,107,60,201,40,70,16,213,80,21,232,217,6,38,142,44,224,136,114,170,190,80,253,243,246,98,125,218,15,45,154,28,126,236,26,115,214,157,35,50,39,88,163,1,165,157,40,220,179,66,21,247,22,226,153,168,10,206,7,172,26,187,230,186,93,238,44,177,252,107,233,197,227,75,183,181,172,150,244,59,127,189,128,142,219,224,28,146,41,139,104],[21,222,172,71,81,45,193,180,56,160,206,250,239,129,119,191,42,224,85,174,248,247,190,1,98,154,206,141,239,163,7,103,124,153,16,0,201,123,45,36,95,6,201,36,20,238,176,200,10,125,1,162,119,94,112,20,245,122,164,165,187,10,251,93,154,72,197,221,38,122,125,134,30,137,149,187,135,41,143,40,42,61,55,194,32,73,132,234,117,98,26,141,183,169,68,224],[20,153,194,184,98,181,71,146,34,212,174,148,235,30,23,36,98,37,93,47,57,227,103,45,178,108,133,82,144,76,83,227,196,25,172,244,17,67,95,231,71,92,96,60,115,122,96,189,15,91,60,118,201,249,156,65,204,251,116,97,33,145,211,144,119,206,169,80,6,238,79,15,55,3,13,48,158,171,37,76,22,54,178,197,91,219,61,118,251,58,24,232,216,23,186,193],[21,42,175,102,163,109,82,114,207,212,97,65,90,152,122,59,100,245,99,12,127,185,19,136,106,181,2,89,128,26,164,67,247,209,55,188,138,114,186,74,32,178,203,53,241,175,7,147,6,187,35,164,134,169,122,157,6,60,61,246,23,84,31,4,2,20,217,179,80,215,8,122,152,179,188,177,3,131,82,55,189,225,151,104,33,94,235,74,179,57,176,33,193,248,106,17],[11,216,61,56,67,215,83,105,203,177,170,254,132,238,97,255,162,80,156,50,77,161,32,143,179,18,176,174,175,231,175,254,77,211,143,57,39,239,195,5,91,234,39,167,65,70,168,200,16,34,226,152,7,209,29,38,18,241,105,207,242,95,249,153,191,198,255,174,230,69,118,134,170,24,67,210,169,248,238,40,249,15,150,158,194,117,14,243,54,229,235,170,93,178,251,41],[18,191,237,219,180,34,52,143,150,163,219,31,30,152,239,73,46,164,81,136,240,231,36,64,34,246,250,165,129,200,130,196,38,147,162,47,118,147,66,20,42,237,77,116,51,134,224,197,6,156,91,30,222,176,157,173,143,235,38,68,199,22,81,112,44,238,129,134,218,136,159,6,72,57,27,61,85,127,120,23,243,253,116,157,129,197,2,234,196,41,108,183,99,72,89,169],[2,235,44,221,220,45,127,139,237,248,67,166,228,107,1,243,39,236,220,214,56,167,236,72,132,206,111,141,179,152,89,93,223,104,17,39,146,184,41,187,165,190,201,82,152,181,80,130,4,91,158,221,150,238,56,20,173,114,186,87,194,36,113,6,81,174,19,135,93,111,159,55,25,110,33,196,78,154,131,216,197,108,9,53,182,151,76,8,76,111,69,108,122,160,82,125],[23,182,116,57,183,112,153,146,155,47,46,4,170,243,155,18,4,145,161,108,91,112,105,142,182,245,68,89,4,4,48,149,15,11,161,241,76,46,160,187,216,129,100,107,84,102,60,146,23,250,38,6,49,56,72,223,139,113,132,171,192,84,130,168,107,190,156,0,1,137,187,213,4,168,8,83,238,14,61,46,222,28,49,96,235,209,144,202,5,41,123,36,64,232,3,51],[25,167,99,254,161,40,226,89,49,246,233,26,119,42,119,58,88,128,114,55,193,138,105,178,106,9,144,55,22,45,215,68,161,240,9,19,222,148,77,140,7,21,50,108,182,58,70,235,20,1,53,228,55,67,137,237,185,15,69,83,190,137,164,184,252,17,119,58,10,121,124,201,199,173,33,56,175,13,89,14,28,219,243,185,254,238,132,125,228,32,11,4,225,70,3,231],[20,196,111,4,101,84,44,117,65,86,81,85,210,35,152,28,199,238,219,234,188,112,149,211,143,14,173,250,107,111,12,193,58,88,89,80,119,210,85,53,220,11,56,130,138,195,240,160,23,203,96,101,71,225,33,233,63,62,68,7,1,115,80,26,199,94,81,212,156,138,222,122,84,231,63,65,94,71,164,47,245,226,48,127,255,159,232,72,220,21,215,169,114,77,89,239],[25,188,156,118,211,137,146,210,166,67,88,218,47,98,249,95,94,159,22,188,24,188,43,84,165,131,209,39,37,108,4,180,130,255,243,169,114,248,229,8,230,147,241,7,79,55,145,162,8,33,61,206,21,203,250,43,11,117,11,135,235,131,40,102,126,207,97,206,103,161,4,249,109,62,60,45,139,198,144,217,83,200,95,119,48,8,157,153,50,176,59,91,178,2,251,85],[2,42,149,145,238,32,18,50,132,68,206,203,10,3,4,243,5,37,77,207,101,15,218,231,158,66,14,104,49,1,80,146,196,34,84,64,189,221,168,130,240,20,164,97,35,110,149,13,11,247,114,118,107,182,185,243,206,62,94,210,242,188,171,183,117,190,128,237,180,188,140,63,98,208,75,180,64,20,206,176,150,232,131,93,255,87,1,76,88,164,112,175,48,31,74,110],[8,227,50,84,34,18,200,79,250,60,59,98,52,224,74,216,22,107,78,245,62,187,163,177,35,88,214,65,80,161,187,209,106,163,83,209,196,245,214,193,248,236,248,230,56,102,47,98,5,176,164,178,142,248,42,131,49,187,202,188,101,234,110,173,10,182,122,103,245,19,180,179,118,159,195,181,150,242,46,232,73,228,25,121,37,60,94,109,115,223,202,215,252,54,204,37],[14,101,174,182,175,231,251,76,93,74,86,120,7,135,31,255,233,16,54,55,15,47,232,39,120,195,74,133,33,213,53,83,240,216,145,182,21,186,90,205,196,44,241,130,171,106,145,55,8,118,113,123,118,157,126,39,59,86,70,69,19,106,187,180,216,212,10,163,181,62,94,76,179,225,155,54,95,163,96,17,60,91,170,143,110,142,59,226,130,95,251,221,154,234,225,173],[14,100,22,111,47,221,250,243,98,196,91,142,238,180,133,57,110,123,201,123,19,141,197,132,12,244,124,160,219,57,132,192,216,38,72,52,232,92,170,5,119,222,243,202,195,190,215,74,9,4,49,109,67,224,226,244,0,227,243,150,24,37,79,86,134,180,237,226,55,127,213,102,200,109,238,77,142,129,185,142,68,145,196,136,253,180,18,73,11,15,97,170,71,121,16,16],[15,137,157,121,13,124,205,219,210,127,231,217,221,188,223,243,120,233,84,230,30,96,67,200,170,82,187,207,38,103,65,213,132,56,24,84,132,131,38,60,242,0,127,25,214,172,13,157,18,101,17,91,107,62,191,139,2,61,149,178,145,129,175,28,65,172,64,127,69,23,136,190,157,141,82,205,160,145,42,123,122,158,166,128,9,121,112,66,218,160,214,227,238,106,97,24],[4,203,88,60,43,137,8,87,111,232,210,170,121,214,14,96,118,46,203,44,60,175,87,144,140,196,1,182,88,177,10,57,166,28,245,212,202,169,3,148,15,212,229,25,109,180,76,133,21,132,184,193,126,24,70,153,0,53,254,191,44,249,136,42,217,16,190,26,189,193,145,172,222,99,66,112,235,215,10,112,45,135,24,22,252,29,143,56,233,167,154,16,202,172,16,254],[2,191,132,191,199,65,221,57,128,32,97,62,246,160,82,143,97,87,11,180,109,183,226,49,58,131,142,15,45,88,34,212,192,253,100,160,39,151,137,222,235,96,100,112,96,179,254,73,22,8,254,220,117,99,143,198,75,4,72,34,86,9,128,69,58,88,242,188,56,134,193,63,109,33,241,38,5,252,167,166,97,169,149,11,252,95,21,180,182,190,161,125,72,98,18,208],[3,39,37,152,58,5,101,245,50,155,64,51,70,132,121,132,11,169,159,110,211,111,111,123,181,90,67,229,125,30,234,50,81,255,171,148,215,170,186,209,180,221,183,81,102,159,15,52,3,48,168,36,204,123,180,14,165,17,76,5,55,152,156,210,255,37,222,189,97,124,244,44,120,162,15,109,26,176,85,51,101,158,136,5,29,103,142,43,228,232,130,131,181,236,138,202],[14,136,207,48,36,38,122,244,101,139,73,150,174,70,85,53,155,18,151,123,133,7,129,91,241,40,172,74,134,183,15,118,242,95,242,231,248,53,75,170,25,248,121,177,238,103,242,236,23,78,98,248,69,233,81,214,193,99,182,230,211,196,54,58,251,43,208,16,241,121,133,110,109,27,13,74,207,233,233,175,45,111,209,192,83,200,23,77,75,89,35,208,227,44,219,97],[7,215,161,26,239,179,62,186,21,111,44,108,125,187,51,235,45,144,185,254,46,46,164,176,136,180,206,114,147,107,235,198,180,23,149,239,11,90,15,199,54,73,253,207,173,189,229,147,10,71,160,89,110,79,11,100,145,83,103,163,108,11,33,54,76,107,155,146,4,25,214,118,143,214,142,141,58,157,179,134,254,7,235,48,118,21,220,81,112,87,76,176,223,206,72,111],[10,158,3,107,48,114,200,39,171,124,100,144,214,25,85,61,207,242,219,255,207,255,16,75,2,84,183,118,174,209,60,155,1,140,201,168,182,77,10,221,48,5,215,76,155,145,83,133,14,98,245,118,216,116,255,26,229,83,143,136,117,38,34,197,112,229,183,176,117,49,24,221,42,227,30,128,146,31,189,68,165,137,66,228,62,232,165,77,226,104,88,32,74,28,114,141],[4,254,176,202,52,145,248,74,7,15,92,47,193,220,250,173,255,109,212,100,240,151,157,242,194,90,181,80,116,55,131,219,101,120,73,145,195,106,12,28,127,29,183,179,193,235,10,31,21,208,2,238,72,134,111,60,76,90,113,153,66,125,209,69,32,201,14,245,250,167,75,70,149,27,28,33,74,242,32,74,92,215,34,156,25,238,146,203,3,56,246,141,249,153,79,192],[7,42,47,141,70,191,102,117,82,62,166,87,79,45,247,51,161,29,202,225,237,166,158,125,133,48,188,176,238,247,37,111,85,129,242,217,211,29,160,236,98,33,57,246,12,93,75,225,9,185,97,146,178,29,187,130,104,65,253,81,100,82,212,163,74,236,83,101,106,31,0,123,43,64,125,89,19,169,122,185,38,250,25,96,86,52,150,186,203,136,42,253,180,223,163,28],[23,14,175,231,73,7,209,43,216,31,236,132,0,141,197,25,17,225,18,125,224,103,231,3,206,100,103,53,248,136,228,218,145,220,102,30,164,169,149,59,168,66,0,23,104,10,188,174,9,183,150,8,90,75,168,228,154,29,148,21,154,142,83,1,21,39,45,96,15,236,50,113,106,5,122,228,179,251,203,127,17,27,150,108,17,227,158,199,192,126,25,200,6,137,246,73],[6,161,112,82,89,213,106,84,7,29,25,128,83,163,184,161,162,152,191,233,134,163,113,164,103,196,28,172,25,131,110,109,108,224,143,229,139,198,13,143,185,108,96,213,175,46,223,38,13,48,228,104,66,179,152,153,184,123,173,86,150,83,90,118,157,147,135,38,35,87,52,232,140,91,198,54,21,159,207,76,72,11,55,233,250,136,245,234,159,186,23,95,31,46,210,16],[1,11,0,228,126,203,226,88,49,126,122,225,102,8,38,9,48,236,159,5,20,87,104,96,57,71,62,39,222,211,112,232,69,120,73,19,224,73,25,205,146,181,95,62,218,148,8,65,10,75,136,38,54,150,242,232,97,214,137,148,138,244,15,234,123,196,7,144,82,214,15,173,17,24,157,150,152,220,69,167,103,16,133,244,243,67,192,140,224,134,60,11,181,110,161,243],[12,63,126,203,243,61,170,7,235,255,235,131,174,72,31,2,22,80,42,6,192,170,204,114,68,255,208,174,35,42,13,139,16,252,164,79,233,141,67,166,75,83,94,210,105,114,217,56,4,169,93,250,249,29,30,95,36,113,213,202,68,102,235,200,115,210,253,199,78,213,155,217,4,102,219,127,134,61,172,149,6,174,210,124,78,162,41,163,135,119,202,255,7,146,163,132],[14,249,144,20,17,248,74,58,84,17,90,114,90,200,183,171,21,229,191,126,38,64,112,90,223,181,114,52,239,185,180,151,107,32,121,83,187,38,254,233,198,97,122,242,127,41,47,142,20,95,161,205,194,173,146,197,113,234,64,115,73,110,32,148,138,44,89,234,191,173,5,152,22,220,37,1,216,134,229,26,229,188,240,94,225,140,156,61,54,42,168,78,159,116,169,70],[18,50,236,192,73,187,220,121,32,223,15,244,223,237,106,76,56,127,45,166,167,34,26,117,205,169,14,237,229,112,254,33,225,92,61,94,21,69,139,139,33,137,103,109,181,57,2,17,4,243,80,42,97,12,197,201,236,167,191,54,182,54,204,12,161,227,47,22,79,132,186,207,135,166,241,255,101,24,116,3,37,224,15,214,48,104,216,33,247,110,148,148,56,204,54,112],[8,106,69,246,69,131,219,196,193,118,101,235,238,188,135,50,19,158,175,17,85,222,22,112,249,142,46,244,121,149,235,140,67,182,64,189,235,210,165,92,159,156,186,179,144,168,100,31,16,131,179,119,124,178,11,139,179,124,182,110,30,229,52,225,175,7,162,192,96,15,206,124,162,6,118,245,74,201,188,10,238,207,49,250,64,165,131,155,16,104,26,195,205,125,100,93],[20,47,61,83,88,198,92,145,242,237,10,194,67,228,40,215,168,133,20,96,107,135,119,37,249,160,159,41,255,208,73,163,68,160,213,139,217,218,115,177,146,122,69,67,230,134,242,140,8,93,98,114,122,69,24,97,87,90,30,169,146,84,125,225,99,169,71,176,174,216,203,13,73,14,105,133,83,98,248,100,120,52,84,223,99,51,138,67,24,123,158,164,112,218,5,56],[4,179,194,219,56,234,105,5,28,96,101,187,75,242,172,121,149,99,50,54,46,42,119,204,248,168,147,64,98,145,4,86,202,203,1,31,96,244,237,1,185,59,255,168,153,64,18,67,1,31,219,85,38,15,199,153,215,82,219,81,169,223,106,113,179,123,231,76,231,70,224,212,45,110,137,158,125,92,220,193,87,83,4,76,226,62,209,171,178,144,77,34,151,53,186,18],[8,240,51,47,207,167,48,79,55,160,65,221,218,250,166,36,97,34,164,41,142,195,52,251,227,20,231,193,110,149,58,196,226,62,69,149,251,80,237,135,150,196,8,41,183,246,104,134,4,27,125,31,151,166,229,99,206,11,195,188,174,183,142,156,22,234,185,151,254,77,60,34,246,44,255,70,66,95,62,139,32,151,155,19,123,42,248,185,105,185,79,52,59,128,240,204],[0,94,188,150,3,46,63,93,50,201,206,241,244,63,156,151,229,224,49,209,233,58,153,240,184,52,242,5,51,70,120,167,42,212,203,80,173,240,45,89,239,94,231,16,232,207,244,203,15,39,127,158,31,50,89,252,170,98,236,75,231,147,38,78,199,248,137,148,205,66,20,116,175,46,97,131,124,18,126,174,195,57,43,91,140,104,239,252,170,170,255,72,19,241,170,31],[5,53,249,60,222,23,209,13,109,117,103,224,73,245,238,55,25,68,33,56,71,70,194,107,241,55,196,193,163,7,95,175,185,223,178,86,21,88,253,165,168,195,45,31,121,100,76,187,4,208,64,251,110,193,125,153,65,67,53,74,118,250,173,169,56,239,99,209,51,137,196,28,200,218,110,255,249,178,10,238,215,61,150,208,182,21,14,165,4,28,52,112,210,24,215,154],[25,116,80,92,9,221,205,220,17,221,164,109,88,95,185,148,146,112,4,190,113,154,97,153,156,77,79,159,246,34,20,40,169,122,73,143,242,178,33,246,97,239,203,31,74,246,140,237,1,220,237,177,198,44,2,88,214,65,75,109,223,140,244,167,238,55,233,129,138,189,79,211,61,203,197,13,222,151,53,228,169,66,168,103,102,30,92,187,149,77,170,1,14,148,96,4],[22,125,20,138,94,79,217,160,133,224,220,7,145,123,98,33,52,107,202,251,157,66,146,91,49,231,117,254,54,11,149,65,106,114,161,30,211,105,138,18,194,83,42,255,145,62,19,147,11,133,229,30,238,155,4,44,176,100,10,126,44,13,18,244,101,23,189,149,198,74,105,101,229,85,28,42,219,158,171,83,192,224,131,193,117,126,110,187,187,93,183,252,9,202,107,202],[20,78,85,201,116,40,218,97,59,35,250,130,101,253,207,152,250,195,221,68,147,151,7,243,63,32,140,103,166,24,246,79,224,22,122,17,47,204,35,234,21,223,59,87,25,196,233,248,4,15,196,0,253,192,26,92,105,63,5,214,198,107,183,184,21,134,217,102,186,129,159,87,198,121,141,91,245,249,195,82,220,86,66,232,64,176,110,166,145,124,40,237,56,135,115,21],[14,182,144,39,134,196,208,1,253,2,205,122,168,207,191,1,117,90,210,151,227,16,199,234,142,202,71,104,224,46,9,139,27,138,6,142,240,134,27,87,140,112,145,215,233,221,236,187,9,67,185,56,245,143,96,130,187,22,111,102,128,175,246,45,153,84,108,180,213,156,121,75,31,125,0,242,73,16,96,84,215,148,4,149,19,108,37,160,242,212,110,153,182,39,169,82],[18,160,252,48,71,23,205,247,137,88,206,78,175,142,170,88,111,217,100,16,28,96,165,14,186,92,10,249,70,166,241,255,226,58,131,105,11,96,11,56,130,27,159,142,184,229,106,251,11,100,52,164,50,19,141,244,65,31,33,244,172,200,106,131,209,40,3,56,49,0,93,239,170,172,127,100,152,35,26,81,93,118,99,138,51,110,166,213,200,228,143,51,18,84,209,179],[10,218,47,190,180,192,105,179,9,155,182,6,204,118,109,64,81,146,0,192,226,7,97,6,233,193,136,99,172,22,234,114,12,30,128,53,30,251,206,30,132,98,104,42,3,199,62,237,13,43,153,157,177,9,42,167,97,244,67,152,149,48,27,34,138,61,111,139,27,145,12,17,157,7,11,196,59,198,69,187,176,29,152,178,152,39,83,46,81,139,106,130,188,244,199,52],[16,110,255,91,189,26,180,194,135,239,117,188,138,199,39,161,227,55,141,36,147,66,237,148,206,104,21,43,144,242,193,4,5,217,231,165,186,188,39,87,173,166,67,103,244,197,183,150,0,7,138,236,174,189,35,237,202,76,145,204,205,112,152,81,235,36,110,146,198,90,55,99,216,58,159,66,84,131,190,238,36,220,57,107,132,214,210,193,247,61,16,106,108,147,102,164],[11,158,41,14,220,81,136,40,6,106,136,82,38,29,135,229,148,47,117,202,3,146,69,65,224,111,220,66,196,31,18,130,183,221,19,48,200,187,225,249,122,188,88,99,93,126,196,72,7,143,66,109,169,169,153,14,128,169,182,106,72,91,121,175,33,194,190,129,157,40,137,215,236,79,186,18,33,249,250,184,26,226,191,91,182,156,195,62,126,246,119,130,195,167,152,181],[21,50,206,209,31,16,161,224,168,191,8,3,46,221,255,65,23,32,246,157,66,67,244,32,165,203,196,137,10,27,247,4,19,133,146,87,32,248,84,97,31,58,126,208,253,65,20,249,1,233,7,212,126,191,83,179,84,64,214,191,238,116,215,145,143,139,121,227,99,239,241,51,178,241,132,101,161,219,169,251,157,127,67,134,8,64,118,165,213,196,248,138,216,8,130,194],[20,58,67,226,75,36,88,252,114,167,63,50,157,232,38,66,128,27,197,65,171,105,46,169,21,202,198,92,111,222,139,129,162,40,95,135,129,11,157,207,65,56,243,143,149,180,37,19,1,237,34,79,231,169,206,233,57,41,224,238,36,22,26,90,211,110,175,171,63,198,46,5,138,39,23,171,205,172,101,143,98,113,156,10,240,129,228,229,16,78,190,183,199,197,213,159],[15,8,201,149,149,124,135,121,15,225,83,251,207,149,160,171,101,92,65,213,17,250,59,196,196,121,123,168,228,159,232,27,5,17,22,55,19,255,242,120,172,138,253,70,210,17,164,200,14,13,30,205,111,94,211,35,10,228,168,57,99,234,222,54,109,109,128,42,22,74,35,140,210,190,120,214,162,64,149,192,27,178,108,79,20,243,102,250,206,79,109,47,226,155,167,87],[21,228,238,99,238,9,115,129,62,57,219,214,70,77,106,78,122,75,139,144,245,242,54,229,77,80,36,93,147,53,220,5,159,16,224,6,23,149,118,138,191,62,46,23,141,253,95,209,7,130,175,139,72,99,26,53,208,108,40,68,202,48,211,246,155,251,17,243,66,245,63,166,178,90,150,130,224,229,200,226,171,240,155,198,75,141,241,46,46,183,149,13,51,72,42,177],[19,241,123,115,196,101,213,17,65,56,176,53,138,241,19,99,102,235,70,95,185,240,1,147,214,131,86,136,82,161,204,58,237,188,94,103,238,91,22,27,239,213,252,98,4,184,228,250,5,60,242,3,126,205,177,134,118,247,6,81,125,90,70,187,238,12,202,35,150,52,250,235,236,132,188,52,60,165,185,194,207,179,158,100,241,87,218,247,215,26,234,121,206,210,38,7],[16,166,70,111,247,71,255,9,160,245,235,153,232,239,208,122,244,241,246,114,189,114,169,93,178,8,120,103,76,115,198,57,40,156,113,82,63,213,253,134,202,228,192,118,137,21,107,197,13,19,121,62,58,211,56,148,53,199,149,139,42,89,172,18,68,3,194,72,172,126,84,118,46,37,80,60,145,3,229,206,158,137,223,154,164,120,197,27,88,27,92,122,26,124,37,200],[2,187,84,38,184,98,240,208,137,15,213,198,60,223,62,250,19,146,116,193,78,171,38,88,136,254,97,188,69,221,194,220,201,128,220,38,138,146,44,73,239,138,236,12,241,228,106,216,16,3,187,126,111,77,107,172,106,99,12,56,145,13,5,54,144,227,192,139,62,39,113,84,242,247,113,244,173,214,29,35,72,173,62,249,179,79,185,158,16,235,46,43,91,254,185,124],[14,148,201,4,150,20,44,125,117,68,116,66,178,93,186,158,69,241,124,50,65,72,175,242,29,105,69,111,66,32,183,138,112,41,110,250,191,193,159,168,90,171,76,102,41,11,253,163,10,100,192,201,38,217,159,155,45,36,107,53,255,129,77,210,12,109,83,163,193,8,120,19,214,132,162,44,81,43,234,233,143,135,88,98,73,124,18,14,26,99,4,215,74,72,139,195],[21,75,178,107,44,159,127,229,36,190,22,27,0,29,207,67,225,29,135,28,171,125,113,63,124,59,104,224,181,146,39,214,43,99,69,14,176,41,107,41,63,112,145,215,62,107,35,40,23,105,120,8,94,145,223,43,211,94,141,50,59,124,175,15,110,154,156,249,212,38,194,52,25,121,10,174,97,129,99,31,158,176,153,127,34,59,58,245,111,167,249,91,251,196,241,218],[2,195,190,57,224,202,177,188,177,33,71,223,6,95,79,188,66,28,162,182,201,95,3,140,30,220,151,127,120,98,139,159,81,41,133,194,254,141,122,25,117,190,61,238,220,107,158,133,4,201,155,208,126,127,117,136,25,77,172,208,90,12,202,39,236,92,32,54,76,239,171,136,123,133,2,94,28,177,216,101,207,29,163,120,147,195,9,32,78,219,36,181,85,120,94,215],[3,14,41,2,62,208,48,68,81,2,161,108,60,119,44,229,13,108,24,61,231,180,45,38,235,186,175,170,226,140,121,114,168,80,20,123,255,243,175,218,73,146,153,9,92,71,123,162,5,208,78,125,213,233,208,74,10,195,190,228,245,22,113,126,144,28,162,144,76,142,105,48,252,0,240,140,103,119,245,213,122,9,167,222,209,69,228,27,91,158,173,121,29,61,108,180],[6,112,219,28,13,157,4,145,118,158,101,234,3,254,83,244,249,88,25,187,201,105,207,170,240,57,191,65,123,5,103,20,1,18,180,224,115,91,83,85,186,113,89,0,120,247,12,219,4,210,114,216,74,218,74,159,69,20,239,30,178,250,61,3,206,84,120,93,236,222,202,163,218,169,34,154,238,40,149,227,112,162,186,86,116,170,183,127,150,124,173,106,227,89,41,35],[17,122,158,251,55,212,254,152,139,2,47,141,82,231,49,71,211,178,125,69,201,145,101,41,12,116,66,134,65,238,185,32,218,64,42,115,8,157,40,156,113,45,140,6,180,238,137,39,3,171,143,147,86,24,53,45,37,249,59,71,182,54,190,37,226,246,186,4,238,187,115,9,230,71,194,80,159,188,172,79,9,112,187,80,195,182,158,35,9,156,19,137,87,117,242,66],[23,75,120,1,26,253,16,17,74,70,210,243,251,132,250,127,162,110,186,232,191,89,125,229,105,215,77,170,177,106,216,139,110,43,109,70,63,79,138,139,76,152,8,92,159,166,89,194,0,177,63,33,20,148,47,193,49,91,121,80,149,124,187,31,111,214,89,49,99,137,30,12,123,134,225,52,254,174,160,23,242,253,222,51,172,249,9,175,174,44,157,139,117,45,164,181],[21,199,103,42,72,114,231,176,40,222,134,178,68,82,164,205,251,62,232,146,152,171,155,3,100,244,171,124,84,84,254,61,167,29,100,44,185,134,125,229,127,192,223,44,142,198,191,220,14,118,253,56,23,163,251,215,94,53,99,128,38,225,108,223,87,105,23,55,200,57,75,43,233,218,20,254,199,131,194,165,76,64,9,94,164,136,228,124,69,72,36,221,54,18,202,141],[13,156,116,31,151,104,202,54,185,148,101,95,120,212,255,197,28,172,37,240,204,173,116,168,111,75,132,131,54,158,182,89,104,10,253,42,63,39,216,141,63,217,12,92,7,195,226,65,3,176,166,227,2,202,219,33,245,69,185,4,250,175,206,250,176,161,88,113,251,123,246,141,36,111,176,112,117,91,18,8,128,3,8,145,173,140,49,137,121,115,75,156,208,20,154,24],[5,29,198,115,131,192,187,108,245,58,178,200,42,235,61,221,77,244,233,187,42,235,3,56,100,81,204,169,90,127,95,234,106,13,196,166,52,80,111,49,143,206,107,24,167,62,16,65,4,33,70,140,109,95,107,146,25,47,251,63,246,252,41,186,197,220,254,76,114,94,38,171,246,174,255,207,225,168,155,17,142,245,54,152,28,34,245,143,106,103,79,126,67,198,135,241],[25,220,141,167,20,47,55,154,200,73,58,25,228,173,162,41,33,136,229,241,199,114,90,96,236,72,83,2,7,13,118,136,56,88,210,165,105,47,68,135,32,107,123,206,86,157,241,219,25,169,15,122,128,105,195,71,129,43,145,255,75,125,121,207,212,49,145,121,173,219,158,58,149,210,202,185,210,203,162,111,193,6,7,132,61,118,93,154,189,82,231,56,35,116,98,144],[3,41,62,125,21,12,29,95,104,204,179,217,66,210,46,186,16,49,203,218,122,176,248,40,59,159,0,125,87,17,180,19,23,210,217,120,119,239,198,78,31,255,5,1,175,141,167,165,12,25,182,163,164,2,188,1,255,176,134,59,21,232,77,210,121,173,71,151,126,163,73,120,209,99,232,78,90,201,163,164,141,193,3,254,176,29,133,151,98,222,153,185,248,122,116,136],[11,18,209,23,149,219,185,74,249,65,213,40,255,224,125,4,64,18,80,71,191,28,176,134,74,216,105,14,140,91,243,249,168,186,201,198,4,150,115,92,181,131,139,164,130,34,122,49,10,186,56,106,187,226,160,255,122,212,89,186,199,254,157,162,209,246,10,144,157,133,155,206,180,91,112,245,51,39,148,126,32,52,0,188,74,239,194,235,241,208,107,148,29,146,116,206],[13,221,154,225,245,142,61,156,96,43,233,168,140,34,171,115,28,74,40,180,251,164,56,8,70,151,200,138,103,51,246,54,171,30,163,111,129,175,113,249,50,92,64,13,42,234,56,206,23,23,218,55,0,39,213,153,101,86,49,154,174,163,55,85,149,123,170,50,19,167,29,239,25,101,9,158,137,185,7,46,181,82,27,173,181,176,196,234,187,159,224,109,138,231,151,224],[17,24,199,138,88,141,81,209,177,185,53,69,132,68,150,193,106,26,175,78,32,51,26,217,78,99,136,173,10,171,51,105,68,43,53,214,45,162,39,72,131,82,223,119,186,138,187,215,6,97,190,55,219,171,251,0,231,106,119,61,232,103,113,246,73,11,70,164,18,163,31,75,188,142,141,153,185,85,173,120,47,63,161,198,74,131,44,55,77,213,162,221,29,24,16,217],[16,118,57,255,47,6,21,69,24,252,14,137,85,119,215,92,72,100,23,2,158,151,214,7,82,180,252,78,231,177,35,4,139,179,155,102,60,89,235,122,117,134,50,216,84,167,20,165,4,98,86,201,211,49,140,72,246,194,252,43,142,109,123,28,76,71,206,239,211,243,184,224,36,242,237,191,214,219,241,224,98,41,140,255,137,65,162,164,173,33,228,119,151,105,174,162],[25,95,56,123,92,243,202,213,139,178,242,97,47,110,178,76,224,49,204,59,124,21,208,190,197,106,86,82,77,189,16,46,159,219,141,18,74,24,50,187,224,177,22,43,21,174,153,239,25,242,53,58,211,189,43,24,219,35,16,172,130,108,129,146,65,130,134,71,66,241,60,30,158,2,11,25,139,190,165,224,41,163,241,105,195,119,202,63,18,166,118,114,186,164,84,253],[9,236,29,105,57,7,45,30,202,98,55,118,181,186,129,24,148,52,126,147,76,140,143,82,207,94,51,35,132,228,85,217,74,80,189,99,130,194,65,103,233,118,139,15,134,34,69,152,25,224,42,160,196,6,131,168,167,202,91,13,224,147,44,223,119,88,255,49,76,35,180,144,142,192,176,18,66,6,190,4,200,102,101,40,163,121,15,163,95,177,90,75,101,150,225,239],[8,140,51,185,11,115,244,163,123,169,131,18,202,176,189,152,221,121,7,178,255,159,223,38,143,11,173,156,227,92,254,140,234,73,207,127,90,27,6,44,120,28,217,169,171,246,13,80,2,141,45,58,22,226,201,36,128,215,24,113,73,114,138,188,200,68,25,89,246,115,242,243,36,154,159,36,146,240,55,187,16,15,137,122,77,107,74,227,49,37,67,148,156,128,19,163],[5,42,200,129,215,146,107,68,91,42,126,89,33,149,34,213,35,155,26,213,200,191,25,42,15,71,62,145,231,218,226,172,77,60,50,78,73,151,135,184,107,155,187,253,165,50,105,213,0,28,252,100,190,156,31,151,118,58,57,13,54,130,142,252,235,190,125,131,113,201,241,198,61,204,160,114,171,176,192,76,11,226,48,102,178,49,153,53,221,29,140,138,209,108,127,98],[20,85,119,174,165,18,61,24,11,51,183,28,80,55,249,249,65,197,251,203,136,74,16,64,177,81,160,144,41,128,46,133,178,231,6,236,180,219,62,58,62,152,175,17,17,139,73,231,13,198,141,215,87,94,178,125,37,68,221,98,77,85,164,99,67,58,238,147,232,180,92,119,140,34,86,31,9,67,186,39,161,136,50,96,67,102,198,121,29,133,124,127,229,132,67,234],[12,165,66,114,11,213,196,32,13,159,28,214,171,105,170,217,155,171,57,80,115,106,94,241,165,184,106,102,165,106,126,242,202,46,125,186,200,152,214,93,230,205,95,17,54,121,4,189,20,57,147,7,34,241,162,164,77,123,21,187,161,16,211,80,49,71,68,226,89,31,119,90,135,249,11,241,188,75,222,138,90,114,184,160,59,157,139,111,254,57,217,41,174,212,230,134],[22,185,53,251,214,148,159,193,229,103,32,228,16,117,179,164,184,248,167,91,242,165,89,203,150,221,227,99,86,221,9,172,2,72,175,37,175,144,68,134,181,20,145,211,50,234,91,156,10,122,153,72,238,160,62,57,35,159,173,92,26,233,61,58,34,11,114,62,140,160,57,233,240,214,152,47,32,17,201,210,233,29,89,110,90,71,86,41,227,66,230,188,199,104,147,161],[14,15,222,234,177,190,77,143,166,171,242,238,18,185,20,212,225,31,166,104,120,117,215,6,239,89,0,107,244,231,198,110,13,9,191,135,104,232,189,127,153,194,27,193,161,107,123,109,13,18,162,148,195,94,179,82,69,11,245,143,142,212,82,102,139,47,185,135,239,73,42,245,46,63,95,137,244,89,44,114,176,209,161,233,9,243,61,73,80,92,174,151,56,54,84,80],[22,249,249,82,122,153,71,240,8,42,255,102,219,118,139,64,188,173,201,96,126,147,251,69,226,177,143,168,85,43,91,63,63,118,8,205,7,188,211,230,61,234,179,45,95,162,113,102,16,198,4,159,107,100,122,139,82,158,34,248,217,10,26,104,185,2,211,197,113,56,172,149,41,46,92,79,96,46,17,164,74,251,140,121,32,180,234,217,7,133,130,61,37,166,144,192],[3,192,239,195,78,193,31,80,119,8,170,215,243,141,31,252,91,187,220,141,147,135,249,162,87,173,141,217,159,130,48,209,163,149,56,47,190,238,218,59,244,221,41,249,8,1,84,26,25,51,31,173,131,183,168,119,112,83,62,152,39,23,167,219,52,132,177,190,72,223,238,111,101,159,197,34,108,219,176,145,17,237,57,26,140,107,57,233,61,145,114,34,28,0,55,157],[10,246,216,255,234,218,62,255,77,77,161,59,57,196,142,8,41,50,45,237,200,149,253,82,121,168,49,67,190,117,155,15,212,199,10,45,55,123,142,9,216,115,78,209,202,158,193,218,21,189,67,244,124,240,244,137,168,108,225,29,249,63,15,161,35,78,162,56,167,114,128,219,9,37,147,203,135,193,9,164,197,52,149,52,67,192,203,123,20,223,143,39,130,183,9,179],[15,72,142,143,180,203,92,65,216,6,252,31,7,202,169,104,154,47,211,17,83,248,115,120,167,68,4,39,58,114,110,238,130,71,252,235,79,27,106,27,187,91,29,155,102,188,191,184,1,166,249,90,144,113,3,136,11,230,253,210,145,171,122,142,142,56,171,152,113,129,232,78,244,227,6,129,24,197,62,174,121,66,11,181,72,76,174,31,167,1,139,87,16,25,149,244],[6,85,134,153,158,60,209,89,59,36,7,89,112,100,166,15,70,112,209,77,222,218,44,45,132,239,120,182,206,199,27,112,156,46,202,217,108,104,127,23,87,255,184,185,1,166,160,105,18,37,247,12,197,41,237,120,125,2,156,167,213,18,189,202,28,90,224,123,230,235,104,221,253,138,43,249,89,232,220,135,19,49,178,102,159,146,151,12,187,98,26,92,135,124,103,136],[23,14,145,92,25,222,51,124,221,238,25,125,48,176,19,198,49,192,89,4,166,215,137,205,140,129,136,19,63,131,13,78,14,157,57,247,21,197,153,246,144,6,231,243,97,19,128,225,0,80,45,55,169,10,21,21,144,235,61,181,152,15,199,157,39,226,221,98,4,83,46,162,113,142,17,144,252,67,132,249,187,126,239,183,136,53,8,50,187,25,161,24,56,84,197,13],[25,39,213,31,8,209,190,131,82,225,202,132,218,238,203,205,25,49,67,164,215,74,93,168,18,44,93,191,240,68,23,244,10,67,10,187,8,135,244,175,56,132,101,100,245,184,142,20,11,212,253,187,17,226,138,174,248,23,139,93,29,228,66,61,128,9,65,245,127,245,152,228,27,137,150,89,191,232,150,108,40,93,174,133,72,37,74,243,178,167,46,170,20,99,202,52],[20,104,167,160,44,160,83,167,4,48,103,64,232,161,133,105,148,123,20,25,225,212,48,63,183,225,33,2,93,180,180,148,251,65,115,202,210,70,165,118,243,52,212,132,115,248,245,16,19,193,102,68,191,102,239,178,89,198,231,90,191,177,222,253,212,79,0,43,222,104,149,186,176,153,106,190,229,247,29,76,142,188,34,249,52,183,119,62,247,91,160,207,161,84,172,112],[16,157,189,82,176,46,54,94,60,12,196,147,53,159,45,59,43,185,22,80,144,29,175,185,34,172,80,83,63,100,171,224,193,42,161,51,192,98,131,220,120,68,10,124,237,63,251,90,11,167,23,137,84,163,167,119,145,210,134,93,26,161,134,239,215,117,95,77,85,120,217,39,159,139,149,221,187,171,64,155,65,19,142,242,249,246,85,139,59,131,91,206,48,226,134,81],[4,37,210,0,234,196,48,132,62,233,130,231,108,248,236,206,237,38,214,84,140,178,86,84,51,96,214,161,48,202,191,107,217,41,36,198,185,45,184,254,14,248,91,177,73,158,72,38,11,144,95,157,136,252,210,20,186,200,3,207,230,95,250,10,81,232,172,250,182,79,138,252,1,6,247,61,241,153,39,131,187,176,186,172,169,192,11,102,141,175,188,67,20,121,159,211],[2,107,238,84,94,74,104,13,212,3,187,136,134,188,148,253,79,50,213,23,133,60,99,172,187,199,46,123,30,193,203,86,227,247,168,124,211,106,168,217,109,63,60,59,51,208,199,181,2,48,197,41,26,97,15,102,2,199,221,141,35,154,32,231,166,129,185,112,172,112,74,194,48,187,103,246,114,227,163,151,172,178,33,107,100,87,205,174,170,137,182,203,245,176,108,41],[3,74,180,2,128,108,169,171,254,207,213,159,62,33,11,1,194,94,204,205,122,41,90,202,184,6,126,93,79,14,87,39,56,72,195,161,23,26,214,66,222,208,161,221,163,87,39,80,1,31,114,112,136,6,133,96,184,186,177,130,19,167,211,128,51,106,73,2,7,199,152,191,38,106,145,15,169,56,24,222,138,136,153,129,85,146,119,42,24,85,91,195,150,188,123,252],[2,19,6,118,102,183,84,136,64,12,8,17,26,235,78,207,199,48,69,239,191,181,90,210,30,141,194,29,104,196,177,241,109,8,216,186,68,212,80,241,209,141,17,98,148,31,191,249,22,64,190,6,112,18,3,13,151,94,98,224,115,20,130,184,159,35,212,118,230,192,27,176,58,50,21,203,37,140,86,69,97,140,81,6,93,162,196,100,238,11,97,56,173,164,93,89],[25,42,217,112,106,168,57,5,150,206,203,36,194,146,4,120,54,209,226,190,226,93,14,158,1,140,98,144,195,254,223,89,25,150,36,205,197,94,149,62,36,159,113,54,78,112,236,228,4,231,220,9,86,8,248,19,241,72,28,117,168,16,119,227,47,202,199,66,23,94,144,43,45,74,61,113,175,98,17,239,40,223,2,202,19,183,38,82,43,195,83,206,71,194,88,168],[0,234,162,185,69,65,234,129,142,205,102,156,160,237,214,245,227,115,150,113,143,119,103,39,237,20,140,211,29,91,157,152,28,251,175,168,137,150,52,16,184,167,217,202,119,210,16,252,9,114,177,86,31,245,227,212,45,25,167,34,213,201,8,61,29,54,81,243,239,139,127,203,233,111,218,88,231,134,252,162,112,226,173,178,119,118,203,182,176,194,122,107,11,68,23,150],[2,99,217,22,112,209,187,26,218,154,163,9,166,219,110,208,67,173,88,232,25,97,206,148,93,186,233,102,151,221,172,13,146,86,221,255,221,154,124,32,172,164,87,82,52,140,152,119,19,206,52,160,99,29,95,64,237,193,51,209,229,134,33,176,211,129,180,212,136,205,99,95,30,192,98,207,235,40,86,138,57,241,184,24,234,202,98,163,102,110,200,117,213,252,82,186],[17,251,96,232,140,51,61,70,255,198,112,67,126,34,252,83,138,111,114,221,62,95,3,109,78,192,207,179,63,98,51,221,178,11,173,69,190,79,252,65,243,32,119,178,227,22,236,195,17,175,228,139,103,157,57,214,108,179,63,202,49,160,229,144,38,212,142,162,181,97,58,165,173,62,241,28,212,193,103,9,114,9,163,211,226,121,1,212,82,104,211,182,24,138,217,26],[15,5,87,4,34,19,10,55,85,240,79,107,65,164,128,30,166,201,108,166,124,91,125,43,244,12,139,44,65,254,127,27,0,97,209,1,78,127,9,209,0,76,177,199,207,188,69,179,20,114,47,140,230,19,125,10,140,102,119,160,83,202,88,174,9,203,22,146,197,131,81,109,219,20,87,90,36,136,107,143,16,29,18,160,80,173,132,132,221,248,225,161,48,245,245,158],[21,100,185,44,156,80,31,235,201,77,67,218,82,29,2,55,104,157,173,109,196,98,10,53,212,102,166,40,84,145,6,46,49,120,9,223,60,209,127,80,51,113,209,40,103,192,118,105,12,226,41,29,238,7,10,37,166,47,4,94,243,136,249,138,245,183,214,74,66,0,190,1,84,55,129,189,229,131,103,251,115,236,205,30,107,29,122,36,89,147,212,145,233,10,238,198],[24,207,50,155,238,139,146,221,80,230,188,28,100,68,8,188,91,238,151,17,9,187,114,115,203,60,155,29,127,76,118,244,217,146,240,0,174,182,119,62,28,117,249,39,194,47,178,76,5,197,109,206,163,65,153,160,68,13,12,5,111,199,138,141,217,190,252,98,48,206,161,180,116,188,162,184,116,60,37,219,93,208,65,185,202,21,141,161,32,202,217,194,45,173,2,136],[23,9,253,197,161,170,241,141,37,86,156,136,186,112,217,249,106,91,100,187,178,30,27,86,102,123,105,16,75,76,105,197,172,178,182,52,185,128,61,165,168,247,233,48,154,227,173,154,5,209,212,252,65,156,44,248,57,166,242,228,70,243,48,48,214,125,134,185,64,91,66,138,32,73,30,27,167,173,189,29,95,4,42,184,74,138,122,185,250,207,224,55,187,14,50,61],[6,255,12,153,144,193,212,160,228,134,35,152,170,174,161,99,228,65,98,196,71,53,38,101,8,131,115,130,39,149,102,163,139,120,165,255,38,38,2,47,213,19,58,34,70,216,163,241,0,8,64,28,186,220,222,11,45,240,245,236,77,193,111,14,92,135,73,183,250,193,164,49,57,180,48,197,171,44,36,197,236,47,59,36,223,36,82,27,173,98,174,201,51,148,4,70],[14,249,159,165,206,110,116,109,117,200,150,203,245,165,68,25,170,238,152,28,217,149,236,161,1,154,240,225,163,121,144,234,253,158,194,158,21,7,97,88,55,218,68,116,230,30,239,83,7,99,121,144,1,107,201,198,132,193,24,242,16,117,36,59,208,206,139,154,35,188,66,241,138,206,241,53,86,220,53,154,213,232,98,57,196,229,140,92,236,97,91,58,62,166,204,216],[17,20,38,58,78,187,3,252,111,177,45,41,154,253,77,175,131,246,227,92,201,204,51,42,41,216,151,54,144,201,23,104,137,92,161,173,252,131,3,132,50,135,111,4,171,39,144,98,20,40,114,255,26,136,213,62,64,42,107,222,170,156,72,94,33,149,107,208,112,155,207,90,48,15,95,155,186,133,127,209,70,61,229,44,238,6,39,134,135,47,196,32,234,199,66,115],[18,46,227,200,250,130,148,134,28,173,39,132,82,250,125,77,102,4,96,244,51,1,7,21,87,83,80,152,162,168,85,136,11,119,75,131,83,110,13,196,19,44,124,166,141,48,34,154,21,103,90,251,119,39,23,186,228,177,35,84,13,87,223,58,246,30,224,92,169,228,95,81,239,98,86,220,152,183,220,159,56,79,49,153,167,23,173,155,36,165,202,119,178,97,189,128],[17,28,253,149,109,32,13,50,188,33,28,248,255,186,115,236,57,87,100,141,185,159,157,17,126,203,105,47,69,208,133,217,23,130,12,134,105,207,105,198,189,114,167,142,189,201,100,94,12,214,40,43,206,3,127,110,97,203,132,41,180,120,224,161,225,82,25,53,242,120,2,43,223,250,105,225,92,23,140,134,154,182,42,182,2,25,168,55,3,251,130,119,136,134,98,228],[22,219,152,252,165,234,85,226,83,85,71,5,79,171,209,72,243,160,160,20,203,52,137,106,255,45,51,221,113,199,175,15,71,166,204,172,15,149,130,224,35,121,97,183,198,30,239,115,22,227,220,53,59,67,56,208,53,43,106,179,74,125,152,38,22,158,172,226,212,248,221,74,138,249,108,59,59,140,241,109,176,206,110,153,39,60,137,121,202,69,138,238,247,234,173,138],[2,13,127,164,216,68,240,140,217,155,192,78,173,47,106,230,182,230,56,17,33,208,102,52,197,118,248,63,124,135,221,178,8,165,149,109,21,120,154,87,77,43,77,42,136,171,210,147,19,86,15,174,115,180,230,114,122,225,175,28,199,63,179,76,148,155,140,140,85,48,106,185,219,5,88,190,193,40,98,146,15,1,57,11,114,52,139,235,233,14,96,178,230,175,75,82],[10,52,207,49,203,160,224,241,67,63,103,176,254,192,67,160,169,109,63,115,127,150,70,142,73,183,159,12,101,150,205,104,56,80,183,203,130,100,203,226,22,169,57,58,160,32,232,249,25,165,2,139,125,45,225,154,58,93,55,163,240,172,80,56,101,212,152,235,40,137,84,193,11,37,53,96,86,223,58,38,214,80,218,89,239,32,113,125,188,172,170,147,135,249,131,26],[4,168,105,219,214,92,246,241,170,179,103,196,19,139,64,117,201,3,134,182,32,90,38,21,199,254,22,198,167,96,195,109,113,208,42,141,159,205,250,123,164,192,12,121,77,30,144,242,21,173,33,60,106,145,90,3,68,73,111,133,39,60,18,18,14,188,81,133,53,160,230,243,12,180,130,209,128,60,60,220,206,158,73,255,178,148,177,5,182,50,74,70,143,253,65,232],[3,113,238,89,173,119,33,152,90,30,169,74,142,243,70,130,43,196,151,82,102,125,236,128,115,167,152,96,113,163,117,180,104,7,226,16,207,213,125,179,118,122,166,231,198,242,72,52,21,56,163,178,171,52,218,39,71,246,156,211,55,180,246,2,157,52,14,42,25,224,198,159,201,158,146,94,103,45,225,236,225,5,175,233,81,164,39,119,34,121,207,216,229,86,31,70],[6,78,100,188,84,12,86,45,201,122,122,32,109,53,213,171,33,0,53,207,112,148,229,144,209,9,223,27,190,205,62,90,217,25,190,125,138,55,155,50,84,86,152,120,99,46,19,18,17,7,117,186,241,12,76,53,140,125,95,88,68,22,180,82,66,188,174,134,113,23,234,48,161,5,243,29,60,146,25,13,21,127,213,91,247,61,240,42,165,22,87,132,29,224,12,152],[15,125,221,84,181,201,120,2,54,70,77,24,113,154,52,251,177,34,171,220,230,189,24,4,102,32,211,130,231,168,119,1,51,130,97,225,244,164,183,228,41,66,14,150,105,184,93,35,18,17,42,1,103,81,244,127,248,142,213,178,35,130,111,221,84,133,156,127,127,98,137,37,182,78,51,220,208,113,182,8,10,191,180,176,11,14,130,67,44,99,103,74,108,142,96,196],[14,215,8,195,222,56,171,84,51,142,232,54,229,6,48,75,126,51,59,138,194,117,131,170,254,161,244,7,89,64,230,192,78,108,229,253,40,120,132,210,192,48,159,19,187,210,251,136,21,157,138,202,126,90,187,90,53,99,92,188,45,182,120,254,119,127,189,18,252,198,153,109,176,77,103,128,125,216,138,75,125,139,123,4,79,166,81,145,78,131,24,5,10,118,129,130],[0,149,91,63,22,199,115,54,7,221,171,142,86,45,61,129,13,155,141,109,123,104,42,247,14,208,10,14,162,143,60,205,23,127,115,49,61,133,128,55,41,9,12,114,81,14,86,108,22,143,161,131,236,180,240,222,214,247,142,155,134,202,160,9,159,199,95,88,80,246,71,189,123,29,161,133,178,93,162,118,79,142,36,249,42,149,181,80,94,78,229,198,6,247,241,209],[0,64,91,46,216,66,27,102,94,252,166,208,203,171,52,212,204,242,55,156,43,118,216,90,124,54,165,149,49,99,13,249,231,74,169,23,173,3,44,223,25,147,219,56,140,22,149,178,15,194,249,254,253,149,27,178,32,248,149,42,244,139,169,30,106,232,214,168,234,60,209,108,135,16,158,126,81,62,67,132,98,99,113,87,163,123,186,70,252,131,155,240,30,0,10,146],[16,95,234,43,2,165,209,134,48,179,131,162,45,244,109,244,242,138,139,4,213,38,116,160,46,145,42,6,117,114,27,222,117,119,16,5,136,69,54,159,154,111,205,217,34,247,113,57,13,100,209,190,166,87,38,209,17,234,53,250,153,21,203,39,223,178,190,60,72,81,169,60,185,3,103,223,219,116,25,165,117,206,244,88,134,155,143,131,25,129,15,122,98,42,149,129],[7,194,147,45,43,141,181,20,90,119,242,165,40,88,116,144,254,116,107,132,185,101,189,28,83,177,101,32,191,97,96,25,54,124,244,88,83,88,58,4,188,138,178,159,0,229,32,254,4,145,21,103,91,52,112,159,182,114,233,148,161,36,164,154,57,37,99,67,181,239,116,233,202,56,199,225,93,94,13,79,228,155,169,247,236,234,175,15,60,235,143,102,93,105,186,89],[0,17,112,166,32,43,31,125,223,22,250,189,60,241,252,203,158,110,127,171,73,56,43,146,65,51,180,96,31,5,244,2,9,218,58,188,251,159,189,135,218,149,20,20,186,172,235,177,8,57,9,66,146,211,131,105,48,175,99,74,145,237,172,152,252,207,63,41,76,115,231,65,61,128,163,141,64,216,168,137,117,104,26,137,101,153,75,147,62,184,59,54,103,79,33,29],[12,13,121,70,116,198,57,101,46,61,152,114,92,169,110,226,112,72,251,3,196,96,126,80,144,122,252,137,108,202,87,12,126,131,239,114,71,168,244,167,246,235,232,251,53,161,143,34,20,182,165,221,18,203,140,194,123,21,126,229,15,248,106,24,249,190,156,113,80,169,211,214,4,30,74,52,219,255,145,171,166,113,126,229,76,63,191,133,208,158,75,164,10,197,6,53],[21,227,244,128,153,77,127,250,25,60,66,62,70,127,51,204,220,16,137,191,84,3,15,238,248,8,129,215,185,187,40,144,37,1,132,31,67,142,248,55,89,85,26,130,121,228,201,119,6,97,243,200,96,209,115,27,136,151,108,31,11,44,107,169,84,94,116,143,46,99,135,79,182,197,254,60,173,58,22,207,66,4,95,232,223,11,26,147,84,215,185,33,236,199,171,49],[12,93,231,127,119,48,144,51,130,58,89,109,167,38,138,79,64,235,5,153,78,221,5,7,180,252,165,112,153,214,90,162,91,156,242,254,156,55,251,204,202,166,108,50,111,90,105,180,11,107,211,163,137,192,216,156,155,208,32,143,102,15,40,240,35,172,49,33,159,12,164,243,91,241,94,142,216,110,139,26,183,167,118,216,192,128,160,70,211,90,189,45,176,254,132,51],[19,138,226,58,104,36,246,166,144,226,162,5,83,253,76,40,43,96,183,122,135,144,234,197,198,68,81,2,240,141,153,41,41,134,218,35,236,115,22,101,218,209,43,31,205,109,243,39,7,199,230,139,57,103,191,99,235,169,138,206,127,165,213,253,245,102,227,2,29,98,118,196,6,203,162,2,33,252,197,7,167,179,74,220,62,216,226,19,73,103,62,168,127,201,113,178],[3,60,155,207,141,150,108,99,166,219,206,142,137,153,10,248,249,173,40,68,56,230,37,87,26,67,161,95,66,166,34,101,40,223,119,65,98,104,224,86,187,148,120,228,41,81,175,253,13,239,4,175,110,231,28,96,159,33,131,139,234,167,214,195,203,142,240,163,240,249,46,8,184,210,68,24,207,232,112,155,81,104,137,42,211,92,21,108,248,67,181,170,56,81,190,241],[1,175,112,131,26,228,77,198,150,122,50,131,59,136,28,155,120,73,47,186,114,71,80,214,96,196,17,234,224,114,19,164,229,193,35,217,143,135,21,196,67,171,191,99,140,164,103,60,16,208,178,208,166,175,37,126,255,37,236,117,239,99,3,196,125,168,92,62,90,70,38,129,247,42,20,224,198,32,200,169,245,98,107,95,252,8,186,54,240,20,234,79,178,197,1,131],[25,238,128,140,99,172,167,152,103,24,158,26,132,129,240,108,185,37,175,81,201,247,112,16,229,122,146,0,82,114,174,197,190,210,13,191,50,217,70,170,233,118,179,164,25,166,132,241,0,189,48,149,168,254,249,142,50,112,162,116,41,129,4,115,52,216,81,73,6,4,235,11,52,251,216,144,143,128,150,103,146,81,89,93,152,76,246,113,110,196,103,176,169,168,254,60],[5,221,205,168,135,34,252,199,96,60,127,248,200,141,207,118,80,246,53,8,214,11,223,243,91,57,94,151,232,69,149,38,8,92,11,216,101,11,71,215,237,212,188,24,22,148,82,189,21,231,207,120,169,16,0,253,146,187,240,51,146,226,231,60,87,66,81,162,148,242,237,194,238,135,0,71,55,96,95,132,161,179,140,111,31,42,241,63,8,183,85,253,238,17,182,128],[11,8,88,200,26,145,167,68,0,161,120,139,203,171,161,145,209,127,36,44,221,139,110,1,138,47,69,133,177,233,210,251,216,75,212,61,17,167,232,109,100,21,216,25,222,179,196,185,7,249,34,118,180,163,215,34,23,172,113,160,221,97,108,228,166,0,50,86,4,145,53,123,250,50,126,115,247,206,36,14,21,16,130,28,198,9,193,18,156,107,4,134,106,119,155,149],[12,50,165,78,164,109,120,151,169,39,140,48,30,159,138,12,40,178,139,86,224,236,233,37,24,13,36,71,28,6,223,138,28,125,187,164,77,36,49,42,220,46,171,82,110,152,222,175,15,180,202,229,105,243,145,39,21,106,70,63,90,159,137,187,103,124,116,14,155,237,135,170,227,104,133,10,103,182,47,85,41,29,14,25,30,42,77,33,127,12,171,104,17,225,128,224],[11,172,249,25,151,65,23,41,98,251,46,254,207,48,68,65,5,79,206,34,0,105,83,105,59,18,240,37,23,117,103,52,157,228,215,160,81,221,159,47,224,152,12,208,238,218,27,62,5,130,50,154,8,213,200,6,255,206,153,253,33,96,62,248,168,238,137,55,224,127,128,66,47,189,125,0,228,231,241,146,145,18,216,97,32,23,10,73,162,141,63,215,201,10,68,118],[9,148,20,175,149,7,208,218,233,152,246,86,143,77,231,105,205,163,16,194,23,188,175,132,88,119,163,137,171,184,216,89,132,95,99,23,249,28,139,15,41,31,160,183,47,208,55,154,14,148,1,219,193,237,38,49,139,100,187,111,114,1,207,62,154,222,180,174,33,238,31,119,18,238,226,217,59,119,84,100,219,213,114,111,136,94,233,38,30,188,110,180,26,143,65,96],[18,165,78,229,29,17,126,254,30,107,60,149,111,216,27,14,128,173,234,245,1,107,244,194,35,64,42,141,177,219,149,224,207,162,134,24,99,185,225,215,49,5,151,208,126,189,51,1,9,46,99,152,180,59,2,158,49,16,96,20,95,135,252,212,50,123,48,248,197,28,99,236,246,120,83,109,14,16,212,238,87,252,126,157,188,170,227,116,39,25,164,96,204,216,197,143],[12,188,76,144,56,96,82,225,64,84,69,149,72,229,37,89,211,166,35,253,66,204,145,116,219,252,93,51,60,97,197,8,22,146,105,143,215,118,252,61,49,134,232,88,159,170,180,157,18,24,225,193,44,170,89,14,167,191,119,101,234,103,219,190,228,152,215,163,202,96,136,44,141,75,98,232,218,83,240,182,205,226,201,155,216,62,79,12,8,102,187,83,234,147,153,86],[14,219,238,94,152,39,154,18,235,127,161,74,103,110,142,11,62,63,25,17,238,66,227,114,127,137,242,92,71,87,211,46,83,57,2,47,118,185,243,31,16,245,70,95,42,44,187,118,1,107,253,202,117,131,246,2,79,155,100,63,173,166,116,125,206,87,219,25,220,244,124,39,82,200,17,64,102,150,192,109,205,88,228,62,127,203,175,18,191,152,3,65,71,153,55,29],[17,239,27,12,97,68,89,156,168,143,171,148,197,105,23,8,121,49,14,182,135,163,67,245,3,189,224,113,226,5,154,218,255,172,108,224,190,237,50,221,14,227,21,210,74,114,221,98,15,197,228,216,153,143,70,36,159,187,228,36,125,151,116,229,207,197,94,177,247,69,156,222,204,3,164,61,186,153,113,128,203,202,154,136,93,2,45,59,62,151,94,246,107,241,187,228],[8,36,114,109,46,250,82,34,186,137,251,145,46,10,252,117,19,190,132,210,192,168,213,178,170,245,167,56,107,89,96,203,182,160,88,30,111,198,181,120,197,97,225,171,57,82,163,174,1,159,204,129,100,104,39,106,33,104,17,66,23,172,146,169,137,137,5,124,13,235,144,195,73,109,166,28,138,5,167,245,98,46,51,63,99,61,53,85,22,162,131,128,69,76,41,237],[14,12,123,169,80,124,242,188,154,95,9,173,2,80,150,85,142,225,124,205,172,67,110,146,140,60,18,101,229,33,36,160,253,220,22,114,230,226,32,57,70,44,46,201,213,51,37,9,3,204,84,119,138,100,160,9,87,115,81,152,109,86,33,31,103,169,221,246,36,90,79,106,62,7,43,188,189,194,56,81,234,140,60,244,221,204,43,75,198,95,31,26,198,211,158,184],[22,103,154,4,170,29,62,150,169,189,115,177,19,83,240,233,201,239,44,206,130,142,253,240,162,189,16,232,243,96,186,151,89,233,194,78,181,130,111,237,249,246,72,15,223,172,83,96,1,199,230,21,159,151,64,97,7,110,74,126,95,83,213,151,117,6,184,125,72,162,231,225,165,221,173,204,139,59,250,77,179,234,110,171,125,144,206,193,20,113,35,239,229,161,78,96],[13,43,85,179,44,124,210,123,42,90,211,12,212,197,75,111,31,247,66,96,234,141,224,6,210,2,87,128,167,152,157,56,188,66,158,118,128,230,12,28,116,30,216,43,145,68,65,227,6,57,36,64,22,26,21,30,138,250,57,166,3,136,53,188,129,167,41,48,176,133,20,18,162,242,225,218,117,17,73,45,213,30,112,167,180,25,161,178,150,210,24,39,97,178,243,142],[25,165,8,192,167,197,104,163,175,250,117,93,203,220,81,173,80,3,76,241,242,78,35,46,205,63,108,83,57,127,12,3,142,75,0,20,69,237,192,30,121,200,54,83,181,76,22,104,15,28,43,4,157,68,223,53,216,202,0,107,51,204,129,211,212,243,132,215,60,232,12,58,102,243,220,57,128,247,11,106,48,34,195,34,208,81,14,139,76,143,253,21,46,202,83,100],[0,140,225,165,106,123,0,15,116,166,77,71,110,63,83,213,236,114,176,224,94,79,168,206,112,232,53,150,89,76,23,137,180,46,125,63,213,10,222,129,80,84,113,212,117,72,252,121,3,86,82,179,19,5,69,44,235,22,88,204,48,108,137,20,184,179,140,157,19,191,41,194,116,52,229,141,181,116,139,57,88,99,23,231,127,155,158,64,32,210,213,48,205,232,169,37],[17,137,119,227,110,97,221,181,238,127,81,4,16,165,126,150,134,148,128,74,214,170,47,227,237,2,89,248,144,93,133,220,113,135,80,156,88,107,174,194,104,121,176,97,133,2,199,200,3,221,221,46,135,84,156,57,230,81,2,75,89,185,68,208,214,95,236,219,211,99,45,210,165,63,129,230,131,119,113,118,243,134,119,239,132,113,71,103,100,101,224,168,152,12,27,34],[10,11,47,150,36,70,244,147,67,46,230,182,154,69,94,85,89,183,192,41,204,162,86,112,108,102,196,210,141,84,159,93,33,251,14,230,248,254,83,130,179,33,60,194,21,153,136,217,4,168,66,67,56,190,45,101,179,208,176,231,19,143,11,222,111,46,181,69,212,33,160,24,94,75,41,203,31,61,2,57,113,235,75,98,59,45,76,120,245,104,5,45,135,242,215,189],[7,24,223,11,89,133,125,180,1,106,237,83,199,213,15,116,55,101,138,229,28,182,49,201,111,220,119,145,91,81,149,86,38,64,99,12,170,39,203,111,85,21,118,126,231,39,236,134,21,17,112,61,254,89,199,232,65,183,95,248,196,161,184,152,81,39,28,16,220,89,131,11,48,242,75,47,243,172,142,14,33,106,30,112,142,130,162,58,45,98,121,166,122,68,103,123],[10,252,118,127,116,58,239,74,163,138,84,251,18,174,123,111,163,158,79,212,173,167,102,40,202,208,149,60,104,53,210,208,174,134,123,112,12,54,113,155,114,2,207,166,146,109,153,186,6,248,46,242,199,29,123,245,219,167,255,38,168,93,170,26,211,122,99,90,39,187,169,96,157,254,109,80,159,108,82,153,218,159,201,150,201,22,89,34,110,96,135,95,180,16,65,190],[20,112,247,219,15,202,160,10,67,15,181,187,58,66,102,137,230,97,161,11,140,19,154,185,195,97,48,182,122,119,26,119,236,173,195,80,78,156,230,59,209,24,184,219,49,48,104,239,21,252,188,184,96,34,222,119,214,255,172,66,70,97,21,222,67,97,230,204,21,24,159,80,150,22,182,58,127,142,174,53,24,231,198,62,151,182,178,19,84,63,47,23,54,18,200,41],[14,243,97,48,74,218,97,253,134,194,102,241,135,11,108,132,103,154,136,98,64,169,222,252,57,222,104,99,161,22,200,146,59,55,38,148,59,27,175,0,112,225,194,38,196,89,62,255,8,171,108,62,48,124,144,211,36,249,150,83,173,239,186,158,96,145,153,170,168,223,204,218,72,18,54,219,186,162,85,249,181,101,242,101,81,55,100,90,196,66,36,4,156,152,231,140],[3,248,172,131,48,132,13,138,177,93,170,39,207,117,178,197,128,188,190,2,19,1,103,239,18,38,207,75,105,51,91,92,62,253,224,32,129,68,135,240,152,209,31,133,4,67,55,196,2,104,187,162,254,4,24,25,243,40,64,178,164,205,50,23,150,125,43,103,235,125,116,20,19,23,182,88,150,59,179,233,39,204,145,187,73,82,229,5,69,160,132,152,70,73,235,125],[18,254,39,190,159,176,98,240,25,93,82,148,56,240,250,250,78,105,85,193,155,125,191,117,187,26,55,234,197,229,71,197,138,34,62,208,213,0,142,194,102,39,222,255,151,201,61,146,22,209,156,85,33,67,61,3,223,63,58,176,159,10,104,171,241,166,241,69,196,48,55,234,231,189,197,217,230,202,1,236,94,107,78,35,254,102,22,196,103,140,106,16,80,194,176,60],[4,4,212,63,5,222,79,46,78,249,37,203,64,13,0,35,218,15,156,67,17,52,26,134,55,143,228,44,250,14,161,69,108,87,170,138,138,173,16,21,60,152,158,59,96,105,151,195,21,128,45,3,208,245,125,59,56,177,190,186,19,223,62,233,177,128,229,61,44,149,13,165,217,172,5,140,113,114,171,196,101,216,62,235,57,101,195,15,78,98,227,3,95,114,2,113],[23,183,221,249,237,222,216,72,241,164,248,228,202,56,110,61,54,70,167,79,31,136,149,76,73,148,182,39,96,113,31,208,147,194,81,13,49,148,42,195,58,124,236,223,60,171,104,73,11,66,88,177,179,139,42,119,125,254,176,144,142,144,210,130,142,93,42,217,50,60,202,221,41,95,64,164,17,48,156,129,149,138,126,45,246,157,124,1,141,232,246,2,148,9,168,43],[5,219,194,70,122,248,44,251,227,241,29,157,106,150,228,93,225,181,103,49,33,232,133,32,205,253,187,180,13,182,129,18,46,32,147,72,144,55,194,136,247,108,94,82,97,131,230,91,9,97,123,120,18,113,6,204,121,174,237,234,3,254,115,34,184,222,185,196,35,61,71,120,146,12,58,162,202,109,26,20,94,86,7,153,162,188,59,45,153,249,100,81,96,95,173,205],[4,120,18,137,88,155,74,98,239,40,89,255,13,187,100,8,167,131,44,78,163,214,214,47,133,194,77,235,17,87,208,233,170,88,93,98,16,210,94,192,44,202,242,110,176,227,218,61,15,89,186,18,10,111,117,215,144,245,254,29,118,144,201,43,170,182,252,181,88,119,77,151,240,162,240,188,215,90,197,58,26,166,192,253,129,196,5,199,197,196,13,220,110,177,104,45],[23,206,125,79,3,223,45,140,49,56,226,235,103,244,123,140,120,53,30,21,147,122,70,193,63,39,85,44,115,81,96,20,72,137,140,77,83,101,5,37,26,197,228,202,33,60,2,152,0,216,33,226,38,30,81,12,171,45,235,153,255,202,243,220,147,254,66,212,77,53,79,54,153,18,119,90,113,217,183,122,82,2,181,5,128,132,122,254,72,5,57,83,151,59,157,207],[22,151,117,246,11,242,6,226,154,193,42,7,170,95,163,148,250,251,35,224,73,244,149,16,55,40,213,34,86,89,157,52,26,102,106,138,72,212,188,252,133,64,9,224,101,198,13,243,22,82,215,186,223,183,161,146,24,105,72,76,108,121,87,37,248,93,131,183,138,171,56,235,1,7,216,182,238,129,227,171,57,134,177,177,102,38,122,122,168,42,118,129,231,121,71,8],[5,207,90,222,229,228,44,200,194,163,107,203,254,248,173,197,94,205,200,59,83,80,62,177,231,139,169,227,193,125,90,159,210,139,125,173,249,244,56,184,246,255,47,224,39,176,99,237,4,62,141,59,43,162,197,144,68,103,185,59,24,125,243,97,16,241,18,166,198,223,5,15,156,111,58,104,232,26,68,188,192,229,165,156,229,123,198,235,149,162,249,133,89,122,8,180],[18,27,147,47,70,206,22,72,104,60,237,54,104,72,31,20,134,153,79,34,190,227,226,63,164,206,255,82,52,41,117,56,221,29,165,109,105,223,85,162,66,22,248,34,224,14,235,166,1,249,28,26,252,49,70,69,156,175,112,166,69,78,173,27,165,157,20,104,99,35,22,160,5,82,206,177,225,110,174,221,207,213,142,141,223,108,48,227,210,61,61,78,178,33,188,35],[15,235,66,168,166,23,38,226,8,208,123,35,222,105,75,184,32,108,125,89,88,104,75,160,207,56,254,187,131,130,119,59,65,147,56,7,11,241,190,101,21,219,94,90,45,1,154,212,15,45,47,253,183,111,95,103,225,142,172,118,10,157,65,104,76,185,56,8,240,91,167,34,233,137,119,199,186,214,122,159,185,167,49,20,20,190,83,157,196,7,66,141,108,103,129,47],[8,233,210,100,170,131,115,241,22,25,65,63,9,233,250,80,222,213,236,77,45,12,120,86,66,60,213,6,198,24,5,253,60,180,78,113,230,45,241,110,148,119,80,4,245,179,51,22,1,80,61,226,26,143,163,49,231,39,0,130,22,46,254,232,94,35,183,36,120,73,157,108,3,73,138,168,50,54,254,129,215,46,187,40,220,178,245,21,181,141,69,184,250,36,209,202],[19,48,184,7,21,120,207,47,232,180,134,225,162,153,233,29,9,97,46,69,233,114,2,190,127,145,190,187,173,241,121,161,143,230,190,183,63,140,57,237,124,92,251,129,2,171,124,100,4,50,7,43,98,183,224,102,119,169,72,72,156,133,115,83,40,13,40,167,242,117,230,201,21,206,154,66,168,49,69,244,208,108,137,209,49,177,43,12,114,106,106,139,202,133,79,63],[12,174,167,121,215,224,159,209,46,154,191,234,65,86,158,138,140,42,58,113,153,81,235,15,126,184,37,115,94,105,45,205,125,13,173,217,59,192,88,5,131,123,9,143,176,38,255,56,13,227,206,38,56,179,174,242,229,141,78,184,122,226,18,14,246,85,134,124,77,93,115,57,28,191,5,38,151,104,64,59,59,253,58,97,51,3,135,60,243,103,223,79,22,197,101,217],[16,204,155,144,216,63,255,7,27,10,239,173,171,209,89,32,37,186,188,236,183,30,113,130,121,220,184,231,30,54,172,8,11,198,45,203,174,177,157,48,122,51,93,169,10,188,175,74,17,81,255,250,75,109,217,194,180,12,116,140,20,149,82,233,180,110,150,183,113,217,189,196,153,13,120,37,107,196,69,113,182,86,1,211,208,201,138,202,211,66,55,55,96,53,214,245],[20,3,46,25,197,131,167,142,135,88,227,3,8,137,139,252,39,80,230,234,203,147,180,145,206,137,114,133,44,209,100,21,162,47,140,254,110,81,73,33,249,244,251,183,32,215,87,52,9,156,93,113,23,56,19,106,250,182,40,70,235,208,90,121,159,145,114,243,51,144,238,22,115,108,118,184,210,222,84,128,191,30,32,44,175,135,9,179,97,98,192,111,70,177,134,83],[14,163,137,162,190,95,59,118,149,204,199,51,149,74,70,49,110,110,109,45,253,78,7,70,24,77,101,20,248,137,196,178,224,106,197,155,252,66,44,198,205,194,64,87,12,17,194,66,24,171,2,86,181,36,41,19,243,142,18,226,148,44,96,42,113,185,96,237,246,84,48,97,130,178,33,95,223,28,3,50,248,52,73,98,188,32,237,54,70,85,128,242,61,236,6,93],[0,221,216,40,140,40,181,149,30,98,77,193,156,1,123,17,193,137,197,185,89,111,231,182,148,188,0,194,72,108,197,6,16,29,120,53,0,92,105,76,8,249,111,254,12,49,243,37,10,164,171,255,130,51,43,116,224,16,167,99,243,186,173,38,17,131,141,76,86,246,67,200,182,144,99,120,243,37,201,247,195,118,129,112,234,243,222,207,86,138,224,111,227,7,223,12],[7,68,239,22,45,179,222,188,36,16,174,51,179,67,73,53,132,197,105,46,122,213,130,135,211,150,68,220,205,221,34,95,10,184,65,78,50,153,72,90,65,254,213,32,60,108,18,231,20,110,130,177,51,237,238,145,97,145,246,215,42,227,255,77,30,231,251,209,112,145,156,217,199,143,118,38,212,161,45,233,192,11,227,8,138,160,23,143,33,221,107,62,210,213,50,117],[23,137,232,201,44,83,197,234,141,102,108,199,144,114,213,120,214,16,254,6,242,196,147,30,131,165,180,84,64,121,102,26,194,70,247,172,3,252,103,18,244,243,64,140,109,37,223,214,10,216,23,130,44,17,219,17,116,76,34,171,110,101,17,51,204,246,93,33,28,249,178,214,102,220,201,0,23,149,156,62,32,153,100,6,111,220,96,0,210,189,108,133,63,120,3,218],[23,231,45,63,97,73,26,152,66,162,26,94,61,42,121,130,220,10,167,134,28,3,215,70,112,109,76,11,60,37,21,180,83,120,132,222,30,137,59,181,62,237,187,153,119,112,72,34,3,189,220,128,141,75,240,195,108,142,131,244,170,116,57,102,47,190,2,15,206,184,254,69,130,63,110,226,247,14,223,212,111,168,100,116,143,179,15,47,143,209,201,128,219,87,252,243],[0,158,215,175,62,152,180,138,142,166,22,165,8,134,30,225,85,153,148,82,18,83,141,165,52,73,67,87,77,2,5,153,230,207,74,54,18,58,84,241,170,110,3,105,162,188,47,217,1,34,237,216,201,90,107,219,162,72,27,229,79,86,12,212,3,119,161,8,171,159,212,96,104,79,47,72,220,181,125,31,138,145,48,3,97,138,239,50,114,234,153,148,182,219,39,17],[19,137,17,248,252,100,190,100,159,1,214,146,26,206,113,118,209,16,60,172,2,167,191,192,128,41,62,253,231,23,118,147,53,166,107,2,91,197,205,3,11,202,248,240,78,88,125,33,24,78,86,140,130,8,232,193,255,126,161,7,108,54,24,232,241,197,9,54,65,240,194,141,155,16,245,175,143,183,238,42,182,1,193,41,179,133,59,38,201,4,132,219,49,91,219,10],[23,130,20,180,84,244,151,103,68,240,104,157,102,32,103,187,20,95,123,127,64,251,109,148,38,176,45,167,56,103,25,165,166,53,162,246,60,235,36,234,28,179,185,143,63,48,25,115,18,125,48,137,231,85,75,32,22,228,243,83,198,221,197,142,18,191,81,190,197,13,27,191,95,104,79,230,205,70,253,158,85,153,52,98,108,74,57,165,251,133,112,71,144,160,8,66],[11,114,234,95,127,58,64,112,247,200,105,204,218,112,244,59,61,31,135,93,97,180,181,160,116,187,132,83,64,77,99,11,106,95,22,78,148,33,70,2,244,180,202,82,240,241,13,246,25,53,145,198,69,205,199,40,125,195,61,65,66,109,62,207,213,63,231,125,198,192,234,254,12,22,128,157,137,248,69,158,42,47,67,229,81,108,255,59,127,34,197,59,80,183,230,164],[23,31,165,206,130,81,25,85,12,106,101,189,151,79,230,237,168,243,130,33,239,220,92,88,124,158,136,87,72,133,193,35,48,33,104,103,14,31,211,165,4,74,171,41,228,183,209,57,11,95,185,178,12,99,112,191,190,4,81,106,12,14,108,139,226,124,128,11,196,93,188,230,169,153,103,208,247,8,54,51,91,98,176,208,253,135,126,81,148,107,203,127,52,14,86,27],[6,249,154,205,44,50,148,129,20,27,89,31,20,136,115,223,255,219,238,127,66,201,209,218,217,186,17,184,185,248,243,239,40,4,23,209,186,61,56,55,60,119,91,181,126,204,213,81,2,208,185,113,226,211,55,162,1,40,119,226,252,103,14,119,4,78,83,241,156,69,0,89,174,201,0,116,52,245,140,65,219,90,171,71,195,6,153,227,37,40,127,193,165,45,48,96],[6,236,122,44,161,22,118,184,180,137,110,102,55,133,180,23,41,223,17,105,17,37,49,209,254,235,53,119,230,184,1,36,252,242,10,53,133,184,59,120,110,179,157,138,153,221,134,147,1,164,166,99,63,136,43,248,223,209,220,10,196,61,216,247,162,15,29,172,182,149,20,80,43,54,92,174,236,146,78,198,36,54,2,120,55,190,182,159,25,158,105,251,182,61,19,181],[23,11,68,202,133,105,65,25,141,236,63,189,61,36,155,102,126,109,111,163,162,87,248,166,121,67,107,33,243,121,169,226,255,44,97,252,195,114,203,168,131,53,75,179,10,162,224,151,15,188,157,82,180,229,187,205,75,18,137,165,18,244,14,3,37,189,171,11,27,127,105,197,16,24,119,188,31,172,153,115,229,250,220,72,20,44,67,200,224,123,49,145,22,232,129,13],[16,253,177,229,43,240,109,42,30,167,188,117,222,110,84,14,118,216,148,148,27,143,103,172,152,65,203,40,111,209,111,2,104,12,210,1,220,21,137,102,57,163,33,181,196,179,226,161,11,34,93,168,10,52,202,183,162,230,248,33,43,147,68,240,217,231,121,3,242,2,152,216,234,32,255,115,1,177,207,141,98,230,213,253,186,110,207,96,218,225,53,169,250,224,106,178],[14,61,8,50,216,15,118,61,124,25,142,71,177,167,88,94,49,17,218,5,56,164,18,80,97,98,67,22,3,247,86,63,9,223,93,152,130,19,22,185,176,242,156,233,123,153,135,139,24,87,185,123,126,23,96,185,90,140,58,137,82,250,188,159,174,126,223,105,46,121,73,217,230,153,90,106,197,230,57,88,92,165,69,182,81,184,68,94,252,117,177,90,131,140,172,101],[25,232,234,31,106,201,234,214,112,90,67,195,119,7,44,241,183,81,145,105,81,246,180,71,208,40,132,164,173,83,203,93,62,8,178,109,84,142,219,169,222,228,40,38,10,46,157,233,9,246,160,189,211,143,234,68,253,121,222,17,176,5,11,28,177,206,204,179,100,190,83,69,84,65,89,174,129,156,150,135,209,53,213,216,220,64,184,243,181,231,187,174,203,178,121,210],[3,133,244,116,77,180,226,96,231,123,34,253,250,48,162,163,77,55,39,133,203,132,147,165,76,167,13,83,124,4,12,9,51,245,254,108,222,50,21,240,17,227,132,230,100,222,52,34,10,219,138,156,166,26,232,81,203,109,10,100,15,108,63,85,34,18,211,171,29,149,182,56,146,200,100,3,114,194,19,178,134,219,134,45,177,61,144,37,12,152,205,6,192,195,109,177],[7,134,117,211,46,127,240,209,170,198,184,115,193,134,100,114,250,125,90,232,158,153,56,13,91,18,32,192,184,109,178,246,138,215,190,235,179,111,140,254,169,106,86,42,65,125,49,90,15,131,203,247,248,29,117,86,155,148,53,237,139,105,97,83,17,77,251,127,139,39,15,212,198,212,247,241,132,131,97,203,244,161,123,86,191,162,62,136,88,122,248,149,207,147,101,161],[24,232,178,183,233,95,110,55,59,1,154,210,222,40,175,31,66,26,173,232,67,201,188,166,230,241,208,208,184,64,195,108,196,35,46,102,43,141,135,178,26,31,20,12,201,44,195,191,4,88,78,198,160,23,75,204,47,189,20,118,8,56,147,125,119,167,232,43,76,55,113,34,210,150,99,59,16,36,137,245,201,243,250,7,31,162,249,240,244,255,53,93,246,164,130,247],[2,135,26,67,184,230,32,55,108,86,240,131,35,5,125,18,96,242,237,52,232,116,139,48,129,93,128,161,138,51,107,220,164,79,120,194,190,58,184,91,182,196,89,115,0,53,234,134,4,32,211,237,183,8,193,145,26,28,130,160,253,222,24,150,139,38,11,148,13,173,31,221,248,20,117,129,41,144,212,73,28,95,189,67,195,41,60,120,82,74,227,72,194,137,117,204],[20,145,84,49,62,180,98,154,16,144,234,34,162,213,74,219,114,126,218,247,75,236,98,122,218,156,160,44,23,1,176,130,90,22,90,11,71,251,100,190,156,16,40,14,39,164,125,142,6,32,101,19,179,158,207,75,120,18,29,248,255,30,28,40,58,202,48,64,20,154,236,186,88,70,139,27,224,163,249,159,112,88,63,21,16,91,189,233,32,94,7,43,108,47,218,30],[1,183,145,2,146,122,161,3,50,16,134,103,86,114,150,254,0,223,70,225,231,87,210,12,160,17,35,8,31,234,91,35,226,114,147,72,24,85,51,105,227,195,204,173,208,22,143,128,16,84,111,172,10,49,122,40,231,215,250,29,37,19,231,88,158,186,249,209,34,190,151,209,13,225,105,227,218,0,27,51,9,159,117,143,254,86,86,179,4,226,198,241,224,120,128,152],[14,226,228,161,47,59,181,194,75,252,182,112,8,217,186,147,193,174,33,217,88,92,176,173,254,118,10,54,83,144,170,24,99,62,189,192,50,150,108,49,32,24,198,51,165,168,118,249,3,96,69,44,150,92,114,167,253,179,165,222,55,182,16,150,156,112,115,137,11,19,21,146,218,216,166,152,219,1,228,118,119,75,137,165,78,73,154,185,85,80,71,164,175,124,66,27],[18,100,149,34,98,180,118,234,115,103,160,238,13,139,49,17,245,34,14,165,183,92,28,34,205,218,212,99,151,174,114,129,45,66,107,56,125,130,249,174,32,13,39,158,166,97,185,193,25,196,16,2,213,124,13,48,119,168,183,120,37,204,21,9,123,25,80,177,126,154,237,37,170,237,240,11,72,60,198,145,75,223,37,74,133,167,18,247,118,41,89,217,6,79,58,247],[2,42,142,50,22,239,234,54,131,203,28,126,149,26,106,247,35,17,41,96,98,169,239,66,148,15,30,60,232,39,77,14,220,108,203,145,32,58,89,47,187,243,120,229,128,100,190,177,19,40,101,110,176,241,100,124,34,170,76,79,204,122,167,203,200,231,11,205,14,209,99,29,64,172,215,126,86,182,59,197,199,38,171,187,144,243,227,72,63,35,215,188,187,115,147,89],[16,68,51,176,135,178,93,85,48,128,230,72,177,100,101,12,192,107,114,229,237,11,137,56,71,229,251,203,80,38,135,127,254,241,124,130,49,242,34,247,134,144,94,60,101,240,154,234,23,21,87,198,164,228,138,237,5,119,8,83,166,76,43,57,43,108,33,184,114,207,204,83,134,103,71,251,24,82,241,14,169,11,152,116,198,29,11,172,0,251,180,175,251,121,246,119],[2,145,41,148,166,147,190,5,100,41,202,97,86,143,200,184,82,32,56,10,244,86,62,107,172,2,106,46,90,3,73,71,106,181,35,118,69,27,242,151,155,152,143,230,238,29,154,17,14,21,153,9,213,225,161,176,142,137,147,67,1,22,134,204,27,214,81,199,228,4,148,0,110,123,76,227,92,205,93,240,18,254,196,11,198,90,131,115,27,184,129,42,133,132,106,158],[19,235,124,36,120,49,212,135,123,159,204,123,4,26,166,15,227,115,216,40,172,124,81,120,32,232,206,153,166,200,213,10,25,92,225,243,232,102,156,200,147,97,38,180,108,83,3,19,20,150,242,240,192,224,14,245,177,175,73,61,109,185,51,234,101,212,156,248,211,220,203,110,181,175,110,149,128,60,183,244,27,12,50,46,22,131,33,233,104,88,136,62,209,98,51,86],[8,158,178,246,243,102,79,19,21,246,126,159,235,212,147,203,231,244,155,144,175,71,23,37,63,31,239,156,238,49,26,189,74,18,164,218,234,36,155,199,48,61,146,155,230,195,170,250,14,234,48,70,222,162,38,72,124,229,240,125,187,236,98,208,49,10,153,152,231,37,157,181,237,109,243,224,141,25,37,27,252,172,8,157,182,76,159,62,230,143,222,26,206,13,146,129],[8,43,127,238,81,10,186,192,237,195,164,179,157,3,49,110,125,91,86,38,19,170,243,96,137,225,87,58,234,231,158,159,139,69,223,31,204,215,104,138,238,220,88,6,49,169,221,76,15,125,52,235,119,143,66,193,221,199,214,8,78,168,36,74,14,40,241,59,165,107,161,63,114,18,182,254,90,64,89,144,237,124,229,77,155,19,214,165,37,183,70,171,186,156,45,201],[2,93,142,100,103,103,97,1,4,34,231,210,67,13,129,133,241,236,68,138,40,212,121,7,251,74,20,239,40,165,106,193,90,182,121,44,129,206,29,188,242,47,44,126,152,203,208,58,17,214,64,191,188,86,218,224,215,20,90,22,132,216,137,219,138,25,18,161,6,86,233,5,93,41,23,90,227,168,7,49,232,103,196,154,249,1,143,123,221,54,184,129,3,107,205,160],[23,64,231,140,179,78,211,99,33,41,56,46,150,68,49,178,164,45,101,35,79,129,233,32,91,19,88,195,8,130,215,183,74,28,252,231,88,210,233,213,125,249,230,32,221,251,36,26,17,15,182,201,174,235,76,143,71,218,194,96,103,138,202,8,15,142,129,96,155,73,246,242,102,116,159,70,140,53,30,175,57,73,175,253,28,187,166,79,175,249,199,27,154,194,7,116],[13,133,22,59,239,202,34,14,204,203,140,248,201,199,2,210,148,197,134,143,210,21,172,177,199,154,187,60,85,124,118,237,89,36,107,68,188,203,219,198,195,230,7,251,129,133,124,56,12,34,89,180,15,135,129,187,31,156,204,125,225,117,121,238,223,175,187,195,223,239,161,7,95,13,8,197,196,65,171,185,245,30,96,218,136,3,65,234,123,49,19,3,65,5,12,49],[8,51,18,81,114,75,43,209,104,1,84,33,94,108,25,116,94,110,151,96,176,190,216,151,170,1,31,200,226,189,59,73,157,106,116,169,71,72,217,24,217,190,76,35,104,74,253,96,18,115,38,180,228,213,131,84,41,38,17,19,114,138,183,155,12,83,230,218,14,255,242,73,91,19,86,224,207,13,42,41,156,143,6,151,240,122,12,13,77,184,225,74,199,214,211,195],[24,216,50,60,121,66,211,174,208,134,25,242,252,129,180,157,107,194,74,79,201,15,157,234,176,57,96,93,156,116,212,17,199,72,65,241,119,128,132,61,178,55,254,197,151,106,130,3,7,67,61,248,243,197,185,194,56,108,252,117,195,81,105,16,189,246,99,102,112,60,21,161,18,207,156,122,165,39,201,124,37,253,23,171,232,45,102,213,209,154,0,110,254,42,143,78],[1,127,237,185,198,201,144,231,124,150,200,54,237,118,192,9,163,184,24,156,38,205,171,46,153,224,252,61,204,229,154,99,153,163,181,106,105,42,162,150,120,161,237,146,23,5,74,10,21,189,53,89,63,157,197,112,249,230,185,127,119,84,173,54,9,130,2,149,208,0,46,111,83,118,213,194,34,3,101,243,165,144,254,171,102,192,13,119,138,28,217,90,26,91,123,162],[3,74,114,186,140,185,106,110,158,8,250,234,63,174,240,84,128,25,60,158,20,7,179,17,91,145,185,208,165,178,191,165,235,113,109,112,119,217,47,129,157,119,98,151,73,220,243,141,11,63,3,99,160,140,51,237,111,140,68,98,119,58,134,155,2,179,126,133,105,193,11,134,231,95,204,223,147,96,181,83,62,212,33,107,195,28,198,63,145,103,24,140,103,62,215,244],[25,56,110,188,198,16,113,235,177,110,54,68,128,199,177,104,21,164,75,228,242,184,98,162,17,181,32,190,88,150,94,143,164,151,187,197,150,142,127,166,161,243,126,10,21,92,212,206,0,206,59,102,174,47,129,163,242,47,146,50,153,190,144,80,60,169,122,181,12,82,138,231,25,135,173,125,66,132,68,118,117,163,140,189,127,29,182,14,181,250,22,249,49,42,93,3],[1,7,5,75,81,212,220,2,119,186,126,39,226,45,51,140,64,193,251,13,247,173,210,77,26,27,216,67,93,101,29,145,27,48,96,29,107,8,143,154,242,25,92,107,178,247,75,117,3,133,131,159,214,151,16,219,151,141,111,28,64,74,71,181,0,37,120,242,42,180,84,145,219,56,4,6,82,100,29,109,129,253,48,27,232,97,174,254,132,204,190,152,197,47,5,111],[13,200,18,231,170,73,54,64,220,122,128,250,139,186,126,99,94,30,210,206,105,147,202,40,82,145,69,58,26,29,232,208,191,93,97,99,102,125,147,127,43,59,218,92,175,102,134,91,9,143,99,51,80,142,36,195,30,34,24,21,169,8,182,182,222,128,11,206,61,224,62,169,190,122,28,74,104,229,54,97,70,184,62,113,41,184,144,187,238,248,209,203,133,107,106,29],[23,152,210,229,194,59,102,246,62,150,55,37,145,221,142,103,244,106,218,197,58,119,183,133,99,168,136,22,161,20,145,82,90,132,197,30,203,154,55,240,105,244,6,202,147,28,35,12,13,251,22,71,227,72,35,201,33,54,26,231,82,218,101,53,48,158,176,94,204,187,215,186,191,244,129,38,245,19,249,223,61,10,236,173,228,86,127,33,139,92,90,116,104,53,65,117],[14,153,231,33,46,229,10,138,122,232,76,93,75,105,196,27,64,228,224,125,101,237,246,45,237,156,251,92,43,194,48,65,50,176,197,43,249,167,27,140,127,204,222,212,134,9,15,229,15,199,25,120,158,183,31,1,212,103,74,126,7,78,158,85,141,31,100,182,130,6,114,80,20,43,120,98,86,35,119,253,125,127,189,148,63,104,73,95,189,227,12,248,149,84,193,242],[1,211,145,194,199,207,114,104,247,174,6,126,140,15,22,60,68,149,153,164,202,130,71,71,74,24,203,116,39,156,231,131,230,73,218,194,56,189,248,11,215,110,74,39,159,30,165,158,10,11,50,48,159,240,159,56,8,179,73,58,75,156,167,55,48,82,137,88,98,132,155,107,109,87,235,62,165,174,155,15,101,53,249,92,180,178,213,217,161,124,54,195,99,111,10,68],[2,248,148,72,179,138,206,173,248,251,132,24,202,250,51,50,173,162,117,175,35,173,146,0,14,7,91,147,7,233,14,121,76,157,27,17,227,64,214,178,222,217,92,10,152,119,94,108,3,106,221,182,234,99,204,68,121,237,91,17,58,14,41,163,135,189,233,56,191,159,222,89,132,233,165,180,240,6,245,209,157,66,186,125,11,173,186,170,233,36,72,44,51,139,95,80],[6,244,142,237,254,43,102,210,164,196,135,28,105,52,113,245,44,251,139,101,109,23,104,142,154,54,209,197,117,84,92,92,129,242,93,205,79,1,84,155,128,87,94,201,41,238,183,114,0,189,15,137,239,219,145,237,96,41,22,25,197,96,174,247,177,13,53,57,141,101,239,110,205,78,128,64,130,28,145,110,97,179,53,248,69,131,154,2,253,245,186,49,104,214,197,157],[23,18,38,138,247,102,105,151,221,124,156,102,142,24,142,189,32,133,150,95,101,41,113,95,46,19,141,79,65,185,78,126,107,146,61,137,220,10,12,190,6,7,117,216,30,139,76,189,24,138,252,233,175,133,50,54,229,151,130,166,24,124,114,81,28,130,61,242,172,38,107,192,189,192,97,130,47,181,40,135,179,231,232,184,100,126,159,247,45,100,131,182,242,94,196,175],[16,8,11,124,89,148,82,138,82,53,184,226,116,74,38,102,44,139,245,146,179,46,180,186,168,68,166,15,37,45,148,139,5,149,220,99,113,127,235,13,7,109,213,187,98,214,42,61,6,75,8,248,66,64,85,233,186,5,30,240,154,50,210,223,87,22,101,55,179,177,16,62,149,253,126,53,214,155,39,14,49,200,249,183,24,169,252,118,157,174,107,94,39,249,20,144],[17,51,216,14,136,57,81,117,22,255,89,160,44,231,109,250,128,191,155,66,21,50,104,224,66,228,12,180,69,22,157,210,159,112,98,24,89,113,41,179,3,78,96,93,153,195,34,88,1,18,102,10,214,199,203,182,186,75,232,251,62,233,180,7,113,36,204,176,36,96,171,56,85,4,255,59,45,207,243,153,250,170,6,16,200,196,202,126,170,104,85,233,17,6,122,142],[4,198,132,209,49,158,45,128,77,140,75,192,154,124,251,252,187,206,58,73,245,226,165,16,224,173,30,151,233,194,20,97,146,248,80,104,173,115,16,1,35,160,182,248,132,105,90,181,25,192,91,253,163,186,60,168,177,187,160,117,129,81,16,254,244,133,240,114,219,108,210,239,139,159,142,17,127,165,185,3,197,159,240,213,148,244,130,181,189,227,52,233,89,192,57,187],[8,220,88,231,244,162,64,6,253,23,48,130,210,142,192,125,13,115,125,167,87,186,41,223,210,205,181,11,167,27,29,244,140,3,106,101,25,8,247,240,202,177,193,46,249,197,198,189,17,134,80,47,249,115,124,110,163,85,123,134,19,10,58,74,163,17,28,97,212,122,133,105,147,100,185,141,104,201,114,209,235,190,211,192,240,129,75,110,138,215,210,165,9,31,219,76],[4,104,52,237,49,57,140,181,252,32,119,81,252,196,86,209,155,16,108,203,65,235,94,147,230,201,0,210,44,226,140,85,198,225,196,1,70,146,119,218,222,207,146,152,139,38,111,86,4,215,127,186,109,28,171,82,81,91,172,155,192,254,23,5,110,80,198,0,145,229,123,151,235,42,181,226,94,69,186,108,76,86,223,26,232,177,133,199,243,128,244,7,190,62,208,158],[12,140,75,25,247,175,188,95,177,56,248,108,70,91,41,196,238,232,135,196,85,82,111,131,125,181,163,116,163,98,67,194,221,114,115,161,142,199,217,245,157,53,98,16,116,186,165,140,7,30,223,174,234,32,243,121,119,178,27,102,149,69,47,99,57,170,149,176,90,144,54,48,255,122,76,33,106,162,200,147,216,157,242,133,244,180,38,211,130,11,127,149,213,167,82,104],[9,185,129,204,251,252,190,223,221,22,249,55,90,14,232,80,221,124,79,4,232,211,218,35,128,7,242,144,211,195,75,90,55,174,202,23,148,96,93,96,185,89,220,228,33,177,206,248,4,252,237,188,197,250,171,21,91,93,133,124,241,168,40,145,228,22,234,152,86,110,178,17,100,196,39,60,128,24,139,238,100,51,126,235,10,43,47,187,120,189,227,209,251,236,74,217],[16,86,63,58,100,224,149,128,172,75,33,6,74,56,140,189,141,123,52,21,129,41,36,186,124,87,254,245,156,59,248,148,166,88,26,152,20,115,173,29,222,80,15,77,106,29,50,228,25,173,195,198,116,201,6,41,160,92,230,216,147,143,195,212,120,250,254,65,28,228,7,6,198,111,102,174,76,84,49,55,58,103,68,218,179,178,147,113,193,155,56,160,198,9,42,131],[2,107,237,248,121,73,199,42,127,154,242,81,99,159,105,184,100,41,86,2,48,158,253,148,132,46,87,47,185,95,205,205,200,249,163,0,30,88,33,123,116,178,241,119,22,124,23,59,12,126,63,118,56,16,3,174,101,179,173,210,227,183,165,120,176,210,117,186,188,190,235,155,87,54,195,83,189,12,227,162,79,42,208,36,5,7,233,97,190,238,60,236,136,235,25,47],[7,240,87,149,141,174,113,208,227,4,202,157,198,210,79,115,245,134,104,196,115,86,45,146,187,102,96,145,239,69,167,70,76,103,99,34,178,101,136,248,236,226,250,120,176,110,159,126,19,166,219,30,179,253,150,190,117,75,55,77,184,187,78,155,111,81,67,215,229,120,70,77,203,226,21,62,155,178,204,98,2,48,85,153,51,4,103,24,241,131,227,113,94,87,54,83],[11,150,188,48,98,125,171,180,241,126,94,179,135,225,53,184,181,50,16,95,160,152,38,217,224,51,164,234,233,213,172,142,148,237,12,144,33,132,60,148,211,221,93,52,197,141,140,118,4,107,96,109,33,234,189,175,230,116,166,60,56,110,40,108,140,57,165,13,14,215,211,231,13,232,153,159,14,13,177,218,15,234,69,240,200,206,82,230,32,252,202,237,237,143,24,50],[17,79,236,144,242,168,123,130,135,7,197,19,143,236,151,197,43,164,228,55,115,150,61,192,228,87,4,129,171,103,69,66,156,115,238,196,153,76,211,184,203,82,109,28,228,116,29,77,6,155,76,198,234,167,250,143,47,253,176,50,165,223,28,174,128,134,240,151,123,29,19,44,163,188,153,164,228,18,138,205,0,57,21,11,202,53,168,10,69,20,171,68,94,89,198,249],[1,252,72,13,235,4,112,17,244,218,247,66,155,55,174,147,19,74,87,179,153,132,35,48,215,79,247,200,74,214,57,1,135,49,29,247,86,22,241,79,48,85,249,229,179,88,8,13,16,83,95,58,104,38,8,216,33,107,81,181,88,202,102,136,216,171,97,218,248,233,178,250,223,179,234,6,90,255,39,109,35,76,65,181,135,69,98,96,244,177,101,160,126,125,184,64],[23,226,241,47,238,174,31,50,77,204,70,162,48,84,137,21,191,236,197,251,41,228,176,247,220,105,162,24,134,50,178,126,181,187,254,150,89,95,90,193,66,223,114,253,186,240,200,99,6,216,213,161,246,41,193,32,175,96,235,88,39,137,254,114,166,171,0,152,243,129,209,34,218,120,19,103,53,27,187,117,28,92,155,220,23,224,221,242,17,162,223,92,6,166,85,40],[8,222,240,195,162,120,7,204,230,36,21,94,238,242,45,249,52,118,7,162,156,229,56,121,244,104,220,89,190,102,114,104,116,7,162,218,40,254,34,144,244,98,201,144,159,84,55,233,17,10,107,131,254,135,198,172,44,83,100,119,109,10,57,89,192,226,223,234,179,175,20,126,18,249,30,166,78,170,219,249,128,217,229,238,148,27,220,97,163,115,229,100,204,231,242,34],[11,238,29,128,64,41,251,64,79,1,48,35,202,249,79,182,204,89,180,135,20,96,114,232,194,39,31,169,241,244,184,233,33,137,186,155,184,231,123,160,247,112,131,238,121,54,235,145,3,186,101,218,153,178,58,114,137,57,99,218,188,239,177,172,20,57,110,15,198,80,110,70,209,58,1,9,252,191,37,29,135,215,85,83,118,51,169,211,166,130,66,204,231,140,111,112],[15,144,65,111,147,141,228,127,40,4,236,179,86,196,145,38,135,38,162,212,132,20,141,20,101,1,245,218,117,184,61,106,15,160,102,102,167,211,99,132,90,74,28,95,50,196,191,110,1,36,75,176,205,223,6,71,22,127,63,227,202,54,62,98,175,224,132,118,223,197,49,203,146,107,143,199,103,202,247,249,13,14,32,185,130,43,208,97,143,29,159,213,66,196,172,54],[19,174,1,247,207,239,217,0,35,46,68,243,173,54,104,83,66,114,209,254,209,174,126,246,231,172,246,8,150,83,144,9,241,10,236,159,36,96,214,42,216,234,220,252,95,172,86,118,24,232,94,100,171,111,46,190,74,114,164,224,12,84,199,32,87,60,35,123,140,228,139,30,42,188,248,54,21,155,182,173,145,190,81,255,200,128,243,209,110,143,132,157,26,6,128,166],[21,165,147,35,247,250,58,195,6,44,56,108,8,21,232,69,23,70,174,166,28,173,95,100,41,113,80,221,29,189,172,174,59,190,194,25,232,199,62,117,57,94,21,194,221,114,213,42,5,73,73,247,29,143,233,28,140,165,173,53,214,55,126,177,86,228,117,80,158,118,154,77,105,246,129,47,4,235,143,207,241,63,158,98,138,142,234,221,173,125,71,210,29,107,180,61],[10,167,174,154,128,164,73,164,82,150,62,65,226,3,133,8,196,60,191,95,163,102,124,201,192,134,118,198,10,1,111,158,64,53,158,10,104,110,28,77,141,147,138,214,72,142,13,140,5,40,134,180,14,37,60,24,157,89,108,140,182,60,184,36,25,103,184,139,83,163,13,103,37,214,149,195,58,95,254,169,118,71,110,168,104,132,237,191,248,18,95,13,58,41,128,253],[5,83,40,109,251,206,232,155,129,252,34,72,238,141,110,105,90,162,211,197,243,129,114,74,18,101,159,159,80,59,122,171,86,9,182,144,206,1,130,67,142,176,140,147,189,188,30,201,8,48,72,72,41,166,150,5,195,207,91,31,134,177,177,51,147,90,8,81,33,182,221,55,54,173,53,186,42,74,107,74,51,169,125,224,63,70,127,102,190,238,235,173,239,86,211,66],[11,91,25,194,178,219,226,64,155,172,60,10,103,81,89,223,129,17,60,138,239,59,77,231,106,104,47,222,36,106,113,29,222,163,67,248,26,67,160,225,243,248,206,69,78,125,159,175,15,118,56,156,108,166,210,234,228,189,188,89,74,144,181,162,23,95,17,49,182,99,2,91,71,188,17,62,28,167,222,118,99,89,234,129,43,116,180,164,215,163,110,0,103,27,147,140],[12,136,216,134,189,222,166,216,73,142,154,90,231,95,31,221,35,226,157,153,240,157,177,126,255,60,219,215,207,58,115,121,133,112,2,68,112,169,134,20,174,111,227,147,252,163,134,229,22,81,12,186,227,170,55,115,227,227,146,163,231,51,4,29,59,155,123,159,30,215,160,35,46,80,229,15,111,175,133,63,106,60,217,1,110,144,159,111,94,57,0,241,134,41,160,107],[1,110,165,62,117,39,59,164,229,251,240,147,144,235,120,150,5,160,173,239,235,190,234,5,19,49,50,129,60,11,150,239,140,177,227,160,19,246,82,177,236,25,160,98,115,247,10,179,9,54,234,239,138,97,141,162,110,102,140,42,240,90,253,174,36,203,6,131,219,171,1,216,145,130,148,91,193,23,15,103,88,59,55,151,126,36,103,182,192,103,235,95,68,244,158,36],[25,72,63,116,87,23,24,202,252,58,66,42,238,110,235,174,11,110,18,154,234,40,152,196,94,236,251,223,79,120,171,44,167,104,253,147,13,87,74,81,164,28,115,116,15,113,214,130,6,255,143,77,222,25,35,200,124,156,221,40,208,161,213,229,163,255,218,108,69,113,104,209,95,122,75,75,218,211,227,197,75,153,51,164,246,7,17,113,148,238,196,106,210,185,210,140],[20,145,155,75,153,21,154,86,103,37,153,215,120,11,127,220,255,149,17,5,11,202,195,138,187,147,214,173,154,197,42,151,82,112,16,54,174,24,98,38,225,241,55,245,110,130,164,223,20,86,4,199,246,220,112,205,243,103,246,98,93,175,11,79,119,100,126,103,73,187,241,5,160,52,99,238,252,92,142,198,3,144,92,224,16,117,133,43,102,155,178,188,186,76,186,56],[9,215,100,206,190,217,216,187,33,85,171,190,67,185,74,105,228,74,30,192,227,141,197,133,11,46,224,143,201,220,187,255,1,226,230,137,93,30,171,76,226,105,37,127,138,203,0,148,7,149,91,117,216,243,170,125,44,120,58,78,107,179,168,240,36,70,165,62,148,90,139,222,112,160,41,159,155,21,210,184,184,213,46,220,3,55,227,183,205,53,146,188,192,253,227,64],[0,89,162,180,157,102,20,47,90,144,51,194,97,240,4,2,29,138,157,46,193,155,174,11,82,250,161,160,13,4,111,35,199,254,11,157,153,139,203,102,124,11,12,110,30,129,204,201,3,19,233,57,187,73,254,104,91,94,185,221,60,227,120,123,22,210,192,59,222,235,154,77,104,225,69,161,176,20,116,167,165,81,206,171,2,55,180,5,232,202,210,46,102,75,74,225],[4,250,207,48,27,63,159,62,48,2,208,98,32,100,31,101,176,223,191,119,182,210,64,122,35,38,95,39,55,136,241,127,110,19,65,168,98,162,165,73,20,174,211,193,15,33,96,208,14,103,55,181,196,4,226,54,19,219,180,102,82,252,239,78,10,5,175,178,130,210,107,23,133,149,184,230,219,233,65,50,85,194,76,154,24,166,9,0,240,205,179,151,151,192,229,43],[0,185,157,103,228,28,240,24,84,189,199,23,93,95,45,233,118,151,182,203,210,96,145,240,36,171,250,220,97,115,116,122,153,68,161,242,233,2,230,119,249,86,166,71,29,36,136,233,5,77,195,139,187,249,74,52,63,215,86,64,1,199,215,255,186,242,11,237,229,252,113,167,66,155,26,188,35,215,205,226,163,182,107,149,191,222,202,31,244,42,96,19,58,126,27,37],[5,237,97,165,189,80,159,169,6,255,149,102,7,78,10,211,114,133,58,115,66,18,228,109,190,22,161,141,115,168,201,155,204,28,37,131,14,212,1,67,124,128,204,242,182,17,152,43,5,228,169,138,218,134,143,225,101,245,36,131,152,189,205,46,111,200,16,212,172,81,126,120,217,181,217,24,103,139,7,121,143,239,140,2,46,182,13,173,122,132,42,162,68,105,167,50],[1,102,63,157,212,108,131,68,214,98,87,180,20,159,165,199,228,97,5,1,173,82,11,51,125,161,80,45,236,156,97,56,163,205,163,184,36,7,106,249,83,11,188,47,4,225,76,127,21,101,158,175,49,246,148,95,25,175,83,77,252,218,54,185,66,34,247,39,115,159,72,173,42,251,177,242,13,166,79,61,217,250,203,180,212,62,68,69,170,143,78,26,134,46,197,55],[16,188,225,230,111,233,188,219,226,203,128,46,180,150,126,15,94,243,79,145,133,177,195,68,56,194,160,84,124,234,143,57,26,206,175,236,249,8,24,139,100,186,55,12,114,235,188,189,17,166,142,106,242,122,47,222,107,125,99,225,82,133,113,22,168,226,75,243,134,92,204,46,74,143,122,93,222,190,189,215,202,5,179,12,90,148,46,72,49,144,42,36,193,198,82,248],[7,90,45,151,195,73,166,219,39,190,161,222,116,141,127,63,45,202,141,65,206,178,156,4,173,169,222,2,179,15,99,212,30,27,176,98,75,215,238,35,57,140,211,1,185,133,185,157,4,66,20,162,226,234,247,38,158,62,205,142,118,126,230,147,197,26,16,102,183,9,61,191,50,141,239,45,65,53,182,131,129,147,63,5,197,17,39,187,213,90,238,23,84,174,176,148],[7,124,188,113,39,7,246,124,199,63,65,226,71,18,83,214,9,156,218,178,130,61,174,200,42,206,237,28,19,185,235,47,103,254,8,123,227,137,26,114,125,22,50,34,134,93,54,107,17,197,156,100,60,105,56,222,60,98,80,13,176,99,24,96,117,239,244,141,25,79,129,134,13,102,147,117,60,175,107,127,83,185,172,189,23,154,247,67,238,35,169,177,36,165,54,31],[9,158,121,20,109,38,34,5,93,173,164,126,196,229,129,36,14,176,119,107,215,196,182,13,233,79,191,198,207,155,150,192,224,102,255,162,50,122,223,138,157,200,30,169,129,14,23,115,0,137,9,82,51,115,176,51,82,191,50,127,36,233,225,191,230,115,5,45,174,151,247,192,206,6,36,149,171,0,208,30,70,64,101,30,138,124,127,68,168,207,188,33,114,233,195,94],[3,207,114,232,198,220,110,222,13,118,193,1,235,63,138,245,245,46,37,141,69,15,13,104,32,107,252,137,63,136,85,192,153,172,185,197,26,154,78,219,178,199,20,30,17,254,243,126,25,45,238,66,209,26,154,223,31,8,210,199,50,208,165,99,172,208,139,224,68,80,147,50,196,122,165,162,230,213,248,234,172,176,114,10,132,125,51,82,110,70,122,207,25,118,229,63],[10,249,140,16,238,142,133,61,133,188,33,103,99,135,182,212,0,180,187,131,83,94,110,234,139,5,140,180,244,243,229,173,23,32,192,1,151,247,43,79,81,167,25,98,124,51,165,36,9,250,41,240,245,41,75,110,54,101,185,122,139,210,80,2,41,59,223,42,246,119,162,164,98,124,15,205,253,159,212,202,40,55,180,173,215,248,160,23,245,227,43,156,247,39,165,23],[9,186,3,195,165,92,124,21,39,90,168,205,230,96,183,206,98,62,15,119,129,94,83,185,237,221,242,113,215,141,168,18,211,93,24,216,63,214,244,117,232,38,234,40,106,248,118,110,16,85,164,229,62,109,110,138,167,71,110,87,175,221,79,49,124,160,243,134,226,168,11,209,146,206,235,70,83,26,46,245,39,83,253,52,165,60,36,18,113,63,242,10,155,158,3,31],[14,148,177,20,20,126,158,76,242,143,7,209,30,38,217,249,23,52,4,119,89,179,16,125,152,13,135,1,34,49,46,28,161,67,105,222,196,207,75,49,204,65,63,29,105,10,250,204,19,93,203,39,81,222,60,113,134,157,209,183,253,91,97,162,71,132,11,40,109,61,198,26,7,84,42,111,18,35,87,134,195,103,233,58,45,32,103,88,171,1,64,243,65,119,76,108],[14,80,234,44,79,13,202,207,61,196,10,14,54,105,156,171,25,181,251,38,162,66,166,128,31,139,240,249,242,41,67,32,166,204,59,159,95,141,216,107,73,48,89,18,230,135,158,175,16,215,181,254,251,49,31,93,52,35,8,94,244,84,60,142,240,57,57,114,185,222,49,157,8,202,203,166,242,122,202,209,73,51,228,10,198,46,72,160,167,97,181,254,18,168,50,169],[11,78,70,109,26,11,108,251,72,187,243,5,211,117,76,170,188,204,55,134,151,95,60,142,85,37,238,93,198,167,211,201,34,188,53,42,235,31,134,96,38,78,156,161,76,244,110,63,17,161,108,150,25,133,214,104,109,220,135,103,179,71,135,5,216,195,172,176,63,185,115,82,245,13,75,162,61,62,34,117,69,188,96,138,81,100,48,250,149,203,64,210,46,164,75,73],[5,102,126,35,115,178,16,166,116,248,82,212,64,79,116,217,93,67,254,233,31,200,235,166,243,41,69,195,138,193,26,130,221,181,31,73,195,216,93,27,220,118,120,183,29,14,150,50,1,54,71,45,171,221,69,7,92,40,64,116,76,5,80,224,167,178,10,170,116,229,102,91,26,168,24,189,220,136,153,221,209,22,226,141,66,96,83,249,122,189,197,172,118,206,94,34],[10,168,175,104,75,98,77,253,36,164,182,143,221,10,109,160,245,146,27,247,86,246,31,167,216,24,116,243,120,22,200,207,8,204,20,54,99,198,225,157,251,171,44,82,36,7,154,60,19,216,23,198,150,202,113,77,2,39,92,154,46,252,142,250,100,183,1,43,66,207,122,12,111,136,8,148,75,208,95,57,118,29,221,6,19,217,228,15,176,171,210,171,84,13,150,187],[1,231,139,225,245,182,21,2,107,96,135,243,187,129,10,176,87,160,38,85,219,221,34,63,22,110,144,117,150,107,137,39,62,128,38,231,100,116,227,15,251,102,64,123,170,198,167,161,19,216,78,125,67,20,37,233,23,80,134,10,142,241,36,228,186,15,239,247,204,88,168,58,96,222,195,113,248,109,162,205,175,69,241,108,247,224,33,0,38,214,31,100,22,227,75,158],[8,252,100,130,94,231,160,239,111,142,146,46,176,170,104,254,243,127,244,127,250,222,138,82,5,149,189,136,18,149,203,95,91,144,78,253,246,198,126,148,226,209,245,197,83,231,176,49,0,51,84,181,168,115,202,170,64,147,65,208,198,69,164,246,31,197,134,153,148,19,87,93,72,65,102,103,189,26,72,109,102,83,9,190,8,50,129,192,166,142,217,12,63,115,95,112],[13,149,127,81,199,224,32,108,210,228,3,245,230,6,216,31,89,149,165,118,220,194,53,192,217,148,160,135,149,60,184,81,98,79,152,181,252,88,43,108,243,249,65,221,60,76,86,81,7,175,23,213,125,224,216,240,158,61,156,42,153,109,9,244,195,116,104,114,120,179,143,12,142,24,49,109,189,176,221,186,210,201,114,88,52,25,47,145,134,196,89,216,9,244,230,135],[2,190,76,99,137,115,8,129,26,174,37,211,252,191,187,91,46,45,225,161,115,251,17,86,6,81,129,202,67,255,59,93,87,81,48,25,148,212,70,64,159,31,207,10,116,84,180,102,6,158,119,238,114,23,236,71,171,206,161,44,77,85,121,236,75,135,166,15,176,1,72,30,158,88,36,94,50,55,223,110,16,130,107,95,95,209,6,0,184,22,87,223,97,32,56,138],[16,164,202,56,61,56,138,237,100,85,86,45,49,99,142,128,195,232,24,206,231,38,165,10,226,105,117,185,54,78,1,248,169,129,178,210,13,123,80,1,119,100,197,26,239,158,206,196,2,150,34,228,26,63,0,39,164,230,230,131,29,173,148,131,142,169,178,150,235,6,152,221,221,178,8,84,153,130,59,135,154,168,146,154,225,90,49,211,42,209,251,58,83,121,208,2],[25,106,100,103,8,184,192,248,100,109,141,154,158,221,118,8,123,128,140,63,49,124,202,80,201,94,177,210,213,212,185,203,109,223,95,251,6,233,89,58,88,253,116,217,151,202,41,236,17,235,136,234,91,3,4,76,83,124,246,11,81,39,249,253,36,66,56,108,71,178,202,163,179,78,157,41,81,225,98,90,199,71,55,14,253,168,38,9,104,157,209,6,163,222,71,124],[23,190,251,196,185,227,118,124,214,55,150,225,22,110,230,107,180,157,118,42,157,41,144,255,75,98,81,5,81,62,36,83,33,55,69,95,32,6,102,81,18,147,66,25,91,39,105,62,7,127,191,244,200,204,217,179,60,183,167,207,183,70,190,2,254,220,38,56,247,171,162,104,203,174,202,223,148,178,175,3,27,112,83,230,233,137,212,20,103,63,58,112,143,149,16,189],[13,229,85,33,203,206,141,166,236,109,253,149,151,37,199,8,117,135,114,216,196,53,246,9,156,3,218,66,254,105,80,165,46,151,48,218,59,236,42,204,39,142,135,163,192,185,178,209,15,174,76,124,104,36,146,132,121,194,73,149,41,59,113,116,124,142,254,100,239,165,76,0,93,86,183,132,159,160,24,97,20,4,19,68,197,215,249,15,75,250,111,246,192,65,106,254],[4,217,3,169,29,42,200,149,191,58,46,227,89,157,66,153,205,144,124,255,92,93,32,133,244,63,119,109,241,251,144,234,111,74,141,35,104,130,249,196,110,89,183,136,65,211,249,197,15,2,166,54,250,76,22,212,4,106,114,61,55,137,229,128,30,14,170,149,43,105,148,18,189,161,143,180,69,255,118,52,17,22,18,230,197,91,39,186,41,227,7,169,213,24,194,199],[3,71,132,74,249,114,47,79,245,47,59,35,202,238,188,145,126,51,117,107,12,246,75,77,115,95,233,20,60,127,36,81,96,88,76,186,125,53,112,68,194,111,116,93,75,207,141,215,12,4,19,132,5,104,55,110,217,20,202,81,138,157,229,116,78,68,246,133,62,235,234,120,106,46,24,214,7,228,130,16,74,38,56,20,96,13,255,77,132,63,128,102,251,40,38,5],[7,59,139,215,229,159,112,46,28,52,82,17,129,76,61,193,134,172,0,238,30,23,169,238,123,171,221,242,143,93,154,83,240,212,45,10,77,62,235,84,201,155,41,73,127,201,217,48,22,30,60,253,111,198,70,251,186,189,151,35,207,165,180,224,46,164,151,2,67,130,251,82,5,115,76,178,225,4,134,235,170,83,115,249,45,197,19,190,248,103,178,71,19,37,82,178],[1,126,176,199,202,1,16,138,133,208,100,45,97,161,179,165,56,164,96,129,120,109,17,172,195,11,30,126,73,81,193,20,38,158,123,175,65,119,183,21,120,39,176,154,225,159,197,84,7,23,219,80,40,250,83,103,94,133,114,5,207,221,70,92,191,43,108,171,145,142,59,86,27,38,224,243,18,186,108,89,94,142,127,114,32,254,99,163,33,189,208,14,59,30,203,142],[5,26,148,216,75,199,194,102,46,32,78,91,60,232,132,78,141,158,131,249,155,99,0,28,154,225,6,9,221,35,93,137,157,222,123,140,97,90,200,158,142,102,114,199,49,143,253,75,17,58,88,192,167,177,55,94,28,62,168,210,32,147,159,104,138,160,133,87,55,255,69,205,104,85,212,254,191,133,13,235,66,188,245,90,233,132,39,198,214,182,57,157,111,116,133,226],[21,0,44,171,180,248,247,193,81,217,240,197,198,30,64,166,200,60,24,189,194,179,92,57,180,94,76,28,173,52,13,6,117,47,134,28,106,13,75,76,105,27,58,223,89,211,14,249,25,212,163,83,181,100,47,31,234,131,130,192,51,197,237,229,12,167,59,173,2,134,34,8,232,121,90,69,112,215,12,136,60,133,180,20,70,78,63,181,86,48,145,66,227,164,248,175],[10,113,180,32,165,216,138,254,168,89,123,87,86,29,184,69,91,252,198,144,1,193,192,50,2,16,97,201,131,226,199,192,48,223,175,149,92,88,209,156,26,160,173,155,181,198,173,156,2,5,8,184,254,2,150,204,215,25,76,49,82,202,5,6,112,115,224,178,30,170,162,166,61,76,104,80,237,2,46,44,202,84,54,124,178,61,25,28,215,207,27,169,150,34,46,246],[23,125,49,75,104,166,34,142,61,12,214,119,131,7,143,93,37,12,77,72,169,171,233,4,156,25,20,107,180,12,117,96,208,24,132,26,212,111,75,160,9,175,224,247,240,159,246,132,6,174,205,198,234,123,230,86,130,197,3,84,169,216,194,217,175,69,185,55,217,66,228,81,11,211,8,197,255,226,140,167,69,234,50,116,46,199,107,158,192,62,176,254,19,2,45,64],[14,178,229,180,185,160,104,174,182,25,245,27,201,241,237,98,145,92,72,248,193,225,118,137,107,141,222,104,107,2,33,207,51,11,137,58,87,85,238,31,24,127,112,181,178,38,200,50,10,197,117,215,223,196,165,186,47,251,255,100,137,108,80,88,43,208,67,60,13,173,47,93,200,46,123,37,207,189,232,151,202,86,88,207,10,77,31,172,200,244,236,164,200,220,113,86],[10,223,21,190,253,116,178,160,250,247,7,109,3,69,220,204,150,123,47,165,171,60,58,5,154,139,54,223,109,165,20,241,224,26,135,87,235,1,7,198,21,172,23,40,221,126,43,33,9,70,72,246,219,84,130,61,115,120,118,225,233,123,135,212,171,74,97,247,2,85,232,153,63,86,145,171,129,129,148,58,89,228,51,45,91,177,194,4,81,189,62,146,115,53,121,238],[8,165,109,124,188,144,178,68,117,61,218,18,149,191,144,109,174,117,95,227,207,103,190,30,172,83,65,172,111,3,226,61,138,57,157,38,192,200,75,216,175,58,138,102,139,81,120,45,7,49,156,189,157,107,14,6,24,123,110,111,86,45,91,167,113,255,166,179,90,89,155,200,11,216,212,176,189,138,181,152,166,22,148,119,182,95,197,203,191,219,185,151,204,135,47,124],[8,209,61,204,10,198,249,153,224,204,26,139,134,114,95,118,182,174,170,170,104,29,196,236,106,17,118,48,118,179,7,231,26,78,65,248,12,166,237,229,13,217,191,198,229,55,5,145,9,146,144,197,155,223,234,153,90,244,159,231,205,191,86,216,169,20,0,23,143,143,12,176,154,221,236,238,40,41,224,52,42,152,98,88,1,61,165,135,97,132,202,201,65,231,85,31],[16,209,208,114,155,74,194,214,254,134,213,31,252,50,118,254,122,183,253,174,25,68,171,212,132,131,34,163,152,206,230,25,26,241,36,228,174,249,210,221,82,153,148,221,161,177,5,13,22,18,157,237,235,241,168,214,81,185,98,187,182,86,80,239,160,150,74,76,137,200,101,33,123,184,72,90,172,24,34,57,193,227,94,112,176,53,46,62,43,213,231,190,77,61,210,49],[19,38,162,96,219,49,167,135,177,211,6,59,75,231,5,112,100,59,115,247,150,153,64,150,213,113,87,240,90,212,196,31,70,190,220,167,189,246,250,193,214,238,233,129,124,243,35,154,21,117,92,240,135,164,249,131,237,113,183,130,235,156,139,11,12,74,93,94,222,151,246,244,70,179,75,101,75,205,36,129,74,221,215,148,146,129,49,1,0,158,69,166,81,221,180,105],[17,132,123,101,222,254,36,151,78,140,51,48,153,13,61,161,228,118,235,78,233,28,97,104,155,202,153,34,243,187,2,192,12,130,253,251,32,243,81,142,220,83,191,174,127,201,83,79,14,25,85,150,226,147,41,131,134,180,66,160,49,176,112,250,164,36,33,216,201,25,7,250,74,20,11,38,111,237,50,143,121,222,68,147,173,176,11,139,77,82,230,30,26,98,72,140],[17,78,68,173,84,123,252,85,255,168,143,4,253,93,22,37,53,238,135,52,36,196,248,158,180,128,163,253,187,182,195,138,120,237,153,59,27,21,73,61,35,143,98,69,100,212,232,52,17,200,239,47,64,133,210,101,111,195,141,116,80,98,84,82,186,214,38,177,6,172,34,55,5,1,99,44,65,77,143,98,21,225,119,221,18,96,82,98,64,76,244,171,205,2,175,11],[11,72,179,194,172,171,26,17,121,15,141,45,213,185,152,244,206,231,43,160,223,94,118,172,186,159,109,210,158,234,238,181,57,167,106,15,158,255,109,94,44,21,27,124,20,155,104,5,21,56,144,104,53,110,137,19,115,221,145,175,169,108,84,31,227,208,130,240,205,71,174,200,163,244,199,197,16,176,44,232,133,59,5,80,125,204,2,194,252,211,111,39,89,212,220,166],[11,195,190,57,164,22,86,7,45,32,242,75,5,56,121,101,98,100,127,187,11,86,37,56,107,153,79,63,137,124,15,27,71,107,72,21,75,157,70,109,9,57,247,69,28,138,82,18,13,106,123,132,174,92,176,38,160,254,42,224,33,134,153,145,131,207,14,25,203,191,43,66,218,138,65,62,254,218,22,105,252,79,119,64,236,34,188,47,228,51,244,63,177,59,160,192],[23,183,6,57,64,115,107,190,207,83,54,25,223,216,53,234,69,146,19,247,14,249,180,64,50,117,70,253,64,44,131,149,91,214,249,200,186,18,212,249,254,41,59,194,182,87,98,61,21,226,252,155,97,195,57,189,240,168,12,16,39,104,199,236,234,162,207,111,48,69,88,182,48,80,183,1,226,105,119,19,47,10,60,188,255,104,33,221,235,246,22,12,114,40,4,195],[15,81,69,197,21,107,134,109,246,221,45,143,184,206,197,132,118,18,62,202,129,200,235,113,169,203,84,213,209,184,3,102,107,104,189,180,14,167,135,218,37,34,137,147,185,100,16,135,20,253,149,88,149,240,88,156,132,110,144,26,210,109,146,123,84,73,225,73,188,251,240,110,94,32,249,194,164,102,143,31,183,230,202,62,213,172,120,179,103,126,149,56,91,153,245,132],[23,62,70,240,171,204,48,242,225,7,165,127,77,190,32,38,155,56,211,215,2,65,201,94,14,195,0,195,37,78,225,62,178,94,195,109,160,101,242,222,162,4,153,83,101,141,198,244,0,56,70,216,147,84,190,95,235,41,115,171,169,101,54,167,230,140,130,172,22,142,21,105,241,254,101,143,175,127,211,180,208,250,180,117,254,179,103,177,130,108,15,13,180,176,144,36],[4,201,250,141,49,60,171,245,26,73,46,78,218,174,205,131,100,252,165,188,225,83,135,247,125,97,81,127,100,102,221,231,159,68,143,148,158,124,163,196,18,217,215,223,225,231,12,226,17,100,52,12,228,186,19,158,242,217,45,205,175,175,173,70,26,58,33,2,143,207,193,128,203,147,166,100,56,2,223,237,6,192,60,28,213,123,78,37,212,45,34,171,22,25,169,159],[12,108,193,194,121,156,27,238,219,116,2,202,154,199,33,223,196,101,99,223,154,174,55,39,220,237,98,168,40,105,140,152,6,183,27,152,76,70,35,22,103,90,38,120,133,102,1,27,18,192,33,236,232,158,249,89,237,33,144,186,253,213,24,224,46,175,92,177,232,239,50,181,187,231,53,23,58,183,17,127,212,213,186,56,175,186,131,143,201,81,122,213,226,20,30,30],[12,80,107,140,42,32,62,224,237,154,122,70,202,125,82,154,156,227,58,149,5,103,2,102,22,153,59,56,144,62,16,29,93,100,174,199,108,138,53,163,107,1,56,235,135,235,233,223,0,0,206,249,249,23,207,212,125,97,213,1,89,184,136,110,130,187,92,111,84,155,182,241,151,81,75,74,253,160,48,68,204,39,216,38,186,12,48,94,30,235,30,179,204,223,35,11],[9,163,218,189,133,97,66,184,225,214,43,202,99,239,168,31,126,197,133,84,9,251,217,56,63,130,146,226,180,100,21,167,250,201,65,164,177,25,153,220,73,40,183,148,179,20,49,126,16,108,176,131,244,240,91,200,59,232,79,220,24,33,187,132,10,136,237,155,58,59,227,174,75,229,245,184,165,248,222,8,50,194,127,164,123,139,63,90,84,68,105,77,104,150,182,67],[14,46,117,95,254,23,148,107,114,209,114,247,23,145,39,100,179,32,81,20,206,35,10,111,146,211,63,231,175,51,122,106,26,73,196,94,29,43,19,125,227,199,224,251,157,14,14,202,8,75,176,186,93,249,21,11,101,198,0,109,201,63,167,104,161,138,225,117,30,56,207,214,4,79,56,103,61,163,88,145,106,216,201,144,25,124,97,246,174,143,53,177,199,203,99,218],[15,216,178,205,45,78,184,212,25,111,61,127,162,89,234,196,106,116,102,133,200,246,206,77,191,177,81,105,23,31,240,167,249,201,148,94,219,104,37,233,19,20,247,201,186,27,177,68,10,62,238,253,83,102,99,54,35,43,159,49,218,251,43,245,200,218,146,99,51,90,113,244,0,80,31,174,17,108,235,215,177,208,233,187,230,126,50,33,6,21,237,67,7,69,133,227],[8,98,217,132,113,193,121,176,220,153,200,167,52,190,101,25,175,210,90,148,210,223,35,102,237,139,17,54,29,32,92,2,198,246,80,231,115,203,185,60,14,176,207,228,141,162,57,35,2,56,45,27,142,236,184,234,190,192,11,44,18,141,106,251,80,113,207,233,231,35,44,139,50,102,230,251,11,166,177,176,107,229,134,191,247,111,161,51,160,104,3,149,18,159,216,96],[12,71,228,159,165,21,146,86,218,183,115,184,15,225,70,22,148,166,13,75,149,215,251,49,39,253,164,131,93,56,50,28,161,82,165,92,152,192,139,173,158,246,222,164,18,164,7,200,15,182,110,55,52,23,220,44,23,67,160,66,165,25,201,54,168,19,7,118,43,232,36,12,239,32,134,177,229,189,212,136,157,218,38,136,75,166,152,232,243,240,159,211,212,252,73,152],[22,141,54,235,191,233,229,33,95,103,168,246,101,165,229,155,49,184,141,142,185,147,210,22,203,2,77,225,150,95,124,105,44,239,13,173,28,220,27,240,3,23,215,176,33,97,32,158,11,237,62,143,162,215,187,163,29,149,130,207,156,97,128,215,203,26,212,48,71,10,123,161,255,210,79,45,195,102,221,215,114,149,207,217,105,61,55,188,42,2,131,45,27,217,2,4],[5,212,161,78,4,131,184,214,129,216,145,73,143,241,53,6,78,234,8,49,69,203,217,159,247,138,237,113,186,250,76,211,197,6,150,159,54,152,80,226,77,229,205,222,67,230,160,186,7,220,127,12,102,146,243,13,91,177,89,243,225,60,149,36,219,197,131,72,166,242,254,184,229,123,134,55,88,28,77,96,84,7,231,49,158,54,107,20,207,253,158,37,125,23,98,110],[11,85,28,67,143,12,193,63,252,207,223,136,165,146,119,151,39,224,112,105,8,85,144,87,94,250,136,146,226,154,31,188,107,214,138,16,159,242,8,46,83,164,20,253,115,160,108,242,15,183,236,184,157,25,201,225,19,48,172,166,96,103,80,173,239,109,68,92,58,62,25,140,202,118,126,170,142,192,77,175,228,150,92,147,115,203,156,142,135,193,103,169,33,238,1,88],[8,41,196,121,0,165,223,227,182,228,122,174,137,229,248,204,133,239,139,211,18,78,229,99,91,227,196,231,231,74,19,226,103,74,109,192,20,133,79,88,178,185,136,46,111,91,240,157,15,181,23,99,178,227,59,119,10,207,67,236,108,160,36,199,160,56,162,46,220,243,127,111,58,247,73,105,167,175,139,41,67,197,146,36,59,18,241,60,133,21,135,144,76,199,241,228],[12,178,36,201,186,86,195,198,39,254,244,56,142,102,236,244,179,120,150,32,162,164,97,17,205,196,95,139,161,246,104,153,87,229,42,173,129,49,155,66,52,130,84,110,27,124,128,21,22,37,232,104,60,67,67,123,179,165,208,210,47,44,84,209,181,60,205,224,184,197,167,84,30,172,3,101,119,121,238,13,228,61,64,31,67,97,35,54,219,215,147,237,124,69,232,31],[17,250,184,245,195,22,85,115,69,160,183,35,140,37,50,184,226,65,240,80,224,134,168,204,159,71,246,63,116,79,137,40,43,66,219,253,38,248,164,10,226,156,55,181,49,58,139,109,7,109,171,172,102,87,131,208,195,12,58,129,83,135,165,226,32,54,182,252,122,135,153,141,243,56,216,113,204,117,88,136,232,244,31,225,236,96,140,8,17,209,207,85,174,95,176,243],[3,162,246,74,240,54,162,213,106,90,169,120,2,112,66,84,251,29,118,240,196,34,28,66,130,58,215,28,252,218,158,176,41,235,46,149,154,162,107,34,1,168,213,122,156,90,43,157,7,3,36,58,189,211,249,119,53,158,204,59,178,240,53,168,177,131,83,29,255,92,56,55,78,120,58,107,136,194,92,19,27,236,27,185,145,55,146,72,93,228,226,187,130,221,156,87],[23,201,70,255,131,9,40,165,222,146,143,243,68,225,216,181,219,21,2,48,76,169,51,14,104,180,60,71,59,180,41,154,126,181,64,99,76,104,171,64,63,119,120,247,175,192,107,206,6,8,67,255,195,59,175,143,137,227,30,129,18,250,43,192,103,87,82,75,232,169,191,142,144,6,153,125,98,3,241,94,189,191,220,125,64,211,157,84,115,61,13,3,125,180,126,158],[20,140,103,126,61,115,238,121,235,108,44,165,188,64,75,7,97,126,149,195,218,155,121,201,195,241,67,78,229,14,162,28,76,155,128,117,33,229,209,97,121,230,107,47,33,255,3,221,22,146,191,189,86,126,24,173,44,137,147,236,25,218,26,91,200,197,52,72,176,2,154,3,57,212,189,202,28,48,136,220,174,254,172,204,79,28,232,234,27,19,193,44,188,247,199,74],[15,107,133,186,244,237,171,193,87,213,195,28,215,154,179,39,27,21,43,233,155,101,49,39,70,39,87,236,109,63,95,146,212,196,40,167,58,104,170,207,99,253,104,162,230,149,71,48,7,7,141,219,65,1,195,39,152,175,54,55,76,29,2,57,249,198,109,255,146,148,32,243,189,71,96,252,52,23,241,214,14,78,224,170,195,59,52,84,142,83,131,66,177,57,62,87],[22,166,64,35,58,84,43,211,173,174,212,210,188,217,194,193,159,149,173,123,125,128,155,195,27,40,254,202,7,163,187,2,206,113,77,191,22,84,98,114,140,215,90,18,99,145,19,65,13,96,175,250,211,179,19,210,236,174,209,84,172,228,165,79,72,198,171,38,116,93,149,65,78,129,36,177,51,85,180,234,5,123,187,81,51,255,194,239,135,136,222,204,162,217,101,169],[8,128,184,4,221,206,21,75,11,92,91,219,139,138,111,116,21,141,189,143,122,224,22,232,234,87,128,162,178,234,99,143,177,145,185,160,20,26,37,140,147,140,8,217,249,39,180,100,18,39,215,223,157,101,12,201,92,49,139,229,206,168,229,192,110,250,200,64,107,214,87,244,110,181,165,131,214,162,47,236,12,103,81,84,29,55,97,101,214,146,10,155,254,1,33,202],[22,147,59,116,100,236,110,84,118,83,20,182,18,237,82,43,226,111,128,189,5,166,92,179,238,43,236,36,171,247,43,8,121,230,119,104,186,59,73,126,224,197,73,210,6,169,51,31,12,10,149,192,168,197,197,215,104,27,216,130,235,32,205,28,163,198,247,172,151,99,15,218,142,63,5,216,113,133,120,198,245,193,58,197,103,224,132,251,62,51,131,13,251,196,222,194],[5,177,232,232,99,176,166,239,191,244,117,124,219,9,194,170,37,219,44,0,220,130,208,117,219,155,186,59,5,54,170,235,0,8,99,108,142,118,238,124,80,20,163,166,226,83,98,183,16,241,54,253,225,142,11,240,71,20,24,13,199,217,73,201,60,83,198,154,17,57,185,223,181,44,14,173,127,135,22,125,42,62,42,101,119,67,205,58,123,156,76,168,103,47,179,231],[8,50,154,225,254,99,130,34,42,235,234,129,205,149,4,130,98,34,8,22,190,126,186,92,124,124,110,151,27,86,58,251,106,188,157,226,124,111,149,67,150,63,163,229,0,145,150,181,22,186,239,212,91,28,196,124,173,69,176,83,39,61,152,245,252,226,104,32,139,252,192,249,56,48,78,72,138,34,78,51,198,214,46,50,234,22,138,62,28,97,95,19,86,87,82,89],[3,45,17,14,237,195,212,236,162,226,49,77,36,233,82,32,96,193,113,220,86,12,63,125,91,227,6,226,94,42,131,24,135,132,109,13,32,126,109,34,162,143,19,4,237,212,130,129,18,113,52,140,198,174,135,4,171,16,144,58,126,242,77,94,27,218,149,130,216,101,60,130,113,48,87,64,29,191,251,200,34,239,30,219,113,135,127,41,212,183,245,74,54,84,109,209],[23,137,75,253,228,167,134,100,43,13,21,134,200,173,139,231,34,149,40,175,159,220,203,47,18,6,204,104,139,183,230,113,136,107,184,7,170,1,198,230,97,221,174,220,114,171,38,109,12,68,5,215,74,177,18,87,21,139,124,69,237,114,77,144,36,169,86,64,202,190,240,231,104,111,248,116,103,202,152,76,136,202,24,132,8,111,187,116,180,164,72,245,73,81,214,155],[22,206,144,24,50,243,126,250,42,173,247,143,183,171,96,130,66,145,27,74,208,99,168,223,122,114,116,82,21,103,99,112,188,71,79,118,203,68,212,10,208,84,175,136,3,222,197,6,12,222,57,222,242,63,150,24,187,152,176,22,194,33,162,254,228,160,1,89,53,253,219,217,1,186,44,118,151,106,211,22,27,26,249,247,141,218,162,10,71,41,83,107,37,147,22,94],[8,34,159,60,250,127,161,18,148,143,29,31,136,191,140,12,242,116,112,237,115,181,148,179,82,92,108,7,40,75,119,94,21,66,111,165,32,138,243,181,249,169,185,2,238,170,195,202,20,177,120,152,72,211,18,14,164,32,11,149,142,211,137,250,57,169,214,175,136,210,78,180,115,178,181,46,1,48,61,134,92,122,79,87,215,123,180,159,251,234,148,21,28,81,220,31],[21,48,72,27,216,113,22,66,189,19,48,107,238,193,35,243,171,48,50,34,139,42,54,216,212,128,8,113,255,105,47,32,179,240,194,56,43,56,2,16,34,34,228,200,142,72,140,173,19,1,47,164,7,92,144,80,54,167,12,1,249,29,75,228,110,60,8,196,107,111,165,83,44,171,127,194,211,228,167,214,111,166,145,152,72,43,155,122,168,66,167,243,89,222,247,192],[6,144,181,167,214,212,138,175,154,100,171,175,4,113,118,25,171,191,174,220,184,109,23,11,210,166,124,145,86,176,109,113,136,143,96,114,247,60,72,137,80,151,77,134,221,76,156,194,21,95,74,115,85,93,110,99,22,118,118,6,179,158,216,132,228,102,253,31,165,102,101,1,48,245,80,75,18,99,42,152,152,4,167,180,136,90,192,223,200,66,118,8,180,65,140,90],[8,241,69,185,44,199,255,179,201,201,156,48,223,20,77,220,77,28,107,37,78,25,219,108,94,131,205,34,37,1,232,18,14,70,171,56,139,82,201,84,31,42,149,57,53,177,67,141,23,11,132,244,159,125,86,94,230,81,12,107,66,38,129,44,140,209,2,145,206,0,247,204,191,66,45,96,17,137,121,96,121,203,244,142,235,32,96,120,234,131,83,139,247,23,247,212],[24,42,180,203,144,188,253,149,153,134,211,116,3,118,103,252,146,67,204,73,82,231,128,131,174,145,4,100,250,220,92,243,204,14,128,93,51,5,172,222,75,143,56,60,206,77,147,32,18,81,82,104,48,51,34,244,139,87,123,163,64,54,133,199,145,86,121,224,200,231,234,147,129,190,185,244,125,77,150,38,209,6,127,111,101,130,74,86,132,83,5,65,22,61,132,181],[13,26,52,200,9,31,56,67,53,29,153,10,249,27,182,111,94,93,229,187,50,115,86,132,244,6,130,168,37,156,41,51,161,215,43,38,131,125,180,254,97,53,71,114,218,49,204,126,18,158,142,168,169,122,40,188,193,189,35,102,247,11,232,113,86,190,223,28,207,254,156,191,209,84,207,211,63,105,185,182,24,92,174,52,177,197,188,49,134,106,201,104,162,236,116,207],[7,140,3,158,239,32,141,80,137,1,120,219,182,107,77,65,90,39,220,159,89,1,167,241,124,82,26,75,40,171,240,136,201,145,86,32,250,203,45,87,101,249,56,8,121,218,234,5,8,113,91,153,209,162,83,127,134,25,252,208,106,105,178,104,3,233,92,163,35,187,251,216,36,120,101,192,24,83,1,174,246,236,161,13,219,10,44,31,33,55,239,100,155,165,225,67],[10,208,161,163,108,179,141,26,18,163,30,121,217,252,128,195,27,87,30,13,85,34,128,103,12,140,60,157,5,83,219,30,83,174,21,174,188,180,211,39,192,144,51,66,146,233,9,136,3,12,186,216,244,234,114,67,8,135,74,54,128,136,233,179,28,53,195,255,78,221,187,157,144,230,65,101,159,234,235,210,45,134,158,208,77,158,199,142,234,181,181,9,72,225,123,118],[10,229,143,98,130,202,249,108,107,103,247,224,245,57,110,222,196,249,79,178,77,162,173,141,16,208,81,227,173,101,232,23,69,238,133,93,208,171,219,217,145,169,243,172,163,20,241,119,5,234,170,197,38,101,136,28,19,145,71,75,24,133,94,1,20,99,61,116,15,128,161,8,116,139,149,246,25,97,23,97,1,64,213,184,253,8,203,85,173,238,180,27,187,135,21,145],[22,249,208,190,95,174,237,17,55,90,69,125,158,149,165,228,92,57,32,140,66,219,125,77,28,55,176,209,176,51,250,183,53,158,103,73,106,129,100,32,192,36,100,255,28,100,40,151,17,121,206,182,28,93,94,175,146,143,151,207,3,215,220,23,143,161,109,95,11,248,34,200,36,178,41,178,221,220,167,13,165,103,226,252,205,193,230,62,193,160,229,33,72,109,59,72],[23,226,94,97,9,254,19,208,154,111,225,103,15,138,64,224,120,64,46,248,119,24,190,86,7,218,14,129,191,84,161,138,230,104,186,124,181,139,186,126,213,28,45,206,13,102,49,220,13,173,184,218,235,97,1,21,94,194,57,156,208,189,225,192,54,22,85,146,95,7,136,238,50,0,243,162,224,172,38,81,238,112,182,225,41,142,125,21,99,41,97,129,122,2,108,229],[6,114,149,180,47,129,6,203,161,101,112,49,4,83,30,165,188,10,230,20,52,201,187,96,108,84,125,20,245,36,173,104,7,93,140,93,246,106,9,197,112,90,149,109,197,106,10,132,2,232,142,255,42,85,7,158,182,233,107,129,202,95,117,184,124,104,54,224,228,76,82,88,71,49,33,82,79,74,192,20,209,98,101,209,49,57,17,169,82,151,80,19,240,25,244,149],[8,115,246,113,149,115,128,176,167,9,131,229,121,18,178,123,132,105,174,239,110,13,73,210,206,5,16,139,157,108,41,217,157,139,97,89,114,208,226,199,159,220,132,215,108,18,247,2,15,183,25,46,179,207,62,215,81,5,46,34,199,68,239,184,47,69,124,67,247,19,53,220,191,211,201,101,166,200,37,187,117,238,127,69,30,63,188,228,211,243,3,211,125,92,57,167],[21,47,60,209,46,18,29,193,166,115,82,134,42,179,111,111,135,80,27,37,239,50,52,83,250,140,126,20,193,211,124,88,142,147,127,232,130,135,160,23,160,175,156,18,9,110,29,204,12,182,99,107,147,64,107,31,186,52,100,129,6,50,235,250,247,228,34,145,9,72,134,125,109,184,115,221,162,1,55,220,38,34,216,22,212,191,17,43,52,180,202,87,178,67,117,188],[14,32,63,225,23,170,5,97,95,63,49,133,65,11,157,26,176,25,226,128,73,171,27,80,61,216,237,170,92,246,21,63,0,45,51,181,123,108,255,204,238,27,9,96,13,150,108,7,18,69,99,53,228,135,154,14,150,212,190,99,99,144,133,100,99,147,96,252,60,106,156,94,49,140,171,16,233,172,188,204,30,83,143,173,101,88,155,41,219,154,234,40,253,239,131,156],[8,123,206,121,84,45,195,113,227,14,151,77,165,174,164,30,43,200,173,30,2,174,65,5,122,95,204,117,240,58,108,210,214,195,185,110,245,130,12,14,18,14,245,29,103,218,177,58,21,164,120,252,98,135,111,97,84,113,187,168,184,40,40,117,194,184,197,177,76,126,170,72,229,184,62,107,112,132,42,229,61,225,182,221,103,24,144,224,208,255,146,219,99,25,64,183],[11,160,66,16,194,233,15,71,8,59,46,149,238,185,132,224,171,94,60,33,218,37,148,64,85,233,58,8,147,72,222,176,240,138,162,210,26,167,139,185,148,129,23,72,119,78,124,113,7,211,63,101,191,176,201,229,47,109,240,73,68,100,28,180,154,214,239,138,146,93,131,218,193,66,114,7,164,108,73,87,245,83,201,118,58,252,233,120,11,135,83,217,138,128,175,124],[6,130,246,57,243,99,200,219,74,94,100,111,200,71,22,113,101,97,202,184,110,116,235,117,198,219,147,85,66,244,4,92,61,177,222,44,109,224,46,106,146,173,36,207,33,20,158,134,13,150,212,235,84,159,0,77,163,177,192,242,228,110,90,92,171,191,120,13,212,32,155,118,252,101,54,134,225,63,212,215,24,78,133,125,75,231,243,109,204,27,60,180,204,213,78,210],[24,59,6,26,142,230,186,154,56,232,38,152,20,64,20,151,35,232,88,44,147,241,130,53,192,80,140,255,210,197,65,112,129,41,162,78,134,211,115,56,229,101,92,122,14,226,67,44,24,158,214,166,152,106,241,241,241,154,88,197,191,143,254,119,37,81,223,138,141,30,174,112,87,108,236,185,67,86,72,136,80,240,62,36,106,248,124,241,57,45,177,103,47,132,124,30],[18,172,109,199,85,44,156,28,217,195,26,222,96,247,146,178,65,68,140,52,212,149,136,216,19,34,224,115,213,215,151,208,237,160,251,113,199,198,99,88,9,148,200,139,90,63,63,150,4,159,118,198,229,147,36,193,140,163,87,92,107,249,168,138,243,184,201,229,158,168,14,154,79,73,131,44,17,255,202,98,230,229,215,172,226,213,189,241,253,31,13,191,64,53,81,57],[15,177,103,236,148,255,188,76,236,210,220,170,86,191,65,29,241,226,239,157,27,109,224,95,251,19,79,69,213,96,76,51,6,201,74,43,36,43,156,205,117,9,220,184,144,9,188,100,22,43,228,9,192,123,5,90,253,203,31,50,126,13,28,104,157,152,234,156,15,161,38,228,162,18,249,206,99,6,70,133,187,61,119,86,183,52,0,227,95,208,35,191,169,129,208,130],[12,247,84,168,195,241,11,71,94,96,43,18,184,214,153,78,205,201,22,17,164,249,1,28,38,82,220,219,98,97,198,4,62,19,130,176,85,84,139,128,25,36,154,233,114,94,78,63,16,138,2,254,223,31,176,248,50,129,207,53,87,189,93,205,118,129,236,166,233,99,194,45,20,151,47,142,217,55,57,54,254,115,92,63,222,92,148,83,183,98,190,118,150,198,150,236],[14,84,161,95,221,205,200,50,224,79,17,89,65,204,4,88,233,39,112,205,65,166,41,201,7,48,61,187,210,220,100,164,209,242,215,172,40,154,50,105,8,244,188,117,205,14,110,33,25,85,86,171,18,21,0,50,235,175,233,71,199,51,133,41,247,56,75,99,133,45,163,14,77,244,253,70,30,46,201,34,52,3,55,121,95,213,86,190,142,132,235,14,222,92,207,154],[10,69,237,211,153,160,252,214,48,178,120,251,200,141,143,254,155,88,46,35,244,111,157,34,185,33,10,137,108,203,66,181,98,70,230,186,253,95,213,187,215,180,122,230,233,232,102,205,18,130,182,199,120,193,107,114,23,18,161,136,7,152,202,9,105,31,80,106,119,213,243,167,102,29,103,237,250,47,91,0,192,240,137,142,19,68,224,199,150,126,219,185,221,238,231,248],[13,95,112,148,151,43,26,24,65,192,8,51,83,208,81,110,182,94,104,250,1,88,123,105,64,172,159,65,22,207,228,182,224,98,130,25,144,54,240,50,77,178,196,238,194,200,102,9,0,161,171,101,241,62,166,131,55,4,185,84,141,90,45,126,123,213,213,211,201,139,137,49,33,14,243,18,224,183,209,108,235,85,119,192,75,109,213,102,113,30,43,250,54,183,28,4],[23,122,8,156,120,46,227,56,31,160,18,180,136,119,164,169,122,43,231,95,30,122,233,54,118,216,178,6,216,125,153,251,63,24,120,185,128,211,193,99,251,92,69,16,215,43,220,7,23,12,163,240,143,231,13,82,15,93,130,254,43,160,145,208,21,175,110,111,56,143,112,55,16,231,4,78,92,102,72,79,68,40,56,23,32,108,17,55,203,238,155,0,230,164,81,225],[20,12,20,78,229,116,96,179,99,174,172,251,29,22,232,227,116,207,56,152,189,24,165,157,132,39,18,138,190,118,7,212,233,95,225,217,75,241,31,198,8,88,73,144,66,139,197,164,1,49,234,125,135,228,101,87,102,38,62,221,59,161,33,94,201,30,13,237,179,142,140,239,101,192,178,237,219,134,192,66,54,195,89,196,9,153,170,164,73,243,45,115,52,203,110,16],[6,17,139,200,5,145,80,44,69,13,137,250,166,202,137,189,231,213,38,4,249,120,255,123,160,179,63,118,35,148,211,62,156,219,100,136,213,232,130,91,211,81,10,121,173,195,108,102,22,106,111,16,225,64,115,130,179,83,66,157,60,36,44,95,253,36,157,121,73,167,191,180,56,167,226,226,156,65,126,125,107,66,48,160,226,16,144,39,211,154,204,48,227,222,218,7],[3,123,148,161,57,22,20,109,37,97,226,85,125,111,21,247,20,30,19,210,90,141,65,65,97,228,166,96,24,173,125,56,212,238,4,146,214,200,115,71,218,214,138,143,117,64,83,160,4,40,126,200,179,173,93,70,95,131,46,183,63,96,73,171,63,254,86,172,163,214,55,2,189,196,215,2,0,36,172,252,200,51,20,169,181,220,203,55,105,155,230,167,102,44,65,237],[1,69,11,165,198,96,207,92,37,122,200,10,85,219,215,126,89,192,106,126,175,169,180,134,127,39,54,240,192,56,182,71,233,220,82,114,201,19,194,248,16,38,143,229,78,48,99,64,10,204,240,190,53,47,62,157,235,78,236,116,205,220,237,219,130,240,244,168,96,23,134,14,158,220,131,7,110,182,65,251,49,156,111,168,2,39,23,203,155,62,6,26,61,126,90,31],[11,19,183,146,232,110,12,254,226,161,16,199,207,72,18,227,69,222,154,236,129,40,209,144,2,232,218,232,126,1,181,231,164,163,53,96,87,237,114,85,231,24,42,182,32,123,69,197,20,24,229,228,104,110,62,234,2,115,171,229,89,40,19,154,223,108,74,9,35,44,145,150,154,38,161,230,189,50,47,177,226,239,177,16,77,222,171,177,189,3,195,83,35,14,154,197],[8,68,138,4,143,122,21,79,230,166,124,47,78,226,19,150,216,99,32,245,113,166,180,91,68,102,202,0,142,71,244,202,149,249,205,93,162,29,201,195,16,131,250,172,203,215,190,247,18,147,240,169,217,185,127,110,65,140,136,60,169,230,146,250,101,186,82,165,237,118,73,153,196,167,31,178,39,220,161,177,23,215,55,233,185,65,214,81,190,49,177,125,19,73,186,115],[21,83,53,243,205,27,164,155,163,170,151,61,22,174,67,230,181,199,99,0,169,104,65,146,77,148,104,87,90,255,202,42,184,254,209,241,179,214,230,79,63,114,29,226,187,8,178,230,3,136,66,213,223,220,73,169,95,88,238,136,42,117,19,140,110,162,102,195,48,171,172,101,147,99,59,2,93,223,189,104,236,164,0,54,109,2,48,216,63,25,44,148,110,21,236,75],[23,21,177,45,182,60,139,120,166,100,199,12,212,116,128,204,161,35,79,120,61,97,183,46,109,78,98,96,107,147,117,16,53,111,138,200,72,194,253,36,25,42,237,67,100,91,246,19,18,127,99,23,172,28,189,117,84,248,66,156,103,42,245,3,175,88,52,168,160,48,239,25,216,120,132,239,217,121,130,226,27,29,188,90,205,236,54,182,72,205,232,252,54,116,149,101],[22,216,252,95,188,190,85,85,135,133,144,240,26,29,61,41,123,19,229,137,8,80,201,156,171,179,182,200,213,196,79,162,206,2,20,237,204,250,181,82,0,60,231,144,26,188,102,126,13,105,170,151,135,6,246,245,207,74,254,67,122,243,74,75,142,58,207,194,113,214,185,250,230,143,76,75,189,128,128,151,98,223,125,202,44,208,252,41,2,129,53,13,15,50,9,143],[25,38,115,205,129,197,197,184,166,156,175,180,27,53,3,136,191,130,124,221,16,231,74,69,4,227,248,141,120,72,56,248,193,90,188,101,57,231,10,208,97,26,139,93,20,244,201,34,8,119,0,71,153,192,3,70,53,218,28,206,213,253,202,199,153,202,140,174,210,249,68,119,28,122,143,174,201,70,210,79,15,143,15,222,246,210,169,4,176,50,249,187,156,26,68,219],[15,25,236,238,239,39,149,60,158,60,106,211,167,208,0,174,205,55,77,167,95,172,255,213,182,40,102,35,196,167,24,103,111,140,242,16,154,198,39,13,42,7,128,174,102,159,56,71,10,129,12,191,48,165,164,57,20,162,110,182,151,41,149,213,255,167,102,166,222,212,65,217,15,61,233,45,119,71,66,44,67,206,12,143,248,107,176,232,36,3,190,174,126,30,227,185],[16,179,211,49,123,225,210,216,168,70,88,111,28,70,40,116,49,79,106,81,233,120,235,230,187,8,184,212,224,145,114,149,100,137,187,22,125,103,0,9,141,244,243,33,137,50,95,75,21,108,75,40,188,216,15,102,252,171,134,215,56,43,87,24,18,33,159,70,174,172,105,167,6,164,201,105,212,209,102,2,164,234,160,12,231,216,141,67,50,166,205,7,5,86,16,20],[20,209,206,87,255,251,189,68,10,138,244,53,203,95,3,102,23,121,16,103,221,177,5,232,99,39,205,5,136,203,39,95,14,111,98,11,242,158,50,136,234,176,132,61,181,110,7,206,21,79,99,17,83,168,94,250,186,255,185,79,134,39,255,222,169,240,229,149,82,181,195,62,56,19,73,165,142,78,96,227,253,243,83,33,234,220,98,163,41,118,73,202,239,189,100,249],[24,178,120,146,117,233,46,21,210,145,60,148,121,83,110,30,193,221,175,250,121,11,60,68,223,116,209,206,17,81,122,46,33,239,74,150,204,203,156,213,46,6,160,253,221,19,230,163,22,199,231,71,193,19,23,160,211,200,152,73,71,166,69,200,24,203,227,141,75,32,95,54,241,65,23,44,197,50,154,157,181,20,172,99,181,198,168,217,26,196,239,82,176,47,213,228],[22,63,202,123,205,127,8,73,106,55,88,85,191,211,14,182,123,85,96,167,210,199,188,247,241,237,119,123,121,122,25,125,76,11,56,72,76,114,168,200,48,92,249,207,44,24,91,219,17,176,135,105,44,196,221,102,21,148,167,53,250,248,208,229,196,71,97,192,123,197,154,212,203,77,200,166,179,55,254,35,137,160,1,107,178,14,52,82,199,34,58,59,198,33,51,110],[7,147,146,137,33,9,60,4,25,233,92,151,22,115,14,180,201,179,103,253,253,99,122,228,94,116,87,208,108,154,136,63,174,221,108,80,45,172,143,36,126,136,69,187,254,12,154,185,0,57,78,57,177,24,72,77,202,124,204,55,227,170,68,155,64,155,179,184,117,98,203,198,76,111,181,241,74,123,216,77,136,192,111,169,129,68,125,226,52,161,45,118,217,107,168,167],[23,24,87,183,21,248,114,165,238,172,60,5,94,135,217,207,46,143,37,53,120,49,73,113,61,112,21,106,91,75,203,168,222,131,5,174,107,200,239,230,120,192,190,179,62,82,10,176,0,75,156,208,31,33,30,189,136,175,74,200,119,1,33,67,2,148,243,177,57,40,57,92,243,195,70,203,72,35,192,140,104,56,134,134,214,97,168,186,142,166,23,41,236,16,51,190],[25,168,254,236,35,229,12,149,13,68,0,198,152,76,215,40,47,151,1,187,163,14,188,6,136,229,85,121,98,90,139,223,252,217,101,215,49,170,183,202,165,90,165,54,253,211,15,161,2,243,90,188,139,161,117,228,221,65,180,36,217,37,50,85,24,72,185,161,34,223,104,62,135,185,174,223,213,232,90,25,175,187,123,215,19,34,37,115,243,17,7,60,61,229,0,139],[20,213,255,90,176,23,238,180,106,53,23,73,237,4,197,181,208,223,136,165,88,122,200,64,121,141,109,251,210,128,115,194,55,54,62,162,200,98,172,64,237,182,252,188,241,215,76,3,3,197,215,94,213,101,103,239,242,192,147,236,14,210,196,48,9,180,233,84,175,138,112,134,23,124,235,1,84,243,53,172,216,137,231,57,125,166,198,109,187,51,150,140,237,212,189,220],[22,28,191,244,145,203,173,238,179,249,107,195,61,69,125,116,89,36,124,10,24,30,170,28,136,250,83,21,224,159,242,6,41,229,209,36,42,228,199,121,0,132,229,18,142,94,210,160,14,92,0,240,123,204,127,164,80,227,58,211,76,230,155,102,229,247,24,42,47,70,14,161,92,175,92,115,210,94,215,216,127,138,127,217,233,166,28,160,244,158,194,185,160,50,200,229],[10,125,197,37,250,39,198,53,246,85,62,49,110,167,111,146,254,122,102,90,52,143,176,198,9,1,204,202,52,96,236,200,197,3,245,24,211,205,88,134,149,124,146,160,156,187,102,193,3,75,5,239,65,39,143,123,39,169,185,162,194,73,102,136,178,10,194,105,242,42,232,157,54,221,70,237,209,116,224,198,129,224,230,159,58,195,92,145,78,43,182,216,3,15,196,114],[9,110,44,9,253,167,79,128,67,168,91,73,215,133,170,224,86,200,182,8,183,13,76,108,193,231,184,245,129,172,47,2,128,76,113,148,71,223,215,43,111,209,137,206,185,28,46,64,14,80,7,240,176,206,60,43,95,194,199,187,41,253,147,14,236,99,180,10,219,201,131,138,20,184,20,158,224,143,87,245,181,234,247,202,43,77,163,198,238,49,176,60,101,238,197,19],[18,28,167,175,28,181,211,170,180,0,223,185,175,210,37,226,16,185,173,60,181,72,4,177,19,85,132,219,144,0,20,100,27,42,118,9,84,190,136,4,138,128,56,39,110,113,115,220,11,60,219,112,44,134,110,89,85,191,69,61,26,238,211,91,254,243,66,239,28,196,214,79,157,150,233,83,218,130,245,80,8,82,36,18,100,152,163,17,177,153,107,63,198,78,9,15],[12,158,158,64,66,248,183,199,15,87,115,195,70,166,233,233,28,151,50,68,130,249,254,170,24,155,191,217,17,229,79,221,125,13,84,95,50,131,68,66,213,11,133,127,204,170,48,56,19,128,171,60,6,124,248,52,139,0,167,107,170,48,97,151,134,121,242,83,179,32,79,219,173,158,129,164,30,180,62,46,136,6,225,145,77,40,74,61,205,37,135,113,162,157,47,34],[4,191,8,13,12,131,218,73,211,85,120,234,245,16,168,146,105,223,179,237,180,237,141,233,252,176,230,170,217,132,57,135,2,183,127,123,205,156,189,238,151,10,0,114,82,129,68,196,20,78,107,235,89,237,241,82,217,144,129,245,231,135,93,117,68,33,135,249,121,117,223,50,47,179,9,111,17,245,143,94,40,212,164,41,125,208,14,16,82,61,206,177,97,15,34,236],[19,143,235,77,191,201,49,46,165,102,187,206,188,228,50,42,35,97,232,27,188,178,101,73,83,67,60,122,115,28,200,128,20,183,224,42,158,17,100,158,250,137,7,30,75,11,239,45,13,216,110,206,203,81,189,233,178,191,198,216,181,224,207,44,22,137,191,179,245,69,78,187,84,188,152,70,140,182,1,150,153,100,53,8,136,234,160,156,83,160,32,45,129,235,141,139],[12,152,74,109,45,171,54,157,133,26,84,202,120,5,253,168,66,83,34,150,12,253,146,13,151,236,227,124,131,94,208,101,25,142,227,145,238,113,236,78,58,218,67,11,61,58,29,186,24,38,60,239,63,40,214,154,5,135,234,240,169,91,116,25,52,55,150,72,165,29,23,198,65,196,202,74,208,21,75,154,125,123,239,98,4,89,180,120,50,233,89,27,235,37,133,180],[4,114,20,114,170,147,190,69,31,223,141,40,186,209,94,55,163,174,229,203,213,150,240,148,239,10,134,51,78,151,191,184,42,115,168,115,158,225,19,28,199,106,70,76,0,73,111,48,1,177,193,87,149,88,244,204,63,60,247,108,171,124,59,230,85,134,109,21,132,122,196,211,111,97,152,159,201,248,143,140,14,177,88,149,79,203,123,190,108,77,98,219,26,130,39,211],[25,121,195,181,201,192,13,75,189,102,84,120,42,82,150,51,227,191,84,238,9,105,8,12,226,225,153,31,152,204,208,136,3,135,171,91,27,202,37,40,197,116,138,191,95,246,130,176,19,105,37,3,136,157,198,117,105,201,222,234,158,182,242,222,106,104,80,141,73,254,120,252,28,150,133,198,112,119,216,218,49,118,219,42,127,220,15,49,174,48,130,207,143,160,73,46],[13,250,150,249,151,48,181,201,88,230,115,112,63,162,187,28,110,203,42,126,240,165,92,34,141,62,231,68,68,35,79,74,3,62,163,122,158,20,230,106,228,173,72,35,71,46,186,212,17,138,212,242,84,157,15,112,82,10,83,76,38,80,34,245,166,112,66,35,227,202,248,218,47,159,35,59,219,155,50,33,8,180,126,119,54,114,168,243,240,72,200,33,19,119,238,94],[13,211,206,45,126,230,34,109,40,172,108,95,5,198,23,67,53,161,213,46,203,141,91,148,36,218,132,71,170,115,24,174,55,211,173,173,4,147,202,179,178,5,14,144,15,105,200,159,13,2,143,164,132,56,58,89,15,236,114,246,216,144,52,26,222,87,121,197,181,231,166,101,246,81,100,74,8,156,10,235,175,72,91,132,18,35,168,125,102,205,48,42,68,220,115,173],[15,75,69,23,87,111,3,236,170,249,204,161,129,190,158,192,232,179,91,44,203,122,85,220,113,49,115,226,91,108,128,205,79,4,234,5,229,209,193,219,68,154,52,173,86,213,141,103,19,113,29,64,13,135,9,131,186,209,7,138,14,141,116,62,239,81,228,9,62,47,37,85,0,148,140,239,167,223,249,198,221,120,133,157,147,117,45,118,45,44,42,139,251,3,148,241],[15,5,71,218,28,68,210,7,140,103,4,169,211,70,236,103,251,124,221,63,1,169,144,170,93,59,79,183,169,39,76,65,230,63,62,114,185,163,107,216,48,11,51,90,172,60,192,243,7,25,192,43,58,53,7,199,91,71,234,113,139,21,146,130,33,57,176,130,45,236,139,212,49,251,226,117,197,33,221,71,12,30,78,199,79,231,143,135,161,94,107,2,217,120,21,172],[19,11,16,244,86,126,36,192,126,139,173,38,50,162,58,13,115,120,19,5,100,158,101,160,123,219,39,38,102,164,78,16,76,202,95,26,236,141,28,62,163,82,124,81,239,87,72,108,14,211,220,191,197,77,136,20,14,229,63,61,132,72,68,79,19,182,184,219,63,202,44,52,178,50,220,20,220,81,141,210,43,216,31,88,88,30,10,110,229,85,241,240,115,228,235,167],[7,160,162,142,3,109,224,116,99,48,81,41,202,202,82,33,31,160,127,81,136,18,55,149,134,204,6,107,168,56,190,212,123,231,195,122,225,234,118,169,180,1,234,251,93,172,189,170,18,181,150,255,14,47,73,222,47,17,107,9,121,185,2,73,246,211,140,145,155,63,157,255,19,104,118,227,158,42,79,209,192,23,149,51,247,60,16,87,249,206,62,66,248,196,229,183],[23,80,48,145,177,197,116,114,14,201,51,43,171,33,38,99,177,248,52,100,250,200,3,177,127,46,79,165,61,239,20,250,90,166,196,177,25,238,86,90,86,71,215,164,238,74,43,189,1,139,239,203,239,185,198,134,62,64,35,241,187,191,59,195,35,199,98,25,192,19,118,114,255,251,93,109,168,89,80,229,17,210,247,116,114,51,72,50,214,106,53,155,3,239,144,59],[21,255,214,114,219,171,130,78,177,82,242,26,246,206,88,223,63,226,70,64,129,127,181,3,27,25,210,3,143,250,166,137,249,132,203,74,64,19,60,217,182,24,21,186,242,181,19,6,10,94,194,174,180,183,127,124,59,56,118,23,12,52,59,157,52,119,65,77,125,143,184,123,26,250,60,102,26,249,16,75,227,55,241,125,114,238,138,227,57,114,117,127,143,138,120,106],[11,47,170,93,254,88,133,100,239,226,81,216,92,71,164,51,243,54,236,211,182,240,31,62,91,23,78,255,185,57,27,63,4,110,155,187,61,227,143,208,199,69,9,198,249,225,121,227,4,71,9,130,224,137,30,116,26,120,247,189,137,50,108,47,27,138,155,49,26,44,145,65,128,97,247,48,189,157,152,91,30,90,86,32,117,9,213,195,103,56,214,141,228,1,55,163],[0,203,217,181,195,247,215,220,224,77,71,35,144,113,120,18,37,176,32,218,31,251,20,160,229,14,147,151,148,184,153,232,96,173,197,217,153,124,233,245,146,57,157,135,248,12,129,250,19,79,45,89,18,112,147,89,146,38,200,154,56,190,163,39,213,231,149,212,24,46,54,199,204,205,137,119,69,112,137,37,165,43,108,204,15,199,111,73,82,195,224,184,248,58,252,146],[9,74,236,179,158,140,160,200,75,243,215,214,134,26,12,190,44,226,164,120,84,138,193,218,11,70,146,201,130,149,24,86,102,151,9,112,76,104,126,109,178,31,52,125,241,108,100,239,6,251,9,2,104,175,145,93,231,147,43,38,124,45,14,156,78,133,41,72,108,146,185,231,91,78,88,61,38,131,196,67,212,183,100,54,195,189,23,107,233,68,241,138,254,230,20,205],[8,16,6,114,197,190,161,93,103,88,231,112,38,168,158,220,254,1,90,84,66,88,140,182,34,149,205,164,15,116,223,159,140,186,12,161,209,235,178,178,12,154,85,159,182,38,211,253,9,197,142,243,62,182,253,29,164,0,133,190,248,196,162,83,16,237,3,196,186,52,0,121,33,86,105,255,147,113,63,224,109,206,228,13,221,241,242,249,181,60,69,195,200,109,112,105],[16,187,126,16,2,90,237,243,102,243,221,232,106,63,88,136,142,71,129,95,87,211,132,80,124,25,3,159,5,109,102,33,87,108,233,223,165,184,194,119,255,51,126,244,65,5,241,206,19,242,239,161,129,56,206,72,153,28,176,115,97,127,179,159,246,135,213,112,169,236,249,75,33,215,129,126,171,162,207,66,68,72,207,131,189,251,109,166,253,7,191,119,198,123,136,234],[9,85,150,175,206,92,182,132,162,109,56,151,143,20,248,224,42,242,89,251,253,60,167,110,118,135,97,215,74,137,134,132,135,157,172,209,137,20,223,179,13,178,183,139,105,166,246,170,3,205,212,190,246,33,71,79,50,255,87,46,127,122,158,36,163,255,64,128,130,173,85,82,117,43,217,86,121,127,95,46,54,103,206,248,6,80,107,123,106,221,150,152,89,254,240,199],[12,63,235,136,60,118,243,82,155,35,19,8,107,17,84,58,66,11,166,246,190,52,94,180,141,101,122,229,104,198,5,0,72,163,158,50,161,164,53,13,32,72,91,194,163,6,44,250,8,248,212,196,235,9,111,67,237,169,171,213,0,193,64,165,54,26,234,163,117,252,15,42,28,186,120,98,144,182,12,8,9,143,60,56,31,75,17,247,214,164,204,113,127,130,58,117],[6,240,214,37,33,182,146,16,4,221,153,56,202,248,9,144,63,97,91,53,17,63,188,29,67,239,247,62,67,128,128,221,106,97,39,110,44,177,103,109,105,65,19,126,107,62,66,83,17,156,224,35,242,17,204,234,188,39,222,211,122,116,160,174,105,158,193,128,125,24,63,6,238,38,253,10,104,247,215,129,201,78,222,175,86,18,151,246,112,12,84,216,0,13,153,52],[11,141,99,127,27,112,228,135,159,34,77,53,119,148,211,84,207,21,29,58,0,20,215,138,118,101,35,109,144,167,154,34,243,22,37,132,112,204,33,140,104,86,157,108,216,52,21,127,5,193,95,225,118,82,163,138,18,221,92,129,67,81,140,135,150,92,42,248,119,3,133,17,95,44,136,137,203,133,20,82,230,76,168,219,90,91,247,170,45,6,93,139,77,190,87,178],[5,8,214,14,29,55,57,243,232,119,93,145,109,0,213,71,181,108,131,178,128,237,115,199,50,198,173,48,245,104,226,96,77,187,11,19,46,144,247,211,105,141,50,216,222,209,0,61,25,206,14,253,233,236,33,201,240,174,244,77,106,29,51,196,234,249,45,238,48,195,228,195,207,173,40,71,89,223,244,169,18,27,240,214,120,78,255,28,116,184,180,207,49,220,107,130],[1,164,154,158,200,246,52,183,184,2,67,81,240,239,128,105,183,177,235,198,184,53,76,168,166,136,210,15,253,27,210,124,1,8,237,156,150,76,200,98,67,108,232,237,152,206,56,39,16,90,21,197,245,217,78,212,250,101,66,124,222,106,220,176,29,32,231,196,54,158,10,158,203,8,223,172,18,164,228,213,17,98,250,42,135,149,221,141,179,205,115,31,93,120,61,92],[9,118,220,195,153,188,153,197,255,11,67,171,76,106,53,105,104,74,96,141,120,123,202,92,169,3,130,173,21,130,251,113,245,69,140,174,155,250,10,218,211,86,102,216,41,189,214,213,18,46,22,178,85,81,150,81,187,235,77,192,136,135,235,45,47,166,135,57,161,95,142,179,237,37,162,211,156,149,57,121,179,53,193,223,218,111,34,11,234,25,107,252,127,152,90,95],[2,12,202,225,251,23,41,58,139,191,64,222,72,80,5,216,49,112,235,245,132,74,70,14,68,96,158,123,185,235,243,208,17,93,165,187,117,88,11,118,221,63,149,29,86,140,0,64,17,58,191,139,220,211,59,32,169,63,85,223,9,153,71,218,243,220,73,116,247,144,170,222,136,136,43,52,137,47,96,241,66,47,220,90,149,158,163,165,128,11,169,117,231,201,242,77],[11,141,74,245,158,150,229,124,140,248,60,224,47,193,104,185,185,99,203,24,124,189,115,201,172,26,99,110,132,151,147,227,226,248,86,253,92,26,84,202,167,113,116,6,25,165,167,221,22,242,252,29,31,84,250,95,152,62,244,91,154,158,136,223,232,131,4,172,8,185,65,182,15,179,78,137,90,254,133,119,131,89,180,119,134,165,65,91,184,208,123,109,201,141,61,53],[0,241,168,195,184,118,127,150,140,230,130,13,159,221,130,74,196,214,157,125,181,86,76,46,76,22,22,138,174,206,105,129,55,253,221,117,250,254,195,94,28,143,224,107,180,36,17,116,20,207,186,10,24,71,249,151,217,243,77,104,85,179,80,59,61,63,28,39,182,175,21,246,95,177,116,208,102,185,152,207,108,94,122,26,252,113,84,251,159,92,1,22,10,43,193,214],[0,20,190,46,98,112,98,246,77,178,88,149,45,65,50,216,127,228,226,201,151,62,133,187,168,28,179,201,57,3,208,225,161,221,208,215,29,59,25,95,122,90,119,122,230,151,85,9,21,188,186,226,129,70,170,228,208,46,68,118,198,49,20,166,177,188,139,94,49,193,127,180,154,121,153,225,17,109,138,50,15,43,5,212,210,34,111,147,129,112,197,135,112,246,130,234],[2,246,65,174,95,26,116,179,177,193,38,207,38,18,109,218,36,1,89,46,207,71,83,195,195,108,188,246,77,211,158,218,186,93,123,195,130,62,173,217,234,160,86,170,41,115,91,45,13,237,125,192,132,107,57,85,120,178,237,97,24,171,182,86,247,127,3,22,44,216,222,200,28,151,82,165,249,171,242,89,86,171,45,191,226,19,176,230,53,213,13,94,50,151,176,172],[8,166,3,240,191,123,233,225,178,205,210,237,187,221,164,248,152,218,137,153,169,8,117,76,190,94,18,224,250,145,177,29,61,133,241,168,119,253,36,97,160,247,219,69,253,233,18,44,15,66,250,161,0,96,141,163,136,27,40,53,2,196,17,55,16,120,147,0,11,136,238,32,234,236,159,107,97,43,29,250,81,98,225,19,248,88,182,206,173,230,89,184,166,189,242,196],[21,11,175,28,84,226,160,240,113,145,218,66,23,4,209,12,68,233,250,222,42,152,141,108,188,121,221,200,134,141,127,122,93,209,118,133,184,56,32,68,45,153,79,3,188,156,88,242,16,57,153,204,120,196,159,38,84,71,38,9,45,103,195,157,72,22,191,65,78,148,88,178,70,153,74,81,36,160,36,148,136,42,245,14,103,210,199,195,1,61,255,12,37,51,26,125],[16,101,132,101,95,26,18,214,42,102,241,36,9,55,237,0,80,168,254,108,121,240,137,224,125,244,140,108,157,242,191,130,57,225,70,21,157,237,83,170,155,61,173,122,183,198,232,21,20,6,5,236,14,240,7,15,24,154,125,41,179,176,212,65,128,65,170,87,214,117,155,212,241,203,207,216,224,123,231,238,9,96,53,249,246,33,209,244,151,91,31,66,118,115,59,81],[13,109,13,137,22,126,14,34,211,127,240,223,155,17,6,28,26,141,90,120,195,182,64,222,113,146,119,144,51,89,60,210,196,39,226,149,42,96,140,161,35,212,10,126,16,227,7,111,22,230,164,216,168,228,204,151,229,216,195,207,255,70,142,86,143,62,87,193,83,67,183,19,220,169,133,239,80,66,61,172,10,73,103,221,147,40,245,248,54,162,160,39,245,146,58,154],[15,214,110,235,82,49,14,39,132,113,29,153,129,170,49,228,222,147,83,197,209,122,192,180,135,139,203,246,166,108,26,92,20,23,249,75,119,67,14,84,34,16,56,81,209,240,166,146,21,103,26,219,230,178,11,247,168,132,110,119,109,56,246,133,215,229,212,249,34,53,29,193,155,66,229,167,87,250,135,52,136,147,78,48,57,74,194,107,137,163,226,236,9,109,161,134],[18,85,214,179,151,125,237,207,16,110,2,242,71,133,48,132,156,185,87,17,233,92,168,123,213,245,225,46,52,45,158,194,132,118,102,121,72,139,124,42,243,143,76,161,61,214,193,4,5,84,137,47,69,55,108,28,147,123,106,112,119,206,62,81,153,118,251,138,47,80,98,3,196,46,122,218,173,56,226,121,75,227,3,218,36,67,47,174,70,212,71,124,245,99,89,190],[20,22,225,160,130,186,145,88,97,84,120,59,7,182,115,185,66,111,189,140,70,119,173,21,249,225,97,163,136,174,156,227,172,18,253,63,105,37,12,77,79,26,179,75,203,168,17,72,11,96,131,207,162,47,109,117,141,218,170,5,88,205,139,221,130,31,67,2,20,131,119,6,255,62,152,79,84,109,198,122,253,33,159,220,78,146,246,86,101,127,118,111,90,232,254,224],[22,246,227,118,253,210,20,52,130,7,150,57,78,51,0,189,139,75,130,155,72,230,139,180,220,207,249,18,74,208,251,56,126,141,45,182,237,35,22,143,8,101,212,90,225,178,128,152,8,20,221,51,252,98,190,135,197,248,108,37,221,40,2,184,208,7,175,35,179,190,56,127,201,34,68,162,241,236,230,249,145,185,239,146,206,223,56,195,69,67,91,53,128,126,145,85],[3,215,71,17,231,224,5,129,188,150,200,252,234,161,229,183,79,42,223,189,4,124,0,199,215,51,50,152,113,75,173,161,177,191,236,181,209,209,184,184,53,168,128,209,110,122,125,118,0,83,120,137,142,204,255,219,172,148,132,204,237,25,114,103,14,100,192,34,84,96,97,31,58,0,183,124,213,74,220,103,50,241,47,19,58,204,40,186,251,10,242,14,110,55,11,126],[22,86,81,4,110,214,123,121,177,117,218,244,219,0,174,79,74,148,39,107,197,38,212,32,136,50,41,67,82,98,100,135,7,198,109,233,50,186,141,127,62,43,68,153,174,58,248,72,1,187,88,7,165,18,132,100,208,22,230,2,207,119,55,124,138,177,197,156,147,73,48,248,224,160,233,248,30,218,103,221,239,176,193,255,28,59,89,26,13,79,237,146,152,241,89,85],[8,125,75,124,138,110,219,228,134,43,237,235,46,185,209,114,192,186,159,203,164,212,230,122,150,19,100,83,169,174,31,175,113,223,208,245,11,23,162,109,212,232,161,194,216,163,5,102,20,72,180,103,126,115,174,125,10,60,55,145,108,205,91,97,129,3,176,93,10,24,21,108,69,43,179,100,19,61,232,60,252,19,240,223,254,44,184,178,152,133,51,56,166,208,53,30],[1,223,69,184,170,172,131,234,92,39,4,94,211,47,61,248,219,95,37,15,137,100,16,65,199,28,156,245,214,17,156,182,77,166,206,15,161,221,19,58,125,97,47,184,196,112,193,169,3,152,13,236,222,17,64,35,159,89,90,65,203,234,98,11,244,174,68,238,104,236,123,235,194,252,26,228,98,167,86,24,62,118,61,137,188,132,65,247,160,130,38,238,97,126,188,97],[20,14,71,116,69,77,142,252,141,5,20,135,223,8,183,181,98,175,159,143,238,190,210,85,124,207,35,7,10,45,212,226,205,254,107,167,107,239,156,112,65,67,73,182,245,155,208,184,7,137,127,210,26,43,133,75,234,36,188,223,2,143,179,49,4,236,191,47,182,150,101,114,131,236,182,37,38,91,255,62,195,170,182,236,44,41,194,92,36,6,46,210,197,19,31,214],[24,191,145,211,244,152,74,55,173,208,65,86,43,28,192,219,213,212,152,140,33,158,122,129,93,232,73,67,1,233,187,151,74,207,190,86,219,38,114,35,81,177,213,251,64,121,126,203,2,137,234,206,163,130,70,117,170,29,89,97,197,108,201,12,40,202,7,153,209,5,186,179,90,211,120,158,91,244,120,64,238,76,148,189,218,133,43,156,57,148,137,151,177,87,47,78],[11,47,43,205,9,161,202,78,45,74,233,163,88,169,43,195,117,139,46,159,70,124,229,84,71,141,31,141,71,148,139,111,161,170,233,234,205,96,219,243,186,88,45,29,202,72,82,172,11,230,169,177,250,85,59,19,140,232,76,255,126,11,8,129,74,105,179,140,154,76,187,11,60,133,149,86,242,207,68,206,97,188,32,151,78,250,234,56,156,69,110,122,74,221,1,169],[14,177,74,42,60,57,243,161,58,96,78,83,255,232,67,40,156,189,137,122,84,169,36,190,185,99,216,77,112,253,115,76,234,48,2,103,170,92,250,117,7,241,34,1,205,94,163,156,4,21,217,69,1,167,169,81,84,135,165,123,24,19,20,180,108,201,234,80,181,209,2,205,23,83,174,14,181,51,174,48,32,126,84,59,186,139,22,177,55,17,110,240,197,31,221,77],[21,200,37,213,105,217,155,144,61,170,244,82,193,231,148,125,125,223,126,2,226,37,81,168,139,13,35,233,23,115,53,24,176,247,87,220,85,57,79,70,246,97,213,112,241,203,231,250,7,17,117,4,253,46,94,186,4,41,186,33,176,36,107,20,146,48,27,188,177,71,216,39,121,121,158,172,18,66,80,125,53,156,199,14,7,158,115,36,219,244,226,183,19,5,130,220],[12,175,209,206,242,90,116,162,212,241,230,140,64,205,160,74,97,55,44,168,217,40,148,163,111,211,68,168,75,151,108,36,72,32,53,229,157,102,173,121,212,248,170,29,207,66,86,249,12,8,113,50,250,109,47,201,128,21,184,15,52,88,93,186,141,54,34,248,243,197,201,90,71,49,68,29,45,128,182,100,19,79,150,94,123,194,186,64,191,102,218,169,250,250,57,168],[0,63,87,123,179,109,128,22,51,135,18,14,22,194,173,173,56,121,27,247,143,86,187,178,216,156,49,39,17,117,191,196,140,243,249,197,61,173,68,181,120,194,190,101,161,44,182,226,23,240,153,199,67,192,116,18,247,53,16,164,242,148,25,172,136,103,198,137,100,92,127,108,190,191,182,201,207,80,155,99,41,215,156,142,31,92,94,195,55,7,114,141,93,43,32,182],[5,133,113,169,23,117,114,216,67,1,61,166,120,175,157,74,69,215,178,154,254,168,89,232,239,36,134,120,73,15,172,35,228,206,179,126,255,169,113,91,118,115,64,35,112,201,243,198,14,29,71,174,217,111,117,66,101,142,27,123,97,50,166,214,250,179,127,141,199,152,60,117,68,214,241,188,34,66,57,70,33,79,13,65,141,54,39,143,127,167,169,152,10,232,199,158],[16,212,218,249,123,218,208,43,146,7,252,216,187,249,77,223,0,168,104,60,176,58,149,75,246,148,116,135,222,191,189,188,247,86,155,1,54,117,46,149,17,229,17,224,107,83,10,30,13,166,23,101,109,208,148,100,111,143,106,45,99,209,75,221,70,117,33,191,30,49,41,179,121,77,26,122,180,182,233,96,220,141,59,226,185,157,7,69,12,129,17,113,136,241,122,173],[2,22,187,211,255,191,65,255,51,132,117,181,168,106,65,15,228,224,84,253,240,45,214,51,13,16,239,54,146,240,144,85,40,78,135,21,38,38,10,111,179,125,234,224,87,218,135,129,11,138,176,90,175,85,155,105,171,51,236,171,140,187,225,116,126,181,26,126,175,110,184,142,253,12,37,46,48,9,44,252,157,22,255,30,49,95,240,66,243,51,12,41,46,242,138,90],[16,9,170,162,164,243,218,124,20,174,222,198,121,241,76,96,209,184,180,157,81,96,170,62,81,222,1,159,10,16,18,109,30,138,244,126,71,172,123,176,95,61,139,193,212,18,11,54,21,57,52,119,91,249,223,46,35,57,127,204,20,222,18,8,6,223,222,245,113,130,8,58,104,200,155,3,15,100,255,140,58,251,124,3,168,153,147,162,160,209,135,15,180,226,153,126],[24,178,33,221,3,34,107,165,183,57,11,149,10,233,138,42,76,191,201,170,170,19,45,221,145,24,70,35,98,222,32,24,224,49,206,240,190,197,247,245,105,36,111,116,218,93,100,65,25,156,182,234,85,174,145,125,250,225,51,18,243,164,207,61,222,148,86,119,108,198,249,187,6,16,47,189,56,245,236,92,37,242,42,253,177,140,47,8,29,63,11,100,241,83,60,72],[19,33,173,81,163,229,89,94,45,180,28,102,0,145,67,239,7,144,122,172,218,143,31,254,36,114,81,33,46,128,70,226,47,62,27,54,88,94,51,92,162,36,20,135,201,97,15,181,6,132,101,169,74,74,196,67,191,179,34,218,247,238,225,117,207,115,184,143,117,248,130,203,66,90,21,145,208,246,112,137,203,102,35,230,43,164,229,47,172,190,223,214,195,216,89,35],[5,155,55,160,73,56,227,39,9,56,241,116,222,96,74,68,177,136,46,237,44,171,59,149,92,170,220,94,252,42,138,46,24,84,137,66,203,123,232,232,135,0,122,70,138,196,153,252,9,187,151,119,138,43,133,190,252,102,133,118,210,251,118,6,163,144,200,99,137,55,181,87,40,200,14,251,212,48,142,44,27,145,72,160,109,149,235,105,232,108,226,53,65,101,221,113],[22,33,158,205,242,159,167,68,154,254,68,213,139,239,230,62,97,13,24,27,198,187,62,85,6,110,27,50,93,21,229,228,108,195,115,144,172,26,86,125,62,183,48,39,94,31,108,15,16,157,246,0,198,48,130,157,229,19,36,211,64,127,242,204,98,94,235,71,80,230,101,202,28,58,140,177,122,230,90,197,144,152,241,73,179,174,245,202,145,161,104,81,252,244,133,69],[9,68,218,34,168,45,255,247,222,173,61,236,52,19,83,214,20,111,156,109,3,150,44,146,210,174,221,111,168,98,29,134,83,48,140,99,170,20,88,73,99,209,147,130,172,160,69,160,20,53,117,253,24,88,186,186,106,166,160,33,186,178,187,2,103,243,153,209,202,207,125,222,72,40,47,230,126,197,194,154,240,130,109,104,62,161,190,121,205,230,60,16,53,164,221,146],[0,139,79,204,38,12,143,189,101,202,98,87,134,125,145,228,91,12,98,9,73,30,141,54,159,123,254,54,18,108,87,36,7,200,122,105,198,90,157,134,189,249,35,246,132,41,171,202,20,64,255,184,35,210,62,71,211,23,88,51,137,110,108,103,100,87,178,51,250,180,244,236,167,37,190,64,195,97,207,246,131,37,223,97,143,116,62,29,156,43,121,46,83,110,242,147],[18,123,3,228,244,164,65,53,216,231,26,250,59,159,34,67,174,158,187,201,175,165,1,70,14,197,191,110,162,64,146,118,221,214,122,245,133,247,106,172,243,232,190,75,227,181,178,240,23,202,192,144,180,80,6,22,228,232,152,93,225,235,179,43,1,30,68,204,143,132,167,49,169,151,108,146,85,97,22,233,199,19,87,33,49,146,233,73,210,208,238,56,97,88,79,191],[15,234,135,91,140,191,107,161,149,69,75,138,10,33,26,172,129,47,27,60,203,15,192,1,87,27,127,65,38,14,43,117,66,109,214,87,116,130,190,161,206,57,91,103,107,247,165,227,7,35,163,148,196,242,232,39,142,221,248,182,41,109,85,92,4,20,92,16,0,132,166,1,20,138,85,253,68,169,171,167,27,138,124,150,94,55,41,246,165,100,101,166,158,59,12,115],[23,220,244,70,41,117,68,35,108,96,7,15,63,134,22,29,48,133,194,125,23,178,34,78,184,139,115,242,67,61,185,64,145,149,2,247,173,97,222,53,44,85,180,166,71,135,229,53,21,91,63,197,238,126,245,139,107,183,73,62,235,180,46,35,3,184,118,239,187,245,34,29,125,238,137,188,194,6,175,212,43,154,153,254,61,121,218,72,14,109,234,10,86,207,192,255],[1,130,27,192,229,61,48,159,123,128,36,93,254,32,60,173,228,49,152,70,2,8,116,92,118,223,166,228,176,94,177,159,4,20,96,190,115,126,4,72,39,186,87,63,119,210,238,24,25,56,249,122,118,150,155,216,116,212,157,30,69,203,235,98,113,50,29,196,140,74,248,209,0,145,105,47,235,83,96,215,67,132,71,138,11,112,253,115,151,210,208,4,195,28,193,147],[10,149,50,228,239,186,51,190,207,122,152,171,196,234,80,190,63,179,47,34,185,123,83,217,208,77,32,143,159,245,28,106,216,41,54,163,203,146,24,57,192,80,225,37,52,171,103,143,12,109,127,87,202,51,166,220,220,233,79,205,8,131,236,189,255,164,120,16,195,198,215,21,154,226,124,221,112,191,193,116,47,133,12,138,120,75,40,116,113,186,15,32,126,218,123,5],[10,135,221,185,200,87,246,151,183,121,13,173,50,20,246,56,227,75,85,145,49,167,89,177,207,215,21,1,143,160,99,192,71,144,1,126,5,42,20,7,241,210,123,238,164,142,238,12,25,29,95,1,94,95,159,172,111,72,24,33,69,191,198,115,87,93,13,32,239,115,199,133,236,163,189,190,46,137,212,214,216,66,189,200,57,176,173,213,146,190,88,181,160,170,34,191],[8,68,91,212,249,64,100,43,159,158,235,247,217,210,69,140,179,202,164,22,13,78,142,34,159,221,218,152,202,132,203,19,43,125,149,248,238,206,249,234,232,204,194,140,43,138,86,133,6,76,5,149,29,34,132,201,46,95,216,117,28,84,45,206,42,99,32,224,41,144,129,42,105,188,250,125,75,149,151,119,93,205,49,122,183,92,35,211,53,129,51,187,103,18,128,193],[16,177,157,46,155,160,151,0,221,134,150,250,129,182,27,215,64,25,117,250,213,97,206,35,95,153,84,16,144,121,34,2,93,235,22,206,26,109,172,232,106,61,55,158,229,78,83,124,9,137,112,69,72,161,47,5,118,41,38,82,25,211,126,137,140,187,152,48,207,3,147,209,235,192,90,32,138,77,238,107,245,147,37,88,206,247,154,217,82,165,106,22,248,26,230,168],[1,174,143,200,14,120,192,72,84,98,187,149,36,1,4,105,158,149,188,71,69,24,92,149,62,103,143,253,208,156,1,32,201,139,209,234,86,176,164,184,206,176,62,35,232,207,157,52,22,192,218,105,175,36,18,58,102,206,141,154,20,96,38,139,85,243,241,125,91,135,142,5,151,148,39,3,86,246,81,79,101,87,182,173,51,2,100,195,112,95,198,6,163,192,201,80],[11,166,181,101,198,39,250,10,210,73,137,9,222,13,219,234,88,216,25,37,5,82,72,6,236,114,185,11,112,67,21,16,24,143,198,254,140,10,216,19,168,140,68,51,93,217,66,150,8,242,163,168,108,35,214,240,180,139,101,128,15,212,41,189,187,27,204,242,48,115,55,28,170,73,230,4,2,214,63,118,194,180,152,204,89,148,195,179,70,117,87,142,23,21,10,98],[9,97,80,164,145,152,8,97,80,107,58,186,93,36,56,113,108,239,33,243,190,44,90,71,112,110,52,120,189,79,77,118,161,85,199,94,18,221,36,20,86,151,2,162,186,3,0,78,21,108,157,31,167,105,246,12,54,108,55,246,120,19,254,205,103,164,120,150,148,229,135,158,63,90,6,93,65,99,121,91,35,85,222,37,39,233,96,158,42,12,115,22,218,122,249,233],[25,70,152,66,176,54,2,186,54,8,49,0,186,3,62,46,34,176,179,52,194,152,101,150,253,151,102,108,83,56,145,59,87,11,36,195,144,152,243,127,200,14,150,130,243,227,211,120,13,84,40,252,98,201,84,120,210,203,240,209,90,12,203,111,99,85,187,235,209,31,145,104,221,228,182,23,142,186,212,156,133,121,146,239,35,213,22,159,159,228,172,87,44,233,55,65],[5,101,233,155,181,156,242,230,26,132,242,13,83,219,209,179,88,210,25,63,155,100,194,38,47,186,1,110,255,143,109,130,218,20,84,42,139,14,63,129,194,90,82,8,85,230,136,153,8,108,169,32,191,45,240,254,130,41,11,67,157,88,12,100,10,62,154,60,216,40,189,211,95,113,132,164,133,50,98,248,255,212,179,250,255,151,64,164,150,220,205,204,155,147,73,99]],"pariticipation_bits":[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true],"attested_header":{"slot":"32","proposer_index":"0","parent_root":"0x0000000000000000000000000000000000000000000000000000000000000000","state_root":"0x197a4b7dc00c75ee5c6d03c0e03f541cc4835a20b427a007bcb1a264b5cd268e","body_root":"0xdab4175862e44372d1e0148b2449aff923352eba4b7efd4805194e0720cf5afb"},"finalized_header":{"slot":"0","proposer_index":"0","parent_root":"0x0000000000000000000000000000000000000000000000000000000000000000","state_root":"0x0000000000000000000000000000000000000000000000000000000000000000","body_root":"0x4c4338dfbdba72e79c108852b52774b356ae70124c1d2ed5397f4567a66d35dc"},"finality_branch":[[235,99,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[61,75,229,208,25,186,21,234,62,243,4,168,59,138,6,127,46,121,244,106,63,172,128,105,48,106,108,129,74,10,53,235],[132,125,93,24,223,75,246,58,97,156,174,15,187,209,43,213,214,3,210,195,52,32,97,31,221,245,74,217,78,45,148,83],[110,211,142,94,6,128,7,99,93,122,179,185,34,100,118,177,122,81,82,200,22,17,180,0,237,192,18,14,240,147,108,131],[155,36,233,182,3,218,183,52,31,229,11,170,186,135,40,250,236,16,108,30,173,17,32,146,190,16,108,215,239,76,73,95],[68,177,30,58,180,74,214,199,111,188,103,22,162,155,83,145,41,251,226,97,205,72,114,173,12,185,219,75,73,41,191,198]],"execution_payload_root":[113,252,113,21,128,209,154,53,22,152,218,177,57,22,102,216,73,224,96,154,234,2,9,101,21,107,94,141,140,131,162,231],"execution_payload_branch":[[66,176,82,84,29,206,69,85,125,131,211,70,52,164,90,86,210,22,212,55,94,90,149,132,246,68,92,228,230,51,36,175],[51,100,136,3,63,229,243,239,76,204,18,175,7,185,55,11,146,229,83,227,94,203,74,51,122,27,28,14,74,254,30,14],[219,86,17,78,0,253,212,193,248,92,137,43,243,90,201,168,146,137,170,236,177,235,208,169,108,222,96,106,116,139,93,113],[156,200,108,117,214,234,134,249,66,137,170,240,18,207,96,236,49,180,252,246,212,177,241,162,156,106,55,243,83,138,77,132]],"domain":[7,0,0,0,48,83,175,74,95,250,246,166,104,40,151,228,42,212,194,8,48,56,232,147,61,9,41,204,88,234,56,134],"attested_header_multiproof":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,188,128,156,108,0,17,90,23,162,240,26,172,140,64,99,244,136,213,165,242,54,218,72,159,198,217,94,78,213,148,172]],"attested_header_helper_indices":[10,9,3],"finalized_header_multiproof":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[245,165,253,66,209,106,32,48,39,152,239,110,211,9,151,155,67,0,61,35,32,217,240,232,234,152,49,169,39,89,251,75],[245,165,253,66,209,106,32,48,39,152,239,110,211,9,151,155,67,0,61,35,32,217,240,232,234,152,49,169,39,89,251,75]],"finalized_header_helper_indices":[13,9,7,5]} \ No newline at end of file