ERC-20
Overview
Max Total Supply
10,000,000,000 HNX
Holders
2,748
Total Transfers
-
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
HNXCoin
Compiler Version
v0.8.18+commit.87f61d96
ZkSolc Version
v1.3.8
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "./BaseCoin.sol"; /// @custom:security-contact [email protected] contract HNXCoin is BaseCoin { // 1. State Variables & Constructor constructor( string memory name, string memory symbol ) payable BaseCoin(name, symbol) { // We initialize 10 bilion tokens total in this contact _mint(address(this), 10_000_000_000 * 10 ** uint256(decimals())); } // 2. Functions // 2.1 claiming function claimHNX( uint256 nonce, uint256 amount, uint256 tag, bytes memory signature ) external { _claimCoin(nonce, amount, tag, this.claimHNX.selector, signature); } // 2.2 consuming function consumeHNX(uint256 amount, uint256 tag) external { _consumeCoin(amount, tag); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; import "../ERC20.sol"; import "../../../utils/Context.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./math/Math.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../Strings.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV // Deprecated in v4.8 } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "./IBaseCoin.sol"; import "./IBaseStake.sol"; /// @custom:security-contact [email protected] contract BaseCoin is ERC20, ERC20Burnable, Ownable, IBaseCoin { // 1. State Variables & Constructor // 1.1 Record of claiming, minting & consuming mapping(address => coinRecord) internal m_recdClaim; // 1.2 Address of Signer & Treasury address internal m_opSigner; address internal m_opTreasury; constructor(string memory name, string memory symbol) ERC20(name, symbol) { m_opSigner = msg.sender; m_opTreasury = msg.sender; } // 2. Verification Funtions // 2.1 Verify signature for claiming: function _verifySingleData( address addrUser, uint256 nonce, uint256 amount, uint256 tag, bytes4 selector, bytes memory signature ) internal view returns (bool) { bytes32 orderHash = ECDSA.toEthSignedMessageHash( keccak256( abi.encodePacked( tag, amount, nonce, addrUser, selector, block.chainid ) ) ); address signer = ECDSA.recover(orderHash, signature); return (signer == m_opSigner); } // 2.2 Verify signature for staking: function _verifyArrayData( address addrUser, uint256 nonce, uint256[] memory aryTime, uint256[] memory aryAmount, bytes4 selector, bytes memory signature ) internal view returns (bool) { require( aryTime.length == aryAmount.length, "timestamp and amount array length should be equal" ); require(aryTime.length <= 10, "no more 10 arrays"); // check signature bytes32 orderHash = ECDSA.toEthSignedMessageHash( keccak256( abi.encodePacked( addrUser, nonce, aryTime, aryAmount, selector, block.chainid ) ) ); address signer = ECDSA.recover(orderHash, signature); return (signer == m_opSigner); } // 3. Operation Funtions // 3.1 claiming function _claimCoin( uint256 nonce, uint256 amount, uint256 tag, bytes4 selt, bytes memory signature ) internal { // step 1. check the nonce require(m_recdClaim[msg.sender].nonce == nonce - 1, "wrong nonce"); // step 2. check the claim order's content and signer officer require( _verifySingleData(msg.sender, nonce, amount, tag, selt, signature), "invalid signature" ); // step 3. minting to msg.sender ERC20(this).transfer(msg.sender, amount); // step 4. update state & emit claimed event m_recdClaim[msg.sender].nonce = nonce; m_recdClaim[msg.sender].amount.push(amount); m_recdClaim[msg.sender].tag.push(tag); emit evClaim(msg.sender, nonce, amount, tag); } // 2.5 consuming function _consumeCoin(uint256 amount, uint256 tag) internal { require(m_opTreasury != address(0), "income address not set"); require(balanceOf(msg.sender) >= amount, "insufficient balance"); transfer(m_opTreasury, amount); emit evConsume(msg.sender, amount, tag); } // 2.6 staking function _stakeCoin( IBaseStake conBaseStake, address staker, uint256 nonce, uint256[] memory aryTime, uint256[] memory aryAmount, bytes4 selector, bytes memory signature ) internal onlyOwner { // check stake contract address is set require( conBaseStake != IBaseStake(address(0)), "stake contract not set" ); // timestamp & amount array should be paired require( _verifyArrayData( staker, nonce, aryTime, aryAmount, selector, signature ), "invalid signature" ); // for testing convience uint256 deltaT = 300; // 5 minutes, just for debugging uint256 sum = 0; for (uint256 i = 0; i < aryTime.length; i++) { // block timestamp must smaller than the locked time assert(block.timestamp < (aryTime[i] + deltaT)); } for (uint256 i = 0; i < aryAmount.length; i++) { sum += aryAmount[i]; } ERC20(this).transfer(address(conBaseStake), sum); conBaseStake.newStake(staker, nonce, aryTime, aryAmount); emit evStake(staker, nonce, aryTime, aryAmount); } // 3. Interface Implementing // Part 3.3 [Setting Functions] // 3.3.1 Set Signer function setAddrSigner(address signer) external onlyOwner { require( signer != address(0) && signer != m_opSigner, "invalid signer address" ); address addrOld = m_opSigner; m_opSigner = signer; emit evConfigure(addrOld, m_opSigner, 0); } // 3.3.2 Set Treasury function setAddrTreasury(address treasury) external onlyOwner { require( treasury != address(0) && treasury != m_opTreasury, "invalid treasury address" ); address addrOld = m_opTreasury; m_opTreasury = treasury; emit evConfigure(addrOld, m_opTreasury, 1); } function viewInfo() external view returns (address, address) { return (m_opSigner, m_opTreasury); } // 4. Internal Data Views function viewClaimHistory( address acceptor ) external view returns (coinRecord memory) { return m_recdClaim[acceptor]; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; interface IBaseCoin { // 1.[Types: Basic] struct coinRecord { uint256 nonce; uint256[] amount; uint256[] tag; } // 2.[Functions: Address Setting] function setAddrSigner(address signer) external; function setAddrTreasury(address treasury) external; function viewInfo() external view returns (address, address); // 3.[Events: Coins & Address] event evConsume(address indexed from, uint256 amount, uint256 tag); event evClaim( address indexed to, uint256 nonce, uint256 amount, uint256 tag ); event evStake( address indexed from, uint256 nonce, uint256[] aryTime, uint256[] aryAmount ); event evConfigure(address indexed addrOld, address addrNew, uint256 tag); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; interface IBaseStake { // 1.[Basic Types] // 1.1 staking record struct stakeUnit { uint256 nonce; uint256[] lockTime; uint256[] lockAmount; uint256[] lockTag; } // 2.[Functions] function newStake( address staker, uint256 nonce, uint256[] memory aryTime, uint256[] memory aryAmount ) external; function claimStake() external; // 3. [Events] event evNewStake( address staker, uint256 nonce, uint256[] time, uint256[] amount ); event evClaimStake( address staker, uint256 total, uint256[] aryTime, uint256[] aryAmount ); }
{ "compilerPath": "", "experimental": {}, "optimizer": { "enabled": true, "mode": "3" } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"nonce","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tag","type":"uint256"}],"name":"evClaim","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"addrOld","type":"address"},{"indexed":false,"internalType":"address","name":"addrNew","type":"address"},{"indexed":false,"internalType":"uint256","name":"tag","type":"uint256"}],"name":"evConfigure","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tag","type":"uint256"}],"name":"evConsume","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"nonce","type":"uint256"},{"indexed":false,"internalType":"uint256[]","name":"aryTime","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"aryAmount","type":"uint256[]"}],"name":"evStake","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"tag","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"claimHNX","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"tag","type":"uint256"}],"name":"consumeHNX","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"signer","type":"address"}],"name":"setAddrSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"treasury","type":"address"}],"name":"setAddrTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"acceptor","type":"address"}],"name":"viewClaimHistory","outputs":[{"components":[{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256[]","name":"amount","type":"uint256[]"},{"internalType":"uint256[]","name":"tag","type":"uint256[]"}],"internalType":"struct IBaseCoin.coinRecord","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"viewInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
9c4d535b00000000000000000000000000000000000000000000000000000000000000000100038f117c0662b1a47ee2b89cfa7b6014cd315fe9e834f97d4ae35d9ff9b7000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000014486561727458205574696c69747920546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000003484e580000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x0003000000000002000a00000000000200020000000103550000006001100270000003290010019d000100000000001f0000008001000039000000400010043f00000000010000310000000102200190000000620000c13d000000040110008c000005f00000413d0000000201000367000000000101043b000000e0011002700000033b0210009c0000016b0000213d0000034a0210009c000001980000a13d0000034b0210009c000002020000213d0000034f0210009c0000055d0000613d000003500210009c000004610000613d000003510110009c000005f00000c13d0000000001000416000000000110004c000005f00000c13d000000040100008a00000000011000310000032c02000041000000400310008c000000000300001900000000030240190000032c01100197000000000410004c000000000200a0190000032c0110009c00000000010300190000000001026019000000000110004c000005f00000c13d00000004010000390000000201100367000000000101043b000a00000001001d000003300110009c000005f00000213d0000000001000411000800000001001d00000000001004350000000101000039000900000001001d000000200010043f00000329010000410000000002000414000003290320009c0000000001024019000000c00110021000000335011001c700008010020000390c9d0c980000040f0000000102200190000005f00000613d000000000101043b0000000a020000290000000000200435000000200010043f00000329010000410000000002000414000003290320009c0000000001024019000000c00110021000000335011001c700008010020000390c9d0c980000040f0000000102200190000005f00000613d000000000101043b000000000101041a00000024020000390000000202200367000000000202043b0000000003120019000000000123004b000000000100001900000001010040390000000101100190000006ad0000613d000003740100004100000000001004350000001101000039000000040010043f000003750100004100000c9f000104300000009f02100039000000200800008a000000000282016f0000032a032000410000032b0330009c0000006e0000213d000003740100004100000000001004350000004101000039000000040010043f000003750100004100000c9f00010430000000400020043f0000001f0210018f000000020300036700000005041002720000007c0000613d00000000050000190000000506500210000000000763034f000000000707043b000000800660003900000000007604350000000105500039000000000645004b000000740000413d000000000520004c0000008b0000613d0000000504400210000000000343034f00000003022002100000008004400039000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f00000000002404350000032c020000410000003f0310008c000000000300001900000000030220190000032c04100197000000000540004c00000000020080190000032c0440009c000000000203c019000000000220004c000005f00000613d000000800400043d0000032d0240009c000005f00000213d00000080011000390000009f024000390000032c03000041000000000512004b000000000500001900000000050380190000032c061001970000032c02200197000000000762004b0000000003008019000000000262013f0000032c0220009c00000000020500190000000002036019000000000220004c000005f00000c13d000000800340003900000000020304330000032d0520009c000000680000213d0000003f05200039000000000585016f000000400900043d0000000005590019000000000695004b000000000600001900000001060040390000032d0750009c000000680000213d0000000106600190000000680000c13d000000400050043f000a00000009001d0000000005290436000900000005001d0000000004240019000000a004400039000000000414004b000005f00000213d000000000420004c0000000a07000029000000cb0000613d000000000400001900000020044000390000000005740019000000000634001900000000060604330000000000650435000000000524004b000000c40000413d000000090300002900000000022300190000000000020435000000a00400043d0000032d0240009c000005f00000213d0000009f024000390000032c03000041000000000512004b000000000500001900000000050380190000032c061001970000032c02200197000000000762004b0000000003008019000000000262013f0000032c0220009c00000000020500190000000002036019000000000220004c000005f00000c13d000000800340003900000000020304330000032d0520009c000000680000213d0000003f05200039000000000585016f000000400900043d0000000005590019000000000695004b000000000600001900000001060040390000032d0750009c000000680000213d0000000106600190000000680000c13d000000400050043f000800000009001d0000000005290436000700000005001d0000000004240019000000a004400039000000000114004b000005f00000213d000000000120004c0000000806000029000001020000613d000000000100001900000020011000390000000004610019000000000531001900000000050504330000000000540435000000000421004b000000fb0000413d0000000701000029000000000121001900000000000104350000000a010000290000000001010433000600000001001d0000032d0110009c000000680000213d000300000008001d0000000301000039000500000001001d000000000101041a000000010210019000000001011002700000007f0310018f0000000001036019000400000001001d0000001f0110008c00000000010000190000000101002039000000010110018f000000000112004b000004370000c13d0000000401000029000000200110008c000001390000413d0000000501000029000000000010043500000329010000410000000002000414000003290320009c0000000001024019000000c0011002100000032e011001c700008010020000390c9d0c980000040f0000000102200190000005f00000613d00000006030000290000001f023000390000000502200270000000200330008c0000000002004019000000000301043b00000004010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b000001390000813d000000000002041b0000000102200039000000000312004b000001350000413d00000006010000290000001f0110008c000007800000a13d0000000501000029000000000010043500000329010000410000000002000414000003290320009c0000000001024019000000c0011002100000032e011001c700008010020000390c9d0c980000040f00000001022001900000000302000029000005f00000613d000000060300002900000000032301700000002002000039000000000101043b0000000a06000029000001590000613d0000002002000039000000000400001900000000056200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b000001510000413d0000000604000029000000000343004b000001670000813d00000006030000290000000303300210000000f80330018f000000010400008a000000000334022f000000000343013f0000000a0400002900000000024200190000000002020433000000000232016f000000000021041b0000000101000039000000060200002900000001022002100000078d0000013d0000033c0210009c000001d10000a13d0000033d0210009c0000030a0000213d000003410210009c000005920000613d000003420210009c0000047b0000613d000003430110009c000005f00000c13d0000000001000416000000000110004c000005f00000c13d000000040100008a00000000011000310000032c02000041000000400310008c000000000300001900000000030240190000032c01100197000000000410004c000000000200a0190000032c0110009c00000000010300190000000001026019000000000110004c000005f00000c13d00000002010003670000000402100370000000000202043b000003300320009c000005f00000213d0000002401100370000000000301043b00000000010004110c9d0a4f0000040f0000000101000039000000400200043d00000000001204350000032901000041000003290320009c000000000102401900000040011002100000035b011001c700000c9e0001042e000003520210009c000003430000a13d000003530210009c000003cd0000613d000003540210009c000003960000613d000003550110009c000005f00000c13d0000000001000416000000000110004c000005f00000c13d000000040100008a00000000011000310000032c02000041000000600310008c000000000300001900000000030240190000032c01100197000000000410004c000000000200a0190000032c0110009c00000000010300190000000001026019000000000110004c000005f00000c13d00000002010003670000000402100370000000000202043b0000000003020019000003300220009c000005f00000213d0000002402100370000000000202043b000a00000002001d000003300220009c000005f00000213d0000004401100370000000000401043b000900000004001d00000000020004110000000001030019000800000001001d00000000030400190c9d0b490000040f00000008010000290000000a0200002900000009030000290c9d0a4f0000040f0000000101000039000000400200043d00000000001204350000032901000041000003290320009c000000000102401900000040011002100000035b011001c700000c9e0001042e000003440210009c0000036a0000a13d000003450210009c000003f70000613d000003460210009c000003b10000613d000003470110009c000005f00000c13d0000000001000416000000000110004c000005f00000c13d000000040100008a00000000011000310000032c02000041000000000310004c000000000300001900000000030240190000032c01100197000000000410004c000000000200a0190000032c0110009c00000000010300190000000001026019000000000110004c000005f00000c13d0000000404000039000000000304041a000000010530019000000001013002700000007f0210018f000000000701001900000000070260190000001f0270008c00000000020000190000000102002039000000000223013f0000000102200190000004370000c13d000000400100043d0000000002710436000000000550004c000006440000c13d000001000400008a000000000343016f0000000000320435000000000270004c00000020030000390000000003006019000006510000013d0000034c0210009c000005c70000613d0000034d0210009c000004cd0000613d0000034e0110009c000005f00000c13d0000000001000416000000000110004c000005f00000c13d0000000001000031000000040210008a0000032c03000041000000800420008c000000000400001900000000040340190000032c02200197000000000520004c000000000300a0190000032c0220009c00000000020400190000000002036019000000000220004c000005f00000c13d00000002030003670000004402300370000000000202043b000800000002001d0000002402300370000000000202043b000900000002001d0000000402300370000000000202043b000a00000002001d0000006402300370000000000202043b0000032d0420009c000005f00000213d00000023042000390000032c05000041000000000614004b000000000600001900000000060580190000032c011001970000032c04400197000000000714004b0000000005008019000000000114013f0000032c0110009c00000000010600190000000001056019000000000110004c000005f00000c13d0000000401200039000000000113034f000000000101043b0000032d0310009c000000680000213d0000003f03100039000000200400008a000000000343016f000000400600043d0000000003360019000000000463004b000000000400001900000001040040390000032d0530009c000000680000213d0000000104400190000000680000c13d000000400030043f000600000006001d0000000003160436000700000003001d000000240320003900000000023100190000000004000031000000000242004b000005f00000213d0000001f0210018f0000000203300367000000050410027200000007080000290000025e0000613d000000000500001900000005065002100000000007680019000000000663034f000000000606043b00000000006704350000000105500039000000000645004b000002560000413d000000000520004c0000026d0000613d0000000504400210000000000343034f00000000044800190000000302200210000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f0000000000240435000000000118001900000000000104350000000001000411000500000001001d00000000001004350000000601000039000400000001001d000000200010043f00000329010000410000000002000414000003290320009c0000000001024019000000c00110021000000335011001c700008010020000390c9d0c980000040f0000000102200190000005f00000613d0000000a03000029000000000230004c0000005c0000613d000000400200043d000300000002001d000000010230008a000000000101043b000000000101041a000000000121004b0000076e0000c13d0000000501000029000000600110021000000003030000290000008002300039000000000012043500000060013000390000000a02000029000000000021043500000040013000390000000902000029000000000021043500000094013000390000036302000041000000000021043500000020023000390000000801000029000200000002001d00000000001204350000036401000041000000000010043900000329010000410000000002000414000003290320009c0000000001024019000000c00110021000000365011001c70000800b020000390c9d0c980000040f0000000102200190000005f00000613d000000000101043b00000003030000290000009802300039000000000012043500000098010000390000000000130435000003660130009c000000680000213d0000000303000029000000c001300039000100000001001d000000400010043f00000329010000410000000204000029000003290240009c0000000002010019000000000204401900000040022002100000000003030433000003290430009c00000000030180190000006003300210000000000223019f0000000003000414000003290430009c0000000001034019000000c001100210000000000121019f00000331011001c700008010020000390c9d0c980000040f0000000102200190000005f00000613d000000000201043b0000000304000029000000e00140003900000367030000410000000000310435000000fc0340003900000000002304350000003c0200003900000001030000290000000000230435000003680230009c000000680000213d00000003020000290000012002200039000000400020043f0000032902000041000003290310009c0000000001028019000000400110021000000001030000290000000003030433000003290430009c00000000030280190000006003300210000000000113019f0000000003000414000003290430009c0000000002034019000000c002200210000000000112019f00000331011001c700008010020000390c9d0c980000040f0000000102200190000005f00000613d000000000101043b00000006020000290000000002020433000000410220008c0000086d0000c13d0000000602000029000000400220003900000000020204330000036a0320009c0000087f0000a13d000000400100043d000000640210003900000372030000410000000000320435000000440210003900000373030000410000000000320435000000240210003900000022030000390000000000320435000003390200004100000000002104350000000402100039000000200300003900000000003204350000032902000041000003290310009c000000000102801900000040011002100000035a011001c700000c9f000104300000033e0210009c000005df0000613d0000033f0210009c0000052c0000613d000003400110009c000005f00000c13d0000000001000416000000000110004c000005f00000c13d000000040100008a00000000011000310000032c02000041000000200310008c000000000300001900000000030240190000032c01100197000000000410004c000000000200a0190000032c0110009c00000000010300190000000001026019000000000110004c000005f00000c13d00000004010000390000000201100367000000000601043b000003300160009c000005f00000213d0000000501000039000000000201041a00000330032001970000000005000411000000000353004b000005f20000c13d000000000360004c000006850000c13d000000400100043d000000640210003900000358030000410000000000320435000000440210003900000359030000410000000000320435000000240210003900000026030000390000000000320435000003390200004100000000002104350000000402100039000000200300003900000000003204350000032902000041000003290310009c000000000102801900000040011002100000035a011001c700000c9f00010430000003560210009c0000041a0000613d000003570110009c000005f00000c13d0000000001000416000000000110004c000005f00000c13d000000040100008a00000000011000310000032c02000041000000400310008c000000000300001900000000030240190000032c01100197000000000410004c000000000200a0190000032c0110009c00000000010300190000000001026019000000000110004c000005f00000c13d00000002010003670000000402100370000000000202043b000003300320009c000005f00000213d0000002401100370000000000301043b00000000010004110c9d0ae20000040f0000000101000039000000400200043d00000000001204350000032901000041000003290320009c000000000102401900000040011002100000035b011001c700000c9e0001042e000003480210009c0000043d0000613d000003490110009c000005f00000c13d0000000001000416000000000110004c000005f00000c13d000000040100008a00000000011000310000032c02000041000000000310004c000000000300001900000000030240190000032c01100197000000000410004c000000000200a0190000032c0110009c00000000010300190000000001026019000000000110004c000005f00000c13d0000000501000039000000000201041a00000330032001970000000005000411000000000353004b000005f20000c13d0000032f02200197000000000021041b00000329010000410000000002000414000003290320009c0000000001024019000000c00110021000000331011001c70000800d020000390000000303000039000003320400004100000000060000190c9d0c930000040f0000000101200190000005f00000613d000000000100001900000c9e0001042e0000000001000416000000000110004c000005f00000c13d000000040100008a00000000011000310000032c02000041000000000310004c000000000300001900000000030240190000032c01100197000000000410004c000000000200a0190000032c0110009c00000000010300190000000001026019000000000110004c000005f00000c13d0000000201000039000000000101041a000000400200043d00000000001204350000032901000041000003290320009c000000000102401900000040011002100000035b011001c700000c9e0001042e0000000001000416000000000110004c000005f00000c13d000000040100008a00000000011000310000032c02000041000000000310004c000000000300001900000000030240190000032c01100197000000000410004c000000000200a0190000032c0110009c00000000010300190000000001026019000000000110004c000005f00000c13d0000000501000039000000000101041a0000033001100197000000400200043d00000000001204350000032901000041000003290320009c000000000102401900000040011002100000035b011001c700000c9e0001042e0000000001000416000000000110004c000005f00000c13d000000040100008a00000000011000310000032c02000041000000400310008c000000000300001900000000030240190000032c01100197000000000410004c000000000200a0190000032c0110009c00000000010300190000000001026019000000000110004c000005f00000c13d00000004010000390000000201100367000000000201043b0000000801000039000000000101041a0000033001100198000006130000c13d000000400100043d00000044021000390000037e030000410000000000320435000000240210003900000016030000390000000000320435000003390200004100000000002104350000000402100039000000200300003900000000003204350000032902000041000003290310009c000000000102801900000040011002100000033a011001c700000c9f000104300000000001000416000000000110004c000005f00000c13d000000040100008a00000000011000310000032c02000041000000400310008c000000000300001900000000030240190000032c01100197000000000410004c000000000200a0190000032c0110009c00000000010300190000000001026019000000000110004c000005f00000c13d00000002010003670000000402100370000000000202043b0000000004020019000003300220009c000005f00000213d0000002401100370000000000301043b000900000003001d00000000020004110000000001040019000a00000001001d0c9d0b490000040f0000000a0100002900000009020000290c9d0bf00000040f000000000100001900000c9e0001042e0000000001000416000000000110004c000005f00000c13d000000040100008a00000000011000310000032c02000041000000000310004c000000000300001900000000030240190000032c01100197000000000410004c000000000200a0190000032c0110009c00000000010300190000000001026019000000000110004c000005f00000c13d0000000303000039000000000203041a000000010420019000000001012002700000007f0510018f00000000010560190000001f0510008c00000000050000190000000105002039000000000552013f00000001055001900000063a0000613d000003740100004100000000001004350000002201000039000000040010043f000003750100004100000c9f000104300000000001000416000000000110004c000005f00000c13d000000040100008a00000000011000310000032c02000041000000200310008c000000000300001900000000030240190000032c01100197000000000410004c000000000200a0190000032c0110009c00000000010300190000000001026019000000000110004c000005f00000c13d00000004010000390000000201100367000000000101043b000003300210009c000005f00000213d0000000000100435000000200000043f000000400200003900000000010000190c9d09f80000040f000000000101041a000000400200043d00000000001204350000032901000041000003290320009c000000000102401900000040011002100000035b011001c700000c9e0001042e0000000001000416000000000110004c000005f00000c13d000000040100008a00000000011000310000032c02000041000000000310004c000000000300001900000000030240190000032c01100197000000000410004c000000000200a0190000032c0110009c00000000010300190000000001026019000000000110004c000005f00000c13d000000400100043d000000120200003900000000002104350000032902000041000003290310009c000000000102801900000040011002100000035b011001c700000c9e0001042e0000000001000416000000000110004c000005f00000c13d000000040100008a00000000011000310000032c02000041000000400310008c000000000300001900000000030240190000032c01100197000000000410004c000000000200a0190000032c0110009c00000000010300190000000001026019000000000110004c000005f00000c13d00000002010003670000000402100370000000000202043b000a00000002001d000003300220009c000005f00000213d0000002401100370000000000101043b000900000001001d0000000001000411000700000001001d00000000001004350000000101000039000800000001001d000000200010043f00000329010000410000000002000414000003290320009c0000000001024019000000c00110021000000335011001c700008010020000390c9d0c980000040f0000000102200190000005f00000613d000000000101043b0000000a020000290000000000200435000000200010043f00000329010000410000000002000414000003290320009c0000000001024019000000c00110021000000335011001c700008010020000390c9d0c980000040f0000000102200190000005f00000613d000000000101043b000000000101041a0000000903000029000000000231004b000006b90000813d000000400100043d00000064021000390000035d03000041000000000032043500000044021000390000035e030000410000000000320435000000240210003900000025030000390000000000320435000003390200004100000000002104350000000402100039000000200300003900000000003204350000032902000041000003290310009c000000000102801900000040011002100000035a011001c700000c9f000104300000000001000416000000000110004c000005f00000c13d000000040100008a00000000011000310000032c02000041000000200310008c000000000300001900000000030240190000032c01100197000000000410004c000000000200a0190000032c0110009c00000000010300190000000001026019000000000110004c000005f00000c13d00000004010000390000000201100367000000000101043b000a00000001001d000003300110009c000005f00000213d000000400100043d000900000001001d0c9d0a310000040f000000090300002900000040013000390000006002000039000700000002001d00000000002104350000002001300039000000000021043500000000000304350000000a0100002900000000001004350000000601000039000000200010043f000000400200003900000000010000190c9d09f80000040f000800000001001d000000400100043d000900000001001d0c9d0a310000040f0000000803000029000000000103041a00000009020000290000000001120436000a00000001001d00000001013000390c9d0c5e0000040f0000000a020000290000000000120435000000080100002900000002011000390c9d0c5e0000040f00000009020000290000004003200039000600000003001d00000000001304350000002001000039000000400400043d000800000004001d0000000001140436000000000202043300000000002104350000000a01000029000000000101043300000040024000390000000703000029000000000032043500000080024000390c9d0a240000040f000000000201001900000008040000290000000001420049000000200310008a00000006010000290000000001010433000000600440003900000000003404350c9d0a240000040f000000080400002900000000014100490000032902000041000003290340009c00000000030200190000000003044019000003290410009c000000000102801900000040023002100000006001100210000000000121019f00000c9e0001042e0000000001000416000000000110004c000005f00000c13d000000040100008a00000000011000310000032c02000041000000400310008c000000000300001900000000030240190000032c01100197000000000410004c000000000200a0190000032c0110009c00000000010300190000000001026019000000000110004c000005f00000c13d00000002020003670000000401200370000000000101043b000003300310009c000005f00000213d0000002402200370000000000202043b000a00000002001d000003300220009c000005f00000213d00000000001004350000000101000039000000200010043f0000004002000039000900000002001d00000000010000190c9d09f80000040f0000000a020000290000000000200435000000200010043f000000000100001900000009020000290c9d09f80000040f000000000101041a000000400200043d00000000001204350000032901000041000003290320009c000000000102401900000040011002100000035b011001c700000c9e0001042e0000000001000416000000000110004c000005f00000c13d000000040100008a00000000011000310000032c02000041000000200310008c000000000300001900000000030240190000032c01100197000000000410004c000000000200a0190000032c0110009c00000000010300190000000001026019000000000110004c000005f00000c13d00000004010000390000000201100367000000000101043b000003300210009c000005f00000213d0000000502000039000000000202041a00000330022001970000000003000411000000000232004b000005f20000c13d000000000210004c000005800000613d0000000702000039000000000302041a0000033005300197000000000451004b000006c60000c13d000000400100043d000000440210003900000377030000410000000000320435000000240210003900000016030000390000000000320435000003390200004100000000002104350000000402100039000000200300003900000000003204350000032902000041000003290310009c000000000102801900000040011002100000033a011001c700000c9f000104300000000001000416000000000110004c000005f00000c13d000000040100008a00000000011000310000032c02000041000000200310008c000000000300001900000000030240190000032c01100197000000000410004c000000000200a0190000032c0110009c00000000010300190000000001026019000000000110004c000005f00000c13d00000004010000390000000201100367000000000101043b000003300210009c000005f00000213d0000000502000039000000000202041a00000330022001970000000003000411000000000232004b000005f20000c13d000000000210004c000005b50000613d0000000802000039000000000302041a0000033005300197000000000451004b000006dd0000c13d000000400100043d000000440210003900000360030000410000000000320435000000240210003900000018030000390000000000320435000003390200004100000000002104350000000402100039000000200300003900000000003204350000032902000041000003290310009c000000000102801900000040011002100000033a011001c700000c9f000104300000000001000416000000000110004c000005f00000c13d000000040100008a00000000011000310000032c02000041000000200310008c000000000300001900000000030240190000032c01100197000000000410004c000000000200a0190000032c0110009c00000000010300190000000001026019000000000110004c000005f00000c13d00000004010000390000000201100367000000000201043b00000000010004110c9d0bf00000040f000000000100001900000c9e0001042e0000000001000416000000000110004c000005f00000c13d000000040100008a00000000011000310000032c02000041000000000310004c000000000300001900000000030240190000032c01100197000000000410004c000000000200a0190000032c0110009c00000000010300190000000001026019000000000110004c000006030000613d000000000100001900000c9f00010430000000400100043d00000044021000390000037603000041000000000032043500000339020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000032902000041000003290310009c000000000102801900000040011002100000033a011001c700000c9f000104300000000701000039000000000101041a0000000802000039000000000202041a0000033002200197000000400300043d00000020043000390000000000240435000003300110019700000000001304350000032901000041000003290230009c000000000103401900000040011002100000035c011001c700000c9e0001042e000800000001001d000a00000002001d0000000001000411000900000001001d0000000000100435000000200000043f00000329010000410000000002000414000003290320009c0000000001024019000000c00110021000000335011001c700008010020000390c9d0c980000040f0000000102200190000005f00000613d000000000101043b000000000101041a0000000a02000029000000000121004b000006950000813d000000400100043d00000044021000390000037d030000410000000000320435000000240210003900000014030000390000000000320435000003390200004100000000002104350000000402100039000000200300003900000000003204350000032902000041000003290310009c000000000102801900000040011002100000033a011001c700000c9f00010430000000800010043f000000000440004c000006630000c13d000001000300008a000000000232016f000000a00020043f000000000110004c000000c002000039000000a002006039000006720000013d0000000000400435000000000370004c0000000003000019000006510000613d000003610400004100000000030000190000000005320019000000000604041a000000000065043500000001044000390000002003300039000000000573004b0000064a0000413d0000002002300039000a00000001001d0c9d0a3c0000040f000000400100043d000900000001001d0000000a020000290c9d0a0e0000040f000000090400002900000000014100490000032902000041000003290310009c0000000001028019000003290340009c000000000204401900000040022002100000006001100210000000000121019f00000c9e0001042e0000000000300435000000a002000039000000000310004c000006720000613d0000037f0200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000514004b000006690000413d000000c002300039000000800220008a0000008001000039000a00000001001d0c9d0a3c0000040f000000400100043d000900000001001d0000000a020000290c9d0a0e0000040f000000090400002900000000014100490000032902000041000003290310009c0000000001028019000003290340009c000000000204401900000040022002100000006001100210000000000121019f00000c9e0001042e0000032f02200197000000000262019f000000000021041b00000329010000410000000002000414000003290320009c0000000001024019000000c00110021000000331011001c70000800d02000039000000030300003900000332040000410c9d0c930000040f0000000101200190000003940000c13d000005f00000013d00000009010000290000033001100198000006f60000c13d000000400100043d00000064021000390000037b03000041000000000032043500000044021000390000037c030000410000000000320435000000240210003900000025030000390000000000320435000003390200004100000000002104350000000402100039000000200300003900000000003204350000032902000041000003290310009c000000000102801900000040011002100000035a011001c700000c9f0001043000000008010000290000000a020000290c9d0ae20000040f000000400100043d000000090200002900000000002104350000032902000041000003290310009c000000000102801900000040011002100000035b011001c700000c9e0001042e000000000331004900000007010000290000000a020000290c9d0ae20000040f000000400100043d000000080200002900000000002104350000032902000041000003290310009c000000000102801900000040011002100000035b011001c700000c9e0001042e0000032f03300197000000000313019f000000000032041b000000400200043d0000000001120436000000000001043500000329010000410000000003000414000003290430009c0000000003018019000003290420009c00000000010240190000004001100210000000c002300210000000000112019f00000335011001c70000800d0200003900000002030000390000035f040000410c9d0c930000040f0000000101200190000003940000c13d000005f00000013d0000032f03300197000000000313019f000000000032041b000000400200043d000000200320003900000001040000390000000000430435000000000012043500000329010000410000000003000414000003290430009c0000000003018019000003290420009c00000000010240190000004001100210000000c002300210000000000112019f00000335011001c70000800d0200003900000002030000390000035f040000410c9d0c930000040f0000000101200190000003940000c13d000005f00000013d000700000001001d0000000000100435000000200000043f00000329010000410000000002000414000003290320009c0000000001024019000000c00110021000000335011001c700008010020000390c9d0c980000040f0000000102200190000005f00000613d000000000101043b000000000201041a0000000a01000029000600000002001d000000000112004b0000071e0000813d000000400100043d00000064021000390000037903000041000000000032043500000044021000390000037a030000410000000000320435000000240210003900000026030000390000000000320435000003390200004100000000002104350000000402100039000000200300003900000000003204350000032902000041000003290310009c000000000102801900000040011002100000035a011001c700000c9f0001043000000007010000290000000000100435000000200000043f00000329010000410000000002000414000003290320009c0000000001024019000000c00110021000000335011001c700008010020000390c9d0c980000040f0000000102200190000005f00000613d0000000a0200002900000006030000290000000002230049000000000101043b000000000021041b0000000801000029000000000010043500000329010000410000000002000414000003290320009c0000000001024019000000c00110021000000335011001c700008010020000390c9d0c980000040f0000000102200190000005f00000613d000000000101043b000000000201041a0000000a030000290000000002320019000000000021041b000000400100043d000000000031043500000329020000410000000003000414000003290430009c0000000003028019000003290410009c00000000010280190000004001100210000000c002300210000000000112019f0000032e011001c70000800d0200003900000003030000390000033604000041000000070500002900000008060000290c9d0c930000040f0000000101200190000005f00000613d000000400100043d0000000a02000029000000000221043600000024030000390000000203300367000000000303043b000000000032043500000329020000410000000003000414000003290430009c0000000003028019000003290410009c00000000010280190000004001100210000000c002300210000000000112019f00000335011001c70000800d020000390000000203000039000003780400004100000009050000290c9d0c930000040f0000000101200190000005f00000613d000003940000013d000000030300002900000044013000390000036202000041000000000021043500000024013000390000000b020000390000000000210435000003390100004100000000001304350000000401300039000000200200003900000000002104350000032901000041000003290230009c000000000103401900000040011002100000033a011001c700000c9f000104300000000601000029000000000110004c0000000001000019000007860000613d0000000901000029000000000101043300000006040000290000000302400210000000010300008a000000000223022f000000000232013f000000000221016f0000000101400210000000000112019f0000000502000029000000000012041b00000008010000290000000001010433000a00000001001d0000032d0110009c000000680000213d0000000401000039000900000001001d000000000101041a000000010210019000000001021002700000007f0320018f0000000002036019000600000002001d0000001f0220008c00000000020000190000000102002039000000000121013f0000000101100190000004370000c13d0000000601000029000000200110008c000007c30000413d0000000901000029000000000010043500000329010000410000000002000414000003290320009c0000000001024019000000c0011002100000032e011001c700008010020000390c9d0c980000040f0000000102200190000005f00000613d0000000a030000290000001f023000390000000502200270000000200330008c0000000002004019000000000301043b00000006010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b000007c30000813d000000000002041b0000000102200039000000000312004b000007bf0000413d0000000a010000290000001f0110008c000007f50000a13d0000000901000029000000000010043500000329010000410000000002000414000003290320009c0000000001024019000000c0011002100000032e011001c700008010020000390c9d0c980000040f00000001022001900000000302000029000005f00000613d0000000a0300002900000000032301700000002002000039000000000101043b0000000806000029000007e30000613d0000002002000039000000000400001900000000056200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b000007db0000413d0000000a04000029000000000343004b000007f10000813d0000000a030000290000000303300210000000f80330018f000000010400008a000000000334022f000000000343013f000000080400002900000000024200190000000002020433000000000232016f000000000021041b00000001010000390000000a020000290000000102200210000008020000013d0000000a01000029000000000110004c0000000001000019000007fb0000613d000000070100002900000000010104330000000a040000290000000302400210000000010300008a000000000223022f000000000232013f000000000221016f0000000101400210000000000112019f0000000902000029000000000012041b0000000501000039000000000201041a0000032f032001970000000006000411000000000363019f000000000031041b0000032901000041000000400300043d000900000003001d0000000003000414000003290430009c0000000001034019000000c001100210000003300520019700000331011001c70000800d0200003900000003030000390000033204000041000a00000006001d0c9d0c930000040f0000000101200190000005f00000613d0000000701000039000000000201041a0000032f022001970000000a03000029000000000232019f000000000021041b0000000801000039000000000201041a0000032f02200197000000000232019f000000000021041b0000000001000410000a00000001001d000000000110004c0000083c0000c13d000000090300002900000044013000390000033802000041000000000021043500000024013000390000001f020000390000000000210435000003390100004100000000001304350000000401300039000000200200003900000000002104350000032901000041000003290230009c000000000103401900000040011002100000033a011001c700000c9f000104300000000201000039000000000201041a000003330320009c0000005c0000813d0000033402200041000000000021041b0000000a010000290000000000100435000000200000043f00000329010000410000000002000414000003290320009c0000000001024019000000c00110021000000335011001c700008010020000390c9d0c980000040f0000000102200190000005f00000613d000000000101043b000000000201041a0000033402200041000000000021041b0000033401000041000000400200043d000000000012043500000329010000410000000003000414000003290430009c0000000003018019000003290420009c00000000010240190000004001100210000000c002300210000000000121019f0000032e011001c70000800d020000390000000303000039000003360400004100000000050000190000000a060000290c9d0c930000040f0000000101200190000005f00000613d000000200100003900000100001004430000012000000443000003370100004100000c9e0001042e000000400100043d00000044021000390000036903000041000000000032043500000024021000390000001f030000390000000000320435000003390200004100000000002104350000000402100039000000200300003900000000003204350000032902000041000003290310009c000000000102801900000040011002100000033a011001c700000c9f0001043000000006030000290000006003300039000000000303043300000007040000290000000004040433000000400500043d0000006006500039000000000026043500000040025000390000000000420435000000f802300270000000200350003900000000002304350000000000150435000000000000043500000329010000410000000002000414000003290320009c0000000002018019000003290350009c00000000010540190000004001100210000000c002200210000000000112019f0000036b011001c700000001020000390c9d0c980000040f000000000301001900000060033002700000032903300197000000200430008c000000200400003900000000040340190000001f0540018f0000000504400272000008ab0000613d00000000060000190000000507600210000000000871034f000000000808043b00000000008704350000000106600039000000000746004b000008a40000413d000000000650004c000008b90000613d00000003055002100000000504400210000000000604043300000000065601cf000000000656022f000000000741034f000000000707043b0000010005500089000000000757022f00000000055701cf000000000565019f0000000000540435000100000003001f0000000102200190000008d10000613d00000000010004330000033002100198000008f70000c13d000000400100043d000000440210003900000371030000410000000000320435000000240210003900000018030000390000000000320435000003390200004100000000002104350000000402100039000000200300003900000000003204350000032902000041000003290310009c000000000102801900000040011002100000033a011001c700000c9f00010430000000400200043d0000001f0430018f0000000503300272000008de0000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000635004b000008d60000413d000000000540004c000008ed0000613d0000000503300210000000000131034f00000000033200190000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000329010000410000000103000031000003290430009c0000000003018019000003290420009c000000000102401900000040011002100000006002300210000000000112019f00000c9f000104300000000702000039000000000202041a000000000112013f000000400200043d000700000002001d0000033001100198000009100000c13d00000007030000290000002401300039000000090200002900000000002104350000036d01000041000000000013043500000004013000390000000502000029000000000021043500000000010004140000000002000410000000040320008c000009220000c13d0000000103000031000000200130008c00000020040000390000000004034019000009530000013d000000070300002900000044013000390000036c020000410000000000210435000000240130003900000011020000390000000000210435000003390100004100000000001304350000000401300039000000200200003900000000002104350000032901000041000003290230009c000000000103401900000040011002100000033a011001c700000c9f000104300000032903000041000003290410009c00000000010380190000000705000029000003290450009c00000000030540190000004003300210000000c001100210000000000131019f0000036e011001c70c9d0c930000040f000000070a000029000000000301001900000060033002700000032903300197000000200430008c000000200400003900000000040340190000001f0540018f0000000506400272000009400000613d0000000007000019000000050870021000000000098a0019000000000881034f000000000808043b00000000008904350000000107700039000000000867004b000009380000413d000000000750004c000009500000613d0000000506600210000000000761034f000000070800002900000000066800190000000305500210000000000806043300000000085801cf000000000858022f000000000707043b0000010005500089000000000757022f00000000055701cf000000000585019f0000000000560435000100000003001f0000000102200190000009d20000613d0000001f01400039000000600210018f00000007010000290000000001120019000000000221004b000000000200001900000001020040390000032d0410009c000000680000213d0000000102200190000000680000c13d000000400010043f000000200130008c000005f00000413d00000007010000290000000001010433000000000210004c0000000002000019000000010200c039000000000121004b000005f00000c13d000000050100002900000000001004350000000401000029000000200010043f00000329010000410000000002000414000003290320009c0000000001024019000000c00110021000000335011001c700008010020000390c9d0c980000040f0000000102200190000005f00000613d000000000101043b0000000a02000029000000000021041b0000000101100039000000000201041a000700000002001d0000032d0220009c000000680000213d00000007020000290000000102200039000000000021041b000000000010043500000329010000410000000002000414000003290320009c0000000001024019000000c0011002100000032e011001c700008010020000390c9d0c980000040f0000000102200190000005f00000613d000000000101043b000000070200002900000000012100190000000902000029000000000021041b000000050100002900000000001004350000000401000029000000200010043f00000329010000410000000002000414000003290320009c0000000001024019000000c00110021000000335011001c700008010020000390c9d0c980000040f0000000102200190000005f00000613d000000000101043b0000000201100039000000000201041a000700000002001d0000032d0220009c000000680000213d00000007020000290000000102200039000000000021041b000000000010043500000329010000410000000002000414000003290320009c0000000001024019000000c0011002100000032e011001c700008010020000390c9d0c980000040f0000000102200190000005f00000613d000000000101043b000000070200002900000000012100190000000803000029000000000031041b000000400100043d000000400210003900000000003204350000002002100039000000090300002900000000003204350000000a02000029000000000021043500000329020000410000000003000414000003290430009c0000000003028019000003290410009c00000000010280190000004001100210000000c002300210000000000112019f0000036f011001c70000800d020000390000000203000039000003700400004100000005050000290c9d0c930000040f0000000101200190000003940000c13d000005f00000013d000000400200043d0000001f0430018f0000000503300272000009df0000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000635004b000009d70000413d000000000540004c000009ee0000613d0000000503300210000000000131034f00000000033200190000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000329010000410000000103000031000003290430009c0000000003018019000003290420009c000000000102401900000040011002100000006002300210000000000112019f00000c9f000104300000032903000041000003290410009c00000000010380190000004001100210000003290420009c00000000020380190000006002200210000000000112019f0000000002000414000003290420009c0000000002038019000000c002200210000000000112019f00000331011001c700008010020000390c9d0c980000040f000000010220019000000a0c0000613d000000000101043b000000000001042d000000000100001900000c9f0001043000000020030000390000000004310436000000000302043300000000003404350000004001100039000000000430004c00000a1d0000613d000000000400001900000000054100190000002004400039000000000624001900000000060604330000000000650435000000000534004b00000a160000413d000000000231001900000000000204350000001f02300039000000200300008a000000000232016f0000000001210019000000000001042d000000000301001900000000040304330000000001420436000000000240004c00000a300000613d00000000020000190000002003300039000000000503043300000000015104360000000102200039000000000542004b00000a2a0000413d000000000001042d000003800210009c00000a360000813d0000006001100039000000400010043f000000000001042d000003740100004100000000001004350000004101000039000000040010043f000003750100004100000c9f000104300000001f02200039000000200300008a000000000232016f0000000001120019000000000221004b000000000200001900000001020040390000032d0310009c00000a490000213d000000010220019000000a490000c13d000000400010043f000000000001042d000003740100004100000000001004350000004101000039000000040010043f000003750100004100000c9f000104300004000000000002000400000003001d000003300110019800000aa30000613d0000033002200198000200000002001d00000ab80000613d000300000001001d0000000000100435000000200000043f00000329010000410000000002000414000003290320009c0000000001024019000000c00110021000000335011001c700008010020000390c9d0c980000040f000000010220019000000aa10000613d000000000101043b000000000201041a0000000401000029000100000002001d000000000112004b00000acd0000413d00000003010000290000000000100435000000200000043f00000329010000410000000002000414000003290320009c0000000001024019000000c00110021000000335011001c700008010020000390c9d0c980000040f000000010220019000000aa10000613d000000040200002900000001030000290000000002230049000000000101043b000000000021041b0000000201000029000000000010043500000329010000410000000002000414000003290320009c0000000001024019000000c00110021000000335011001c700008010020000390c9d0c980000040f000000010220019000000aa10000613d000000000101043b000000000201041a00000004030000290000000002320019000000000021041b000000400100043d000000000031043500000329020000410000000003000414000003290430009c0000000003028019000003290410009c00000000010280190000004001100210000000c002300210000000000112019f0000032e011001c70000800d0200003900000003030000390000033604000041000000030500002900000002060000290c9d0c930000040f000000010120019000000aa10000613d000000000001042d000000000100001900000c9f00010430000000400100043d00000064021000390000037b03000041000000000032043500000044021000390000037c030000410000000000320435000000240210003900000025030000390000000000320435000003390200004100000000002104350000000402100039000000200300003900000000003204350000032902000041000003290310009c000000000102801900000040011002100000035a011001c700000c9f00010430000000400100043d000000640210003900000381030000410000000000320435000000440210003900000382030000410000000000320435000000240210003900000023030000390000000000320435000003390200004100000000002104350000000402100039000000200300003900000000003204350000032902000041000003290310009c000000000102801900000040011002100000035a011001c700000c9f00010430000000400100043d00000064021000390000037903000041000000000032043500000044021000390000037a030000410000000000320435000000240210003900000026030000390000000000320435000003390200004100000000002104350000000402100039000000200300003900000000003204350000032902000041000003290310009c000000000102801900000040011002100000035a011001c700000c9f000104300003000000000002000003300110019800000b1f0000613d000200000003001d0000033002200198000300000002001d00000b340000613d000100000001001d00000000001004350000000101000039000000200010043f00000329010000410000000002000414000003290320009c0000000001024019000000c00110021000000335011001c700008010020000390c9d0c980000040f0000000102200190000000030400002900000b1d0000613d000000000101043b0000000000400435000000200010043f00000329010000410000000002000414000003290320009c0000000001024019000000c00110021000000335011001c700008010020000390c9d0c980000040f0000000306000029000000010220019000000b1d0000613d000000000101043b0000000202000029000000000021041b000000400100043d000000000021043500000329020000410000000003000414000003290430009c0000000003028019000003290410009c00000000010280190000004001100210000000c002300210000000000112019f0000032e011001c70000800d020000390000000303000039000003830400004100000001050000290c9d0c930000040f000000010120019000000b1d0000613d000000000001042d000000000100001900000c9f00010430000000400100043d000000640210003900000386030000410000000000320435000000440210003900000387030000410000000000320435000000240210003900000024030000390000000000320435000003390200004100000000002104350000000402100039000000200300003900000000003204350000032902000041000003290310009c000000000102801900000040011002100000035a011001c700000c9f00010430000000400100043d000000640210003900000384030000410000000000320435000000440210003900000385030000410000000000320435000000240210003900000022030000390000000000320435000003390200004100000000002104350000000402100039000000200300003900000000003204350000032902000041000003290310009c000000000102801900000040011002100000035a011001c700000c9f000104300005000000000002000300000003001d000400000002001d0000033001100197000500000001001d00000000001004350000000101000039000100000001001d000000200010043f00000329010000410000000002000414000003290320009c0000000001024019000000c00110021000000335011001c700008010020000390c9d0c980000040f000000010220019000000bb20000613d000000000101043b00000004020000290000033002200197000400000002001d0000000000200435000000200010043f00000329010000410000000002000414000003290320009c0000000001024019000000c00110021000000335011001c700008010020000390c9d0c980000040f000000010220019000000bb20000613d000000000101043b000000000201041a000000010100008a000200000002001d000000000112004b00000bb10000613d00000003010000290000000202000029000000000112004b00000bb40000413d0000000501000029000000000110004c00000bc60000613d0000000401000029000000000110004c00000bdb0000613d000000050100002900000000001004350000000101000029000000200010043f00000329010000410000000002000414000003290320009c0000000001024019000000c00110021000000335011001c700008010020000390c9d0c980000040f000000010220019000000bb20000613d000000000101043b00000004020000290000000000200435000000200010043f00000329010000410000000002000414000003290320009c0000000001024019000000c00110021000000335011001c700008010020000390c9d0c980000040f000000010220019000000bb20000613d000000030200002900000002030000290000000002230049000000000101043b000000000021041b000000400100043d000000000021043500000329020000410000000003000414000003290430009c0000000003028019000003290410009c00000000010280190000004001100210000000c002300210000000000112019f0000032e011001c70000800d0200003900000003030000390000038304000041000000050500002900000004060000290c9d0c930000040f000000010120019000000bb20000613d000000000001042d000000000100001900000c9f00010430000000400100043d00000044021000390000038803000041000000000032043500000024021000390000001d030000390000000000320435000003390200004100000000002104350000000402100039000000200300003900000000003204350000032902000041000003290310009c000000000102801900000040011002100000033a011001c700000c9f00010430000000400100043d000000640210003900000386030000410000000000320435000000440210003900000387030000410000000000320435000000240210003900000024030000390000000000320435000003390200004100000000002104350000000402100039000000200300003900000000003204350000032902000041000003290310009c000000000102801900000040011002100000035a011001c700000c9f00010430000000400100043d000000640210003900000384030000410000000000320435000000440210003900000385030000410000000000320435000000240210003900000022030000390000000000320435000003390200004100000000002104350000000402100039000000200300003900000000003204350000032902000041000003290310009c000000000102801900000040011002100000035a011001c700000c9f000104300003000000000002000300000002001d000003300410019800000c340000613d0000000000400435000000200000043f00000329010000410000000002000414000003290320009c0000000001024019000000c00110021000000335011001c70000801002000039000200000004001d0c9d0c980000040f000000010220019000000c320000613d0000000202000029000000000101043b000000000301041a0000000301000029000100000003001d000000000113004b00000c490000413d0000000000200435000000200000043f00000329010000410000000002000414000003290320009c0000000001024019000000c00110021000000335011001c700008010020000390c9d0c980000040f000000010220019000000c320000613d000000030300002900000001020000290000000002320049000000000101043b000000000021041b0000000201000039000000000201041a0000000002320049000000000021041b000000400100043d000000000031043500000329020000410000000003000414000003290430009c0000000003028019000003290410009c00000000010280190000004001100210000000c002300210000000000112019f0000032e011001c70000800d0200003900000003030000390000033604000041000000020500002900000000060000190c9d0c930000040f000000010120019000000c320000613d000000000001042d000000000100001900000c9f00010430000000400100043d00000064021000390000038b03000041000000000032043500000044021000390000038c030000410000000000320435000000240210003900000021030000390000000000320435000003390200004100000000002104350000000402100039000000200300003900000000003204350000032902000041000003290310009c000000000102801900000040011002100000035a011001c700000c9f00010430000000400100043d00000064021000390000038903000041000000000032043500000044021000390000038a030000410000000000320435000000240210003900000022030000390000000000320435000003390200004100000000002104350000000402100039000000200300003900000000003204350000032902000041000003290310009c000000000102801900000040011002100000035a011001c700000c9f000104300003000000000002000000000301041a000000400200043d000300000002001d000100000003001d0000000002320436000200000002001d000000000010043500000329010000410000000002000414000003290320009c0000000001024019000000c0011002100000032e011001c700008010020000390c9d0c980000040f000000010220019000000c8b0000613d0000000105000029000000000250004c000000020400002900000c7c0000613d000000000101043b0000000002000019000000000301041a000000000434043600000001011000390000000102200039000000000352004b00000c760000413d000000030100002900000000021400490000001f03200039000000200200008a000000000223016f0000000004120019000000000224004b000000000200001900000001020040390000032d0340009c00000c8d0000213d000000010220019000000c8d0000c13d000000400040043f000000000001042d000000000100001900000c9f00010430000003740100004100000000001004350000004101000039000000040010043f000003750100004100000c9f0001043000000c96002104210000000102000039000000000001042d0000000002000019000000000001042d00000c9b002104230000000102000039000000000001042d0000000002000019000000000001042d00000c9d0000043200000c9e0001042e00000c9f00010430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffffffffffff000000000000007f8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0200000000000000000000000000000000000020000000000000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff02000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0ffffffffffffffffffffffffffffffffffffffffdfb031a1c1dafd9ef00000000000000000000000000000000000000000000000204fce5e3e250261100000000200000000000000000000000000000000000040000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef000000020000000000000000000000000000004000000100000000000000000045524332303a206d696e7420746f20746865207a65726f20616464726573730008c379a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000000000000000000000070a08230000000000000000000000000000000000000000000000000000000009808a35d00000000000000000000000000000000000000000000000000000000ae60147f00000000000000000000000000000000000000000000000000000000ae60148000000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000f2fde38b000000000000000000000000000000000000000000000000000000009808a35e00000000000000000000000000000000000000000000000000000000a457c2d700000000000000000000000000000000000000000000000000000000a9059cbb0000000000000000000000000000000000000000000000000000000079cc678f0000000000000000000000000000000000000000000000000000000079cc6790000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000095d89b410000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000715018a60000000000000000000000000000000000000000000000000000000025c5fd7c0000000000000000000000000000000000000000000000000000000042966c670000000000000000000000000000000000000000000000000000000042966c68000000000000000000000000000000000000000000000000000000005b3c177d000000000000000000000000000000000000000000000000000000005f6a598d0000000000000000000000000000000000000000000000000000000025c5fd7d00000000000000000000000000000000000000000000000000000000313ce5670000000000000000000000000000000000000000000000000000000039509351000000000000000000000000000000000000000000000000000000000ca3bd14000000000000000000000000000000000000000000000000000000000ca3bd150000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd0000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b364647265737300000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f2061000000000000000000000000000000000000008400000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000040000000000000000000000000207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f775a5bf3477e527e8ad633fefbaf69021b6b77942e99127baf21b431c5e1efba99696e76616c6964207472656173757279206164647265737300000000000000008a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b77726f6e67206e6f6e63650000000000000000000000000000000000000000005f6a598d000000000000000000000000000000000000000000000000000000009a8a0592ac89c5ad3bc6df8224c17b485976f597df104ee20d0df415241f670b0200000200000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff3f19457468657265756d205369676e6564204d6573736167653a0a333200000000000000000000000000000000000000000000000000000000ffffffffffffff9f45434453413a20696e76616c6964207369676e6174757265206c656e677468007fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a00000000000000000000000000000000000000080000000000000000000000000696e76616c6964207369676e6174757265000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004400000000000000000000000002000000000000000000000000000000000000600000000000000000000000009fde4aaacaab0fd850f39e72bea30d750bbd29ae6893d2ce7a28f27b530d027c45434453413a20696e76616c6964207369676e61747572650000000000000000756500000000000000000000000000000000000000000000000000000000000045434453413a20696e76616c6964207369676e6174757265202773272076616c4e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572696e76616c6964207369676e65722061646472657373000000000000000000002ea50f1e94916dc786a0781be46a2143a26283330e6b29b21bc86d1d21e267f3616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f206164696e73756666696369656e742062616c616e6365000000000000000000000000696e636f6d652061646472657373206e6f742073657400000000000000000000c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b000000000000000000000000000000000000000000000000ffffffffffffffa0657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f20616464728c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f2061646445524332303a20696e73756666696369656e7420616c6c6f77616e6365000000636500000000000000000000000000000000000000000000000000000000000045524332303a206275726e20616d6f756e7420657863656564732062616c616e730000000000000000000000000000000000000000000000000000000000000045524332303a206275726e2066726f6d20746865207a65726f20616464726573000000000000000000000000000000000000000000000000000000000000000033b8498627c7ec258834ecc21d5db135395ef70a069e5e24b350ed9c073b29b2
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0x000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000014486561727458205574696c69747920546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000003484e580000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): HeartX Utility Token
Arg [1] : symbol (string): HNX
-----Encoded View---------------
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.