ERC-20
Overview
Max Total Supply
240,000,000 CLP
Holders
13
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
6,209,547.728415395284327387 CLPValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
ClapArt
Compiler Version
v0.8.26+commit.8a97fa7a
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; contract ClapArt is Ownable, ERC20, Pausable { uint256 constant MAX = 240000000 ether; address public OWNER_WALLET; mapping(address => bool) internal _LockList; event LockAddress(address indexed account); event UnLockAddress(address indexed account); event BurnToken(address indexed account, uint256 amount); constructor (address _admin) ERC20("ClapArt", "CLP") { require(_admin != address(0x0), "Constructor: Ownerwallet can not be a zero"); OWNER_WALLET = _admin; // mint total supply to admin walelt _mint(OWNER_WALLET, MAX); transferOwnership(OWNER_WALLET); } function burn(uint256 _amount) external onlyOwner { _burn(_msgSender(), _amount); emit BurnToken(_msgSender(), _amount); } /// @dev Add an address from LockAddress /// @return bool function lockAddress(address account) external onlyOwner returns (bool) { _LockList[account] = true; emit LockAddress(account); return true; } /// @dev Removes an address from LockAddress /// @return bool function unLockAddress(address account) external onlyOwner returns (bool) { delete _LockList[account]; emit UnLockAddress(account); return true; } /// @dev Checks if an address is in LockAddress /// @return bool function LockedAddressList(address account) external view virtual returns (bool) { return _LockList[account]; } function _beforeTokenTransfer(address from, address to, uint256 amount) internal whenNotPaused override(ERC20) { require(!_LockList[from], "Token transfer is not allowed until the lock is released."); super._beforeTokenTransfer(from, to, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// 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 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 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 (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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_admin","type":"address"}],"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":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"BurnToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"LockAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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":"account","type":"address"}],"name":"UnLockAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"LockedAddressList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OWNER_WALLET","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","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":[{"internalType":"address","name":"account","type":"address"}],"name":"lockAddress","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"account","type":"address"}],"name":"unLockAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561000f575f80fd5b50604051612b5b380380612b5b833981810160405281019061003191906106f4565b6040518060400160405280600781526020017f436c6170417274000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f434c5000000000000000000000000000000000000000000000000000000000008152506100b96100ae61021760201b60201c565b61021e60201b60201c565b81600490816100c89190610959565b5080600590816100d89190610959565b5050505f60065f6101000a81548160ff0219169083151502179055505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610162576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161015990610aa8565b60405180910390fd5b80600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506101e0600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff166ac685fa11e01ec6f00000006102df60201b60201c565b610211600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661043a60201b60201c565b50610da2565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361034d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161034490610b10565b60405180910390fd5b61035e5f83836104c860201b60201c565b8060035f82825461036f9190610b5b565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161041d9190610b9d565b60405180910390a36104365f838361057660201b60201c565b5050565b61044861057b60201b60201c565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036104b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ad90610c26565b60405180910390fd5b6104c58161021e60201b60201c565b50565b6104d661060560201b60201c565b60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610560576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161055790610cb4565b60405180910390fd5b61057183838361065560201b60201c565b505050565b505050565b61058961021760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166105ad61065a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614610603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105fa90610d1c565b60405180910390fd5b565b61061361068160201b60201c565b15610653576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064a90610d84565b60405180910390fd5b565b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f60065f9054906101000a900460ff16905090565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6106c38261069a565b9050919050565b6106d3816106b9565b81146106dd575f80fd5b50565b5f815190506106ee816106ca565b92915050565b5f6020828403121561070957610708610696565b5b5f610716848285016106e0565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061079a57607f821691505b6020821081036107ad576107ac610756565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261080f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826107d4565b61081986836107d4565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61085d61085861085384610831565b61083a565b610831565b9050919050565b5f819050919050565b61087683610843565b61088a61088282610864565b8484546107e0565b825550505050565b5f90565b61089e610892565b6108a981848461086d565b505050565b5b818110156108cc576108c15f82610896565b6001810190506108af565b5050565b601f821115610911576108e2816107b3565b6108eb846107c5565b810160208510156108fa578190505b61090e610906856107c5565b8301826108ae565b50505b505050565b5f82821c905092915050565b5f6109315f1984600802610916565b1980831691505092915050565b5f6109498383610922565b9150826002028217905092915050565b6109628261071f565b67ffffffffffffffff81111561097b5761097a610729565b5b6109858254610783565b6109908282856108d0565b5f60209050601f8311600181146109c1575f84156109af578287015190505b6109b9858261093e565b865550610a20565b601f1984166109cf866107b3565b5f5b828110156109f6578489015182556001820191506020850194506020810190506109d1565b86831015610a135784890151610a0f601f891682610922565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f436f6e7374727563746f723a204f776e657277616c6c65742063616e206e6f745f8201527f2062652061207a65726f00000000000000000000000000000000000000000000602082015250565b5f610a92602a83610a28565b9150610a9d82610a38565b604082019050919050565b5f6020820190508181035f830152610abf81610a86565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f610afa601f83610a28565b9150610b0582610ac6565b602082019050919050565b5f6020820190508181035f830152610b2781610aee565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610b6582610831565b9150610b7083610831565b9250828201905080821115610b8857610b87610b2e565b5b92915050565b610b9781610831565b82525050565b5f602082019050610bb05f830184610b8e565b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f610c10602683610a28565b9150610c1b82610bb6565b604082019050919050565b5f6020820190508181035f830152610c3d81610c04565b9050919050565b7f546f6b656e207472616e73666572206973206e6f7420616c6c6f77656420756e5f8201527f74696c20746865206c6f636b2069732072656c65617365642e00000000000000602082015250565b5f610c9e603983610a28565b9150610ca982610c44565b604082019050919050565b5f6020820190508181035f830152610ccb81610c92565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f610d06602083610a28565b9150610d1182610cd2565b602082019050919050565b5f6020820190508181035f830152610d3381610cfa565b9050919050565b7f5061757361626c653a20706175736564000000000000000000000000000000005f82015250565b5f610d6e601083610a28565b9150610d7982610d3a565b602082019050919050565b5f6020820190508181035f830152610d9b81610d62565b9050919050565b611dac80610daf5f395ff3fe608060405234801561000f575f80fd5b506004361061012a575f3560e01c806370a08231116100ab578063a9059cbb1161006f578063a9059cbb14610358578063dd62ed3e14610388578063e0daa8c5146103b8578063f2fde38b146103e8578063fae36afb146104045761012a565b806370a08231146102b2578063715018a6146102e25780638da5cb5b146102ec57806395d89b411461030a578063a457c2d7146103285761012a565b806334a90d02116100f257806334a90d02146101e8578063395093511461021857806342966c68146102485780635c975abb146102645780636ea27584146102825761012a565b806306fdde031461012e578063095ea7b31461014c57806318160ddd1461017c57806323b872dd1461019a578063313ce567146101ca575b5f80fd5b610136610422565b604051610143919061136b565b60405180910390f35b6101666004803603810190610161919061141c565b6104b2565b6040516101739190611474565b60405180910390f35b6101846104d4565b604051610191919061149c565b60405180910390f35b6101b460048036038101906101af91906114b5565b6104dd565b6040516101c19190611474565b60405180910390f35b6101d261050b565b6040516101df9190611520565b60405180910390f35b61020260048036038101906101fd9190611539565b610513565b60405161020f9190611474565b60405180910390f35b610232600480360381019061022d919061141c565b6105bd565b60405161023f9190611474565b60405180910390f35b610262600480360381019061025d9190611564565b6105f3565b005b61026c610664565b6040516102799190611474565b60405180910390f35b61029c60048036038101906102979190611539565b610679565b6040516102a99190611474565b60405180910390f35b6102cc60048036038101906102c79190611539565b6106cb565b6040516102d9919061149c565b60405180910390f35b6102ea610711565b005b6102f4610724565b604051610301919061159e565b60405180910390f35b61031261074b565b60405161031f919061136b565b60405180910390f35b610342600480360381019061033d919061141c565b6107db565b60405161034f9190611474565b60405180910390f35b610372600480360381019061036d919061141c565b610850565b60405161037f9190611474565b60405180910390f35b6103a2600480360381019061039d91906115b7565b610872565b6040516103af919061149c565b60405180910390f35b6103d260048036038101906103cd9190611539565b6108f4565b6040516103df9190611474565b60405180910390f35b61040260048036038101906103fd9190611539565b610995565b005b61040c610a17565b604051610419919061159e565b60405180910390f35b60606004805461043190611622565b80601f016020809104026020016040519081016040528092919081815260200182805461045d90611622565b80156104a85780601f1061047f576101008083540402835291602001916104a8565b820191905f5260205f20905b81548152906001019060200180831161048b57829003601f168201915b5050505050905090565b5f806104bc610a3d565b90506104c9818585610a44565b600191505092915050565b5f600354905090565b5f806104e7610a3d565b90506104f4858285610c07565b6104ff858585610c92565b60019150509392505050565b5f6012905090565b5f61051c610f01565b600160075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f2efb92accf59a0ccf75fa2b3e1b94b5ff552aa81789f110b98b159a5754dc04860405160405180910390a260019050919050565b5f806105c7610a3d565b90506105e88185856105d98589610872565b6105e3919061167f565b610a44565b600191505092915050565b6105fb610f01565b61060c610606610a3d565b82610f7f565b610614610a3d565b73ffffffffffffffffffffffffffffffffffffffff167fe12923b90d8a6ca7dc57994322d2afba0be75f98e97e2b892fd34c0d7c62296982604051610659919061149c565b60405180910390a250565b5f60065f9054906101000a900460ff16905090565b5f60075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610719610f01565b6107225f611144565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461075a90611622565b80601f016020809104026020016040519081016040528092919081815260200182805461078690611622565b80156107d15780601f106107a8576101008083540402835291602001916107d1565b820191905f5260205f20905b8154815290600101906020018083116107b457829003601f168201915b5050505050905090565b5f806107e5610a3d565b90505f6107f28286610872565b905083811015610837576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082e90611722565b60405180910390fd5b6108448286868403610a44565b60019250505092915050565b5f8061085a610a3d565b9050610867818585610c92565b600191505092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f6108fd610f01565b60075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81549060ff02191690558173ffffffffffffffffffffffffffffffffffffffff167fc201df97adf8692a744dd0b75d61472cdb1f48dd68ce220ce432fc72986770d660405160405180910390a260019050919050565b61099d610f01565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a02906117b0565b60405180910390fd5b610a1481611144565b50565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ab2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa99061183e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b17906118cc565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bfa919061149c565b60405180910390a3505050565b5f610c128484610872565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c8c5781811015610c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7590611934565b60405180910390fd5b610c8b8484848403610a44565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf7906119c2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6590611a50565b60405180910390fd5b610d79838383611205565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df490611ade565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ee8919061149c565b60405180910390a3610efb8484846112a7565b50505050565b610f09610a3d565b73ffffffffffffffffffffffffffffffffffffffff16610f27610724565b73ffffffffffffffffffffffffffffffffffffffff1614610f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7490611b46565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe490611bd4565b60405180910390fd5b610ff8825f83611205565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561107c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107390611c62565b60405180910390fd5b81810360015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160035f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161112c919061149c565b60405180910390a361113f835f846112a7565b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61120d6112ac565b60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128e90611cf0565b60405180910390fd5b6112a28383836112f6565b505050565b505050565b6112b4610664565b156112f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112eb90611d58565b60405180910390fd5b565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61133d826112fb565b6113478185611305565b9350611357818560208601611315565b61136081611323565b840191505092915050565b5f6020820190508181035f8301526113838184611333565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6113b88261138f565b9050919050565b6113c8816113ae565b81146113d2575f80fd5b50565b5f813590506113e3816113bf565b92915050565b5f819050919050565b6113fb816113e9565b8114611405575f80fd5b50565b5f81359050611416816113f2565b92915050565b5f80604083850312156114325761143161138b565b5b5f61143f858286016113d5565b925050602061145085828601611408565b9150509250929050565b5f8115159050919050565b61146e8161145a565b82525050565b5f6020820190506114875f830184611465565b92915050565b611496816113e9565b82525050565b5f6020820190506114af5f83018461148d565b92915050565b5f805f606084860312156114cc576114cb61138b565b5b5f6114d9868287016113d5565b93505060206114ea868287016113d5565b92505060406114fb86828701611408565b9150509250925092565b5f60ff82169050919050565b61151a81611505565b82525050565b5f6020820190506115335f830184611511565b92915050565b5f6020828403121561154e5761154d61138b565b5b5f61155b848285016113d5565b91505092915050565b5f602082840312156115795761157861138b565b5b5f61158684828501611408565b91505092915050565b611598816113ae565b82525050565b5f6020820190506115b15f83018461158f565b92915050565b5f80604083850312156115cd576115cc61138b565b5b5f6115da858286016113d5565b92505060206115eb858286016113d5565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061163957607f821691505b60208210810361164c5761164b6115f5565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611689826113e9565b9150611694836113e9565b92508282019050808211156116ac576116ab611652565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61170c602583611305565b9150611717826116b2565b604082019050919050565b5f6020820190508181035f83015261173981611700565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61179a602683611305565b91506117a582611740565b604082019050919050565b5f6020820190508181035f8301526117c78161178e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611828602483611305565b9150611833826117ce565b604082019050919050565b5f6020820190508181035f8301526118558161181c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6118b6602283611305565b91506118c18261185c565b604082019050919050565b5f6020820190508181035f8301526118e3816118aa565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f61191e601d83611305565b9150611929826118ea565b602082019050919050565b5f6020820190508181035f83015261194b81611912565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6119ac602583611305565b91506119b782611952565b604082019050919050565b5f6020820190508181035f8301526119d9816119a0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611a3a602383611305565b9150611a45826119e0565b604082019050919050565b5f6020820190508181035f830152611a6781611a2e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611ac8602683611305565b9150611ad382611a6e565b604082019050919050565b5f6020820190508181035f830152611af581611abc565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611b30602083611305565b9150611b3b82611afc565b602082019050919050565b5f6020820190508181035f830152611b5d81611b24565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f611bbe602183611305565b9150611bc982611b64565b604082019050919050565b5f6020820190508181035f830152611beb81611bb2565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f611c4c602283611305565b9150611c5782611bf2565b604082019050919050565b5f6020820190508181035f830152611c7981611c40565b9050919050565b7f546f6b656e207472616e73666572206973206e6f7420616c6c6f77656420756e5f8201527f74696c20746865206c6f636b2069732072656c65617365642e00000000000000602082015250565b5f611cda603983611305565b9150611ce582611c80565b604082019050919050565b5f6020820190508181035f830152611d0781611cce565b9050919050565b7f5061757361626c653a20706175736564000000000000000000000000000000005f82015250565b5f611d42601083611305565b9150611d4d82611d0e565b602082019050919050565b5f6020820190508181035f830152611d6f81611d36565b905091905056fea2646970667358221220a453a083cd84f6013bb66c2e9e25484ca35338264b46cc7408f4c59cc76921c264736f6c634300081a0033000000000000000000000000040428fd52efac0de4e4cc1457b170de8acc5489
Deployed Bytecode
0x608060405234801561000f575f80fd5b506004361061012a575f3560e01c806370a08231116100ab578063a9059cbb1161006f578063a9059cbb14610358578063dd62ed3e14610388578063e0daa8c5146103b8578063f2fde38b146103e8578063fae36afb146104045761012a565b806370a08231146102b2578063715018a6146102e25780638da5cb5b146102ec57806395d89b411461030a578063a457c2d7146103285761012a565b806334a90d02116100f257806334a90d02146101e8578063395093511461021857806342966c68146102485780635c975abb146102645780636ea27584146102825761012a565b806306fdde031461012e578063095ea7b31461014c57806318160ddd1461017c57806323b872dd1461019a578063313ce567146101ca575b5f80fd5b610136610422565b604051610143919061136b565b60405180910390f35b6101666004803603810190610161919061141c565b6104b2565b6040516101739190611474565b60405180910390f35b6101846104d4565b604051610191919061149c565b60405180910390f35b6101b460048036038101906101af91906114b5565b6104dd565b6040516101c19190611474565b60405180910390f35b6101d261050b565b6040516101df9190611520565b60405180910390f35b61020260048036038101906101fd9190611539565b610513565b60405161020f9190611474565b60405180910390f35b610232600480360381019061022d919061141c565b6105bd565b60405161023f9190611474565b60405180910390f35b610262600480360381019061025d9190611564565b6105f3565b005b61026c610664565b6040516102799190611474565b60405180910390f35b61029c60048036038101906102979190611539565b610679565b6040516102a99190611474565b60405180910390f35b6102cc60048036038101906102c79190611539565b6106cb565b6040516102d9919061149c565b60405180910390f35b6102ea610711565b005b6102f4610724565b604051610301919061159e565b60405180910390f35b61031261074b565b60405161031f919061136b565b60405180910390f35b610342600480360381019061033d919061141c565b6107db565b60405161034f9190611474565b60405180910390f35b610372600480360381019061036d919061141c565b610850565b60405161037f9190611474565b60405180910390f35b6103a2600480360381019061039d91906115b7565b610872565b6040516103af919061149c565b60405180910390f35b6103d260048036038101906103cd9190611539565b6108f4565b6040516103df9190611474565b60405180910390f35b61040260048036038101906103fd9190611539565b610995565b005b61040c610a17565b604051610419919061159e565b60405180910390f35b60606004805461043190611622565b80601f016020809104026020016040519081016040528092919081815260200182805461045d90611622565b80156104a85780601f1061047f576101008083540402835291602001916104a8565b820191905f5260205f20905b81548152906001019060200180831161048b57829003601f168201915b5050505050905090565b5f806104bc610a3d565b90506104c9818585610a44565b600191505092915050565b5f600354905090565b5f806104e7610a3d565b90506104f4858285610c07565b6104ff858585610c92565b60019150509392505050565b5f6012905090565b5f61051c610f01565b600160075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f2efb92accf59a0ccf75fa2b3e1b94b5ff552aa81789f110b98b159a5754dc04860405160405180910390a260019050919050565b5f806105c7610a3d565b90506105e88185856105d98589610872565b6105e3919061167f565b610a44565b600191505092915050565b6105fb610f01565b61060c610606610a3d565b82610f7f565b610614610a3d565b73ffffffffffffffffffffffffffffffffffffffff167fe12923b90d8a6ca7dc57994322d2afba0be75f98e97e2b892fd34c0d7c62296982604051610659919061149c565b60405180910390a250565b5f60065f9054906101000a900460ff16905090565b5f60075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610719610f01565b6107225f611144565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461075a90611622565b80601f016020809104026020016040519081016040528092919081815260200182805461078690611622565b80156107d15780601f106107a8576101008083540402835291602001916107d1565b820191905f5260205f20905b8154815290600101906020018083116107b457829003601f168201915b5050505050905090565b5f806107e5610a3d565b90505f6107f28286610872565b905083811015610837576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082e90611722565b60405180910390fd5b6108448286868403610a44565b60019250505092915050565b5f8061085a610a3d565b9050610867818585610c92565b600191505092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f6108fd610f01565b60075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81549060ff02191690558173ffffffffffffffffffffffffffffffffffffffff167fc201df97adf8692a744dd0b75d61472cdb1f48dd68ce220ce432fc72986770d660405160405180910390a260019050919050565b61099d610f01565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a02906117b0565b60405180910390fd5b610a1481611144565b50565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ab2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa99061183e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b17906118cc565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bfa919061149c565b60405180910390a3505050565b5f610c128484610872565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c8c5781811015610c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7590611934565b60405180910390fd5b610c8b8484848403610a44565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf7906119c2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6590611a50565b60405180910390fd5b610d79838383611205565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df490611ade565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ee8919061149c565b60405180910390a3610efb8484846112a7565b50505050565b610f09610a3d565b73ffffffffffffffffffffffffffffffffffffffff16610f27610724565b73ffffffffffffffffffffffffffffffffffffffff1614610f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7490611b46565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe490611bd4565b60405180910390fd5b610ff8825f83611205565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561107c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107390611c62565b60405180910390fd5b81810360015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160035f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161112c919061149c565b60405180910390a361113f835f846112a7565b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61120d6112ac565b60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128e90611cf0565b60405180910390fd5b6112a28383836112f6565b505050565b505050565b6112b4610664565b156112f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112eb90611d58565b60405180910390fd5b565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61133d826112fb565b6113478185611305565b9350611357818560208601611315565b61136081611323565b840191505092915050565b5f6020820190508181035f8301526113838184611333565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6113b88261138f565b9050919050565b6113c8816113ae565b81146113d2575f80fd5b50565b5f813590506113e3816113bf565b92915050565b5f819050919050565b6113fb816113e9565b8114611405575f80fd5b50565b5f81359050611416816113f2565b92915050565b5f80604083850312156114325761143161138b565b5b5f61143f858286016113d5565b925050602061145085828601611408565b9150509250929050565b5f8115159050919050565b61146e8161145a565b82525050565b5f6020820190506114875f830184611465565b92915050565b611496816113e9565b82525050565b5f6020820190506114af5f83018461148d565b92915050565b5f805f606084860312156114cc576114cb61138b565b5b5f6114d9868287016113d5565b93505060206114ea868287016113d5565b92505060406114fb86828701611408565b9150509250925092565b5f60ff82169050919050565b61151a81611505565b82525050565b5f6020820190506115335f830184611511565b92915050565b5f6020828403121561154e5761154d61138b565b5b5f61155b848285016113d5565b91505092915050565b5f602082840312156115795761157861138b565b5b5f61158684828501611408565b91505092915050565b611598816113ae565b82525050565b5f6020820190506115b15f83018461158f565b92915050565b5f80604083850312156115cd576115cc61138b565b5b5f6115da858286016113d5565b92505060206115eb858286016113d5565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061163957607f821691505b60208210810361164c5761164b6115f5565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611689826113e9565b9150611694836113e9565b92508282019050808211156116ac576116ab611652565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61170c602583611305565b9150611717826116b2565b604082019050919050565b5f6020820190508181035f83015261173981611700565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61179a602683611305565b91506117a582611740565b604082019050919050565b5f6020820190508181035f8301526117c78161178e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611828602483611305565b9150611833826117ce565b604082019050919050565b5f6020820190508181035f8301526118558161181c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6118b6602283611305565b91506118c18261185c565b604082019050919050565b5f6020820190508181035f8301526118e3816118aa565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f61191e601d83611305565b9150611929826118ea565b602082019050919050565b5f6020820190508181035f83015261194b81611912565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6119ac602583611305565b91506119b782611952565b604082019050919050565b5f6020820190508181035f8301526119d9816119a0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611a3a602383611305565b9150611a45826119e0565b604082019050919050565b5f6020820190508181035f830152611a6781611a2e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611ac8602683611305565b9150611ad382611a6e565b604082019050919050565b5f6020820190508181035f830152611af581611abc565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611b30602083611305565b9150611b3b82611afc565b602082019050919050565b5f6020820190508181035f830152611b5d81611b24565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f611bbe602183611305565b9150611bc982611b64565b604082019050919050565b5f6020820190508181035f830152611beb81611bb2565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f611c4c602283611305565b9150611c5782611bf2565b604082019050919050565b5f6020820190508181035f830152611c7981611c40565b9050919050565b7f546f6b656e207472616e73666572206973206e6f7420616c6c6f77656420756e5f8201527f74696c20746865206c6f636b2069732072656c65617365642e00000000000000602082015250565b5f611cda603983611305565b9150611ce582611c80565b604082019050919050565b5f6020820190508181035f830152611d0781611cce565b9050919050565b7f5061757361626c653a20706175736564000000000000000000000000000000005f82015250565b5f611d42601083611305565b9150611d4d82611d0e565b602082019050919050565b5f6020820190508181035f830152611d6f81611d36565b905091905056fea2646970667358221220a453a083cd84f6013bb66c2e9e25484ca35338264b46cc7408f4c59cc76921c264736f6c634300081a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000040428fd52efac0de4e4cc1457b170de8acc5489
-----Decoded View---------------
Arg [0] : _admin (address): 0x040428fd52eFAC0de4e4Cc1457b170De8aCc5489
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000040428fd52efac0de4e4cc1457b170de8acc5489
Loading...
Loading
Loading...
Loading
[ 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.