ERC-20
Overview
Max Total Supply
50,000,000 $SNRK
Holders
16,859
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:
SnarkLaunch
Compiler Version
v0.8.17+commit.8df45f5f
ZkSolc Version
v1.3.7
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "./SnrkPrivate.sol"; // Import the SnrkPrivate contract contract SnarkLaunch is ERC20 { address public owner; SnrkPrivate public snrkPrivateInstance; bool public isClaimingActive = false; mapping(address => bool) public hasClaimed; mapping(address => bool) public isWhitelisted; address[] public whitelistedAddresses; event _claimedCompleted (address account); event _whitelistAdded(); event _whitelistRemoved(); event TokensClaimed(address indexed claimer, uint256 amount); string constant private _name = "Snark Launch"; string constant private _symbol = "$SNRK"; constructor() ERC20(_name, _symbol) { owner = msg.sender; _mint(owner, 50000000 * 10 ** decimals()); snrkPrivateInstance = SnrkPrivate(0x19e24dDfe4590aC1b3E1e9e4d99229D032BCC271); } function toggleClaiming() external { require(msg.sender == owner, "Only the owner can toggle claiming"); isClaimingActive = !isClaimingActive; emit _claimedCompleted(msg.sender); } function getWhitelistedAddresses() public view returns (address[] memory) { return whitelistedAddresses; } function addToWhitelist(address whitelistedAddress) external { require(msg.sender == owner, "Only the owner can add addresses to the whitelist"); require(!isWhitelisted[whitelistedAddress], "Address is already whitelisted"); isWhitelisted[whitelistedAddress] = true; whitelistedAddresses.push(whitelistedAddress); emit _whitelistAdded(); } function addMultipleToWhitelist(address[] calldata addresses) external { require(msg.sender == owner, "Only the owner can add addresses to the whitelist"); for (uint i = 0; i < addresses.length; i++) { if (!isWhitelisted[addresses[i]]) { isWhitelisted[addresses[i]] = true; whitelistedAddresses.push(addresses[i]); } } emit _whitelistAdded(); } function removeFromWhitelist(address whitelistedAddress) external { require(msg.sender == owner, "Only the owner can remove addresses from the whitelist"); require(isWhitelisted[whitelistedAddress], "Address is not whitelisted"); isWhitelisted[whitelistedAddress] = false; for (uint i = 0; i < whitelistedAddresses.length; i++) { if (whitelistedAddresses[i] == whitelistedAddress) { whitelistedAddresses[i] = whitelistedAddresses[whitelistedAddresses.length - 1]; whitelistedAddresses.pop(); break; } } emit _whitelistRemoved(); } function claim() external { require(isClaimingActive, "Claiming is not active"); require(!hasClaimed[msg.sender], "Tokens already claimed for this address"); uint claimAmount = snrkPrivateInstance.allocationAmount(msg.sender); require(claimAmount > 0, "No tokens to claim for this address"); if (isWhitelisted[msg.sender]) { claimAmount = claimAmount * 40340 * 4345 / 10000; } else { claimAmount = claimAmount * 27086 * 4545 / 10000; } hasClaimed[msg.sender] = true; _transfer(owner, msg.sender, claimAmount); emit TokensClaimed(msg.sender, claimAmount); } }
// 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 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 pragma solidity ^0.8.17; /* ______ __ __ ______ _______ __ __ / \ | \ | \ / \ | \ | \ / \ | $$$$$$\| $$\ | $$| $$$$$$\| $$$$$$$\| $$ / $$ | $$___\$$| $$$\| $$| $$__| $$| $$__| $$| $$/ $$ \$$ \ | $$$$\ $$| $$ $$| $$ $$| $$ $$ _\$$$$$$\| $$\$$ $$| $$$$$$$$| $$$$$$$\| $$$$$\ | \__| $$| $$ \$$$$| $$ | $$| $$ | $$| $$ \$$\ \$$ $$| $$ \$$$| $$ | $$| $$ | $$| $$ \$$\ \$$$$$$ \$$ \$$ \$$ \$$ \$$ \$$ \$$ \$$ */ contract SnrkPrivate { struct Participant { address participantAddress; uint allocationAmount; } address public recipient = 0xEab8573343887E16efCfc6bD9C31b4f28e80ba84; address public owner; address[] participants; mapping (address => uint) public allocationAmount; // st ore participant's contribution amount mapping(address => bool) inserted; bool public isActive = true; event DonationReceived(address indexed donor, uint256 amount); constructor() { owner = msg.sender; } function contribute() public payable { require(isActive , "ICO paused"); uint _amount = msg.value; require((_amount >= 0.1 * 10 **18) && (_amount <= 10 * 10 **18), "Over the allowed range"); if (inserted[msg.sender]) { allocationAmount[msg.sender] += _amount; } else { inserted[msg.sender] = true; allocationAmount[msg.sender] = _amount; participants.push(msg.sender); } emit DonationReceived(msg.sender, _amount); } function getParticipants() public view returns (Participant[] memory) { Participant[] memory result = new Participant[](participants.length); for (uint i = 0; i < participants.length; i++) { result[i] = Participant(participants[i], allocationAmount[participants[i]]); } return result; } function getETHBalance() public view returns(uint){ return address(this).balance; } function pause() public { require(msg.sender == owner, "Only the owner can pause the ico"); isActive = !isActive; } function withdraw(uint _amount) public { require(msg.sender == owner, "Only the owner can withdraw tokens"); require(_amount <= address(this).balance, "Insufficient balance"); (bool success, ) = recipient.call{value: _amount}(""); require(success, "Transfer failed"); } }
{ "optimizer": { "enabled": true } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","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":"claimer","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TokensClaimed","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":false,"internalType":"address","name":"account","type":"address"}],"name":"_claimedCompleted","type":"event"},{"anonymous":false,"inputs":[],"name":"_whitelistAdded","type":"event"},{"anonymous":false,"inputs":[],"name":"_whitelistRemoved","type":"event"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addMultipleToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"whitelistedAddress","type":"address"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":[],"name":"claim","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":[],"name":"getWhitelistedAddresses","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"hasClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"isClaimingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"address","name":"whitelistedAddress","type":"address"}],"name":"removeFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"snrkPrivateInstance","outputs":[{"internalType":"contract SnrkPrivate","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleClaiming","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
9c4d535b00000000000000000000000000000000000000000000000000000000000000000100030f4b42b8648e74c6c592f7075fce8e2c4ad66b5b9993326b76dd4764b800000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x0003000000000002000600000000000200020000000103550000006001100270000002b00010019d000100000000001f00000001012001900000004f0000c13d0000008001000039000000400010043f0000000001000031000000040110008c000005910000413d0000000201000367000000000101043b000000e001100270000002c10210009c0000006a0000a13d000002c20210009c000000c00000213d000002ca0210009c000001210000213d000002ce0210009c000002e80000613d000002cf0210009c0000030c0000613d000002d00110009c000005910000c13d0000000001000416000000000110004c000005910000c13d000000040100008a0000000001100031000002df02000041000000000310004c00000000030000190000000003024019000002df01100197000000000410004c000000000200a019000002df0110009c00000000010300190000000001026019000000000110004c000005910000c13d0000000501000039000000000101041a000002e0021001970000000001000411000000000221004b000005d20000c13d0000000602000039000000000302041a000002f604300198000002f704000041000000000400c019000002b603300197000000000334019f000000000032041b000000400200043d0000000000120435000002b0010000410000000003000414000002b00430009c0000000003018019000002b00420009c00000000010240190000004001100210000000c002300210000000000112019f000002b5011001c70000800d020000390000000103000039000002f8040000410aba0ab00000040f0000000101200190000005910000613d000000000100001900000abb0001042e0000000001000416000000000110004c000005910000c13d000000c001000039000000400010043f0000000c01000039000000800010043f000002b101000041000000a00010043f000000400500043d000002b20150009c000000640000813d0000004001500039000000400010043f00000005040000390000000006450436000002b3010000410000000000160435000000800800043d000002b40180009c000000eb0000a13d000002ee0100004100000000001004350000004101000039000000040010043f000002ef0100004100000abc00010430000002d10210009c000000fd0000a13d000002d20210009c000001430000213d000002d60210009c000003340000613d000002d70210009c0000034e0000613d000002d80110009c000005910000c13d0000000001000416000000000110004c000005910000c13d000000040100008a0000000001100031000002df02000041000000400310008c00000000030000190000000003024019000002df01100197000000000410004c000000000200a019000002df0110009c00000000010300190000000001026019000000000110004c000005910000c13d00000004010000390000000201100367000000000101043b000600000001001d000002e00110009c000005910000213d0000000001000411000400000001001d00000000001004350000000101000039000500000001001d000000200010043f000002b0010000410000000002000414000002b00320009c0000000001024019000000c001100210000002ba011001c700008010020000390aba0ab50000040f0000000102200190000005910000613d000000000101043b00000006020000290000000000200435000000200010043f000002b0010000410000000002000414000002b00320009c0000000001024019000000c001100210000002ba011001c700008010020000390aba0ab50000040f0000000102200190000005910000613d000000000101043b000000000101041a00000024020000390000000202200367000000000202043b0000000003120019000000000123004b000000000100001900000001010040390000000101100190000006100000c13d000000040100002900000006020000290aba0a490000040f000000400100043d00000005020000290000000000210435000002b002000041000002b00310009c00000000010280190000004001100210000002e5011001c700000abb0001042e000002c30210009c000001910000213d000002c70210009c0000036c0000613d000002c80210009c000003950000613d000002c90110009c000005910000c13d0000000001000416000000000110004c000005910000c13d000000040100008a0000000001100031000002df02000041000000400310008c00000000030000190000000003024019000002df01100197000000000410004c000000000200a019000002df0110009c00000000010300190000000001026019000000000110004c000005910000c13d00000002010003670000000402100370000000000202043b000002e00320009c000005910000213d0000002401100370000000000301043b00000000010004110aba09b60000040f0000000101000039000000400200043d0000000000120435000002b001000041000002b00320009c00000000010240190000004001100210000002e5011001c700000abb0001042e0000000307000039000000000107041a000000010210019000000001011002700000007f0310018f000000000301c0190000001f0130008c00000000010000190000000101002039000000010110018f000000000112004b000001f80000613d000002ee0100004100000000001004350000002201000039000000040010043f000002ef0100004100000abc00010430000002d90210009c000002510000a13d000002da0210009c000003e70000613d000002db0210009c000004020000613d000002dc0110009c000005910000c13d0000000001000416000000000110004c000005910000c13d000000040100008a0000000001100031000002df02000041000000000310004c00000000030000190000000003024019000002df01100197000000000410004c000000000200a019000002df0110009c00000000010300190000000001026019000000000110004c000005910000c13d0000000601000039000000000101041a000002e001100197000000400200043d0000000000120435000002b001000041000002b00320009c00000000010240190000004001100210000002e5011001c700000abb0001042e000002cb0210009c000004520000613d000002cc0210009c0000049a0000613d000002cd0110009c000005910000c13d0000000001000416000000000110004c000005910000c13d000000040100008a0000000001100031000002df02000041000000000310004c00000000030000190000000003024019000002df01100197000000000410004c000000000200a019000002df0110009c00000000010300190000000001026019000000000110004c000005910000c13d0000000501000039000000000101041a000002e001100197000000400200043d0000000000120435000002b001000041000002b00320009c00000000010240190000004001100210000002e5011001c700000abb0001042e000002d30210009c000004dc0000613d000002d40210009c000005040000613d000002d50110009c000005910000c13d0000000001000416000000000110004c000005910000c13d000000040100008a0000000001100031000002df02000041000000000310004c00000000030000190000000003024019000002df01100197000000000410004c000000000200a019000002df0110009c00000000010300190000000001026019000000000110004c000005910000c13d0000000904000039000000000304041a000000400200043d00000000013204360000000000400435000000000430004c00000000040100190000016c0000613d000002e20500004100000000060000190000000004010019000000000705041a000002e007700197000000000474043600000001055000390000000106600039000000000736004b000001650000413d00000000032400490000001f03300039000000200400008a000000000443016f0000000003240019000000000443004b00000000040000190000000104004039000002b40530009c000000640000213d0000000104400190000000640000c13d000000400030043f00000020040000390000000005430436000000000402043300000000004504350000004002300039000000000540004c000001870000613d00000000050000190000000016010434000002e00660019700000000026204360000000105500039000000000645004b000001810000413d0000000001320049000002b002000041000002b00410009c0000000001028019000002b00430009c000000000203401900000040022002100000006001100210000000000121019f00000abb0001042e000002c40210009c0000052b0000613d000002c50210009c0000054f0000613d000002c60110009c000005910000c13d0000000001000416000000000110004c000005910000c13d000000040100008a0000000001100031000002df02000041000000200310008c00000000030000190000000003024019000002df01100197000000000410004c000000000200a019000002df0110009c00000000010300190000000001026019000000000110004c000005910000c13d00000004010000390000000201100367000000000101043b000600000001001d000002e00110009c000005910000213d0000000501000039000000000101041a000002e0011001970000000002000411000000000112004b000006160000c13d000000060100002900000000001004350000000801000039000500000001001d000000200010043f000002b0010000410000000002000414000002b00320009c0000000001024019000000c001100210000002ba011001c700008010020000390aba0ab50000040f0000000102200190000005910000613d000000000101043b000000000101041a000000ff01100190000006c70000c13d000000060100002900000000001004350000000501000029000000200010043f000002b0010000410000000002000414000002b00320009c0000000001024019000000c001100210000002ba011001c700008010020000390aba0ab50000040f0000000102200190000005910000613d000000000101043b000000000201041a000001000300008a000000000232016f00000001022001bf000000000021041b0000000902000039000000000102041a000002b40310009c000000640000213d0000000103100039000000000032041b000000000302041a000000000313004b000008160000a13d0000000000200435000002e201100041000000000201041a000002b7022001970000000603000029000000000232019f000000000021041b000002b0010000410000000002000414000002b00320009c0000000001024019000000c001100210000002e3011001c70000800d020000390000000103000039000002e4040000410aba0ab00000040f00000001012001900000004d0000c13d000005910000013d000000200130008c000600000004001d000500000005001d000400000006001d000002200000413d000100000003001d000200000008001d000300000007001d0000000000700435000002b0010000410000000002000414000002b00320009c0000000001024019000000c001100210000002b5011001c700008010020000390aba0ab50000040f0000000102200190000005910000613d00000002080000290000001f028000390000000502200270000000200380008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b0000000604000029000000050500002900000004060000290000000307000029000002200000813d000000000002041b0000000102200039000000000312004b0000021c0000413d0000001f0180008c000002780000a13d000200000008001d000300000007001d0000000000700435000002b0010000410000000002000414000002b00320009c0000000001024019000000c001100210000002b5011001c700008010020000390aba0ab50000040f0000000102200190000005910000613d000000200200008a000000020800002900000000032801700000002002000039000000000101043b0000023f0000613d0000002002000039000000000400001900000080052000390000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b000002370000413d000000000383004b0000000505000029000000040600002900000003070000290000024d0000813d0000000303800210000000f80330018f000000010400008a000000000334022f000000000343013f00000080022000390000000002020433000000000232016f000000000021041b000000010100003900000001028002100000000604000029000002820000013d000002dd0210009c000005800000613d000002de0110009c000005910000c13d0000000001000416000000000110004c000005910000c13d000000040100008a0000000001100031000002df02000041000000400310008c00000000030000190000000003024019000002df01100197000000000410004c000000000200a019000002df0110009c00000000010300190000000001026019000000000110004c000005910000c13d00000002010003670000000402100370000000000202043b000002e00320009c000005910000213d0000002401100370000000000301043b00000000010004110aba0a490000040f0000000101000039000000400200043d0000000000120435000002b001000041000002b00320009c00000000010240190000004001100210000002e5011001c700000abb0001042e000000000180004c00000000010000190000027c0000613d000000a00100043d0000000302800210000000010300008a000000000223022f000000000232013f000000000221016f0000000101800210000000000112019f000000000017041b0000000008050433000002b40180009c000000640000213d0000000407000039000000000107041a000000010210019000000001021002700000007f0320018f000000000302c0190000001f0230008c00000000020000190000000102002039000000000121013f0000000101100190000000f70000c13d000000200130008c000002b80000413d000100000003001d000200000008001d000300000007001d0000000000700435000002b0010000410000000002000414000002b00320009c0000000001024019000000c001100210000002b5011001c700008010020000390aba0ab50000040f0000000102200190000005910000613d00000002080000290000001f028000390000000502200270000000200380008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b0000000604000029000000050500002900000004060000290000000307000029000002b80000813d000000000002041b0000000102200039000000000312004b000002b40000413d0000001f0180008c000005a90000a13d000200000008001d000300000007001d0000000000700435000002b0010000410000000002000414000002b00320009c0000000001024019000000c001100210000002b5011001c700008010020000390aba0ab50000040f0000000102200190000005910000613d000000200200008a000000020800002900000000032801700000002002000039000000000101043b0000000506000029000002d80000613d0000002002000039000000000400001900000000056200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b000002d00000413d000000000383004b0000000307000029000002e40000813d0000000303800210000000f80330018f000000010400008a000000000334022f000000000343013f00000000026200190000000002020433000000000232016f000000000021041b000000010100003900000001028002100000000604000029000005b30000013d0000000001000416000000000110004c000005910000c13d000000040100008a0000000001100031000002df02000041000000200310008c00000000030000190000000003024019000002df01100197000000000410004c000000000200a019000002df0110009c00000000010300190000000001026019000000000110004c000005910000c13d00000004010000390000000201100367000000000101043b000002e00210009c000005910000213d0000000000100435000000200000043f000000400200003900000000010000190aba09770000040f000000000101041a000000400200043d0000000000120435000002b001000041000002b00320009c00000000010240190000004001100210000002e5011001c700000abb0001042e0000000001000416000000000110004c000005910000c13d000000040100008a0000000001100031000002df02000041000000200310008c00000000030000190000000003024019000002df01100197000000000410004c000000000200a019000002df0110009c00000000010300190000000001026019000000000110004c000005910000c13d00000004010000390000000201100367000000000101043b000002e00210009c000005910000213d00000000001004350000000701000039000000200010043f000000400200003900000000010000190aba09770000040f000000000101041a000000ff011001900000000001000019000000010100c039000000400200043d0000000000120435000002b001000041000002b00320009c00000000010240190000004001100210000002e5011001c700000abb0001042e0000000001000416000000000110004c000005910000c13d000000040100008a0000000001100031000002df02000041000000000310004c00000000030000190000000003024019000002df01100197000000000410004c000000000200a019000002df0110009c00000000010300190000000001026019000000000110004c000005910000c13d000000400100043d00000012020000390000000000210435000002b002000041000002b00310009c00000000010280190000004001100210000002e5011001c700000abb0001042e0000000001000416000000000110004c000005910000c13d000000040100008a0000000001100031000002df02000041000000000310004c00000000030000190000000003024019000002df01100197000000000410004c000000000200a019000002df0110009c00000000010300190000000001026019000000000110004c000005910000c13d0000000601000039000000000101041a000002f6011001980000000001000019000000010100c039000000400200043d0000000000120435000002b001000041000002b00320009c00000000010240190000004001100210000002e5011001c700000abb0001042e0000000001000416000000000110004c000005910000c13d000000040100008a0000000001100031000002df02000041000000000310004c00000000030000190000000003024019000002df01100197000000000410004c000000000200a019000002df0110009c00000000010300190000000001026019000000000110004c000005910000c13d0000000404000039000000000304041a000000010530019000000001013002700000007f0210018f000000000701001900000000070260190000001f0270008c00000000020000190000000102002039000000000223013f0000000102200190000000f70000c13d000000400100043d0000000002710436000000000550004c0000062b0000c13d000001000400008a000000000343016f0000000000320435000000000270004c00000020030000390000000003006019000006380000013d0000000001000416000000000110004c000005910000c13d000000040100008a0000000001100031000002df02000041000000400310008c00000000030000190000000003024019000002df01100197000000000410004c000000000200a019000002df0110009c00000000010300190000000001026019000000000110004c000005910000c13d00000002010003670000000402100370000000000202043b000600000002001d000002e00220009c000005910000213d0000002401100370000000000101043b000500000001001d0000000001000411000300000001001d00000000001004350000000101000039000400000001001d000000200010043f000002b0010000410000000002000414000002b00320009c0000000001024019000000c001100210000002ba011001c700008010020000390aba0ab50000040f0000000102200190000005910000613d000000000101043b00000006020000290000000000200435000000200010043f000002b0010000410000000002000414000002b00320009c0000000001024019000000c001100210000002ba011001c700008010020000390aba0ab50000040f0000000102200190000005910000613d000000000101043b000000000101041a0000000503000029000000000231004b000006d90000813d000000400100043d0000006402100039000002e60300004100000000003204350000004402100039000002e7030000410000000000320435000000240210003900000025030000390000000000320435000002bf020000410000000000210435000000040210003900000020030000390000000000320435000002b002000041000002b00310009c00000000010280190000004001100210000002e8011001c700000abc000104300000000001000416000000000110004c000005910000c13d000000040100008a0000000001100031000002df02000041000000000310004c00000000030000190000000003024019000002df01100197000000000410004c000000000200a019000002df0110009c00000000010300190000000001026019000000000110004c000005910000c13d0000000201000039000000000101041a000000400200043d0000000000120435000002b001000041000002b00320009c00000000010240190000004001100210000002e5011001c700000abb0001042e0000000001000416000000000110004c000005910000c13d000000040100008a0000000001100031000002df02000041000000600310008c00000000030000190000000003024019000002df01100197000000000410004c000000000200a019000002df0110009c00000000010300190000000001026019000000000110004c000005910000c13d00000002010003670000000402100370000000000202043b000600000002001d000002e00220009c000005910000213d0000002402100370000000000202043b000500000002001d000002e00220009c000005910000213d0000004401100370000000000101043b000400000001001d000000060100002900000000001004350000000101000039000300000001001d000000200010043f000002b0010000410000000002000414000002b00320009c0000000001024019000000c001100210000002ba011001c700008010020000390aba0ab50000040f0000000102200190000005910000613d000000000101043b0000000002000411000200000002001d0000000000200435000000200010043f000002b0010000410000000002000414000002b00320009c0000000001024019000000c001100210000002ba011001c700008010020000390aba0ab50000040f0000000102200190000005910000613d000000000101043b000000000201041a000000010100008a000100000002001d000000000112004b000007600000c13d0000000601000029000000050200002900000004030000290aba09b60000040f000000400100043d00000003020000290000000000210435000002b002000041000002b00310009c00000000010280190000004001100210000002e5011001c700000abb0001042e0000000001000416000000000110004c000005910000c13d0000000001000031000000040210008a000002df03000041000000200420008c00000000040000190000000004034019000002df02200197000000000520004c000000000300a019000002df0220009c00000000020400190000000002036019000000000220004c000005910000c13d00000002030003670000000402300370000000000202043b000002b40420009c000005910000213d0000002304200039000002df05000041000000000614004b00000000060000190000000006058019000002df07100197000002df04400197000000000874004b0000000005008019000000000474013f000002df0440009c00000000040600190000000004056019000000000440004c000005910000c13d0000000404200039000000000343034f000000000303043b000200000003001d000002b40330009c000005910000213d000000240320003900000002020000290000000502200210000100000003001d0000000002320019000000000112004b000005910000213d0000000501000039000000000101041a000002e0011001970000000002000411000000000112004b000006160000c13d0000000201000029000000000110004c000007760000c13d000002b0010000410000000002000414000002b00320009c0000000001024019000000c001100210000002e3011001c70000800d020000390000000103000039000002e4040000410aba0ab00000040f00000001012001900000004d0000c13d000005910000013d0000000001000416000000000110004c000005910000c13d000000040100008a0000000001100031000002df02000041000000200310008c00000000030000190000000003024019000002df01100197000000000410004c000000000200a019000002df0110009c00000000010300190000000001026019000000000110004c000005910000c13d00000004010000390000000201100367000000000101043b000600000001001d000002e00110009c000005910000213d0000000501000039000000000101041a000002e0011001970000000002000411000000000112004b0000064a0000c13d000000060100002900000000001004350000000801000039000500000001001d000000200010043f000002b0010000410000000002000414000002b00320009c0000000001024019000000c001100210000002ba011001c700008010020000390aba0ab50000040f0000000102200190000005910000613d000000000101043b000000000101041a000000ff01100190000006e60000c13d000000400100043d0000004402100039000002f103000041000000000032043500000024021000390000001a030000390000000000320435000002bf020000410000000000210435000000040210003900000020030000390000000000320435000002b002000041000002b00310009c00000000010280190000004001100210000002c0011001c700000abc000104300000000001000416000000000110004c000005910000c13d000000040100008a0000000001100031000002df02000041000000200310008c00000000030000190000000003024019000002df01100197000000000410004c000000000200a019000002df0110009c00000000010300190000000001026019000000000110004c000005910000c13d00000004010000390000000201100367000000000101043b000002e00210009c000005910000213d00000000001004350000000801000039000000200010043f000000400200003900000000010000190aba09770000040f000000000101041a000000ff011001900000000001000019000000010100c039000000400200043d0000000000120435000002b001000041000002b00320009c00000000010240190000004001100210000002e5011001c700000abb0001042e0000000001000416000000000110004c000005910000c13d000000040100008a0000000001100031000002df02000041000000000310004c00000000030000190000000003024019000002df01100197000000000410004c000000000200a019000002df0110009c00000000010300190000000001026019000000000110004c000005910000c13d0000000601000039000000000201041a000002f601200198000005e70000c13d000000400100043d000000440210003900000306030000410000000000320435000000240210003900000016030000390000000000320435000002bf020000410000000000210435000000040210003900000020030000390000000000320435000002b002000041000002b00310009c00000000010280190000004001100210000002c0011001c700000abc000104300000000001000416000000000110004c000005910000c13d000000040100008a0000000001100031000002df02000041000000200310008c00000000030000190000000003024019000002df01100197000000000410004c000000000200a019000002df0110009c00000000010300190000000001026019000000000110004c000005910000c13d00000004010000390000000201100367000000000101043b0000000902000039000000000302041a000000000331004b000005910000813d0000000000200435000002e201100041000000000101041a000002e001100197000000400200043d0000000000120435000002b001000041000002b00320009c00000000010240190000004001100210000002e5011001c700000abb0001042e0000000001000416000000000110004c000005910000c13d000000040100008a0000000001100031000002df02000041000000400310008c00000000030000190000000003024019000002df01100197000000000410004c000000000200a019000002df0110009c00000000010300190000000001026019000000000110004c000005910000c13d00000002020003670000000401200370000000000101043b000002e00310009c000005910000213d0000002402200370000000000202043b000600000002001d000002e00220009c000005910000213d00000000001004350000000101000039000000200010043f0000004002000039000500000002001d00000000010000190aba09770000040f00000006020000290000000000200435000000200010043f000000000100001900000005020000290aba09770000040f000000000101041a000000400200043d0000000000120435000002b001000041000002b00320009c00000000010240190000004001100210000002e5011001c700000abb0001042e0000000001000416000000000110004c000005910000c13d000000040100008a0000000001100031000002df02000041000000000310004c00000000030000190000000003024019000002df01100197000000000410004c000000000200a019000002df0110009c00000000010300190000000001026019000000000110004c000005930000613d000000000100001900000abc000104300000000303000039000000000203041a000000010420019000000001012002700000007f0510018f00000000010560190000001f0510008c00000000050000190000000105002039000000000552013f0000000105500190000000f70000c13d000000800010043f000000000440004c0000065f0000c13d000001000300008a000000000232016f000000a00020043f000000000110004c000000c002000039000000a0020060390000066e0000013d000000000180004c0000000001000019000005ad0000613d00000000010604330000000302800210000000010300008a000000000223022f000000000232013f000000000221016f0000000101800210000000000112019f000000000017041b0000000605000039000000000105041a000002b601100197000000000015041b000000000104041a000002b7011001970000000006000411000000000161019f000000000014041b000000000160004c0000060c0000c13d000000400100043d0000004402100039000002be03000041000000000032043500000024021000390000001f030000390000000000320435000002bf020000410000000000210435000000040210003900000020030000390000000000320435000002b002000041000002b00310009c00000000010280190000004001100210000002c0011001c700000abc00010430000000400100043d0000006402100039000002f40300004100000000003204350000004402100039000002f5030000410000000000320435000000240210003900000022030000390000000000320435000002bf020000410000000000210435000000040210003900000020030000390000000000320435000002b002000041000002b00310009c00000000010280190000004001100210000002e8011001c700000abc00010430000500000002001d0000000001000411000600000001001d00000000001004350000000701000039000400000001001d000000200010043f000002b0010000410000000002000414000002b00320009c0000000001024019000000c001100210000002ba011001c700008010020000390aba0ab50000040f0000000102200190000005910000613d000000400a00043d000000000101043b000000000101041a000000ff011001900000000401a00039000006b40000c13d000002fb0200004100000000002a04350000000602000029000000000021043500000000010004140000000502000029000002e002200197000000040320008c0000070b0000c13d0000000103000031000000200130008c000000200400003900000000040340190000073b0000013d0000000201000039000000000201041a000002b80320009c000006810000413d000002ee0100004100000000001004350000001101000039000000040010043f000002ef0100004100000abc00010430000000400100043d0000006402100039000002f20300004100000000003204350000004402100039000002f3030000410000000000320435000000240210003900000031030000390000000000320435000002bf020000410000000000210435000000040210003900000020030000390000000000320435000002b002000041000002b00310009c00000000010280190000004001100210000002e8011001c700000abc000104300000000000400435000000000370004c0000000003000019000006380000613d000002e90400004100000000030000190000000005320019000000000604041a000000000065043500000001044000390000002003300039000000000573004b000006310000413d0000002002300039000600000001001d0aba09a30000040f000000400100043d000500000001001d00000006020000290aba098d0000040f00000005040000290000000001410049000002b002000041000002b00310009c0000000001028019000002b00340009c000000000204401900000040022002100000006001100210000000000121019f00000abb0001042e000000400100043d0000006402100039000002ea0300004100000000003204350000004402100039000002eb030000410000000000320435000000240210003900000036030000390000000000320435000002bf020000410000000000210435000000040210003900000020030000390000000000320435000002b002000041000002b00310009c00000000010280190000004001100210000002e8011001c700000abc000104300000000000300435000000a002000039000000000310004c0000066e0000613d0000030d0200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000514004b000006650000413d000000c002300039000000800220008a0000008001000039000600000001001d0aba09a30000040f000000400100043d000500000001001d00000006020000290aba098d0000040f00000005040000290000000001410049000002b002000041000002b00310009c0000000001028019000002b00340009c000000000204401900000040022002100000006001100210000000000121019f00000abb0001042e000500000005001d000002b902200041000000000021041b000600000006001d0000000000600435000000200000043f000002b0010000410000000002000414000002b00320009c0000000001024019000000c001100210000002ba011001c700008010020000390aba0ab50000040f0000000102200190000005910000613d000000000101043b000000000201041a000002b902200041000000000021041b000002b901000041000000400200043d0000000000120435000002b0010000410000000003000414000002b00430009c0000000003018019000002b00420009c00000000010240190000004001100210000000c002300210000000000121019f000002b5011001c70000800d020000390000000303000039000002bb04000041000000000500001900000006060000290aba0ab00000040f0000000101200190000005910000613d0000000502000029000000000102041a000002b701100197000002bc011001c7000000000012041b000000200100003900000100001004430000012000000443000002bd0100004100000abb0001042e0000006402a00039000002f90300004100000000003204350000004402a00039000002fa0300004100000000003204350000002402a0003900000027030000390000000000320435000002bf0200004100000000002a043500000020020000390000000000210435000002b001000041000002b002a0009c00000000010a40190000004001100210000002e8011001c700000abc00010430000000400100043d0000004402100039000002e103000041000000000032043500000024021000390000001e030000390000000000320435000002bf020000410000000000210435000000040210003900000020030000390000000000320435000002b002000041000002b00310009c00000000010280190000004001100210000002c0011001c700000abc000104300000000003310049000000030100002900000006020000290aba0a490000040f000000400100043d00000004020000290000000000210435000002b002000041000002b00310009c00000000010280190000004001100210000002e5011001c700000abb0001042e000000060100002900000000001004350000000501000029000000200010043f000002b0010000410000000002000414000002b00320009c0000000001024019000000c001100210000002ba011001c700008010020000390aba0ab50000040f0000000102200190000005910000613d000000000101043b000000000201041a000001000300008a000000000232016f000000000021041b0000000901000039000000000201041a000000000320004c0000000607000029000007ee0000c13d000002b0010000410000000002000414000002b00320009c0000000001024019000000c001100210000002e3011001c70000800d020000390000000103000039000002f0040000410aba0ab00000040f00000001012001900000004d0000c13d000005910000013d000002b003000041000002b00410009c0000000001038019000002b004a0009c00000000030a40190000004003300210000000c001100210000000000131019f000002ef011001c700050000000a001d0aba0ab50000040f000000050a00002900000000030100190000006003300270000002b003300197000000200430008c000000200400003900000000040340190000001f0540018f0000000506400272000007290000613d0000000007000019000000050870021000000000098a0019000000000881034f000000000808043b00000000008904350000000107700039000000000867004b000007210000413d000000000750004c000007380000613d0000000506600210000000000761034f00000000066a00190000000305500210000000000806043300000000085801cf000000000858022f000000000707043b0000010005500089000000000757022f00000000055701cf000000000585019f0000000000560435000100000003001f0000000102200190000007c80000613d0000001f01400039000000600210018f0000000001a20019000000000221004b00000000020000190000000102004039000002b40410009c000000640000213d0000000102200190000000640000c13d000000400010043f000000200230008c000005910000413d00000000020a0433000500000002001d000000000220004c000008340000c13d000000640210003900000301030000410000000000320435000000440210003900000305030000410000000000320435000000240210003900000023030000390000000000320435000002bf020000410000000000210435000000040210003900000020030000390000000000320435000002b002000041000002b00310009c00000000010280190000004001100210000002e8011001c700000abc0001043000000004010000290000000102000029000000000112004b0000081c0000813d000000400100043d00000044021000390000030c03000041000000000032043500000024021000390000001d030000390000000000320435000002bf020000410000000000210435000000040210003900000020030000390000000000320435000002b002000041000002b00310009c00000000010280190000004001100210000002c0011001c700000abc000104300000000801000039000400000001001d0000801001000039000300000001001d0000000002000019000007870000013d0000000000300435000002e202200041000000000302041a000002b703300197000000000113019f000000000012041b000000060200002900000001022000390000000201000029000000000112004b0000048d0000813d000600000002001d000000050120021000000001020000290000000001210019000500000001001d0000000201100367000000000101043b000002e00210009c000005910000213d00000000001004350000000401000029000000200010043f000002b0010000410000000002000414000002b00320009c0000000001024019000000c001100210000002ba011001c700000003020000290aba0ab50000040f0000000102200190000005910000613d000000000101043b000000000101041a000000ff01100190000007820000c13d00000005010000290000000201100367000000000101043b000002e00210009c000005910000213d00000000001004350000000401000029000000200010043f000002b0010000410000000002000414000002b00320009c0000000001024019000000c001100210000002ba011001c700000003020000290aba0ab50000040f0000000102200190000005910000613d000000000101043b000000000201041a000001000300008a000000000232016f00000001022001bf000000000021041b00000005010000290000000201100367000000000101043b000002e00210009c000005910000213d0000000903000039000000000203041a000002b40420009c000000640000213d0000000104200039000000000043041b000000000403041a000000000424004b0000077c0000213d000008160000013d000000400200043d0000001f0430018f0000000503300272000007d50000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000635004b000007cd0000413d000000000540004c000007e40000613d0000000503300210000000000131034f00000000033200190000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000002b0010000410000000103000031000002b00430009c0000000003018019000002b00420009c000000000102401900000040011002100000006002300210000000000112019f00000abc000104300000000000100435000002e203000041000000000403041a000002e005400197000000000575004b0000000005000019000008010000613d0000000006000019000000000201041a0000000105600039000000000325004b000006fe0000813d0000000000100435000002ec03600041000000000403041a000002e006400197000000000676004b0000000006050019000007f60000c13d000000000601041a000000010720008a000000000776004b000008160000a13d000000000556004b000008160000a13d000002b704400197000002ed02200041000000000202041a000002e002200197000000000242019f000000000023041b000000000201041a000000000320004c000008a40000c13d000002ee0100004100000000001004350000003101000039000000040010043f000002ef0100004100000abc00010430000002ee0100004100000000001004350000003201000039000000040010043f000002ef0100004100000abc000104300000000601000029000000000110004c000008550000c13d000000400100043d00000064021000390000030a03000041000000000032043500000044021000390000030b030000410000000000320435000000240210003900000024030000390000000000320435000002bf020000410000000000210435000000040210003900000020030000390000000000320435000002b002000041000002b00310009c00000000010280190000004001100210000002e8011001c700000abc00010430000000060100002900000000001004350000000801000039000000200010043f000002b0010000410000000002000414000002b00320009c0000000001024019000000c001100210000002ba011001c700008010020000390aba0ab50000040f0000000102200190000005910000613d000000000101043b000000000101041a000000ff01100190000008ac0000c13d0000000503000029000069ce213000c900000000323100d9000069ce0220008c000006100000c13d0000000502000029000002fd232000d1000500000003001d000000000210004c000008ba0000613d000000050200002900000000211200d9000011c10110008c000008ba0000613d000006100000013d0000000201000029000002e001100198000200000001001d0000086e0000c13d000000400100043d000000640210003900000308030000410000000000320435000000440210003900000309030000410000000000320435000000240210003900000022030000390000000000320435000002bf020000410000000000210435000000040210003900000020030000390000000000320435000002b002000041000002b00310009c00000000010280190000004001100210000002e8011001c700000abc00010430000000060100002900000000001004350000000301000029000000200010043f000002b0010000410000000002000414000002b00320009c0000000001024019000000c001100210000002ba011001c700008010020000390aba0ab50000040f0000000102200190000005910000613d000000000101043b00000002020000290000000000200435000000200010043f000002b0010000410000000002000414000002b00320009c0000000001024019000000c001100210000002ba011001c700008010020000390aba0ab50000040f0000000102200190000005910000613d000000040200002900000001030000290000000002230049000000000101043b000000000021041b000000400100043d0000000000210435000002b0020000410000000003000414000002b00430009c0000000003028019000002b00410009c00000000010280190000004001100210000000c002300210000000000112019f000002b5011001c70000800d0200003900000003030000390000030704000041000000060500002900000002060000290aba0ab00000040f0000000101200190000004450000c13d000005910000013d0000000000100435000002ed03200041000000000403041a000002b704400197000000000043041b000000010220008a000000000021041b000006fe0000013d000000050300002900009d94213000c900000000323100d900009d940220008c000006100000c13d0000000502000029000002fc232000d1000500000003001d000000000210004c000008ba0000613d000000050200002900000000211200d9000010f90110008c000006100000c13d000000060100002900000000001004350000000401000029000000200010043f000002b0010000410000000002000414000002b00320009c0000000001024019000000c001100210000002ba011001c700008010020000390aba0ab50000040f0000000102200190000005910000613d000000000101043b000000000201041a000001000300008a000000000232016f00000001022001bf000000000021041b0000000501000039000000000101041a000002e001100198000400000001001d000008e80000c13d000000400100043d000000640210003900000303030000410000000000320435000000440210003900000304030000410000000000320435000000240210003900000025030000390000000000320435000002bf020000410000000000210435000000040210003900000020030000390000000000320435000002b002000041000002b00310009c00000000010280190000004001100210000002e8011001c700000abc000104300000000601000029000002e001100198000300000001001d000009010000c13d000000400100043d000000640210003900000301030000410000000000320435000000440210003900000302030000410000000000320435000000240210003900000023030000390000000000320435000002bf020000410000000000210435000000040210003900000020030000390000000000320435000002b002000041000002b00310009c00000000010280190000004001100210000002e8011001c700000abc0001043000000004010000290000000000100435000000200000043f000002b0010000410000000002000414000002b00320009c0000000001024019000000c001100210000002ba011001c700008010020000390aba0ab50000040f0000000102200190000005910000613d0000000502000029000027102320011a000000000101043b000000000101041a000500000003001d000200000001001d000000000131004b0000092b0000813d000000400100043d0000006402100039000002ff030000410000000000320435000000440210003900000300030000410000000000320435000000240210003900000026030000390000000000320435000002bf020000410000000000210435000000040210003900000020030000390000000000320435000002b002000041000002b00310009c00000000010280190000004001100210000002e8011001c700000abc0001043000000004010000290000000000100435000000200000043f000002b0010000410000000002000414000002b00320009c0000000001024019000000c001100210000002ba011001c700008010020000390aba0ab50000040f0000000102200190000005910000613d000000050200002900000002030000290000000002230049000000000101043b000000000021041b00000003010000290000000000100435000002b0010000410000000002000414000002b00320009c0000000001024019000000c001100210000002ba011001c700008010020000390aba0ab50000040f0000000102200190000005910000613d000000000101043b000000000201041a00000005030000290000000002320019000000000021041b000000400100043d0000000000310435000002b0020000410000000003000414000002b00430009c0000000003028019000002b00410009c00000000010280190000004001100210000000c002300210000000000112019f000002b5011001c70000800d020000390000000303000039000002bb04000041000000040500002900000003060000290aba0ab00000040f0000000101200190000005910000613d000000400100043d00000005020000290000000000210435000002b0020000410000000003000414000002b00430009c0000000003028019000002b00410009c00000000010280190000004001100210000000c002300210000000000112019f000002b5011001c70000800d020000390000000203000039000002fe0400004100000006050000290aba0ab00000040f00000001012001900000004d0000c13d000005910000013d000002b003000041000002b00410009c00000000010380190000004001100210000002b00420009c00000000020380190000006002200210000000000112019f0000000002000414000002b00420009c0000000002038019000000c002200210000000000112019f000002e3011001c700008010020000390aba0ab50000040f00000001022001900000098b0000613d000000000101043b000000000001042d000000000100001900000abc0001043000000020030000390000000004310436000000000302043300000000003404350000004001100039000000000430004c0000099c0000613d000000000400001900000000054100190000002004400039000000000624001900000000060604330000000000650435000000000534004b000009950000413d000000000231001900000000000204350000001f02300039000000200300008a000000000232016f0000000001210019000000000001042d0000001f02200039000000200300008a000000000232016f0000000001120019000000000221004b00000000020000190000000102004039000002b40310009c000009b00000213d0000000102200190000009b00000c13d000000400010043f000000000001042d000002ee0100004100000000001004350000004101000039000000040010043f000002ef0100004100000abc000104300004000000000002000400000003001d000002e00110019800000a0a0000613d000002e002200198000200000002001d00000a1f0000613d000300000001001d0000000000100435000000200000043f000002b0010000410000000002000414000002b00320009c0000000001024019000000c001100210000002ba011001c700008010020000390aba0ab50000040f000000010220019000000a080000613d000000000101043b000000000201041a0000000401000029000100000002001d000000000112004b00000a340000413d00000003010000290000000000100435000000200000043f000002b0010000410000000002000414000002b00320009c0000000001024019000000c001100210000002ba011001c700008010020000390aba0ab50000040f000000010220019000000a080000613d000000040200002900000001030000290000000002230049000000000101043b000000000021041b00000002010000290000000000100435000002b0010000410000000002000414000002b00320009c0000000001024019000000c001100210000002ba011001c700008010020000390aba0ab50000040f000000010220019000000a080000613d000000000101043b000000000201041a00000004030000290000000002320019000000000021041b000000400100043d0000000000310435000002b0020000410000000003000414000002b00430009c0000000003028019000002b00410009c00000000010280190000004001100210000000c002300210000000000112019f000002b5011001c70000800d020000390000000303000039000002bb04000041000000030500002900000002060000290aba0ab00000040f000000010120019000000a080000613d000000000001042d000000000100001900000abc00010430000000400100043d000000640210003900000303030000410000000000320435000000440210003900000304030000410000000000320435000000240210003900000025030000390000000000320435000002bf020000410000000000210435000000040210003900000020030000390000000000320435000002b002000041000002b00310009c00000000010280190000004001100210000002e8011001c700000abc00010430000000400100043d000000640210003900000301030000410000000000320435000000440210003900000302030000410000000000320435000000240210003900000023030000390000000000320435000002bf020000410000000000210435000000040210003900000020030000390000000000320435000002b002000041000002b00310009c00000000010280190000004001100210000002e8011001c700000abc00010430000000400100043d0000006402100039000002ff030000410000000000320435000000440210003900000300030000410000000000320435000000240210003900000026030000390000000000320435000002bf020000410000000000210435000000040210003900000020030000390000000000320435000002b002000041000002b00310009c00000000010280190000004001100210000002e8011001c700000abc000104300003000000000002000002e00110019800000a860000613d000200000003001d000002e002200198000300000002001d00000a9b0000613d000100000001001d00000000001004350000000101000039000000200010043f000002b0010000410000000002000414000002b00320009c0000000001024019000000c001100210000002ba011001c700008010020000390aba0ab50000040f0000000102200190000000030400002900000a840000613d000000000101043b0000000000400435000000200010043f000002b0010000410000000002000414000002b00320009c0000000001024019000000c001100210000002ba011001c700008010020000390aba0ab50000040f0000000306000029000000010220019000000a840000613d000000000101043b0000000202000029000000000021041b000000400100043d0000000000210435000002b0020000410000000003000414000002b00430009c0000000003028019000002b00410009c00000000010280190000004001100210000000c002300210000000000112019f000002b5011001c70000800d020000390000000303000039000003070400004100000001050000290aba0ab00000040f000000010120019000000a840000613d000000000001042d000000000100001900000abc00010430000000400100043d00000064021000390000030a03000041000000000032043500000044021000390000030b030000410000000000320435000000240210003900000024030000390000000000320435000002bf020000410000000000210435000000040210003900000020030000390000000000320435000002b002000041000002b00310009c00000000010280190000004001100210000002e8011001c700000abc00010430000000400100043d000000640210003900000308030000410000000000320435000000440210003900000309030000410000000000320435000000240210003900000022030000390000000000320435000002bf020000410000000000210435000000040210003900000020030000390000000000320435000002b002000041000002b00310009c00000000010280190000004001100210000002e8011001c700000abc0001043000000ab3002104210000000102000039000000000001042d0000000002000019000000000001042d00000ab8002104230000000102000039000000000001042d0000000002000019000000000001042d00000aba0000043200000abb0001042e00000abc0001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff536e61726b204c61756e63680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffc024534e524b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0200000000000000000000000000000000000020000000000000000000000000ffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffd6a416919bf9968e000000000000000000000000000000000000000000000000295be96e640669720000000200000000000000000000000000000000000040000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef00000000000000000000000019e24ddfe4590ac1b3e1e9e4d99229d032bcc271000000020000000000000000000000000000004000000100000000000000000045524332303a206d696e7420746f20746865207a65726f20616464726573730008c379a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000000000000000000000070a082300000000000000000000000000000000000000000000000000000000095d89b4000000000000000000000000000000000000000000000000000000000ba4e5c4800000000000000000000000000000000000000000000000000000000ba4e5c4900000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000e43252d70000000000000000000000000000000000000000000000000000000095d89b4100000000000000000000000000000000000000000000000000000000a457c2d700000000000000000000000000000000000000000000000000000000a9059cbb000000000000000000000000000000000000000000000000000000008401f8d0000000000000000000000000000000000000000000000000000000008401f8d1000000000000000000000000000000000000000000000000000000008ab1d681000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000070a082310000000000000000000000000000000000000000000000000000000073b2e80e000000000000000000000000000000000000000000000000000000008010fc4500000000000000000000000000000000000000000000000000000000313ce566000000000000000000000000000000000000000000000000000000003af32abe000000000000000000000000000000000000000000000000000000003af32abf000000000000000000000000000000000000000000000000000000004e71d92d000000000000000000000000000000000000000000000000000000006d02802700000000000000000000000000000000000000000000000000000000313ce567000000000000000000000000000000000000000000000000000000003732ad1c00000000000000000000000000000000000000000000000000000000395093510000000000000000000000000000000000000000000000000000000018160ddc0000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd000000000000000000000000000000000000000000000000000000002efd603e0000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b38000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff4164647265737320697320616c72656164792077686974656c697374656400006e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af020000000000000000000000000000000000000000000000000000000000000072f04ba5752e9799fd912e333aaf10564bdbc4265310aefa9765d19c54b66d620000000000000000000000000000000000000020000000000000000000000000207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f7700000000000000000000000000000000000000840000000000000000000000008a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b7365732066726f6d207468652077686974656c697374000000000000000000004f6e6c7920746865206f776e65722063616e2072656d6f7665206164647265736e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7b06e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7ae4e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000007436804faad67366a4ac652f9622a6df783b6b75780494b1d199f54897224f4941646472657373206973206e6f742077686974656c697374656400000000000020746f207468652077686974656c6973740000000000000000000000000000004f6e6c7920746865206f776e65722063616e20616464206164647265737365736e670000000000000000000000000000000000000000000000000000000000004f6e6c7920746865206f776e65722063616e20746f67676c6520636c61696d690000000000000000000000ff000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000005645b6e1e9d3ab3eaf9f2a6df043b4190a92d3c742e1473b43caa7e0927fc7296164647265737300000000000000000000000000000000000000000000000000546f6b656e7320616c726561647920636c61696d656420666f72207468697320f370884f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a7284f4000000000000000000000000000000000000000000000000000000000756724e896e034966eaaf1adc54acc0f257056febbd300c9e47182cf761982cf1f5e430616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f2061644e6f20746f6b656e7320746f20636c61696d20666f7220746869732061646472436c61696d696e67206973206e6f7420616374697665000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f2061646445524332303a20696e73756666696369656e7420616c6c6f77616e6365000000c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b37ed2416456f88a3674b7538b29291afec74764646d18c2ed5d6b289cf9f8454
[ 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.