Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 32 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Get Unclaimed To... | 19234696 | 418 days ago | IN | 0 ETH | 0.00346228 | ||||
Claim Fuck Jared | 19234456 | 418 days ago | IN | 0 ETH | 0.00728687 | ||||
Set Merkle Root | 19234373 | 418 days ago | IN | 0 ETH | 0.00300623 | ||||
Claim Fuck Jared | 19234357 | 418 days ago | IN | 0 ETH | 0.00527456 | ||||
Claim Fuck Jared | 19234344 | 418 days ago | IN | 0 ETH | 0.00589733 | ||||
Claim Fuck Jared | 19234265 | 419 days ago | IN | 0 ETH | 0.00631927 | ||||
Claim Fuck Jared | 19234231 | 419 days ago | IN | 0 ETH | 0.0055325 | ||||
Claim Fuck Jared | 19233002 | 419 days ago | IN | 0 ETH | 0.00283822 | ||||
Claim Fuck Jared | 19232561 | 419 days ago | IN | 0 ETH | 0.00418321 | ||||
Claim Fuck Jared | 19231808 | 419 days ago | IN | 0 ETH | 0.00231065 | ||||
Claim Fuck Jared | 19231619 | 419 days ago | IN | 0 ETH | 0.00380328 | ||||
Claim Fuck Jared | 19231540 | 419 days ago | IN | 0 ETH | 0.00236239 | ||||
Claim Fuck Jared | 19231426 | 419 days ago | IN | 0 ETH | 0.00177121 | ||||
Claim Fuck Jared | 19230206 | 419 days ago | IN | 0 ETH | 0.00209834 | ||||
Claim Fuck Jared | 19229837 | 419 days ago | IN | 0 ETH | 0.00353122 | ||||
Claim Fuck Jared | 19229598 | 419 days ago | IN | 0 ETH | 0.00212184 | ||||
Claim Fuck Jared | 19229262 | 419 days ago | IN | 0 ETH | 0.00277207 | ||||
Claim Fuck Jared | 19228968 | 419 days ago | IN | 0 ETH | 0.0032284 | ||||
Claim Fuck Jared | 19227993 | 419 days ago | IN | 0 ETH | 0.00369229 | ||||
Claim Fuck Jared | 19227952 | 419 days ago | IN | 0 ETH | 0.00355304 | ||||
Claim Fuck Jared | 19227946 | 419 days ago | IN | 0 ETH | 0.00485416 | ||||
Claim Fuck Jared | 19227930 | 419 days ago | IN | 0 ETH | 0.00433446 | ||||
Claim Fuck Jared | 19227898 | 419 days ago | IN | 0 ETH | 0.00729431 | ||||
Claim Fuck Jared | 19227864 | 419 days ago | IN | 0 ETH | 0.0032946 | ||||
Claim Fuck Jared | 19227823 | 419 days ago | IN | 0 ETH | 0.00253138 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
FuckJaredAirdrop
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-02-14 */ // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.9.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 * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [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://consensys.net/diligence/blog/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.8.0/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 functionCallWithValue(target, data, 0, "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"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or 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 { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // 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/extensions/IERC20Permit.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/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/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.9.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/utils/SafeERC20.sol // OpenZeppelin Contracts (last updated v4.9.3) (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; /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ 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)); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value)); } /** * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ 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"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value)); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval * to be set to zero before setting it to a non-zero value, such as USDT. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0)); _callOptionalReturn(token, approvalCall); } } /** * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`. * Revert on invalid signature. */ 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"); require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation 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). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // 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 cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token)); } } // File: @openzeppelin/contracts/utils/Context.sol // 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 // OpenZeppelin Contracts (last updated v4.9.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. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.9.2) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The tree and the proofs can be generated using our * https://github.com/OpenZeppelin/merkle-tree[JavaScript library]. * You will find a quickstart guide in the readme. * * 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. * OpenZeppelin's JavaScript library generates merkle trees that are safe * against this attack out of the box. */ 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 simultaneously proven to be a part of a merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _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} * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _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 sibling nodes in `proof`. The reconstruction * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false * respectively. * * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer). * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuilds 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 proofLen = proof.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proofLen - 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 from 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) { require(proofPos == proofLen, "MerkleProof: invalid multiproof"); unchecked { return hashes[totalHashes - 1]; } } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuilds 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 proofLen = proof.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proofLen - 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 from 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) { require(proofPos == proofLen, "MerkleProof: invalid multiproof"); unchecked { 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: contracts/FuckJaredAirdrop.sol pragma solidity 0.8.17; contract FuckJaredAirdrop is Ownable { using SafeERC20 for IERC20; // start period with merkle root for period bytes32 public merkleRoot; mapping(address=>bool) public claimed; IERC20 public token; uint256 private constant GAS_STIPEND_NO_GRIEF = 100000; event AddedNewMerkleRootEvent(bytes32 merkleRoot); event FuckJaredClaimedEvent(address user, uint amount); event UnclaimedTokensEvent(uint amount); error NoValidProofError(bytes32[] proof); error AlreadyClaimedError(address user); function claimFuckJared(uint amount, bytes32[] memory proof) external { address user = msg.sender; if (claimed[user]) { revert AlreadyClaimedError(user); } bytes32 leaf = keccak256(abi.encodePacked(user, amount)); if (!MerkleProof.verify(proof, merkleRoot, leaf)) { revert NoValidProofError(proof); } claimed[user] = true; token.safeTransfer(user, amount); emit FuckJaredClaimedEvent(user, amount); } // Owner functions function setMerkleRoot(bytes32 _merkleRoot) external payable onlyOwner { merkleRoot = _merkleRoot; emit AddedNewMerkleRootEvent(_merkleRoot); } function setFuckJaredToken(address fuckJaredTokenAddress) external onlyOwner { token = IERC20(fuckJaredTokenAddress); } function withdraw(uint amount) external onlyOwner { forceSafeTransferETH(msg.sender, amount); } function getUnclaimedTokensForBurning() external onlyOwner { uint256 amount = token.balanceOf(address(this)); token.safeTransfer(msg.sender, amount); emit UnclaimedTokensEvent(amount); } // Private functions function forceSafeTransferETH(address to, uint256 amount) private { assembly { if lt(selfbalance(), amount) { mstore(0x00, 0xb12d13eb) revert(0x1c, 0x04) } if iszero(call(GAS_STIPEND_NO_GRIEF, to, amount, 0, 0, 0, 0)) { mstore(0x00, to) mstore8(0x0b, 0x73) mstore8(0x20, 0xff) pop(create(amount, 0x0b, 0x16)) } } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"AlreadyClaimedError","type":"error"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"NoValidProofError","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"AddedNewMerkleRootEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"FuckJaredClaimedEvent","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":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"UnclaimedTokensEvent","type":"event"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"claimFuckJared","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getUnclaimedTokensForBurning","outputs":[],"stateMutability":"nonpayable","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":"fuckJaredTokenAddress","type":"address"}],"name":"setFuckJaredToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b5061002d61002261003260201b60201c565b61003a60201b60201c565b6100fe565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6117648061010d6000396000f3fe60806040526004361061009c5760003560e01c8063715018a611610064578063715018a61461015e5780637cb64759146101755780638da5cb5b14610191578063c884ef83146101bc578063f2fde38b146101f9578063fc0c546a146102225761009c565b80630b36e765146100a157806319edf197146100b85780632e1a7d4d146100e15780632eb4a7ab1461010a5780637078515914610135575b600080fd5b3480156100ad57600080fd5b506100b661024d565b005b3480156100c457600080fd5b506100df60048036038101906100da9190610cec565b61037c565b005b3480156100ed57600080fd5b5061010860048036038101906101039190610d4f565b6103c8565b005b34801561011657600080fd5b5061011f6103dd565b60405161012c9190610d95565b60405180910390f35b34801561014157600080fd5b5061015c60048036038101906101579190610f35565b6103e3565b005b34801561016a57600080fd5b506101736105d6565b005b61018f600480360381019061018a9190610f91565b6105ea565b005b34801561019d57600080fd5b506101a6610633565b6040516101b39190610fcd565b60405180910390f35b3480156101c857600080fd5b506101e360048036038101906101de9190610cec565b61065c565b6040516101f09190611003565b60405180910390f35b34801561020557600080fd5b50610220600480360381019061021b9190610cec565b61067c565b005b34801561022e57600080fd5b506102376106ff565b604051610244919061107d565b60405180910390f35b610255610725565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016102b29190610fcd565b602060405180830381865afa1580156102cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102f391906110ad565b90506103423382600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166107a39092919063ffffffff16565b7f37355916d36486a16b59735397c60ab95fe0b21b650eb9727c1b12df48b349ad8160405161037191906110e9565b60405180910390a150565b610384610725565b80600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6103d0610725565b6103da3382610829565b50565b60015481565b6000339050600260008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561047757806040517faa8068b300000000000000000000000000000000000000000000000000000000815260040161046e9190610fcd565b60405180910390fd5b6000818460405160200161048c92919061116d565b6040516020818303038152906040528051906020012090506104b1836001548361086a565b6104f257826040517fa3ae083d0000000000000000000000000000000000000000000000000000000081526004016104e99190611257565b60405180910390fd5b6001600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506105978285600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166107a39092919063ffffffff16565b7fc6403ee32d8a056b9ded176f1e16fbe044b8aa30de4900347433853973f616a182856040516105c8929190611279565b60405180910390a150505050565b6105de610725565b6105e86000610881565b565b6105f2610725565b806001819055507ff079b37959754bbbbd38f30cd52ef1281b07c15e527f7dd8950fe2b754756478816040516106289190610d95565b60405180910390a150565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60026020528060005260406000206000915054906101000a900460ff1681565b610684610725565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036106f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ea90611325565b60405180910390fd5b6106fc81610881565b50565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61072d610945565b73ffffffffffffffffffffffffffffffffffffffff1661074b610633565b73ffffffffffffffffffffffffffffffffffffffff16146107a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079890611391565b60405180910390fd5b565b6108248363a9059cbb60e01b84846040516024016107c2929190611279565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061094d565b505050565b8047101561083f5763b12d13eb6000526004601cfd5b6000806000808486620186a0f161086657816000526073600b5360ff6020536016600b82f0505b5050565b6000826108778584610a15565b1490509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b60006109af826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16610a6b9092919063ffffffff16565b90506000815114806109d15750808060200190518101906109d091906113dd565b5b610a10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a079061147c565b60405180910390fd5b505050565b60008082905060005b8451811015610a6057610a4b82868381518110610a3e57610a3d61149c565b5b6020026020010151610a83565b91508080610a58906114fa565b915050610a1e565b508091505092915050565b6060610a7a8484600085610aae565b90509392505050565b6000818310610a9b57610a968284610b7b565b610aa6565b610aa58383610b7b565b5b905092915050565b606082471015610af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aea906115b4565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051610b1c9190611645565b60006040518083038185875af1925050503d8060008114610b59576040519150601f19603f3d011682016040523d82523d6000602084013e610b5e565b606091505b5091509150610b6f87838387610b92565b92505050949350505050565b600082600052816020526040600020905092915050565b60608315610bf4576000835103610bec57610bac85610c07565b610beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be2906116a8565b60405180910390fd5b5b829050610bff565b610bfe8383610c2a565b5b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082511115610c3d5781518083602001fd5b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c71919061170c565b60405180910390fd5b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610cb982610c8e565b9050919050565b610cc981610cae565b8114610cd457600080fd5b50565b600081359050610ce681610cc0565b92915050565b600060208284031215610d0257610d01610c84565b5b6000610d1084828501610cd7565b91505092915050565b6000819050919050565b610d2c81610d19565b8114610d3757600080fd5b50565b600081359050610d4981610d23565b92915050565b600060208284031215610d6557610d64610c84565b5b6000610d7384828501610d3a565b91505092915050565b6000819050919050565b610d8f81610d7c565b82525050565b6000602082019050610daa6000830184610d86565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b610dfe82610db5565b810181811067ffffffffffffffff82111715610e1d57610e1c610dc6565b5b80604052505050565b6000610e30610c7a565b9050610e3c8282610df5565b919050565b600067ffffffffffffffff821115610e5c57610e5b610dc6565b5b602082029050602081019050919050565b600080fd5b610e7b81610d7c565b8114610e8657600080fd5b50565b600081359050610e9881610e72565b92915050565b6000610eb1610eac84610e41565b610e26565b90508083825260208201905060208402830185811115610ed457610ed3610e6d565b5b835b81811015610efd5780610ee98882610e89565b845260208401935050602081019050610ed6565b5050509392505050565b600082601f830112610f1c57610f1b610db0565b5b8135610f2c848260208601610e9e565b91505092915050565b60008060408385031215610f4c57610f4b610c84565b5b6000610f5a85828601610d3a565b925050602083013567ffffffffffffffff811115610f7b57610f7a610c89565b5b610f8785828601610f07565b9150509250929050565b600060208284031215610fa757610fa6610c84565b5b6000610fb584828501610e89565b91505092915050565b610fc781610cae565b82525050565b6000602082019050610fe26000830184610fbe565b92915050565b60008115159050919050565b610ffd81610fe8565b82525050565b60006020820190506110186000830184610ff4565b92915050565b6000819050919050565b600061104361103e61103984610c8e565b61101e565b610c8e565b9050919050565b600061105582611028565b9050919050565b60006110678261104a565b9050919050565b6110778161105c565b82525050565b6000602082019050611092600083018461106e565b92915050565b6000815190506110a781610d23565b92915050565b6000602082840312156110c3576110c2610c84565b5b60006110d184828501611098565b91505092915050565b6110e381610d19565b82525050565b60006020820190506110fe60008301846110da565b92915050565b60008160601b9050919050565b600061111c82611104565b9050919050565b600061112e82611111565b9050919050565b61114661114182610cae565b611123565b82525050565b6000819050919050565b61116761116282610d19565b61114c565b82525050565b60006111798285611135565b6014820191506111898284611156565b6020820191508190509392505050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6111ce81610d7c565b82525050565b60006111e083836111c5565b60208301905092915050565b6000602082019050919050565b600061120482611199565b61120e81856111a4565b9350611219836111b5565b8060005b8381101561124a57815161123188826111d4565b975061123c836111ec565b92505060018101905061121d565b5085935050505092915050565b6000602082019050818103600083015261127181846111f9565b905092915050565b600060408201905061128e6000830185610fbe565b61129b60208301846110da565b9392505050565b600082825260208201905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061130f6026836112a2565b915061131a826112b3565b604082019050919050565b6000602082019050818103600083015261133e81611302565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061137b6020836112a2565b915061138682611345565b602082019050919050565b600060208201905081810360008301526113aa8161136e565b9050919050565b6113ba81610fe8565b81146113c557600080fd5b50565b6000815190506113d7816113b1565b92915050565b6000602082840312156113f3576113f2610c84565b5b6000611401848285016113c8565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b6000611466602a836112a2565b91506114718261140a565b604082019050919050565b6000602082019050818103600083015261149581611459565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061150582610d19565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611537576115366114cb565b5b600182019050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b600061159e6026836112a2565b91506115a982611542565b604082019050919050565b600060208201905081810360008301526115cd81611591565b9050919050565b600081519050919050565b600081905092915050565b60005b838110156116085780820151818401526020810190506115ed565b60008484015250505050565b600061161f826115d4565b61162981856115df565b93506116398185602086016115ea565b80840191505092915050565b60006116518284611614565b915081905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b6000611692601d836112a2565b915061169d8261165c565b602082019050919050565b600060208201905081810360008301526116c181611685565b9050919050565b600081519050919050565b60006116de826116c8565b6116e881856112a2565b93506116f88185602086016115ea565b61170181610db5565b840191505092915050565b6000602082019050818103600083015261172681846116d3565b90509291505056fea26469706673582212209e9559a544624c7bc201dce2922e8ac235e15bc9373e2070050eb3ff8aef1ee164736f6c63430008110033
Deployed Bytecode
0x60806040526004361061009c5760003560e01c8063715018a611610064578063715018a61461015e5780637cb64759146101755780638da5cb5b14610191578063c884ef83146101bc578063f2fde38b146101f9578063fc0c546a146102225761009c565b80630b36e765146100a157806319edf197146100b85780632e1a7d4d146100e15780632eb4a7ab1461010a5780637078515914610135575b600080fd5b3480156100ad57600080fd5b506100b661024d565b005b3480156100c457600080fd5b506100df60048036038101906100da9190610cec565b61037c565b005b3480156100ed57600080fd5b5061010860048036038101906101039190610d4f565b6103c8565b005b34801561011657600080fd5b5061011f6103dd565b60405161012c9190610d95565b60405180910390f35b34801561014157600080fd5b5061015c60048036038101906101579190610f35565b6103e3565b005b34801561016a57600080fd5b506101736105d6565b005b61018f600480360381019061018a9190610f91565b6105ea565b005b34801561019d57600080fd5b506101a6610633565b6040516101b39190610fcd565b60405180910390f35b3480156101c857600080fd5b506101e360048036038101906101de9190610cec565b61065c565b6040516101f09190611003565b60405180910390f35b34801561020557600080fd5b50610220600480360381019061021b9190610cec565b61067c565b005b34801561022e57600080fd5b506102376106ff565b604051610244919061107d565b60405180910390f35b610255610725565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016102b29190610fcd565b602060405180830381865afa1580156102cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102f391906110ad565b90506103423382600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166107a39092919063ffffffff16565b7f37355916d36486a16b59735397c60ab95fe0b21b650eb9727c1b12df48b349ad8160405161037191906110e9565b60405180910390a150565b610384610725565b80600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6103d0610725565b6103da3382610829565b50565b60015481565b6000339050600260008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561047757806040517faa8068b300000000000000000000000000000000000000000000000000000000815260040161046e9190610fcd565b60405180910390fd5b6000818460405160200161048c92919061116d565b6040516020818303038152906040528051906020012090506104b1836001548361086a565b6104f257826040517fa3ae083d0000000000000000000000000000000000000000000000000000000081526004016104e99190611257565b60405180910390fd5b6001600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506105978285600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166107a39092919063ffffffff16565b7fc6403ee32d8a056b9ded176f1e16fbe044b8aa30de4900347433853973f616a182856040516105c8929190611279565b60405180910390a150505050565b6105de610725565b6105e86000610881565b565b6105f2610725565b806001819055507ff079b37959754bbbbd38f30cd52ef1281b07c15e527f7dd8950fe2b754756478816040516106289190610d95565b60405180910390a150565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60026020528060005260406000206000915054906101000a900460ff1681565b610684610725565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036106f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ea90611325565b60405180910390fd5b6106fc81610881565b50565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61072d610945565b73ffffffffffffffffffffffffffffffffffffffff1661074b610633565b73ffffffffffffffffffffffffffffffffffffffff16146107a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079890611391565b60405180910390fd5b565b6108248363a9059cbb60e01b84846040516024016107c2929190611279565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061094d565b505050565b8047101561083f5763b12d13eb6000526004601cfd5b6000806000808486620186a0f161086657816000526073600b5360ff6020536016600b82f0505b5050565b6000826108778584610a15565b1490509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b60006109af826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16610a6b9092919063ffffffff16565b90506000815114806109d15750808060200190518101906109d091906113dd565b5b610a10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a079061147c565b60405180910390fd5b505050565b60008082905060005b8451811015610a6057610a4b82868381518110610a3e57610a3d61149c565b5b6020026020010151610a83565b91508080610a58906114fa565b915050610a1e565b508091505092915050565b6060610a7a8484600085610aae565b90509392505050565b6000818310610a9b57610a968284610b7b565b610aa6565b610aa58383610b7b565b5b905092915050565b606082471015610af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aea906115b4565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051610b1c9190611645565b60006040518083038185875af1925050503d8060008114610b59576040519150601f19603f3d011682016040523d82523d6000602084013e610b5e565b606091505b5091509150610b6f87838387610b92565b92505050949350505050565b600082600052816020526040600020905092915050565b60608315610bf4576000835103610bec57610bac85610c07565b610beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be2906116a8565b60405180910390fd5b5b829050610bff565b610bfe8383610c2a565b5b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082511115610c3d5781518083602001fd5b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c71919061170c565b60405180910390fd5b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610cb982610c8e565b9050919050565b610cc981610cae565b8114610cd457600080fd5b50565b600081359050610ce681610cc0565b92915050565b600060208284031215610d0257610d01610c84565b5b6000610d1084828501610cd7565b91505092915050565b6000819050919050565b610d2c81610d19565b8114610d3757600080fd5b50565b600081359050610d4981610d23565b92915050565b600060208284031215610d6557610d64610c84565b5b6000610d7384828501610d3a565b91505092915050565b6000819050919050565b610d8f81610d7c565b82525050565b6000602082019050610daa6000830184610d86565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b610dfe82610db5565b810181811067ffffffffffffffff82111715610e1d57610e1c610dc6565b5b80604052505050565b6000610e30610c7a565b9050610e3c8282610df5565b919050565b600067ffffffffffffffff821115610e5c57610e5b610dc6565b5b602082029050602081019050919050565b600080fd5b610e7b81610d7c565b8114610e8657600080fd5b50565b600081359050610e9881610e72565b92915050565b6000610eb1610eac84610e41565b610e26565b90508083825260208201905060208402830185811115610ed457610ed3610e6d565b5b835b81811015610efd5780610ee98882610e89565b845260208401935050602081019050610ed6565b5050509392505050565b600082601f830112610f1c57610f1b610db0565b5b8135610f2c848260208601610e9e565b91505092915050565b60008060408385031215610f4c57610f4b610c84565b5b6000610f5a85828601610d3a565b925050602083013567ffffffffffffffff811115610f7b57610f7a610c89565b5b610f8785828601610f07565b9150509250929050565b600060208284031215610fa757610fa6610c84565b5b6000610fb584828501610e89565b91505092915050565b610fc781610cae565b82525050565b6000602082019050610fe26000830184610fbe565b92915050565b60008115159050919050565b610ffd81610fe8565b82525050565b60006020820190506110186000830184610ff4565b92915050565b6000819050919050565b600061104361103e61103984610c8e565b61101e565b610c8e565b9050919050565b600061105582611028565b9050919050565b60006110678261104a565b9050919050565b6110778161105c565b82525050565b6000602082019050611092600083018461106e565b92915050565b6000815190506110a781610d23565b92915050565b6000602082840312156110c3576110c2610c84565b5b60006110d184828501611098565b91505092915050565b6110e381610d19565b82525050565b60006020820190506110fe60008301846110da565b92915050565b60008160601b9050919050565b600061111c82611104565b9050919050565b600061112e82611111565b9050919050565b61114661114182610cae565b611123565b82525050565b6000819050919050565b61116761116282610d19565b61114c565b82525050565b60006111798285611135565b6014820191506111898284611156565b6020820191508190509392505050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6111ce81610d7c565b82525050565b60006111e083836111c5565b60208301905092915050565b6000602082019050919050565b600061120482611199565b61120e81856111a4565b9350611219836111b5565b8060005b8381101561124a57815161123188826111d4565b975061123c836111ec565b92505060018101905061121d565b5085935050505092915050565b6000602082019050818103600083015261127181846111f9565b905092915050565b600060408201905061128e6000830185610fbe565b61129b60208301846110da565b9392505050565b600082825260208201905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061130f6026836112a2565b915061131a826112b3565b604082019050919050565b6000602082019050818103600083015261133e81611302565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061137b6020836112a2565b915061138682611345565b602082019050919050565b600060208201905081810360008301526113aa8161136e565b9050919050565b6113ba81610fe8565b81146113c557600080fd5b50565b6000815190506113d7816113b1565b92915050565b6000602082840312156113f3576113f2610c84565b5b6000611401848285016113c8565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b6000611466602a836112a2565b91506114718261140a565b604082019050919050565b6000602082019050818103600083015261149581611459565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061150582610d19565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611537576115366114cb565b5b600182019050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b600061159e6026836112a2565b91506115a982611542565b604082019050919050565b600060208201905081810360008301526115cd81611591565b9050919050565b600081519050919050565b600081905092915050565b60005b838110156116085780820151818401526020810190506115ed565b60008484015250505050565b600061161f826115d4565b61162981856115df565b93506116398185602086016115ea565b80840191505092915050565b60006116518284611614565b915081905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b6000611692601d836112a2565b915061169d8261165c565b602082019050919050565b600060208201905081810360008301526116c181611685565b9050919050565b600081519050919050565b60006116de826116c8565b6116e881856112a2565b93506116f88185602086016115ea565b61170181610db5565b840191505092915050565b6000602082019050818103600083015261172681846116d3565b90509291505056fea26469706673582212209e9559a544624c7bc201dce2922e8ac235e15bc9373e2070050eb3ff8aef1ee164736f6c63430008110033
Deployed Bytecode Sourcemap
35424:2295:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36969:218;;;;;;;;;;;;;:::i;:::-;;36711:133;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36852:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35552:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35979:524;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24632:103;;;;;;;;;;;;;:::i;:::-;;36537:166;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23991:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35584:37;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24890:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35628:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36969:218;23877:13;:11;:13::i;:::-;37039:14:::1;37056:5;;;;;;;;;;;:15;;;37080:4;37056:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37039:47;;37097:38;37116:10;37128:6;37097:5;;;;;;;;;;;:18;;;;:38;;;;;:::i;:::-;37151:28;37172:6;37151:28;;;;;;:::i;:::-;;;;;;;;37028:159;36969:218::o:0;36711:133::-;23877:13;:11;:13::i;:::-;36814:21:::1;36799:5;;:37;;;;;;;;;;;;;;;;;;36711:133:::0;:::o;36852:109::-;23877:13;:11;:13::i;:::-;36913:40:::1;36934:10;36946:6;36913:20;:40::i;:::-;36852:109:::0;:::o;35552:25::-;;;;:::o;35979:524::-;36060:12;36075:10;36060:25;;36102:7;:13;36110:4;36102:13;;;;;;;;;;;;;;;;;;;;;;;;;36098:78;;;36159:4;36139:25;;;;;;;;;;;:::i;:::-;;;;;;;;36098:78;36188:12;36230:4;36236:6;36213:30;;;;;;;;;:::i;:::-;;;;;;;;;;;;;36203:41;;;;;;36188:56;;36262:43;36281:5;36288:10;;36300:4;36262:18;:43::i;:::-;36257:108;;36347:5;36329:24;;;;;;;;;;;:::i;:::-;;;;;;;;36257:108;36393:4;36377:7;:13;36385:4;36377:13;;;;;;;;;;;;;;;;:20;;;;;;;;;;;;;;;;;;36410:32;36429:4;36435:6;36410:5;;;;;;;;;;;:18;;;;:32;;;;;:::i;:::-;36460:35;36482:4;36488:6;36460:35;;;;;;;:::i;:::-;;;;;;;;36049:454;;35979:524;;:::o;24632:103::-;23877:13;:11;:13::i;:::-;24697:30:::1;24724:1;24697:18;:30::i;:::-;24632:103::o:0;36537:166::-;23877:13;:11;:13::i;:::-;36632:11:::1;36619:10;:24;;;;36659:36;36683:11;36659:36;;;;;;:::i;:::-;;;;;;;;36537:166:::0;:::o;23991:87::-;24037:7;24064:6;;;;;;;;;;;24057:13;;23991:87;:::o;35584:37::-;;;;;;;;;;;;;;;;;;;;;;:::o;24890:201::-;23877:13;:11;:13::i;:::-;24999:1:::1;24979:22;;:8;:22;;::::0;24971:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;25055:28;25074:8;25055:18;:28::i;:::-;24890:201:::0;:::o;35628:19::-;;;;;;;;;;;;;:::o;24156:132::-;24231:12;:10;:12::i;:::-;24220:23;;:7;:5;:7::i;:::-;:23;;;24212:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24156:132::o;15748:177::-;15831:86;15851:5;15881:23;;;15906:2;15910:5;15858:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15831:19;:86::i;:::-;15748:177;;;:::o;37223:491::-;37345:6;37330:13;37327:25;37324:123;;;37385:10;37379:4;37372:24;37427:4;37421;37414:18;37324:123;37519:1;37516;37513;37510;37502:6;37498:2;37476:20;37471:50;37461:235;;37555:2;37549:4;37542:16;37590:4;37584;37576:19;37627:4;37621;37613:19;37675:4;37669;37661:6;37654:26;37650:31;37461:235;37223:491;;:::o;26671:156::-;26762:4;26815;26786:25;26799:5;26806:4;26786:12;:25::i;:::-;:33;26779:40;;26671:156;;;;;:::o;25251:191::-;25325:16;25344:6;;;;;;;;;;;25325:25;;25370:8;25361:6;;:17;;;;;;;;;;;;;;;;;;25425:8;25394:40;;25415:8;25394:40;;;;;;;;;;;;25314:128;25251:191;:::o;22542:98::-;22595:7;22622:10;22615:17;;22542:98;:::o;20094:649::-;20518:23;20544:69;20572:4;20544:69;;;;;;;;;;;;;;;;;20552:5;20544:27;;;;:69;;;;;:::i;:::-;20518:95;;20653:1;20632:10;:17;:22;:56;;;;20669:10;20658:30;;;;;;;;;;;;:::i;:::-;20632:56;20624:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;20164:579;20094:649;;:::o;27470:296::-;27553:7;27573:20;27596:4;27573:27;;27616:9;27611:118;27635:5;:12;27631:1;:16;27611:118;;;27684:33;27694:12;27708:5;27714:1;27708:8;;;;;;;;:::i;:::-;;;;;;;;27684:9;:33::i;:::-;27669:48;;27649:3;;;;;:::i;:::-;;;;27611:118;;;;27746:12;27739:19;;;27470:296;;;;:::o;4229:229::-;4366:12;4398:52;4420:6;4428:4;4434:1;4437:12;4398:21;:52::i;:::-;4391:59;;4229:229;;;;;:::o;34908:149::-;34971:7;35002:1;34998;:5;:51;;35029:20;35044:1;35047;35029:14;:20::i;:::-;34998:51;;;35006:20;35021:1;35024;35006:14;:20::i;:::-;34998:51;34991:58;;34908:149;;;;:::o;5315:455::-;5485:12;5543:5;5518:21;:30;;5510:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;5603:12;5617:23;5644:6;:11;;5663:5;5670:4;5644:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5602:73;;;;5693:69;5720:6;5728:7;5737:10;5749:12;5693:26;:69::i;:::-;5686:76;;;;5315:455;;;;;;:::o;35065:268::-;35133:13;35240:1;35234:4;35227:15;35269:1;35263:4;35256:15;35310:4;35304;35294:21;35285:30;;35065:268;;;;:::o;7888:644::-;8073:12;8102:7;8098:427;;;8151:1;8130:10;:17;:22;8126:290;;8348:18;8359:6;8348:10;:18::i;:::-;8340:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;8126:290;8437:10;8430:17;;;;8098:427;8480:33;8488:10;8500:12;8480:7;:33::i;:::-;7888:644;;;;;;;:::o;1474:326::-;1534:4;1791:1;1769:7;:19;;;:23;1762:30;;1474:326;;;:::o;9074:552::-;9255:1;9235:10;:17;:21;9231:388;;;9467:10;9461:17;9524:15;9511:10;9507:2;9503:19;9496:44;9231:388;9594:12;9587:20;;;;;;;;;;;:::i;:::-;;;;;;;;7:75:1;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:329::-;900:6;949:2;937:9;928:7;924:23;920:32;917:119;;;955:79;;:::i;:::-;917:119;1075:1;1100:53;1145:7;1136:6;1125:9;1121:22;1100:53;:::i;:::-;1090:63;;1046:117;841:329;;;;:::o;1176:77::-;1213:7;1242:5;1231:16;;1176:77;;;:::o;1259:122::-;1332:24;1350:5;1332:24;:::i;:::-;1325:5;1322:35;1312:63;;1371:1;1368;1361:12;1312:63;1259:122;:::o;1387:139::-;1433:5;1471:6;1458:20;1449:29;;1487:33;1514:5;1487:33;:::i;:::-;1387:139;;;;:::o;1532:329::-;1591:6;1640:2;1628:9;1619:7;1615:23;1611:32;1608:119;;;1646:79;;:::i;:::-;1608:119;1766:1;1791:53;1836:7;1827:6;1816:9;1812:22;1791:53;:::i;:::-;1781:63;;1737:117;1532:329;;;;:::o;1867:77::-;1904:7;1933:5;1922:16;;1867:77;;;:::o;1950:118::-;2037:24;2055:5;2037:24;:::i;:::-;2032:3;2025:37;1950:118;;:::o;2074:222::-;2167:4;2205:2;2194:9;2190:18;2182:26;;2218:71;2286:1;2275:9;2271:17;2262:6;2218:71;:::i;:::-;2074:222;;;;:::o;2302:117::-;2411:1;2408;2401:12;2425:102;2466:6;2517:2;2513:7;2508:2;2501:5;2497:14;2493:28;2483:38;;2425:102;;;:::o;2533:180::-;2581:77;2578:1;2571:88;2678:4;2675:1;2668:15;2702:4;2699:1;2692:15;2719:281;2802:27;2824:4;2802:27;:::i;:::-;2794:6;2790:40;2932:6;2920:10;2917:22;2896:18;2884:10;2881:34;2878:62;2875:88;;;2943:18;;:::i;:::-;2875:88;2983:10;2979:2;2972:22;2762:238;2719:281;;:::o;3006:129::-;3040:6;3067:20;;:::i;:::-;3057:30;;3096:33;3124:4;3116:6;3096:33;:::i;:::-;3006:129;;;:::o;3141:311::-;3218:4;3308:18;3300:6;3297:30;3294:56;;;3330:18;;:::i;:::-;3294:56;3380:4;3372:6;3368:17;3360:25;;3440:4;3434;3430:15;3422:23;;3141:311;;;:::o;3458:117::-;3567:1;3564;3557:12;3581:122;3654:24;3672:5;3654:24;:::i;:::-;3647:5;3644:35;3634:63;;3693:1;3690;3683:12;3634:63;3581:122;:::o;3709:139::-;3755:5;3793:6;3780:20;3771:29;;3809:33;3836:5;3809:33;:::i;:::-;3709:139;;;;:::o;3871:710::-;3967:5;3992:81;4008:64;4065:6;4008:64;:::i;:::-;3992:81;:::i;:::-;3983:90;;4093:5;4122:6;4115:5;4108:21;4156:4;4149:5;4145:16;4138:23;;4209:4;4201:6;4197:17;4189:6;4185:30;4238:3;4230:6;4227:15;4224:122;;;4257:79;;:::i;:::-;4224:122;4372:6;4355:220;4389:6;4384:3;4381:15;4355:220;;;4464:3;4493:37;4526:3;4514:10;4493:37;:::i;:::-;4488:3;4481:50;4560:4;4555:3;4551:14;4544:21;;4431:144;4415:4;4410:3;4406:14;4399:21;;4355:220;;;4359:21;3973:608;;3871:710;;;;;:::o;4604:370::-;4675:5;4724:3;4717:4;4709:6;4705:17;4701:27;4691:122;;4732:79;;:::i;:::-;4691:122;4849:6;4836:20;4874:94;4964:3;4956:6;4949:4;4941:6;4937:17;4874:94;:::i;:::-;4865:103;;4681:293;4604:370;;;;:::o;4980:684::-;5073:6;5081;5130:2;5118:9;5109:7;5105:23;5101:32;5098:119;;;5136:79;;:::i;:::-;5098:119;5256:1;5281:53;5326:7;5317:6;5306:9;5302:22;5281:53;:::i;:::-;5271:63;;5227:117;5411:2;5400:9;5396:18;5383:32;5442:18;5434:6;5431:30;5428:117;;;5464:79;;:::i;:::-;5428:117;5569:78;5639:7;5630:6;5619:9;5615:22;5569:78;:::i;:::-;5559:88;;5354:303;4980:684;;;;;:::o;5670:329::-;5729:6;5778:2;5766:9;5757:7;5753:23;5749:32;5746:119;;;5784:79;;:::i;:::-;5746:119;5904:1;5929:53;5974:7;5965:6;5954:9;5950:22;5929:53;:::i;:::-;5919:63;;5875:117;5670:329;;;;:::o;6005:118::-;6092:24;6110:5;6092:24;:::i;:::-;6087:3;6080:37;6005:118;;:::o;6129:222::-;6222:4;6260:2;6249:9;6245:18;6237:26;;6273:71;6341:1;6330:9;6326:17;6317:6;6273:71;:::i;:::-;6129:222;;;;:::o;6357:90::-;6391:7;6434:5;6427:13;6420:21;6409:32;;6357:90;;;:::o;6453:109::-;6534:21;6549:5;6534:21;:::i;:::-;6529:3;6522:34;6453:109;;:::o;6568:210::-;6655:4;6693:2;6682:9;6678:18;6670:26;;6706:65;6768:1;6757:9;6753:17;6744:6;6706:65;:::i;:::-;6568:210;;;;:::o;6784:60::-;6812:3;6833:5;6826:12;;6784:60;;;:::o;6850:142::-;6900:9;6933:53;6951:34;6960:24;6978:5;6960:24;:::i;:::-;6951:34;:::i;:::-;6933:53;:::i;:::-;6920:66;;6850:142;;;:::o;6998:126::-;7048:9;7081:37;7112:5;7081:37;:::i;:::-;7068:50;;6998:126;;;:::o;7130:140::-;7194:9;7227:37;7258:5;7227:37;:::i;:::-;7214:50;;7130:140;;;:::o;7276:159::-;7377:51;7422:5;7377:51;:::i;:::-;7372:3;7365:64;7276:159;;:::o;7441:250::-;7548:4;7586:2;7575:9;7571:18;7563:26;;7599:85;7681:1;7670:9;7666:17;7657:6;7599:85;:::i;:::-;7441:250;;;;:::o;7697:143::-;7754:5;7785:6;7779:13;7770:22;;7801:33;7828:5;7801:33;:::i;:::-;7697:143;;;;:::o;7846:351::-;7916:6;7965:2;7953:9;7944:7;7940:23;7936:32;7933:119;;;7971:79;;:::i;:::-;7933:119;8091:1;8116:64;8172:7;8163:6;8152:9;8148:22;8116:64;:::i;:::-;8106:74;;8062:128;7846:351;;;;:::o;8203:118::-;8290:24;8308:5;8290:24;:::i;:::-;8285:3;8278:37;8203:118;;:::o;8327:222::-;8420:4;8458:2;8447:9;8443:18;8435:26;;8471:71;8539:1;8528:9;8524:17;8515:6;8471:71;:::i;:::-;8327:222;;;;:::o;8555:94::-;8588:8;8636:5;8632:2;8628:14;8607:35;;8555:94;;;:::o;8655:::-;8694:7;8723:20;8737:5;8723:20;:::i;:::-;8712:31;;8655:94;;;:::o;8755:100::-;8794:7;8823:26;8843:5;8823:26;:::i;:::-;8812:37;;8755:100;;;:::o;8861:157::-;8966:45;8986:24;9004:5;8986:24;:::i;:::-;8966:45;:::i;:::-;8961:3;8954:58;8861:157;;:::o;9024:79::-;9063:7;9092:5;9081:16;;9024:79;;;:::o;9109:157::-;9214:45;9234:24;9252:5;9234:24;:::i;:::-;9214:45;:::i;:::-;9209:3;9202:58;9109:157;;:::o;9272:397::-;9412:3;9427:75;9498:3;9489:6;9427:75;:::i;:::-;9527:2;9522:3;9518:12;9511:19;;9540:75;9611:3;9602:6;9540:75;:::i;:::-;9640:2;9635:3;9631:12;9624:19;;9660:3;9653:10;;9272:397;;;;;:::o;9675:114::-;9742:6;9776:5;9770:12;9760:22;;9675:114;;;:::o;9795:184::-;9894:11;9928:6;9923:3;9916:19;9968:4;9963:3;9959:14;9944:29;;9795:184;;;;:::o;9985:132::-;10052:4;10075:3;10067:11;;10105:4;10100:3;10096:14;10088:22;;9985:132;;;:::o;10123:108::-;10200:24;10218:5;10200:24;:::i;:::-;10195:3;10188:37;10123:108;;:::o;10237:179::-;10306:10;10327:46;10369:3;10361:6;10327:46;:::i;:::-;10405:4;10400:3;10396:14;10382:28;;10237:179;;;;:::o;10422:113::-;10492:4;10524;10519:3;10515:14;10507:22;;10422:113;;;:::o;10571:732::-;10690:3;10719:54;10767:5;10719:54;:::i;:::-;10789:86;10868:6;10863:3;10789:86;:::i;:::-;10782:93;;10899:56;10949:5;10899:56;:::i;:::-;10978:7;11009:1;10994:284;11019:6;11016:1;11013:13;10994:284;;;11095:6;11089:13;11122:63;11181:3;11166:13;11122:63;:::i;:::-;11115:70;;11208:60;11261:6;11208:60;:::i;:::-;11198:70;;11054:224;11041:1;11038;11034:9;11029:14;;10994:284;;;10998:14;11294:3;11287:10;;10695:608;;;10571:732;;;;:::o;11309:373::-;11452:4;11490:2;11479:9;11475:18;11467:26;;11539:9;11533:4;11529:20;11525:1;11514:9;11510:17;11503:47;11567:108;11670:4;11661:6;11567:108;:::i;:::-;11559:116;;11309:373;;;;:::o;11688:332::-;11809:4;11847:2;11836:9;11832:18;11824:26;;11860:71;11928:1;11917:9;11913:17;11904:6;11860:71;:::i;:::-;11941:72;12009:2;11998:9;11994:18;11985:6;11941:72;:::i;:::-;11688:332;;;;;:::o;12026:169::-;12110:11;12144:6;12139:3;12132:19;12184:4;12179:3;12175:14;12160:29;;12026:169;;;;:::o;12201:225::-;12341:34;12337:1;12329:6;12325:14;12318:58;12410:8;12405:2;12397:6;12393:15;12386:33;12201:225;:::o;12432:366::-;12574:3;12595:67;12659:2;12654:3;12595:67;:::i;:::-;12588:74;;12671:93;12760:3;12671:93;:::i;:::-;12789:2;12784:3;12780:12;12773:19;;12432:366;;;:::o;12804:419::-;12970:4;13008:2;12997:9;12993:18;12985:26;;13057:9;13051:4;13047:20;13043:1;13032:9;13028:17;13021:47;13085:131;13211:4;13085:131;:::i;:::-;13077:139;;12804:419;;;:::o;13229:182::-;13369:34;13365:1;13357:6;13353:14;13346:58;13229:182;:::o;13417:366::-;13559:3;13580:67;13644:2;13639:3;13580:67;:::i;:::-;13573:74;;13656:93;13745:3;13656:93;:::i;:::-;13774:2;13769:3;13765:12;13758:19;;13417:366;;;:::o;13789:419::-;13955:4;13993:2;13982:9;13978:18;13970:26;;14042:9;14036:4;14032:20;14028:1;14017:9;14013:17;14006:47;14070:131;14196:4;14070:131;:::i;:::-;14062:139;;13789:419;;;:::o;14214:116::-;14284:21;14299:5;14284:21;:::i;:::-;14277:5;14274:32;14264:60;;14320:1;14317;14310:12;14264:60;14214:116;:::o;14336:137::-;14390:5;14421:6;14415:13;14406:22;;14437:30;14461:5;14437:30;:::i;:::-;14336:137;;;;:::o;14479:345::-;14546:6;14595:2;14583:9;14574:7;14570:23;14566:32;14563:119;;;14601:79;;:::i;:::-;14563:119;14721:1;14746:61;14799:7;14790:6;14779:9;14775:22;14746:61;:::i;:::-;14736:71;;14692:125;14479:345;;;;:::o;14830:229::-;14970:34;14966:1;14958:6;14954:14;14947:58;15039:12;15034:2;15026:6;15022:15;15015:37;14830:229;:::o;15065:366::-;15207:3;15228:67;15292:2;15287:3;15228:67;:::i;:::-;15221:74;;15304:93;15393:3;15304:93;:::i;:::-;15422:2;15417:3;15413:12;15406:19;;15065:366;;;:::o;15437:419::-;15603:4;15641:2;15630:9;15626:18;15618:26;;15690:9;15684:4;15680:20;15676:1;15665:9;15661:17;15654:47;15718:131;15844:4;15718:131;:::i;:::-;15710:139;;15437:419;;;:::o;15862:180::-;15910:77;15907:1;15900:88;16007:4;16004:1;15997:15;16031:4;16028:1;16021:15;16048:180;16096:77;16093:1;16086:88;16193:4;16190:1;16183:15;16217:4;16214:1;16207:15;16234:233;16273:3;16296:24;16314:5;16296:24;:::i;:::-;16287:33;;16342:66;16335:5;16332:77;16329:103;;16412:18;;:::i;:::-;16329:103;16459:1;16452:5;16448:13;16441:20;;16234:233;;;:::o;16473:225::-;16613:34;16609:1;16601:6;16597:14;16590:58;16682:8;16677:2;16669:6;16665:15;16658:33;16473:225;:::o;16704:366::-;16846:3;16867:67;16931:2;16926:3;16867:67;:::i;:::-;16860:74;;16943:93;17032:3;16943:93;:::i;:::-;17061:2;17056:3;17052:12;17045:19;;16704:366;;;:::o;17076:419::-;17242:4;17280:2;17269:9;17265:18;17257:26;;17329:9;17323:4;17319:20;17315:1;17304:9;17300:17;17293:47;17357:131;17483:4;17357:131;:::i;:::-;17349:139;;17076:419;;;:::o;17501:98::-;17552:6;17586:5;17580:12;17570:22;;17501:98;;;:::o;17605:147::-;17706:11;17743:3;17728:18;;17605:147;;;;:::o;17758:246::-;17839:1;17849:113;17863:6;17860:1;17857:13;17849:113;;;17948:1;17943:3;17939:11;17933:18;17929:1;17924:3;17920:11;17913:39;17885:2;17882:1;17878:10;17873:15;;17849:113;;;17996:1;17987:6;17982:3;17978:16;17971:27;17820:184;17758:246;;;:::o;18010:386::-;18114:3;18142:38;18174:5;18142:38;:::i;:::-;18196:88;18277:6;18272:3;18196:88;:::i;:::-;18189:95;;18293:65;18351:6;18346:3;18339:4;18332:5;18328:16;18293:65;:::i;:::-;18383:6;18378:3;18374:16;18367:23;;18118:278;18010:386;;;;:::o;18402:271::-;18532:3;18554:93;18643:3;18634:6;18554:93;:::i;:::-;18547:100;;18664:3;18657:10;;18402:271;;;;:::o;18679:179::-;18819:31;18815:1;18807:6;18803:14;18796:55;18679:179;:::o;18864:366::-;19006:3;19027:67;19091:2;19086:3;19027:67;:::i;:::-;19020:74;;19103:93;19192:3;19103:93;:::i;:::-;19221:2;19216:3;19212:12;19205:19;;18864:366;;;:::o;19236:419::-;19402:4;19440:2;19429:9;19425:18;19417:26;;19489:9;19483:4;19479:20;19475:1;19464:9;19460:17;19453:47;19517:131;19643:4;19517:131;:::i;:::-;19509:139;;19236:419;;;:::o;19661:99::-;19713:6;19747:5;19741:12;19731:22;;19661:99;;;:::o;19766:377::-;19854:3;19882:39;19915:5;19882:39;:::i;:::-;19937:71;20001:6;19996:3;19937:71;:::i;:::-;19930:78;;20017:65;20075:6;20070:3;20063:4;20056:5;20052:16;20017:65;:::i;:::-;20107:29;20129:6;20107:29;:::i;:::-;20102:3;20098:39;20091:46;;19858:285;19766:377;;;;:::o;20149:313::-;20262:4;20300:2;20289:9;20285:18;20277:26;;20349:9;20343:4;20339:20;20335:1;20324:9;20320:17;20313:47;20377:78;20450:4;20441:6;20377:78;:::i;:::-;20369:86;;20149:313;;;;:::o
Swarm Source
ipfs://9e9559a544624c7bc201dce2922e8ac235e15bc9373e2070050eb3ff8aef1ee1
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 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.