Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00Latest 25 from a total of 540 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Withdraw | 24342069 | 33 days ago | IN | 0 ETH | 0.00009985 | ||||
| Early Stake | 24231247 | 48 days ago | IN | 0 ETH | 0.00015294 | ||||
| Claim | 24227561 | 49 days ago | IN | 0 ETH | 0.00017451 | ||||
| Claim | 24226459 | 49 days ago | IN | 0 ETH | 0.00001917 | ||||
| Early Stake | 24205662 | 52 days ago | IN | 0 ETH | 0.00000527 | ||||
| Claim | 24176533 | 56 days ago | IN | 0 ETH | 0.00013137 | ||||
| Early Stake | 24175140 | 56 days ago | IN | 0 ETH | 0.00016423 | ||||
| Early Stake | 24162269 | 58 days ago | IN | 0 ETH | 0.00015206 | ||||
| Claim | 24162161 | 58 days ago | IN | 0 ETH | 0.00017152 | ||||
| Claim | 24161514 | 58 days ago | IN | 0 ETH | 0.000004 | ||||
| Claim | 24148871 | 60 days ago | IN | 0 ETH | 0.00013907 | ||||
| Early Stake | 24103103 | 66 days ago | IN | 0 ETH | 0.00029794 | ||||
| Claim | 24083868 | 69 days ago | IN | 0 ETH | 0.00008827 | ||||
| Claim | 24077958 | 69 days ago | IN | 0 ETH | 0.00016869 | ||||
| Early Stake | 24019836 | 78 days ago | IN | 0 ETH | 0.00031653 | ||||
| Early Stake | 24003254 | 80 days ago | IN | 0 ETH | 0.02014521 | ||||
| Claim | 23988495 | 82 days ago | IN | 0 ETH | 0.00001533 | ||||
| Claim | 23974871 | 84 days ago | IN | 0 ETH | 0.00018475 | ||||
| Claim | 23973144 | 84 days ago | IN | 0 ETH | 0.00018723 | ||||
| Early Stake | 23879298 | 97 days ago | IN | 0 ETH | 0.00030118 | ||||
| Claim | 23875250 | 98 days ago | IN | 0 ETH | 0.0001748 | ||||
| Claim | 23846643 | 102 days ago | IN | 0 ETH | 0.00037306 | ||||
| Claim | 23819704 | 106 days ago | IN | 0 ETH | 0.00025752 | ||||
| Claim | 23796466 | 109 days ago | IN | 0 ETH | 0.0000284 | ||||
| Early Stake | 23768759 | 113 days ago | IN | 0 ETH | 0.00033976 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
MerkleDistributor
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2025-01-14
*/
// SPDX-License-Identifier: MIT
// Sources flattened with hardhat v2.9.9 https://hardhat.org
// File @openzeppelin/contracts/token/ERC20/IERC20.sol@v4.7.0
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(
address indexed owner,
address indexed spender,
uint256 value
);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(
address owner,
address spender
) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
}
// File @openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol@v4.7.0
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*/
interface IERC20Permit {
/**
* @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
* given ``owner``'s signed approval.
*
* IMPORTANT: The same issues {IERC20-approve} has related to transaction
* ordering also apply here.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `deadline` must be a timestamp in the future.
* - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
* over the EIP712-formatted function arguments.
* - the signature must use ``owner``'s current nonce (see {nonces}).
*
* For more information on the signature format, see the
* https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
* section].
*/
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external;
/**
* @dev Returns the current nonce for `owner`. This value must be
* included whenever a signature is generated for {permit}.
*
* Every successful call to {permit} increases ``owner``'s nonce by one. This
* prevents a signature from being used multiple times.
*/
function nonces(address owner) external view returns (uint256);
/**
* @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
*/
// solhint-disable-next-line func-name-mixedcase
function DOMAIN_SEPARATOR() external view returns (bytes32);
}
// File @openzeppelin/contracts/utils/Address.sol@v4.7.0
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(
address(this).balance >= amount,
"Address: insufficient balance"
);
(bool success, ) = recipient.call{value: amount}("");
require(
success,
"Address: unable to send value, recipient may have reverted"
);
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data
) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return
functionCallWithValue(
target,
data,
value,
"Address: low-level call with value failed"
);
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(
address(this).balance >= value,
"Address: insufficient balance for call"
);
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(
data
);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data
) internal view returns (bytes memory) {
return
functionStaticCall(
target,
data,
"Address: low-level static call failed"
);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data
) internal returns (bytes memory) {
return
functionDelegateCall(
target,
data,
"Address: low-level delegate call failed"
);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// File @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol@v4.7.0
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol)
pragma solidity ^0.8.0;
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using Address for address;
function safeTransfer(IERC20 token, address to, uint256 value) internal {
_callOptionalReturn(
token,
abi.encodeWithSelector(token.transfer.selector, to, value)
);
}
function safeTransferFrom(
IERC20 token,
address from,
address to,
uint256 value
) internal {
_callOptionalReturn(
token,
abi.encodeWithSelector(token.transferFrom.selector, from, to, value)
);
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(
IERC20 token,
address spender,
uint256 value
) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
require(
(value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(
token,
abi.encodeWithSelector(token.approve.selector, spender, value)
);
}
function safeIncreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
uint256 newAllowance = token.allowance(address(this), spender) + value;
_callOptionalReturn(
token,
abi.encodeWithSelector(
token.approve.selector,
spender,
newAllowance
)
);
}
function safeDecreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
unchecked {
uint256 oldAllowance = token.allowance(address(this), spender);
require(
oldAllowance >= value,
"SafeERC20: decreased allowance below zero"
);
uint256 newAllowance = oldAllowance - value;
_callOptionalReturn(
token,
abi.encodeWithSelector(
token.approve.selector,
spender,
newAllowance
)
);
}
}
function safePermit(
IERC20Permit token,
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) internal {
uint256 nonceBefore = token.nonces(owner);
token.permit(owner, spender, value, deadline, v, r, s);
uint256 nonceAfter = token.nonces(owner);
require(
nonceAfter == nonceBefore + 1,
"SafeERC20: permit did not succeed"
);
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(
data,
"SafeERC20: low-level call failed"
);
if (returndata.length > 0) {
// Return data is optional
require(
abi.decode(returndata, (bool)),
"SafeERC20: ERC20 operation did not succeed"
);
}
}
}
// File @openzeppelin/contracts/utils/cryptography/MerkleProof.sol@v4.7.0
// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)
pragma solidity ^0.8.0;
/**
* @dev These functions deal with verification of Merkle Tree proofs.
*
* The proofs can be generated using the JavaScript library
* https://github.com/miguelmota/merkletreejs[merkletreejs].
* Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
*
* See `test/utils/cryptography/MerkleProof.test.js` for some examples.
*
* WARNING: You should avoid using leaf values that are 64 bytes long prior to
* hashing, or use a hash function other than keccak256 for hashing leaves.
* This is because the concatenation of a sorted pair of internal nodes in
* the merkle tree could be reinterpreted as a leaf value.
*/
library MerkleProof {
/**
* @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
* defined by `root`. For this, a `proof` must be provided, containing
* sibling hashes on the branch from the leaf to the root of the tree. Each
* pair of leaves and each pair of pre-images are assumed to be sorted.
*/
function verify(
bytes32[] memory proof,
bytes32 root,
bytes32 leaf
) internal pure returns (bool) {
return processProof(proof, leaf) == root;
}
/**
* @dev Calldata version of {verify}
*
* _Available since v4.7._
*/
function verifyCalldata(
bytes32[] calldata proof,
bytes32 root,
bytes32 leaf
) internal pure returns (bool) {
return processProofCalldata(proof, leaf) == root;
}
/**
* @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
* from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
* hash matches the root of the tree. When processing the proof, the pairs
* of leafs & pre-images are assumed to be sorted.
*
* _Available since v4.4._
*/
function processProof(
bytes32[] memory proof,
bytes32 leaf
) internal pure returns (bytes32) {
bytes32 computedHash = leaf;
for (uint256 i = 0; i < proof.length; i++) {
computedHash = _hashPair(computedHash, proof[i]);
}
return computedHash;
}
/**
* @dev Calldata version of {processProof}
*
* _Available since v4.7._
*/
function processProofCalldata(
bytes32[] calldata proof,
bytes32 leaf
) internal pure returns (bytes32) {
bytes32 computedHash = leaf;
for (uint256 i = 0; i < proof.length; i++) {
computedHash = _hashPair(computedHash, proof[i]);
}
return computedHash;
}
/**
* @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
* `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
*
* _Available since v4.7._
*/
function multiProofVerify(
bytes32[] memory proof,
bool[] memory proofFlags,
bytes32 root,
bytes32[] memory leaves
) internal pure returns (bool) {
return processMultiProof(proof, proofFlags, leaves) == root;
}
/**
* @dev Calldata version of {multiProofVerify}
*
* _Available since v4.7._
*/
function multiProofVerifyCalldata(
bytes32[] calldata proof,
bool[] calldata proofFlags,
bytes32 root,
bytes32[] memory leaves
) internal pure returns (bool) {
return processMultiProofCalldata(proof, proofFlags, leaves) == root;
}
/**
* @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
* consuming from one or the other at each step according to the instructions given by
* `proofFlags`.
*
* _Available since v4.7._
*/
function processMultiProof(
bytes32[] memory proof,
bool[] memory proofFlags,
bytes32[] memory leaves
) internal pure returns (bytes32 merkleRoot) {
// This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
// consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
// `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
// the merkle tree.
uint256 leavesLen = leaves.length;
uint256 totalHashes = proofFlags.length;
// Check proof validity.
require(
leavesLen + proof.length - 1 == totalHashes,
"MerkleProof: invalid multiproof"
);
// The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
// `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
bytes32[] memory hashes = new bytes32[](totalHashes);
uint256 leafPos = 0;
uint256 hashPos = 0;
uint256 proofPos = 0;
// At each step, we compute the next hash using two values:
// - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
// get the next hash.
// - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
// `proof` array.
for (uint256 i = 0; i < totalHashes; i++) {
bytes32 a = leafPos < leavesLen
? leaves[leafPos++]
: hashes[hashPos++];
bytes32 b = proofFlags[i]
? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]
: proof[proofPos++];
hashes[i] = _hashPair(a, b);
}
if (totalHashes > 0) {
return hashes[totalHashes - 1];
} else if (leavesLen > 0) {
return leaves[0];
} else {
return proof[0];
}
}
/**
* @dev Calldata version of {processMultiProof}
*
* _Available since v4.7._
*/
function processMultiProofCalldata(
bytes32[] calldata proof,
bool[] calldata proofFlags,
bytes32[] memory leaves
) internal pure returns (bytes32 merkleRoot) {
// This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
// consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
// `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
// the merkle tree.
uint256 leavesLen = leaves.length;
uint256 totalHashes = proofFlags.length;
// Check proof validity.
require(
leavesLen + proof.length - 1 == totalHashes,
"MerkleProof: invalid multiproof"
);
// The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
// `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
bytes32[] memory hashes = new bytes32[](totalHashes);
uint256 leafPos = 0;
uint256 hashPos = 0;
uint256 proofPos = 0;
// At each step, we compute the next hash using two values:
// - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
// get the next hash.
// - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
// `proof` array.
for (uint256 i = 0; i < totalHashes; i++) {
bytes32 a = leafPos < leavesLen
? leaves[leafPos++]
: hashes[hashPos++];
bytes32 b = proofFlags[i]
? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]
: proof[proofPos++];
hashes[i] = _hashPair(a, b);
}
if (totalHashes > 0) {
return hashes[totalHashes - 1];
} else if (leavesLen > 0) {
return leaves[0];
} else {
return proof[0];
}
}
function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
}
function _efficientHash(
bytes32 a,
bytes32 b
) private pure returns (bytes32 value) {
/// @solidity memory-safe-assembly
assembly {
mstore(0x00, a)
mstore(0x20, b)
value := keccak256(0x00, 0x40)
}
}
}
// File @openzeppelin/contracts/utils/Context.sol@v4.7.0
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// File @openzeppelin/contracts/access/Ownable.sol@v4.7.0
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(
address indexed previousOwner,
address indexed newOwner
);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(
newOwner != address(0),
"Ownable: new owner is the zero address"
);
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// File contracts/interfaces/IMerkleDistributor.sol
pragma solidity >=0.5.0;
// Allows anyone to claim a token if they exist in a merkle root.
interface IMerkleDistributor {
// Returns the address of the token distributed by this contract.
function token() external view returns (address);
// Returns the merkle root of the merkle tree containing account balances available to claim.
function merkleRoot() external view returns (bytes32);
// Returns true if the index has been marked claimed.
function isClaimed(uint256 index) external view returns (bool);
// Claim the given amount of the token to the given address. Reverts if the inputs are invalid.
function claim(
uint256 index,
address account,
uint256 amount,
bytes32[] calldata merkleProof
) external;
// This event is triggered whenever a call to #claim succeeds.
event Claimed(uint256 index, address account, uint256 amount);
}
// File contracts/MerkleDistributor.sol
pragma solidity =0.8.17;
error AlreadyClaimed();
error InvalidProof();
error NotAuthorized();
error EndTimeInPast();
error ClaimWindowFinished();
error NoWithdrawDuringClaim();
error ZeroAddress();
error StakingContractAlreadySet();
contract MerkleDistributor is IMerkleDistributor, Ownable {
using SafeERC20 for IERC20;
address public immutable override token;
bytes32 public immutable override merkleRoot;
uint256 public immutable endTime;
address public stakingContract;
// This is a packed array of booleans.
mapping(uint256 => uint256) private claimedBitMap;
event StakingContractSet(address indexed stakingContract);
event EarlyStaked(
uint256 indexed index,
address indexed account,
uint256 amount
);
constructor(address token_, bytes32 merkleRoot_, uint256 endTime_) {
if (endTime_ <= block.timestamp) revert EndTimeInPast();
token = token_;
merkleRoot = merkleRoot_;
endTime = endTime_;
}
function setStakingContract(address stakingContract_) external onlyOwner {
if (stakingContract_ == address(0)) revert ZeroAddress();
if (stakingContract != address(0)) revert StakingContractAlreadySet();
stakingContract = stakingContract_;
emit StakingContractSet(stakingContract_);
}
function approveStakingContract() external onlyOwner {
if (stakingContract == address(0)) revert ZeroAddress();
uint256 maxSupply = 100_000_000 * 1e18;
IERC20(token).safeApprove(stakingContract, maxSupply);
}
function isClaimed(uint256 index) public view override returns (bool) {
uint256 claimedWordIndex = index / 256;
uint256 claimedBitIndex = index % 256;
uint256 claimedWord = claimedBitMap[claimedWordIndex];
uint256 mask = (1 << claimedBitIndex);
return claimedWord & mask == mask;
}
function _setClaimed(uint256 index) private {
uint256 claimedWordIndex = index / 256;
uint256 claimedBitIndex = index % 256;
claimedBitMap[claimedWordIndex] =
claimedBitMap[claimedWordIndex] |
(1 << claimedBitIndex);
}
function claim(
uint256 index,
address account,
uint256 amount,
bytes32[] calldata merkleProof
) public virtual override {
if (block.timestamp > endTime) revert ClaimWindowFinished();
if (msg.sender != owner() && msg.sender != account)
revert NotAuthorized();
if (isClaimed(index)) revert AlreadyClaimed();
// Verify the merkle proof.
bytes32 node = keccak256(abi.encodePacked(index, account, amount));
if (!MerkleProof.verify(merkleProof, merkleRoot, node))
revert InvalidProof();
// Mark it claimed and send the token.
_setClaimed(index);
IERC20(token).safeTransfer(account, amount);
emit Claimed(index, account, amount);
}
function earlyStake(
uint256 index,
address account,
uint256 amount,
bytes32[] calldata merkleProof
) public virtual {
if (stakingContract == address(0)) revert ZeroAddress();
if (block.timestamp > endTime) revert ClaimWindowFinished();
if (msg.sender != owner() && msg.sender != account)
revert NotAuthorized();
if (isClaimed(index)) revert AlreadyClaimed();
// Verify the merkle proof.
bytes32 node = keccak256(abi.encodePacked(index, account, amount));
if (!MerkleProof.verify(merkleProof, merkleRoot, node))
revert InvalidProof();
// Mark it claimed and stake
_setClaimed(index);
IXEDStaking(stakingContract).earlyStake(account, amount);
emit EarlyStaked(index, account, amount);
}
function withdraw() external onlyOwner {
if (block.timestamp < endTime) revert NoWithdrawDuringClaim();
IERC20(token).safeTransfer(
msg.sender,
IERC20(token).balanceOf(address(this))
);
}
}
interface IXEDStaking {
function earlyStake(address user, uint256 amount) external;
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"token_","type":"address"},{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"},{"internalType":"uint256","name":"endTime_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyClaimed","type":"error"},{"inputs":[],"name":"ClaimWindowFinished","type":"error"},{"inputs":[],"name":"EndTimeInPast","type":"error"},{"inputs":[],"name":"InvalidProof","type":"error"},{"inputs":[],"name":"NoWithdrawDuringClaim","type":"error"},{"inputs":[],"name":"NotAuthorized","type":"error"},{"inputs":[],"name":"StakingContractAlreadySet","type":"error"},{"inputs":[],"name":"ZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"index","type":"uint256"},{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Claimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"index","type":"uint256"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"EarlyStaked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"stakingContract","type":"address"}],"name":"StakingContractSet","type":"event"},{"inputs":[],"name":"approveStakingContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"earlyStake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"isClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"stakingContract_","type":"address"}],"name":"setStakingContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60e06040523480156200001157600080fd5b50604051620021d9380380620021d983398181016040528101906200003791906200028a565b620000576200004b620000de60201b60201c565b620000e660201b60201c565b42811162000091576040517f72e54d4d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508160a081815250508060c08181525050505050620002e6565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620001dc82620001af565b9050919050565b620001ee81620001cf565b8114620001fa57600080fd5b50565b6000815190506200020e81620001e3565b92915050565b6000819050919050565b620002298162000214565b81146200023557600080fd5b50565b60008151905062000249816200021e565b92915050565b6000819050919050565b62000264816200024f565b81146200027057600080fd5b50565b600081519050620002848162000259565b92915050565b600080600060608486031215620002a657620002a5620001aa565b5b6000620002b686828701620001fd565b9350506020620002c98682870162000238565b9250506040620002dc8682870162000273565b9150509250925092565b60805160a05160c051611e84620003556000396000818161022a015281816104f60152818161052201526106ea0152600081816103de015281816104d2015261089e015260008181610449015281816105800152818161061a01528181610cc10152610db30152611e846000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c80638da5cb5b1161008c578063be65073d11610066578063be65073d146101c6578063ee99205c146101d0578063f2fde38b146101ee578063fc0c546a1461020a576100cf565b80638da5cb5b1461015c5780639dd373b91461017a5780639e34070f14610196576100cf565b80632e7ba6ef146100d45780632eb4a7ab146100f05780633197cbb61461010e5780633ccfd60b1461012c5780634406790514610136578063715018a614610152575b600080fd5b6100ee60048036038101906100e9919061157d565b610228565b005b6100f86104d0565b604051610105919061161e565b60405180910390f35b6101166104f4565b6040516101239190611648565b60405180910390f35b610134610518565b005b610150600480360381019061014b919061157d565b610660565b005b61015a6109e8565b005b6101646109fc565b6040516101719190611672565b60405180910390f35b610194600480360381019061018f919061168d565b610a25565b005b6101b060048036038101906101ab91906116ba565b610ba2565b6040516101bd9190611702565b60405180910390f35b6101ce610bf8565b005b6101d8610d08565b6040516101e59190611672565b60405180910390f35b6102086004803603810190610203919061168d565b610d2e565b005b610212610db1565b60405161021f9190611672565b60405180910390f35b7f0000000000000000000000000000000000000000000000000000000000000000421115610282576040517fd365f61100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61028a6109fc565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141580156102f157508373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15610328576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61033185610ba2565b15610368576040517f646cf55800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600085858560405160200161037f93929190611786565b604051602081830303815290604052805190602001209050610403838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050507f000000000000000000000000000000000000000000000000000000000000000083610dd5565b610439576040517f09bde33900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61044286610dec565b61048d85857f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16610e469092919063ffffffff16565b7f4ec90e965519d92681267467f775ada5bd214aa92c0dc93d90a5e880ce9ed0268686866040516104c0939291906117c3565b60405180910390a1505050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000081565b610520610ecc565b7f000000000000000000000000000000000000000000000000000000000000000042101561057a576040517fee56a2b000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61065e337f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016105d79190611672565b602060405180830381865afa1580156105f4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610618919061180f565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16610e469092919063ffffffff16565b565b600073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036106e8576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000421115610742576040517fd365f61100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61074a6109fc565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141580156107b157508373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b156107e8576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6107f185610ba2565b15610828576040517f646cf55800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600085858560405160200161083f93929190611786565b6040516020818303038152906040528051906020012090506108c3838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050507f000000000000000000000000000000000000000000000000000000000000000083610dd5565b6108f9576040517f09bde33900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61090286610dec565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166379d2629986866040518363ffffffff1660e01b815260040161095f92919061183c565b600060405180830381600087803b15801561097957600080fd5b505af115801561098d573d6000803e3d6000fd5b505050508473ffffffffffffffffffffffffffffffffffffffff16867f925c3108097b0d7b1fefe57bbffbe0add27b86e9106cdb78ff562cf2d2c32d6d866040516109d89190611648565b60405180910390a3505050505050565b6109f0610ecc565b6109fa6000610f4a565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610a2d610ecc565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a93576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b1b576040517f930af15f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f1253844b0fff3da7dd2829de816c9b4f94c238cf2bf6eb72c02c7d6f2b53beac60405160405180910390a250565b60008061010083610bb391906118c3565b9050600061010084610bc591906118f4565b90506000600260008481526020019081526020016000205490506000826001901b90508081831614945050505050919050565b610c00610ecc565b600073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610c88576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006a52b7d2dcc80cd2e40000009050610d05600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16827f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1661100e9092919063ffffffff16565b50565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610d36610ecc565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9c906119a8565b60405180910390fd5b610dae81610f4a565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b600082610de2858461115d565b1490509392505050565b600061010082610dfc91906118c3565b9050600061010083610e0e91906118f4565b9050806001901b6002600084815260200190815260200160002054176002600084815260200190815260200160002081905550505050565b610ec78363a9059cbb60e01b8484604051602401610e6592919061183c565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506111b3565b505050565b610ed461127a565b73ffffffffffffffffffffffffffffffffffffffff16610ef26109fc565b73ffffffffffffffffffffffffffffffffffffffff1614610f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3f90611a14565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000811480611098575060008373ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e30856040518363ffffffff1660e01b8152600401611055929190611a34565b602060405180830381865afa158015611072573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611096919061180f565b145b6110d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ce90611acf565b60405180910390fd5b6111588363095ea7b360e01b84846040516024016110f692919061183c565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506111b3565b505050565b60008082905060005b84518110156111a8576111938286838151811061118657611185611aef565b5b6020026020010151611282565b915080806111a090611b1e565b915050611166565b508091505092915050565b6000611215826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166112ad9092919063ffffffff16565b905060008151111561127557808060200190518101906112359190611b92565b611274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126b90611c31565b60405180910390fd5b5b505050565b600033905090565b600081831061129a5761129582846112c5565b6112a5565b6112a483836112c5565b5b905092915050565b60606112bc84846000856112dc565b90509392505050565b600082600052816020526040600020905092915050565b606082471015611321576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131890611cc3565b60405180910390fd5b61132a856113f0565b611369576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136090611d2f565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516113929190611dc0565b60006040518083038185875af1925050503d80600081146113cf576040519150601f19603f3d011682016040523d82523d6000602084013e6113d4565b606091505b50915091506113e4828286611413565b92505050949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6060831561142357829050611473565b6000835111156114365782518084602001fd5b816040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146a9190611e2c565b60405180910390fd5b9392505050565b600080fd5b600080fd5b6000819050919050565b61149781611484565b81146114a257600080fd5b50565b6000813590506114b48161148e565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006114e5826114ba565b9050919050565b6114f5816114da565b811461150057600080fd5b50565b600081359050611512816114ec565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261153d5761153c611518565b5b8235905067ffffffffffffffff81111561155a5761155961151d565b5b60208301915083602082028301111561157657611575611522565b5b9250929050565b6000806000806000608086880312156115995761159861147a565b5b60006115a7888289016114a5565b95505060206115b888828901611503565b94505060406115c9888289016114a5565b935050606086013567ffffffffffffffff8111156115ea576115e961147f565b5b6115f688828901611527565b92509250509295509295909350565b6000819050919050565b61161881611605565b82525050565b6000602082019050611633600083018461160f565b92915050565b61164281611484565b82525050565b600060208201905061165d6000830184611639565b92915050565b61166c816114da565b82525050565b60006020820190506116876000830184611663565b92915050565b6000602082840312156116a3576116a261147a565b5b60006116b184828501611503565b91505092915050565b6000602082840312156116d0576116cf61147a565b5b60006116de848285016114a5565b91505092915050565b60008115159050919050565b6116fc816116e7565b82525050565b600060208201905061171760008301846116f3565b92915050565b6000819050919050565b61173861173382611484565b61171d565b82525050565b60008160601b9050919050565b60006117568261173e565b9050919050565b60006117688261174b565b9050919050565b61178061177b826114da565b61175d565b82525050565b60006117928286611727565b6020820191506117a2828561176f565b6014820191506117b28284611727565b602082019150819050949350505050565b60006060820190506117d86000830186611639565b6117e56020830185611663565b6117f26040830184611639565b949350505050565b6000815190506118098161148e565b92915050565b6000602082840312156118255761182461147a565b5b6000611833848285016117fa565b91505092915050565b60006040820190506118516000830185611663565b61185e6020830184611639565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006118ce82611484565b91506118d983611484565b9250826118e9576118e8611865565b5b828204905092915050565b60006118ff82611484565b915061190a83611484565b92508261191a57611919611865565b5b828206905092915050565b600082825260208201905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611992602683611925565b915061199d82611936565b604082019050919050565b600060208201905081810360008301526119c181611985565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006119fe602083611925565b9150611a09826119c8565b602082019050919050565b60006020820190508181036000830152611a2d816119f1565b9050919050565b6000604082019050611a496000830185611663565b611a566020830184611663565b9392505050565b7f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60008201527f20746f206e6f6e2d7a65726f20616c6c6f77616e636500000000000000000000602082015250565b6000611ab9603683611925565b9150611ac482611a5d565b604082019050919050565b60006020820190508181036000830152611ae881611aac565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000611b2982611484565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611b5b57611b5a611894565b5b600182019050919050565b611b6f816116e7565b8114611b7a57600080fd5b50565b600081519050611b8c81611b66565b92915050565b600060208284031215611ba857611ba761147a565b5b6000611bb684828501611b7d565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b6000611c1b602a83611925565b9150611c2682611bbf565b604082019050919050565b60006020820190508181036000830152611c4a81611c0e565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b6000611cad602683611925565b9150611cb882611c51565b604082019050919050565b60006020820190508181036000830152611cdc81611ca0565b9050919050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b6000611d19601d83611925565b9150611d2482611ce3565b602082019050919050565b60006020820190508181036000830152611d4881611d0c565b9050919050565b600081519050919050565b600081905092915050565b60005b83811015611d83578082015181840152602081019050611d68565b60008484015250505050565b6000611d9a82611d4f565b611da48185611d5a565b9350611db4818560208601611d65565b80840191505092915050565b6000611dcc8284611d8f565b915081905092915050565b600081519050919050565b6000601f19601f8301169050919050565b6000611dfe82611dd7565b611e088185611925565b9350611e18818560208601611d65565b611e2181611de2565b840191505092915050565b60006020820190508181036000830152611e468184611df3565b90509291505056fea2646970667358221220aff6284a6b97176626c2970383b990824d3af837a6d0d459d413898a8f78738464736f6c63430008110033000000000000000000000000ef7f7820a001aabac5e0979b175c9ff8af3dd4ec00b3ba488bc41f02c3d030ef6565cf31dc92d18dc8030cacb7d6e17cfaafc6c6000000000000000000000000000000000000000000000000000000006967e7b0
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c80638da5cb5b1161008c578063be65073d11610066578063be65073d146101c6578063ee99205c146101d0578063f2fde38b146101ee578063fc0c546a1461020a576100cf565b80638da5cb5b1461015c5780639dd373b91461017a5780639e34070f14610196576100cf565b80632e7ba6ef146100d45780632eb4a7ab146100f05780633197cbb61461010e5780633ccfd60b1461012c5780634406790514610136578063715018a614610152575b600080fd5b6100ee60048036038101906100e9919061157d565b610228565b005b6100f86104d0565b604051610105919061161e565b60405180910390f35b6101166104f4565b6040516101239190611648565b60405180910390f35b610134610518565b005b610150600480360381019061014b919061157d565b610660565b005b61015a6109e8565b005b6101646109fc565b6040516101719190611672565b60405180910390f35b610194600480360381019061018f919061168d565b610a25565b005b6101b060048036038101906101ab91906116ba565b610ba2565b6040516101bd9190611702565b60405180910390f35b6101ce610bf8565b005b6101d8610d08565b6040516101e59190611672565b60405180910390f35b6102086004803603810190610203919061168d565b610d2e565b005b610212610db1565b60405161021f9190611672565b60405180910390f35b7f000000000000000000000000000000000000000000000000000000006967e7b0421115610282576040517fd365f61100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61028a6109fc565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141580156102f157508373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15610328576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61033185610ba2565b15610368576040517f646cf55800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600085858560405160200161037f93929190611786565b604051602081830303815290604052805190602001209050610403838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050507f00b3ba488bc41f02c3d030ef6565cf31dc92d18dc8030cacb7d6e17cfaafc6c683610dd5565b610439576040517f09bde33900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61044286610dec565b61048d85857f000000000000000000000000ef7f7820a001aabac5e0979b175c9ff8af3dd4ec73ffffffffffffffffffffffffffffffffffffffff16610e469092919063ffffffff16565b7f4ec90e965519d92681267467f775ada5bd214aa92c0dc93d90a5e880ce9ed0268686866040516104c0939291906117c3565b60405180910390a1505050505050565b7f00b3ba488bc41f02c3d030ef6565cf31dc92d18dc8030cacb7d6e17cfaafc6c681565b7f000000000000000000000000000000000000000000000000000000006967e7b081565b610520610ecc565b7f000000000000000000000000000000000000000000000000000000006967e7b042101561057a576040517fee56a2b000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61065e337f000000000000000000000000ef7f7820a001aabac5e0979b175c9ff8af3dd4ec73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016105d79190611672565b602060405180830381865afa1580156105f4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610618919061180f565b7f000000000000000000000000ef7f7820a001aabac5e0979b175c9ff8af3dd4ec73ffffffffffffffffffffffffffffffffffffffff16610e469092919063ffffffff16565b565b600073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036106e8576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f000000000000000000000000000000000000000000000000000000006967e7b0421115610742576040517fd365f61100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61074a6109fc565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141580156107b157508373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b156107e8576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6107f185610ba2565b15610828576040517f646cf55800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600085858560405160200161083f93929190611786565b6040516020818303038152906040528051906020012090506108c3838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050507f00b3ba488bc41f02c3d030ef6565cf31dc92d18dc8030cacb7d6e17cfaafc6c683610dd5565b6108f9576040517f09bde33900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61090286610dec565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166379d2629986866040518363ffffffff1660e01b815260040161095f92919061183c565b600060405180830381600087803b15801561097957600080fd5b505af115801561098d573d6000803e3d6000fd5b505050508473ffffffffffffffffffffffffffffffffffffffff16867f925c3108097b0d7b1fefe57bbffbe0add27b86e9106cdb78ff562cf2d2c32d6d866040516109d89190611648565b60405180910390a3505050505050565b6109f0610ecc565b6109fa6000610f4a565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610a2d610ecc565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a93576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b1b576040517f930af15f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f1253844b0fff3da7dd2829de816c9b4f94c238cf2bf6eb72c02c7d6f2b53beac60405160405180910390a250565b60008061010083610bb391906118c3565b9050600061010084610bc591906118f4565b90506000600260008481526020019081526020016000205490506000826001901b90508081831614945050505050919050565b610c00610ecc565b600073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610c88576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006a52b7d2dcc80cd2e40000009050610d05600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16827f000000000000000000000000ef7f7820a001aabac5e0979b175c9ff8af3dd4ec73ffffffffffffffffffffffffffffffffffffffff1661100e9092919063ffffffff16565b50565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610d36610ecc565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9c906119a8565b60405180910390fd5b610dae81610f4a565b50565b7f000000000000000000000000ef7f7820a001aabac5e0979b175c9ff8af3dd4ec81565b600082610de2858461115d565b1490509392505050565b600061010082610dfc91906118c3565b9050600061010083610e0e91906118f4565b9050806001901b6002600084815260200190815260200160002054176002600084815260200190815260200160002081905550505050565b610ec78363a9059cbb60e01b8484604051602401610e6592919061183c565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506111b3565b505050565b610ed461127a565b73ffffffffffffffffffffffffffffffffffffffff16610ef26109fc565b73ffffffffffffffffffffffffffffffffffffffff1614610f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3f90611a14565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000811480611098575060008373ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e30856040518363ffffffff1660e01b8152600401611055929190611a34565b602060405180830381865afa158015611072573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611096919061180f565b145b6110d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ce90611acf565b60405180910390fd5b6111588363095ea7b360e01b84846040516024016110f692919061183c565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506111b3565b505050565b60008082905060005b84518110156111a8576111938286838151811061118657611185611aef565b5b6020026020010151611282565b915080806111a090611b1e565b915050611166565b508091505092915050565b6000611215826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166112ad9092919063ffffffff16565b905060008151111561127557808060200190518101906112359190611b92565b611274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126b90611c31565b60405180910390fd5b5b505050565b600033905090565b600081831061129a5761129582846112c5565b6112a5565b6112a483836112c5565b5b905092915050565b60606112bc84846000856112dc565b90509392505050565b600082600052816020526040600020905092915050565b606082471015611321576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131890611cc3565b60405180910390fd5b61132a856113f0565b611369576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136090611d2f565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516113929190611dc0565b60006040518083038185875af1925050503d80600081146113cf576040519150601f19603f3d011682016040523d82523d6000602084013e6113d4565b606091505b50915091506113e4828286611413565b92505050949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6060831561142357829050611473565b6000835111156114365782518084602001fd5b816040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146a9190611e2c565b60405180910390fd5b9392505050565b600080fd5b600080fd5b6000819050919050565b61149781611484565b81146114a257600080fd5b50565b6000813590506114b48161148e565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006114e5826114ba565b9050919050565b6114f5816114da565b811461150057600080fd5b50565b600081359050611512816114ec565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261153d5761153c611518565b5b8235905067ffffffffffffffff81111561155a5761155961151d565b5b60208301915083602082028301111561157657611575611522565b5b9250929050565b6000806000806000608086880312156115995761159861147a565b5b60006115a7888289016114a5565b95505060206115b888828901611503565b94505060406115c9888289016114a5565b935050606086013567ffffffffffffffff8111156115ea576115e961147f565b5b6115f688828901611527565b92509250509295509295909350565b6000819050919050565b61161881611605565b82525050565b6000602082019050611633600083018461160f565b92915050565b61164281611484565b82525050565b600060208201905061165d6000830184611639565b92915050565b61166c816114da565b82525050565b60006020820190506116876000830184611663565b92915050565b6000602082840312156116a3576116a261147a565b5b60006116b184828501611503565b91505092915050565b6000602082840312156116d0576116cf61147a565b5b60006116de848285016114a5565b91505092915050565b60008115159050919050565b6116fc816116e7565b82525050565b600060208201905061171760008301846116f3565b92915050565b6000819050919050565b61173861173382611484565b61171d565b82525050565b60008160601b9050919050565b60006117568261173e565b9050919050565b60006117688261174b565b9050919050565b61178061177b826114da565b61175d565b82525050565b60006117928286611727565b6020820191506117a2828561176f565b6014820191506117b28284611727565b602082019150819050949350505050565b60006060820190506117d86000830186611639565b6117e56020830185611663565b6117f26040830184611639565b949350505050565b6000815190506118098161148e565b92915050565b6000602082840312156118255761182461147a565b5b6000611833848285016117fa565b91505092915050565b60006040820190506118516000830185611663565b61185e6020830184611639565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006118ce82611484565b91506118d983611484565b9250826118e9576118e8611865565b5b828204905092915050565b60006118ff82611484565b915061190a83611484565b92508261191a57611919611865565b5b828206905092915050565b600082825260208201905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611992602683611925565b915061199d82611936565b604082019050919050565b600060208201905081810360008301526119c181611985565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006119fe602083611925565b9150611a09826119c8565b602082019050919050565b60006020820190508181036000830152611a2d816119f1565b9050919050565b6000604082019050611a496000830185611663565b611a566020830184611663565b9392505050565b7f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60008201527f20746f206e6f6e2d7a65726f20616c6c6f77616e636500000000000000000000602082015250565b6000611ab9603683611925565b9150611ac482611a5d565b604082019050919050565b60006020820190508181036000830152611ae881611aac565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000611b2982611484565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611b5b57611b5a611894565b5b600182019050919050565b611b6f816116e7565b8114611b7a57600080fd5b50565b600081519050611b8c81611b66565b92915050565b600060208284031215611ba857611ba761147a565b5b6000611bb684828501611b7d565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b6000611c1b602a83611925565b9150611c2682611bbf565b604082019050919050565b60006020820190508181036000830152611c4a81611c0e565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b6000611cad602683611925565b9150611cb882611c51565b604082019050919050565b60006020820190508181036000830152611cdc81611ca0565b9050919050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b6000611d19601d83611925565b9150611d2482611ce3565b602082019050919050565b60006020820190508181036000830152611d4881611d0c565b9050919050565b600081519050919050565b600081905092915050565b60005b83811015611d83578082015181840152602081019050611d68565b60008484015250505050565b6000611d9a82611d4f565b611da48185611d5a565b9350611db4818560208601611d65565b80840191505092915050565b6000611dcc8284611d8f565b915081905092915050565b600081519050919050565b6000601f19601f8301169050919050565b6000611dfe82611dd7565b611e088185611925565b9350611e18818560208601611d65565b611e2181611de2565b840191505092915050565b60006020820190508181036000830152611e468184611df3565b90509291505056fea2646970667358221220aff6284a6b97176626c2970383b990824d3af837a6d0d459d413898a8f78738464736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000ef7f7820a001aabac5e0979b175c9ff8af3dd4ec00b3ba488bc41f02c3d030ef6565cf31dc92d18dc8030cacb7d6e17cfaafc6c6000000000000000000000000000000000000000000000000000000006967e7b0
-----Decoded View---------------
Arg [0] : token_ (address): 0xef7f7820a001aabAc5E0979b175C9ff8Af3Dd4ec
Arg [1] : merkleRoot_ (bytes32): 0x00b3ba488bc41f02c3d030ef6565cf31dc92d18dc8030cacb7d6e17cfaafc6c6
Arg [2] : endTime_ (uint256): 1768417200
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000ef7f7820a001aabac5e0979b175c9ff8af3dd4ec
Arg [1] : 00b3ba488bc41f02c3d030ef6565cf31dc92d18dc8030cacb7d6e17cfaafc6c6
Arg [2] : 000000000000000000000000000000000000000000000000000000006967e7b0
Deployed Bytecode Sourcemap
33376:3928:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35385:793;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33522:44;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33573:32;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37056:245;;;:::i;:::-;;36186:862;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31235:103;;;:::i;:::-;;30587:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34181:325;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34762:331;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34514:240;;;:::i;:::-;;33614:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31493:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33476:39;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35385:793;35580:7;35562:15;:25;35558:59;;;35596:21;;;;;;;;;;;;;;35558:59;35646:7;:5;:7::i;:::-;35632:21;;:10;:21;;;;:46;;;;;35671:7;35657:21;;:10;:21;;;;35632:46;35628:87;;;35700:15;;;;;;;;;;;;;;35628:87;35730:16;35740:5;35730:9;:16::i;:::-;35726:45;;;35755:16;;;;;;;;;;;;;;35726:45;35821:12;35863:5;35870:7;35879:6;35846:40;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;35836:51;;;;;;35821:66;;35903:49;35922:11;;35903:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35935:10;35947:4;35903:18;:49::i;:::-;35898:90;;35974:14;;;;;;;;;;;;;;35898:90;36049:18;36061:5;36049:11;:18::i;:::-;36078:43;36105:7;36114:6;36085:5;36078:26;;;;:43;;;;;:::i;:::-;36139:31;36147:5;36154:7;36163:6;36139:31;;;;;;;;:::i;:::-;;;;;;;;35547:631;35385:793;;;;;:::o;33522:44::-;;;:::o;33573:32::-;;;:::o;37056:245::-;30473:13;:11;:13::i;:::-;37128:7:::1;37110:15;:25;37106:61;;;37144:23;;;;;;;;;;;;;;37106:61;37178:115;37219:10;37251:5;37244:23;;;37276:4;37244:38;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37185:5;37178:26;;;;:115;;;;;:::i;:::-;37056:245::o:0;36186:862::-;36386:1;36359:29;;:15;;;;;;;;;;;:29;;;36355:55;;36397:13;;;;;;;;;;;;;;36355:55;36443:7;36425:15;:25;36421:59;;;36459:21;;;;;;;;;;;;;;36421:59;36509:7;:5;:7::i;:::-;36495:21;;:10;:21;;;;:46;;;;;36534:7;36520:21;;:10;:21;;;;36495:46;36491:87;;;36563:15;;;;;;;;;;;;;;36491:87;36593:16;36603:5;36593:9;:16::i;:::-;36589:45;;;36618:16;;;;;;;;;;;;;;36589:45;36684:12;36726:5;36733:7;36742:6;36709:40;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;36699:51;;;;;;36684:66;;36766:49;36785:11;;36766:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36798:10;36810:4;36766:18;:49::i;:::-;36761:90;;36837:14;;;;;;;;;;;;;;36761:90;36902:18;36914:5;36902:11;:18::i;:::-;36943:15;;;;;;;;;;;36931:39;;;36971:7;36980:6;36931:56;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37024:7;37005:35;;37017:5;37005:35;37033:6;37005:35;;;;;;:::i;:::-;;;;;;;;36344:704;36186:862;;;;;:::o;31235:103::-;30473:13;:11;:13::i;:::-;31300:30:::1;31327:1;31300:18;:30::i;:::-;31235:103::o:0;30587:87::-;30633:7;30660:6;;;;;;;;;;;30653:13;;30587:87;:::o;34181:325::-;30473:13;:11;:13::i;:::-;34297:1:::1;34269:30;;:16;:30;;::::0;34265:56:::1;;34308:13;;;;;;;;;;;;;;34265:56;34363:1;34336:29;;:15;;;;;;;;;;;:29;;;34332:69;;34374:27;;;;;;;;;;;;;;34332:69;34430:16;34412:15;;:34;;;;;;;;;;;;;;;;;;34481:16;34462:36;;;;;;;;;;;;34181:325:::0;:::o;34762:331::-;34826:4;34843:24;34878:3;34870:5;:11;;;;:::i;:::-;34843:38;;34892:23;34926:3;34918:5;:11;;;;:::i;:::-;34892:37;;34940:19;34962:13;:31;34976:16;34962:31;;;;;;;;;;;;34940:53;;35004:12;35025:15;35020:1;:20;;35004:37;;35081:4;35073;35059:11;:18;:26;35052:33;;;;;;34762:331;;;:::o;34514:240::-;30473:13;:11;:13::i;:::-;34609:1:::1;34582:29;;:15;;;;;;;;;;;:29;;::::0;34578:55:::1;;34620:13;;;;;;;;;;;;;;34578:55;34644:17;34664:18;34644:38;;34693:53;34719:15;;;;;;;;;;;34736:9;34700:5;34693:25;;;;:53;;;;;:::i;:::-;34567:187;34514:240::o:0;33614:30::-;;;;;;;;;;;;;:::o;31493:238::-;30473:13;:11;:13::i;:::-;31616:1:::1;31596:22;;:8;:22;;::::0;31574:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;31695:28;31714:8;31695:18;:28::i;:::-;31493:238:::0;:::o;33476:39::-;;;:::o;20637:190::-;20762:4;20815;20786:25;20799:5;20806:4;20786:12;:25::i;:::-;:33;20779:40;;20637:190;;;;;:::o;35101:276::-;35156:24;35191:3;35183:5;:11;;;;:::i;:::-;35156:38;;35205:23;35239:3;35231:5;:11;;;;:::i;:::-;35205:37;;35353:15;35348:1;:20;;35300:13;:31;35314:16;35300:31;;;;;;;;;;;;:69;35253:13;:31;35267:16;35253:31;;;;;;;;;;;:116;;;;35145:232;;35101:276;:::o;15141:214::-;15224:123;15258:5;15301:23;;;15326:2;15330:5;15278:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15224:19;:123::i;:::-;15141:214;;;:::o;30752:132::-;30827:12;:10;:12::i;:::-;30816:23;;:7;:5;:7::i;:::-;:23;;;30808:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30752:132::o;31891:191::-;31965:16;31984:6;;;;;;;;;;;31965:25;;32010:8;32001:6;;:17;;;;;;;;;;;;;;;;;;32065:8;32034:40;;32055:8;32034:40;;;;;;;;;;;;31954:128;31891:191;:::o;15917:653::-;16290:1;16281:5;:10;16280:62;;;;16340:1;16297:5;:15;;;16321:4;16328:7;16297:39;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:44;16280:62;16258:166;;;;;;;;;;;;:::i;:::-;;;;;;;;;16435:127;16469:5;16512:22;;;16536:7;16545:5;16489:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16435:19;:127::i;:::-;15917:653;;;:::o;21504:321::-;21612:7;21632:20;21655:4;21632:27;;21675:9;21670:118;21694:5;:12;21690:1;:16;21670:118;;;21743:33;21753:12;21767:5;21773:1;21767:8;;;;;;;;:::i;:::-;;;;;;;;21743:9;:33::i;:::-;21728:48;;21708:3;;;;;:::i;:::-;;;;21670:118;;;;21805:12;21798:19;;;21504:321;;;;:::o;18605:802::-;19029:23;19055:106;19097:4;19055:106;;;;;;;;;;;;;;;;;19063:5;19055:27;;;;:106;;;;;:::i;:::-;19029:132;;19196:1;19176:10;:17;:21;19172:228;;;19291:10;19280:30;;;;;;;;;;;;:::i;:::-;19254:134;;;;;;;;;;;;:::i;:::-;;;;;;;;;19172:228;18675:732;18605:802;;:::o;29111:98::-;29164:7;29191:10;29184:17;;29111:98;:::o;27971:149::-;28034:7;28065:1;28061;:5;:51;;28092:20;28107:1;28110;28092:14;:20::i;:::-;28061:51;;;28069:20;28084:1;28087;28069:14;:20::i;:::-;28061:51;28054:58;;27971:149;;;;:::o;9489:229::-;9626:12;9658:52;9680:6;9688:4;9694:1;9697:12;9658:21;:52::i;:::-;9651:59;;9489:229;;;;;:::o;28128:293::-;28221:13;28328:1;28322:4;28315:15;28357:1;28351:4;28344:15;28398:4;28392;28382:21;28373:30;;28128:293;;;;:::o;10705:571::-;10875:12;10947:5;10922:21;:30;;10900:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;11037:18;11048:6;11037:10;:18::i;:::-;11029:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;11103:12;11117:23;11144:6;:11;;11163:5;11184:4;11144:55;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11102:97;;;;11217:51;11234:7;11243:10;11255:12;11217:16;:51::i;:::-;11210:58;;;;10705:571;;;;;;:::o;6645:326::-;6705:4;6962:1;6940:7;:19;;;:23;6933:30;;6645:326;;;:::o;13660:762::-;13810:12;13839:7;13835:580;;;13870:10;13863:17;;;;13835:580;14004:1;13984:10;:17;:21;13980:424;;;14232:10;14226:17;14293:15;14280:10;14276:2;14272:19;14265:44;13980:424;14375:12;14368:20;;;;;;;;;;;:::i;:::-;;;;;;;;13660:762;;;;;;:::o;88:117:1:-;197:1;194;187:12;211:117;320:1;317;310:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:126::-;727:7;767:42;760:5;756:54;745:65;;690:126;;;:::o;822:96::-;859:7;888:24;906:5;888:24;:::i;:::-;877:35;;822:96;;;:::o;924:122::-;997:24;1015:5;997:24;:::i;:::-;990:5;987:35;977:63;;1036:1;1033;1026:12;977:63;924:122;:::o;1052:139::-;1098:5;1136:6;1123:20;1114:29;;1152:33;1179:5;1152:33;:::i;:::-;1052:139;;;;:::o;1197:117::-;1306:1;1303;1296:12;1320:117;1429:1;1426;1419:12;1443:117;1552:1;1549;1542:12;1583:568;1656:8;1666:6;1716:3;1709:4;1701:6;1697:17;1693:27;1683:122;;1724:79;;:::i;:::-;1683:122;1837:6;1824:20;1814:30;;1867:18;1859:6;1856:30;1853:117;;;1889:79;;:::i;:::-;1853:117;2003:4;1995:6;1991:17;1979:29;;2057:3;2049:4;2041:6;2037:17;2027:8;2023:32;2020:41;2017:128;;;2064:79;;:::i;:::-;2017:128;1583:568;;;;;:::o;2157:995::-;2270:6;2278;2286;2294;2302;2351:3;2339:9;2330:7;2326:23;2322:33;2319:120;;;2358:79;;:::i;:::-;2319:120;2478:1;2503:53;2548:7;2539:6;2528:9;2524:22;2503:53;:::i;:::-;2493:63;;2449:117;2605:2;2631:53;2676:7;2667:6;2656:9;2652:22;2631:53;:::i;:::-;2621:63;;2576:118;2733:2;2759:53;2804:7;2795:6;2784:9;2780:22;2759:53;:::i;:::-;2749:63;;2704:118;2889:2;2878:9;2874:18;2861:32;2920:18;2912:6;2909:30;2906:117;;;2942:79;;:::i;:::-;2906:117;3055:80;3127:7;3118:6;3107:9;3103:22;3055:80;:::i;:::-;3037:98;;;;2832:313;2157:995;;;;;;;;:::o;3158:77::-;3195:7;3224:5;3213:16;;3158:77;;;:::o;3241:118::-;3328:24;3346:5;3328:24;:::i;:::-;3323:3;3316:37;3241:118;;:::o;3365:222::-;3458:4;3496:2;3485:9;3481:18;3473:26;;3509:71;3577:1;3566:9;3562:17;3553:6;3509:71;:::i;:::-;3365:222;;;;:::o;3593:118::-;3680:24;3698:5;3680:24;:::i;:::-;3675:3;3668:37;3593:118;;:::o;3717:222::-;3810:4;3848:2;3837:9;3833:18;3825:26;;3861:71;3929:1;3918:9;3914:17;3905:6;3861:71;:::i;:::-;3717:222;;;;:::o;3945:118::-;4032:24;4050:5;4032:24;:::i;:::-;4027:3;4020:37;3945:118;;:::o;4069:222::-;4162:4;4200:2;4189:9;4185:18;4177:26;;4213:71;4281:1;4270:9;4266:17;4257:6;4213:71;:::i;:::-;4069:222;;;;:::o;4297:329::-;4356:6;4405:2;4393:9;4384:7;4380:23;4376:32;4373:119;;;4411:79;;:::i;:::-;4373:119;4531:1;4556:53;4601:7;4592:6;4581:9;4577:22;4556:53;:::i;:::-;4546:63;;4502:117;4297:329;;;;:::o;4632:::-;4691:6;4740:2;4728:9;4719:7;4715:23;4711:32;4708:119;;;4746:79;;:::i;:::-;4708:119;4866:1;4891:53;4936:7;4927:6;4916:9;4912:22;4891:53;:::i;:::-;4881:63;;4837:117;4632:329;;;;:::o;4967:90::-;5001:7;5044:5;5037:13;5030:21;5019:32;;4967:90;;;:::o;5063:109::-;5144:21;5159:5;5144:21;:::i;:::-;5139:3;5132:34;5063:109;;:::o;5178:210::-;5265:4;5303:2;5292:9;5288:18;5280:26;;5316:65;5378:1;5367:9;5363:17;5354:6;5316:65;:::i;:::-;5178:210;;;;:::o;5394:79::-;5433:7;5462:5;5451:16;;5394:79;;;:::o;5479:157::-;5584:45;5604:24;5622:5;5604:24;:::i;:::-;5584:45;:::i;:::-;5579:3;5572:58;5479:157;;:::o;5642:94::-;5675:8;5723:5;5719:2;5715:14;5694:35;;5642:94;;;:::o;5742:::-;5781:7;5810:20;5824:5;5810:20;:::i;:::-;5799:31;;5742:94;;;:::o;5842:100::-;5881:7;5910:26;5930:5;5910:26;:::i;:::-;5899:37;;5842:100;;;:::o;5948:157::-;6053:45;6073:24;6091:5;6073:24;:::i;:::-;6053:45;:::i;:::-;6048:3;6041:58;5948:157;;:::o;6111:538::-;6279:3;6294:75;6365:3;6356:6;6294:75;:::i;:::-;6394:2;6389:3;6385:12;6378:19;;6407:75;6478:3;6469:6;6407:75;:::i;:::-;6507:2;6502:3;6498:12;6491:19;;6520:75;6591:3;6582:6;6520:75;:::i;:::-;6620:2;6615:3;6611:12;6604:19;;6640:3;6633:10;;6111:538;;;;;;:::o;6655:442::-;6804:4;6842:2;6831:9;6827:18;6819:26;;6855:71;6923:1;6912:9;6908:17;6899:6;6855:71;:::i;:::-;6936:72;7004:2;6993:9;6989:18;6980:6;6936:72;:::i;:::-;7018;7086:2;7075:9;7071:18;7062:6;7018:72;:::i;:::-;6655:442;;;;;;:::o;7103:143::-;7160:5;7191:6;7185:13;7176:22;;7207:33;7234:5;7207:33;:::i;:::-;7103:143;;;;:::o;7252:351::-;7322:6;7371:2;7359:9;7350:7;7346:23;7342:32;7339:119;;;7377:79;;:::i;:::-;7339:119;7497:1;7522:64;7578:7;7569:6;7558:9;7554:22;7522:64;:::i;:::-;7512:74;;7468:128;7252:351;;;;:::o;7609:332::-;7730:4;7768:2;7757:9;7753:18;7745:26;;7781:71;7849:1;7838:9;7834:17;7825:6;7781:71;:::i;:::-;7862:72;7930:2;7919:9;7915:18;7906:6;7862:72;:::i;:::-;7609:332;;;;;:::o;7947:180::-;7995:77;7992:1;7985:88;8092:4;8089:1;8082:15;8116:4;8113:1;8106:15;8133:180;8181:77;8178:1;8171:88;8278:4;8275:1;8268:15;8302:4;8299:1;8292:15;8319:185;8359:1;8376:20;8394:1;8376:20;:::i;:::-;8371:25;;8410:20;8428:1;8410:20;:::i;:::-;8405:25;;8449:1;8439:35;;8454:18;;:::i;:::-;8439:35;8496:1;8493;8489:9;8484:14;;8319:185;;;;:::o;8510:176::-;8542:1;8559:20;8577:1;8559:20;:::i;:::-;8554:25;;8593:20;8611:1;8593:20;:::i;:::-;8588:25;;8632:1;8622:35;;8637:18;;:::i;:::-;8622:35;8678:1;8675;8671:9;8666:14;;8510:176;;;;:::o;8692:169::-;8776:11;8810:6;8805:3;8798:19;8850:4;8845:3;8841:14;8826:29;;8692:169;;;;:::o;8867:225::-;9007:34;9003:1;8995:6;8991:14;8984:58;9076:8;9071:2;9063:6;9059:15;9052:33;8867:225;:::o;9098:366::-;9240:3;9261:67;9325:2;9320:3;9261:67;:::i;:::-;9254:74;;9337:93;9426:3;9337:93;:::i;:::-;9455:2;9450:3;9446:12;9439:19;;9098:366;;;:::o;9470:419::-;9636:4;9674:2;9663:9;9659:18;9651:26;;9723:9;9717:4;9713:20;9709:1;9698:9;9694:17;9687:47;9751:131;9877:4;9751:131;:::i;:::-;9743:139;;9470:419;;;:::o;9895:182::-;10035:34;10031:1;10023:6;10019:14;10012:58;9895:182;:::o;10083:366::-;10225:3;10246:67;10310:2;10305:3;10246:67;:::i;:::-;10239:74;;10322:93;10411:3;10322:93;:::i;:::-;10440:2;10435:3;10431:12;10424:19;;10083:366;;;:::o;10455:419::-;10621:4;10659:2;10648:9;10644:18;10636:26;;10708:9;10702:4;10698:20;10694:1;10683:9;10679:17;10672:47;10736:131;10862:4;10736:131;:::i;:::-;10728:139;;10455:419;;;:::o;10880:332::-;11001:4;11039:2;11028:9;11024:18;11016:26;;11052:71;11120:1;11109:9;11105:17;11096:6;11052:71;:::i;:::-;11133:72;11201:2;11190:9;11186:18;11177:6;11133:72;:::i;:::-;10880:332;;;;;:::o;11218:241::-;11358:34;11354:1;11346:6;11342:14;11335:58;11427:24;11422:2;11414:6;11410:15;11403:49;11218:241;:::o;11465:366::-;11607:3;11628:67;11692:2;11687:3;11628:67;:::i;:::-;11621:74;;11704:93;11793:3;11704:93;:::i;:::-;11822:2;11817:3;11813:12;11806:19;;11465:366;;;:::o;11837:419::-;12003:4;12041:2;12030:9;12026:18;12018:26;;12090:9;12084:4;12080:20;12076:1;12065:9;12061:17;12054:47;12118:131;12244:4;12118:131;:::i;:::-;12110:139;;11837:419;;;:::o;12262:180::-;12310:77;12307:1;12300:88;12407:4;12404:1;12397:15;12431:4;12428:1;12421:15;12448:233;12487:3;12510:24;12528:5;12510:24;:::i;:::-;12501:33;;12556:66;12549:5;12546:77;12543:103;;12626:18;;:::i;:::-;12543:103;12673:1;12666:5;12662:13;12655:20;;12448:233;;;:::o;12687:116::-;12757:21;12772:5;12757:21;:::i;:::-;12750:5;12747:32;12737:60;;12793:1;12790;12783:12;12737:60;12687:116;:::o;12809:137::-;12863:5;12894:6;12888:13;12879:22;;12910:30;12934:5;12910:30;:::i;:::-;12809:137;;;;:::o;12952:345::-;13019:6;13068:2;13056:9;13047:7;13043:23;13039:32;13036:119;;;13074:79;;:::i;:::-;13036:119;13194:1;13219:61;13272:7;13263:6;13252:9;13248:22;13219:61;:::i;:::-;13209:71;;13165:125;12952:345;;;;:::o;13303:229::-;13443:34;13439:1;13431:6;13427:14;13420:58;13512:12;13507:2;13499:6;13495:15;13488:37;13303:229;:::o;13538:366::-;13680:3;13701:67;13765:2;13760:3;13701:67;:::i;:::-;13694:74;;13777:93;13866:3;13777:93;:::i;:::-;13895:2;13890:3;13886:12;13879:19;;13538:366;;;:::o;13910:419::-;14076:4;14114:2;14103:9;14099:18;14091:26;;14163:9;14157:4;14153:20;14149:1;14138:9;14134:17;14127:47;14191:131;14317:4;14191:131;:::i;:::-;14183:139;;13910:419;;;:::o;14335:225::-;14475:34;14471:1;14463:6;14459:14;14452:58;14544:8;14539:2;14531:6;14527:15;14520:33;14335:225;:::o;14566:366::-;14708:3;14729:67;14793:2;14788:3;14729:67;:::i;:::-;14722:74;;14805:93;14894:3;14805:93;:::i;:::-;14923:2;14918:3;14914:12;14907:19;;14566:366;;;:::o;14938:419::-;15104:4;15142:2;15131:9;15127:18;15119:26;;15191:9;15185:4;15181:20;15177:1;15166:9;15162:17;15155:47;15219:131;15345:4;15219:131;:::i;:::-;15211:139;;14938:419;;;:::o;15363:179::-;15503:31;15499:1;15491:6;15487:14;15480:55;15363:179;:::o;15548:366::-;15690:3;15711:67;15775:2;15770:3;15711:67;:::i;:::-;15704:74;;15787:93;15876:3;15787:93;:::i;:::-;15905:2;15900:3;15896:12;15889:19;;15548:366;;;:::o;15920:419::-;16086:4;16124:2;16113:9;16109:18;16101:26;;16173:9;16167:4;16163:20;16159:1;16148:9;16144:17;16137:47;16201:131;16327:4;16201:131;:::i;:::-;16193:139;;15920:419;;;:::o;16345:98::-;16396:6;16430:5;16424:12;16414:22;;16345:98;;;:::o;16449:147::-;16550:11;16587:3;16572:18;;16449:147;;;;:::o;16602:246::-;16683:1;16693:113;16707:6;16704:1;16701:13;16693:113;;;16792:1;16787:3;16783:11;16777:18;16773:1;16768:3;16764:11;16757:39;16729:2;16726:1;16722:10;16717:15;;16693:113;;;16840:1;16831:6;16826:3;16822:16;16815:27;16664:184;16602:246;;;:::o;16854:386::-;16958:3;16986:38;17018:5;16986:38;:::i;:::-;17040:88;17121:6;17116:3;17040:88;:::i;:::-;17033:95;;17137:65;17195:6;17190:3;17183:4;17176:5;17172:16;17137:65;:::i;:::-;17227:6;17222:3;17218:16;17211:23;;16962:278;16854:386;;;;:::o;17246:271::-;17376:3;17398:93;17487:3;17478:6;17398:93;:::i;:::-;17391:100;;17508:3;17501:10;;17246:271;;;;:::o;17523:99::-;17575:6;17609:5;17603:12;17593:22;;17523:99;;;:::o;17628:102::-;17669:6;17720:2;17716:7;17711:2;17704:5;17700:14;17696:28;17686:38;;17628:102;;;:::o;17736:377::-;17824:3;17852:39;17885:5;17852:39;:::i;:::-;17907:71;17971:6;17966:3;17907:71;:::i;:::-;17900:78;;17987:65;18045:6;18040:3;18033:4;18026:5;18022:16;17987:65;:::i;:::-;18077:29;18099:6;18077:29;:::i;:::-;18072:3;18068:39;18061:46;;17828:285;17736:377;;;;:::o;18119:313::-;18232:4;18270:2;18259:9;18255:18;18247:26;;18319:9;18313:4;18309:20;18305:1;18294:9;18290:17;18283:47;18347:78;18420:4;18411:6;18347:78;:::i;:::-;18339:86;;18119:313;;;;:::o
Swarm Source
ipfs://aff6284a6b97176626c2970383b990824d3af837a6d0d459d413898a8f787384
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.