ERC-20
Overview
Max Total Supply
1,000,000,000 ERC20 ***
Holders
96
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
20,000,000 ERC20 ***Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
LUCIDAI
Compiler Version
v0.8.0+commit.c7dfd78e
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.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; contract LUCIDAI is Ownable, ERC20 { bool public airdropped = false; bool public tradingEnabled = false; uint256 public maxHoldingAmount = 2e7*(10**18); address public uniswapV2Pair; address public presaleContract; constructor(uint256 _totalSupply) ERC20("LUCIDAI", "LUCIDAI") { _mint(msg.sender, _totalSupply); } function setUniswapPair(address _uniswapV2Pair) external onlyOwner { if (!tradingEnabled) { uniswapV2Pair = _uniswapV2Pair; } } function setPresaleContract(address _presaleContract) external onlyOwner { if (!tradingEnabled) { presaleContract = _presaleContract; } } function setAirdropped() external onlyOwner { if (!airdropped) { airdropped = true; } } function setFinalizeLaunch() external onlyOwner { if (!tradingEnabled) { tradingEnabled = true; } } function _beforeTokenTransfer( address from, address to, uint256 amount ) override internal virtual { if (!airdropped) { require( // 0 address only comes from minting from == address(0) || from == owner() || from == presaleContract, "Trading is not enabled, airdrop commencing." ); return; } if (uniswapV2Pair == address(0)) { require(from == owner() || to == owner() || from == presaleContract, "Pool is being created."); return; } if (to != uniswapV2Pair) { require(super.balanceOf(to) + amount <= maxHoldingAmount, "Exceeds max holding"); } } function burn(uint256 value) external { _burn(msg.sender, value); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { 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 v4.4.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.zeppelin.solutions/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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, 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}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), 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}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, 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; _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; } _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 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.0 (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.0 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount ) external returns (bool); /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (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; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"airdropped","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"value","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":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"presaleContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setAirdropped","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setFinalizeLaunch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_presaleContract","type":"address"}],"name":"setPresaleContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapV2Pair","type":"address"}],"name":"setUniswapPair","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":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526000600660006101000a81548160ff0219169083151502179055506000600660016101000a81548160ff0219169083151502179055506a108b2a2c280290940000006007553480156200005657600080fd5b5060405162002f8738038062002f8783398181016040528101906200007c919062000849565b6040518060400160405280600781526020017f4c554349444149000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f4c5543494441490000000000000000000000000000000000000000000000000081525062000108620000fc6200015560201b60201c565b6200015d60201b60201c565b81600490805190602001906200012092919062000782565b5080600590805190602001906200013992919062000782565b5050506200014e33826200022160201b60201c565b5062000b7f565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000294576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028b9062000a1a565b60405180910390fd5b620002a8600083836200039b60201b60201c565b8060036000828254620002bc919062000a6a565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000314919062000a6a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200037b919062000a3c565b60405180910390a362000397600083836200070b60201b60201c565b5050565b600660009054906101000a900460ff16620004c757600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620004265750620003f76200071060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b806200047f5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b620004c1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004b890620009b4565b60405180910390fd5b62000706565b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141562000644576200052f6200071060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620005a35750620005746200071060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80620005fc5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b6200063e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200063590620009f8565b60405180910390fd5b62000706565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620007055760075481620006b4846200073960201b620007fb1760201c565b620006c0919062000a6a565b111562000704576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006fb90620009d6565b60405180910390fd5b5b5b505050565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b828054620007909062000ad1565b90600052602060002090601f016020900481019282620007b4576000855562000800565b82601f10620007cf57805160ff191683800117855562000800565b8280016001018555821562000800579182015b82811115620007ff578251825591602001919060010190620007e2565b5b5090506200080f919062000813565b5090565b5b808211156200082e57600081600090555060010162000814565b5090565b600081519050620008438162000b65565b92915050565b6000602082840312156200085c57600080fd5b60006200086c8482850162000832565b91505092915050565b600062000884602b8362000a59565b91507f54726164696e67206973206e6f7420656e61626c65642c2061697264726f702060008301527f636f6d6d656e63696e672e0000000000000000000000000000000000000000006020830152604082019050919050565b6000620008ec60138362000a59565b91507f45786365656473206d617820686f6c64696e67000000000000000000000000006000830152602082019050919050565b60006200092e60168362000a59565b91507f506f6f6c206973206265696e6720637265617465642e000000000000000000006000830152602082019050919050565b600062000970601f8362000a59565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b620009ae8162000ac7565b82525050565b60006020820190508181036000830152620009cf8162000875565b9050919050565b60006020820190508181036000830152620009f181620008dd565b9050919050565b6000602082019050818103600083015262000a13816200091f565b9050919050565b6000602082019050818103600083015262000a358162000961565b9050919050565b600060208201905062000a536000830184620009a3565b92915050565b600082825260208201905092915050565b600062000a778262000ac7565b915062000a848362000ac7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000abc5762000abb62000b07565b5b828201905092915050565b6000819050919050565b6000600282049050600182168062000aea57607f821691505b6020821081141562000b015762000b0062000b36565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b62000b708162000ac7565b811462000b7c57600080fd5b50565b6123f88062000b8f6000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c806370a08231116100c3578063a457c2d71161007c578063a457c2d714610383578063a9059cbb146103b3578063a9bbd114146103e3578063d5aed6bf146103ff578063dd62ed3e1461041b578063f2fde38b1461044b57610158565b806370a08231146102e5578063715018a6146103155780637363fd281461031f57806389f9a1d3146103295780638da5cb5b1461034757806395d89b411461036557610158565b80633950935111610115578063395093511461023557806342966c681461026557806349bd5a5e146102815780634ada218b1461029f5780635317283e146102bd57806363d9df85146102c757610158565b806306fdde031461015d578063095ea7b31461017b57806318160ddd146101ab57806319cc02aa146101c957806323b872dd146101e7578063313ce56714610217575b600080fd5b610165610467565b6040516101729190611fad565b60405180910390f35b6101956004803603810190610190919061197b565b6104f9565b6040516101a29190611f92565b60405180910390f35b6101b3610517565b6040516101c0919061218f565b60405180910390f35b6101d1610521565b6040516101de9190611f92565b60405180910390f35b61020160048036038101906101fc919061192c565b610534565b60405161020e9190611f92565b60405180910390f35b61021f61062c565b60405161022c91906121aa565b60405180910390f35b61024f600480360381019061024a919061197b565b610635565b60405161025c9190611f92565b60405180910390f35b61027f600480360381019061027a91906119b7565b6106e1565b005b6102896106ee565b6040516102969190611f77565b60405180910390f35b6102a7610714565b6040516102b49190611f92565b60405180910390f35b6102c5610727565b005b6102cf6107d5565b6040516102dc9190611f77565b60405180910390f35b6102ff60048036038101906102fa91906118c7565b6107fb565b60405161030c919061218f565b60405180910390f35b61031d610844565b005b6103276108cc565b005b61033161097a565b60405161033e919061218f565b60405180910390f35b61034f610980565b60405161035c9190611f77565b60405180910390f35b61036d6109a9565b60405161037a9190611fad565b60405180910390f35b61039d6004803603810190610398919061197b565b610a3b565b6040516103aa9190611f92565b60405180910390f35b6103cd60048036038101906103c8919061197b565b610b26565b6040516103da9190611f92565b60405180910390f35b6103fd60048036038101906103f891906118c7565b610b44565b005b610419600480360381019061041491906118c7565b610c19565b005b610435600480360381019061043091906118f0565b610cee565b604051610442919061218f565b60405180910390f35b610465600480360381019061046091906118c7565b610d75565b005b606060048054610476906122f3565b80601f01602080910402602001604051908101604052809291908181526020018280546104a2906122f3565b80156104ef5780601f106104c4576101008083540402835291602001916104ef565b820191906000526020600020905b8154815290600101906020018083116104d257829003601f168201915b5050505050905090565b600061050d610506610e6d565b8484610e75565b6001905092915050565b6000600354905090565b600660009054906101000a900460ff1681565b6000610541848484611040565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061058c610e6d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561060c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106039061208f565b60405180910390fd5b61062085610618610e6d565b858403610e75565b60019150509392505050565b60006012905090565b60006106d7610642610e6d565b848460026000610650610e6d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106d291906121e1565b610e75565b6001905092915050565b6106eb33826112c4565b50565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660019054906101000a900460ff1681565b61072f610e6d565b73ffffffffffffffffffffffffffffffffffffffff1661074d610980565b73ffffffffffffffffffffffffffffffffffffffff16146107a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079a906120af565b60405180910390fd5b600660009054906101000a900460ff166107d3576001600660006101000a81548160ff0219169083151502179055505b565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61084c610e6d565b73ffffffffffffffffffffffffffffffffffffffff1661086a610980565b73ffffffffffffffffffffffffffffffffffffffff16146108c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b7906120af565b60405180910390fd5b6108ca600061149d565b565b6108d4610e6d565b73ffffffffffffffffffffffffffffffffffffffff166108f2610980565b73ffffffffffffffffffffffffffffffffffffffff1614610948576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093f906120af565b60405180910390fd5b600660019054906101000a900460ff16610978576001600660016101000a81548160ff0219169083151502179055505b565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546109b8906122f3565b80601f01602080910402602001604051908101604052809291908181526020018280546109e4906122f3565b8015610a315780601f10610a0657610100808354040283529160200191610a31565b820191906000526020600020905b815481529060010190602001808311610a1457829003601f168201915b5050505050905090565b60008060026000610a4a610e6d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afe9061214f565b60405180910390fd5b610b1b610b12610e6d565b85858403610e75565b600191505092915050565b6000610b3a610b33610e6d565b8484611040565b6001905092915050565b610b4c610e6d565b73ffffffffffffffffffffffffffffffffffffffff16610b6a610980565b73ffffffffffffffffffffffffffffffffffffffff1614610bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb7906120af565b60405180910390fd5b600660019054906101000a900460ff16610c165780600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b610c21610e6d565b73ffffffffffffffffffffffffffffffffffffffff16610c3f610980565b73ffffffffffffffffffffffffffffffffffffffff1614610c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8c906120af565b60405180910390fd5b600660019054906101000a900460ff16610ceb5780600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d7d610e6d565b73ffffffffffffffffffffffffffffffffffffffff16610d9b610980565b73ffffffffffffffffffffffffffffffffffffffff1614610df1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de8906120af565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e589061202f565b60405180910390fd5b610e6a8161149d565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edc9061212f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4c9061204f565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611033919061218f565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a79061210f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611120576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111790611fcf565b60405180910390fd5b61112b838383611561565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156111b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a99061206f565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461124791906121e1565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112ab919061218f565b60405180910390a36112be848484611898565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132b906120ef565b60405180910390fd5b61134082600083611561565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113be90611fef565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816003600082825461141f9190612237565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611484919061218f565b60405180910390a361149883600084611898565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600660009054906101000a900460ff1661167e57600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806115e257506115b3610980565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b8061163a5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b611679576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116709061200f565b60405180910390fd5b611893565b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156117e4576116dd610980565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806117485750611719610980565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b806117a05750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b6117df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d69061216f565b60405180910390fd5b611893565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146118925760075481611846846107fb565b61185091906121e1565b1115611891576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611888906120cf565b60405180910390fd5b5b5b505050565b505050565b6000813590506118ac81612394565b92915050565b6000813590506118c1816123ab565b92915050565b6000602082840312156118d957600080fd5b60006118e78482850161189d565b91505092915050565b6000806040838503121561190357600080fd5b60006119118582860161189d565b92505060206119228582860161189d565b9150509250929050565b60008060006060848603121561194157600080fd5b600061194f8682870161189d565b93505060206119608682870161189d565b9250506040611971868287016118b2565b9150509250925092565b6000806040838503121561198e57600080fd5b600061199c8582860161189d565b92505060206119ad858286016118b2565b9150509250929050565b6000602082840312156119c957600080fd5b60006119d7848285016118b2565b91505092915050565b6119e98161226b565b82525050565b6119f88161227d565b82525050565b6000611a09826121c5565b611a1381856121d0565b9350611a238185602086016122c0565b611a2c81612383565b840191505092915050565b6000611a446023836121d0565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611aaa6022836121d0565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611b10602b836121d0565b91507f54726164696e67206973206e6f7420656e61626c65642c2061697264726f702060008301527f636f6d6d656e63696e672e0000000000000000000000000000000000000000006020830152604082019050919050565b6000611b766026836121d0565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611bdc6022836121d0565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611c426026836121d0565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611ca86028836121d0565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611d0e6020836121d0565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611d4e6013836121d0565b91507f45786365656473206d617820686f6c64696e67000000000000000000000000006000830152602082019050919050565b6000611d8e6021836121d0565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611df46025836121d0565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611e5a6024836121d0565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611ec06025836121d0565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611f266016836121d0565b91507f506f6f6c206973206265696e6720637265617465642e000000000000000000006000830152602082019050919050565b611f62816122a9565b82525050565b611f71816122b3565b82525050565b6000602082019050611f8c60008301846119e0565b92915050565b6000602082019050611fa760008301846119ef565b92915050565b60006020820190508181036000830152611fc781846119fe565b905092915050565b60006020820190508181036000830152611fe881611a37565b9050919050565b6000602082019050818103600083015261200881611a9d565b9050919050565b6000602082019050818103600083015261202881611b03565b9050919050565b6000602082019050818103600083015261204881611b69565b9050919050565b6000602082019050818103600083015261206881611bcf565b9050919050565b6000602082019050818103600083015261208881611c35565b9050919050565b600060208201905081810360008301526120a881611c9b565b9050919050565b600060208201905081810360008301526120c881611d01565b9050919050565b600060208201905081810360008301526120e881611d41565b9050919050565b6000602082019050818103600083015261210881611d81565b9050919050565b6000602082019050818103600083015261212881611de7565b9050919050565b6000602082019050818103600083015261214881611e4d565b9050919050565b6000602082019050818103600083015261216881611eb3565b9050919050565b6000602082019050818103600083015261218881611f19565b9050919050565b60006020820190506121a46000830184611f59565b92915050565b60006020820190506121bf6000830184611f68565b92915050565b600081519050919050565b600082825260208201905092915050565b60006121ec826122a9565b91506121f7836122a9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561222c5761222b612325565b5b828201905092915050565b6000612242826122a9565b915061224d836122a9565b9250828210156122605761225f612325565b5b828203905092915050565b600061227682612289565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156122de5780820151818401526020810190506122c3565b838111156122ed576000848401525b50505050565b6000600282049050600182168061230b57607f821691505b6020821081141561231f5761231e612354565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61239d8161226b565b81146123a857600080fd5b50565b6123b4816122a9565b81146123bf57600080fd5b5056fea2646970667358221220586b628efecbd94373b756c650cf160fdd6ef451117292ead4edb047a44543f864736f6c634300080000330000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101585760003560e01c806370a08231116100c3578063a457c2d71161007c578063a457c2d714610383578063a9059cbb146103b3578063a9bbd114146103e3578063d5aed6bf146103ff578063dd62ed3e1461041b578063f2fde38b1461044b57610158565b806370a08231146102e5578063715018a6146103155780637363fd281461031f57806389f9a1d3146103295780638da5cb5b1461034757806395d89b411461036557610158565b80633950935111610115578063395093511461023557806342966c681461026557806349bd5a5e146102815780634ada218b1461029f5780635317283e146102bd57806363d9df85146102c757610158565b806306fdde031461015d578063095ea7b31461017b57806318160ddd146101ab57806319cc02aa146101c957806323b872dd146101e7578063313ce56714610217575b600080fd5b610165610467565b6040516101729190611fad565b60405180910390f35b6101956004803603810190610190919061197b565b6104f9565b6040516101a29190611f92565b60405180910390f35b6101b3610517565b6040516101c0919061218f565b60405180910390f35b6101d1610521565b6040516101de9190611f92565b60405180910390f35b61020160048036038101906101fc919061192c565b610534565b60405161020e9190611f92565b60405180910390f35b61021f61062c565b60405161022c91906121aa565b60405180910390f35b61024f600480360381019061024a919061197b565b610635565b60405161025c9190611f92565b60405180910390f35b61027f600480360381019061027a91906119b7565b6106e1565b005b6102896106ee565b6040516102969190611f77565b60405180910390f35b6102a7610714565b6040516102b49190611f92565b60405180910390f35b6102c5610727565b005b6102cf6107d5565b6040516102dc9190611f77565b60405180910390f35b6102ff60048036038101906102fa91906118c7565b6107fb565b60405161030c919061218f565b60405180910390f35b61031d610844565b005b6103276108cc565b005b61033161097a565b60405161033e919061218f565b60405180910390f35b61034f610980565b60405161035c9190611f77565b60405180910390f35b61036d6109a9565b60405161037a9190611fad565b60405180910390f35b61039d6004803603810190610398919061197b565b610a3b565b6040516103aa9190611f92565b60405180910390f35b6103cd60048036038101906103c8919061197b565b610b26565b6040516103da9190611f92565b60405180910390f35b6103fd60048036038101906103f891906118c7565b610b44565b005b610419600480360381019061041491906118c7565b610c19565b005b610435600480360381019061043091906118f0565b610cee565b604051610442919061218f565b60405180910390f35b610465600480360381019061046091906118c7565b610d75565b005b606060048054610476906122f3565b80601f01602080910402602001604051908101604052809291908181526020018280546104a2906122f3565b80156104ef5780601f106104c4576101008083540402835291602001916104ef565b820191906000526020600020905b8154815290600101906020018083116104d257829003601f168201915b5050505050905090565b600061050d610506610e6d565b8484610e75565b6001905092915050565b6000600354905090565b600660009054906101000a900460ff1681565b6000610541848484611040565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061058c610e6d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561060c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106039061208f565b60405180910390fd5b61062085610618610e6d565b858403610e75565b60019150509392505050565b60006012905090565b60006106d7610642610e6d565b848460026000610650610e6d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106d291906121e1565b610e75565b6001905092915050565b6106eb33826112c4565b50565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660019054906101000a900460ff1681565b61072f610e6d565b73ffffffffffffffffffffffffffffffffffffffff1661074d610980565b73ffffffffffffffffffffffffffffffffffffffff16146107a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079a906120af565b60405180910390fd5b600660009054906101000a900460ff166107d3576001600660006101000a81548160ff0219169083151502179055505b565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61084c610e6d565b73ffffffffffffffffffffffffffffffffffffffff1661086a610980565b73ffffffffffffffffffffffffffffffffffffffff16146108c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b7906120af565b60405180910390fd5b6108ca600061149d565b565b6108d4610e6d565b73ffffffffffffffffffffffffffffffffffffffff166108f2610980565b73ffffffffffffffffffffffffffffffffffffffff1614610948576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093f906120af565b60405180910390fd5b600660019054906101000a900460ff16610978576001600660016101000a81548160ff0219169083151502179055505b565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546109b8906122f3565b80601f01602080910402602001604051908101604052809291908181526020018280546109e4906122f3565b8015610a315780601f10610a0657610100808354040283529160200191610a31565b820191906000526020600020905b815481529060010190602001808311610a1457829003601f168201915b5050505050905090565b60008060026000610a4a610e6d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afe9061214f565b60405180910390fd5b610b1b610b12610e6d565b85858403610e75565b600191505092915050565b6000610b3a610b33610e6d565b8484611040565b6001905092915050565b610b4c610e6d565b73ffffffffffffffffffffffffffffffffffffffff16610b6a610980565b73ffffffffffffffffffffffffffffffffffffffff1614610bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb7906120af565b60405180910390fd5b600660019054906101000a900460ff16610c165780600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b610c21610e6d565b73ffffffffffffffffffffffffffffffffffffffff16610c3f610980565b73ffffffffffffffffffffffffffffffffffffffff1614610c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8c906120af565b60405180910390fd5b600660019054906101000a900460ff16610ceb5780600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d7d610e6d565b73ffffffffffffffffffffffffffffffffffffffff16610d9b610980565b73ffffffffffffffffffffffffffffffffffffffff1614610df1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de8906120af565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e589061202f565b60405180910390fd5b610e6a8161149d565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edc9061212f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4c9061204f565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611033919061218f565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a79061210f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611120576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111790611fcf565b60405180910390fd5b61112b838383611561565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156111b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a99061206f565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461124791906121e1565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112ab919061218f565b60405180910390a36112be848484611898565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132b906120ef565b60405180910390fd5b61134082600083611561565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113be90611fef565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816003600082825461141f9190612237565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611484919061218f565b60405180910390a361149883600084611898565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600660009054906101000a900460ff1661167e57600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806115e257506115b3610980565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b8061163a5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b611679576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116709061200f565b60405180910390fd5b611893565b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156117e4576116dd610980565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806117485750611719610980565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b806117a05750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b6117df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d69061216f565b60405180910390fd5b611893565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146118925760075481611846846107fb565b61185091906121e1565b1115611891576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611888906120cf565b60405180910390fd5b5b5b505050565b505050565b6000813590506118ac81612394565b92915050565b6000813590506118c1816123ab565b92915050565b6000602082840312156118d957600080fd5b60006118e78482850161189d565b91505092915050565b6000806040838503121561190357600080fd5b60006119118582860161189d565b92505060206119228582860161189d565b9150509250929050565b60008060006060848603121561194157600080fd5b600061194f8682870161189d565b93505060206119608682870161189d565b9250506040611971868287016118b2565b9150509250925092565b6000806040838503121561198e57600080fd5b600061199c8582860161189d565b92505060206119ad858286016118b2565b9150509250929050565b6000602082840312156119c957600080fd5b60006119d7848285016118b2565b91505092915050565b6119e98161226b565b82525050565b6119f88161227d565b82525050565b6000611a09826121c5565b611a1381856121d0565b9350611a238185602086016122c0565b611a2c81612383565b840191505092915050565b6000611a446023836121d0565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611aaa6022836121d0565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611b10602b836121d0565b91507f54726164696e67206973206e6f7420656e61626c65642c2061697264726f702060008301527f636f6d6d656e63696e672e0000000000000000000000000000000000000000006020830152604082019050919050565b6000611b766026836121d0565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611bdc6022836121d0565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611c426026836121d0565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611ca86028836121d0565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611d0e6020836121d0565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611d4e6013836121d0565b91507f45786365656473206d617820686f6c64696e67000000000000000000000000006000830152602082019050919050565b6000611d8e6021836121d0565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611df46025836121d0565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611e5a6024836121d0565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611ec06025836121d0565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611f266016836121d0565b91507f506f6f6c206973206265696e6720637265617465642e000000000000000000006000830152602082019050919050565b611f62816122a9565b82525050565b611f71816122b3565b82525050565b6000602082019050611f8c60008301846119e0565b92915050565b6000602082019050611fa760008301846119ef565b92915050565b60006020820190508181036000830152611fc781846119fe565b905092915050565b60006020820190508181036000830152611fe881611a37565b9050919050565b6000602082019050818103600083015261200881611a9d565b9050919050565b6000602082019050818103600083015261202881611b03565b9050919050565b6000602082019050818103600083015261204881611b69565b9050919050565b6000602082019050818103600083015261206881611bcf565b9050919050565b6000602082019050818103600083015261208881611c35565b9050919050565b600060208201905081810360008301526120a881611c9b565b9050919050565b600060208201905081810360008301526120c881611d01565b9050919050565b600060208201905081810360008301526120e881611d41565b9050919050565b6000602082019050818103600083015261210881611d81565b9050919050565b6000602082019050818103600083015261212881611de7565b9050919050565b6000602082019050818103600083015261214881611e4d565b9050919050565b6000602082019050818103600083015261216881611eb3565b9050919050565b6000602082019050818103600083015261218881611f19565b9050919050565b60006020820190506121a46000830184611f59565b92915050565b60006020820190506121bf6000830184611f68565b92915050565b600081519050919050565b600082825260208201905092915050565b60006121ec826122a9565b91506121f7836122a9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561222c5761222b612325565b5b828201905092915050565b6000612242826122a9565b915061224d836122a9565b9250828210156122605761225f612325565b5b828203905092915050565b600061227682612289565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156122de5780820151818401526020810190506122c3565b838111156122ed576000848401525b50505050565b6000600282049050600182168061230b57607f821691505b6020821081141561231f5761231e612354565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61239d8161226b565b81146123a857600080fd5b50565b6123b4816122a9565b81146123bf57600080fd5b5056fea2646970667358221220586b628efecbd94373b756c650cf160fdd6ef451117292ead4edb047a44543f864736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 1000000000000000000000000000
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
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.