Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
95,638,100 MUG
Holders
178
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000005883093 MUGValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Coffee
Compiler Version
v0.8.17+commit.8df45f5f
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/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; interface IManagersTBA { function balanceOf(address owner) external view returns (uint256); function showTBA(uint256 id) external view returns (address); } contract Coffee is ERC20, Ownable { bool public limited; uint256 public maxHoldingAmount; uint256 public minHoldingAmount; address public uniswapV2Pair; bool public mintLive = true; mapping(address => bool) private mintedStatus; IManagersTBA public ManagersTBA; // Supply params uint256 public constant MAX_SUPPLY = 100e6 ether; uint256 mintAmount = 25e3 ether; uint256 burnAmount = 1 ether; uint256 public roundNumber = 0; constructor(uint256 _initialSupply, address _tba) ERC20("Coffee", "MUG") { ManagersTBA = IManagersTBA(_tba); // Used for Uniswap LP _mint(msg.sender, _initialSupply); // 100000000000000000000000000 / 2 // Used for TBA Airdrop _mint(address(this), _initialSupply); } // Setters function mintTokens(uint256 tokenId) public { // Find TBA for this TokenId // We dont check if the sender is the TBA owner, we just check if the TBA has minted this token // If someone wants to mint for someone else, they can do that :) address TBA = ManagersTBA.showTBA(tokenId); require(roundNumber < 2500, "Mint is finished"); require(mintLive, "Mint is finished"); require(mintedStatus[TBA] == false, "Already airdroped ERC20 to this TBA"); require(ManagersTBA.balanceOf(msg.sender) != 0, "You dont own any Managers NFT"); // Transfer from SC to TBA mintedStatus[TBA] = true; require(balanceOf(address(this)) >= mintAmount, "Not enough tokens in the contract"); _transfer(address(this), TBA, mintAmount); _burn(address(this), burnAmount); // Decrease mintAmount so reward the most early minters, burn more with each new claim mintAmount -= 5 ether; burnAmount += 1 ether; roundNumber++; } // Batch mint for users with multiple TBAs function mintBatch(uint256[] memory tokenIds, uint256 _mintAmount) public { uint256 minted = 0; for (uint256 i = 0; i < tokenIds.length; i++) { // Check if this one is already minted address TBA = ManagersTBA.showTBA(tokenIds[i]); if (mintedStatus[TBA] == false && minted < _mintAmount) { mintTokens(tokenIds[i]); minted++; } } } function setRule( bool _limited, address _uniswapV2Pair, uint256 _maxHoldingAmount, uint256 _minHoldingAmount ) external onlyOwner { limited = _limited; uniswapV2Pair = _uniswapV2Pair; maxHoldingAmount = _maxHoldingAmount; minHoldingAmount = _minHoldingAmount; } function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override { // We check if traiding is started but also permit owner to transfer tokens to uniswap pool if (uniswapV2Pair == address(0)) { require(from == owner() || to == owner() || to == address(this), "Trading not started"); return; } // Check the limits once trading is limited, after that just ignore if (limited && from == uniswapV2Pair) { require( super.balanceOf(to) + amount <= maxHoldingAmount && super.balanceOf(to) + amount >= minHoldingAmount, "Forbid" ); } } function burn(uint256 value) external { _burn(msg.sender, value); } // Burn unclaimed supply function burnSupply() external onlyOwner { _burn(address(this), balanceOf(address(this))); } function setMintStatus(bool status) external onlyOwner { mintLive = status; } // Getters function checkMintedStatus(uint256 tokenId) external view returns (bool) { return mintedStatus[ManagersTBA.showTBA(tokenId)]; } function showUnclaimedSupply() external view returns (uint256) { return balanceOf(address(this)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.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. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.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]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * 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}. * * 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 default value returned by this function, unless * it's 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 (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.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// 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; } }
{ "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":"_initialSupply","type":"uint256"},{"internalType":"address","name":"_tba","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":"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":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ManagersTBA","outputs":[{"internalType":"contract IManagersTBA","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":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"checkMintedStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mintTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"roundNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setMintStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"showUnclaimedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526001600860146101000a81548160ff02191690831515021790555069054b40b1f852bda00000600b55670de0b6b3a7640000600c556000600d553480156200004b57600080fd5b506040516200397138038062003971833981810160405281019062000071919062000753565b6040518060400160405280600681526020017f436f6666656500000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4d554700000000000000000000000000000000000000000000000000000000008152508160039081620000ee919062000a0a565b50806004908162000100919062000a0a565b50505062000123620001176200019060201b60201c565b6200019860201b60201c565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200017633836200025e60201b60201c565b6200018830836200025e60201b60201c565b505062000cf0565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002d0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c79062000b52565b60405180910390fd5b620002e460008383620003cb60201b60201c565b8060026000828254620002f8919062000ba3565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003ab919062000bef565b60405180910390a3620003c7600083836200063760201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036200052557620004326200063c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620004a65750620004776200063c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80620004dd57503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6200051f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005169062000c5c565b60405180910390fd5b62000632565b600560149054906101000a900460ff1680156200058f5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15620006315760065481620005af846200066660201b6200080d1760201c565b620005bb919062000ba3565b11158015620005ee575060075481620005df846200066660201b6200080d1760201c565b620005eb919062000ba3565b10155b62000630576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006279062000cce565b60405180910390fd5b5b5b505050565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600080fd5b6000819050919050565b620006c881620006b3565b8114620006d457600080fd5b50565b600081519050620006e881620006bd565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200071b82620006ee565b9050919050565b6200072d816200070e565b81146200073957600080fd5b50565b6000815190506200074d8162000722565b92915050565b600080604083850312156200076d576200076c620006ae565b5b60006200077d85828601620006d7565b925050602062000790858286016200073c565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200081c57607f821691505b602082108103620008325762000831620007d4565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200089c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200085d565b620008a886836200085d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620008eb620008e5620008df84620006b3565b620008c0565b620006b3565b9050919050565b6000819050919050565b6200090783620008ca565b6200091f6200091682620008f2565b8484546200086a565b825550505050565b600090565b6200093662000927565b62000943818484620008fc565b505050565b5b818110156200096b576200095f6000826200092c565b60018101905062000949565b5050565b601f821115620009ba57620009848162000838565b6200098f846200084d565b810160208510156200099f578190505b620009b7620009ae856200084d565b83018262000948565b50505b505050565b600082821c905092915050565b6000620009df60001984600802620009bf565b1980831691505092915050565b6000620009fa8383620009cc565b9150826002028217905092915050565b62000a15826200079a565b67ffffffffffffffff81111562000a315762000a30620007a5565b5b62000a3d825462000803565b62000a4a8282856200096f565b600060209050601f83116001811462000a82576000841562000a6d578287015190505b62000a798582620009ec565b86555062000ae9565b601f19841662000a928662000838565b60005b8281101562000abc5784890151825560018201915060208501945060208101905062000a95565b8683101562000adc578489015162000ad8601f891682620009cc565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000b3a601f8362000af1565b915062000b478262000b02565b602082019050919050565b6000602082019050818103600083015262000b6d8162000b2b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000bb082620006b3565b915062000bbd83620006b3565b925082820190508082111562000bd85762000bd762000b74565b5b92915050565b62000be981620006b3565b82525050565b600060208201905062000c06600083018462000bde565b92915050565b7f54726164696e67206e6f74207374617274656400000000000000000000000000600082015250565b600062000c4460138362000af1565b915062000c518262000c0c565b602082019050919050565b6000602082019050818103600083015262000c778162000c35565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b600062000cb660068362000af1565b915062000cc38262000c7e565b602082019050919050565b6000602082019050818103600083015262000ce98162000ca7565b9050919050565b612c718062000d006000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c806370a082311161010457806395d89b41116100a2578063b03e647811610071578063b03e64781461054b578063dd62ed3e14610555578063e8656fcc14610585578063f2fde38b146105a3576101da565b806395d89b41146104b157806397304ced146104cf578063a457c2d7146104eb578063a9059cbb1461051b576101da565b8063860a32ec116100de578063860a32ec1461042757806389f9a1d3146104455780638da5cb5b1461046357806393a6191414610481576101da565b806370a08231146103d1578063715018a614610401578063719242c21461040b576101da565b806332cb6b0c1161017c57806349bd5a5e1161014b57806349bd5a5e146103595780634e2786fb146103775780634f68e5dc14610395578063651f80a7146103b3576101da565b806332cb6b0c146102d357806339509351146102f15780633aa633aa1461032157806342966c681461033d576101da565b80631ab99e12116101b85780631ab99e121461024b5780631f85e3ca1461026957806323b872dd14610285578063313ce567146102b5576101da565b806306fdde03146101df578063095ea7b3146101fd57806318160ddd1461022d575b600080fd5b6101e76105bf565b6040516101f49190611be5565b60405180910390f35b61021760048036038101906102129190611caf565b610651565b6040516102249190611d0a565b60405180910390f35b610235610674565b6040516102429190611d34565b60405180910390f35b61025361067e565b6040516102609190611d34565b60405180910390f35b610283600480360381019061027e9190611d7b565b610684565b005b61029f600480360381019061029a9190611da8565b6106a9565b6040516102ac9190611d0a565b60405180910390f35b6102bd6106d8565b6040516102ca9190611e17565b60405180910390f35b6102db6106e1565b6040516102e89190611d34565b60405180910390f35b61030b60048036038101906103069190611caf565b6106f0565b6040516103189190611d0a565b60405180910390f35b61033b60048036038101906103369190611e32565b610727565b005b61035760048036038101906103529190611e99565b61079e565b005b6103616107ab565b60405161036e9190611ed5565b60405180910390f35b61037f6107d1565b60405161038c9190611d34565b60405180910390f35b61039d6107d7565b6040516103aa9190611f4f565b60405180910390f35b6103bb6107fd565b6040516103c89190611d34565b60405180910390f35b6103eb60048036038101906103e69190611f6a565b61080d565b6040516103f89190611d34565b60405180910390f35b610409610855565b005b610425600480360381019061042091906120df565b610869565b005b61042f6109e0565b60405161043c9190611d0a565b60405180910390f35b61044d6109f3565b60405161045a9190611d34565b60405180910390f35b61046b6109f9565b6040516104789190611ed5565b60405180910390f35b61049b60048036038101906104969190611e99565b610a23565b6040516104a89190611d0a565b60405180910390f35b6104b9610b14565b6040516104c69190611be5565b60405180910390f35b6104e960048036038101906104e49190611e99565b610ba6565b005b61050560048036038101906105009190611caf565b610f68565b6040516105129190611d0a565b60405180910390f35b61053560048036038101906105309190611caf565b610fdf565b6040516105429190611d0a565b60405180910390f35b610553611002565b005b61056f600480360381019061056a919061213b565b61101e565b60405161057c9190611d34565b60405180910390f35b61058d6110a5565b60405161059a9190611d0a565b60405180910390f35b6105bd60048036038101906105b89190611f6a565b6110b8565b005b6060600380546105ce906121aa565b80601f01602080910402602001604051908101604052809291908181526020018280546105fa906121aa565b80156106475780601f1061061c57610100808354040283529160200191610647565b820191906000526020600020905b81548152906001019060200180831161062a57829003601f168201915b5050505050905090565b60008061065c61113b565b9050610669818585611143565b600191505092915050565b6000600254905090565b60075481565b61068c61130c565b80600860146101000a81548160ff02191690831515021790555050565b6000806106b461113b565b90506106c185828561138a565b6106cc858585611416565b60019150509392505050565b60006012905090565b6a52b7d2dcc80cd2e400000081565b6000806106fb61113b565b905061071c81858561070d858961101e565b610717919061220a565b611143565b600191505092915050565b61072f61130c565b83600560146101000a81548160ff02191690831515021790555082600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816006819055508060078190555050505050565b6107a8338261168c565b50565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006108083061080d565b905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61085d61130c565b6108676000611859565b565b6000805b83518110156109da576000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166321f41afd8684815181106108c9576108c861223e565b5b60200260200101516040518263ffffffff1660e01b81526004016108ed9190611d34565b602060405180830381865afa15801561090a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061092e9190612282565b905060001515600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514801561098f57508383105b156109c6576109b78583815181106109aa576109a961223e565b5b6020026020010151610ba6565b82806109c2906122af565b9350505b5080806109d2906122af565b91505061086d565b50505050565b600560149054906101000a900460ff1681565b60065481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600060096000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166321f41afd856040518263ffffffff1660e01b8152600401610a849190611d34565b602060405180830381865afa158015610aa1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ac59190612282565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b606060048054610b23906121aa565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4f906121aa565b8015610b9c5780601f10610b7157610100808354040283529160200191610b9c565b820191906000526020600020905b815481529060010190602001808311610b7f57829003601f168201915b5050505050905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166321f41afd836040518263ffffffff1660e01b8152600401610c039190611d34565b602060405180830381865afa158015610c20573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c449190612282565b90506109c4600d5410610c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8390612343565b60405180910390fd5b600860149054906101000a900460ff16610cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd290612343565b60405180910390fd5b60001515600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d65906123d5565b60405180910390fd5b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610dcb9190611ed5565b602060405180830381865afa158015610de8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e0c919061240a565b03610e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4390612483565b60405180910390fd5b6001600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600b54610eb03061080d565b1015610ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee890612515565b60405180910390fd5b610efe3082600b54611416565b610f0a30600c5461168c565b674563918244f40000600b6000828254610f249190612535565b92505081905550670de0b6b3a7640000600c6000828254610f45919061220a565b92505081905550600d6000815480929190610f5f906122af565b91905055505050565b600080610f7361113b565b90506000610f81828661101e565b905083811015610fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbd906125db565b60405180910390fd5b610fd38286868403611143565b60019250505092915050565b600080610fea61113b565b9050610ff7818585611416565b600191505092915050565b61100a61130c565b61101c306110173061080d565b61168c565b565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600860149054906101000a900460ff1681565b6110c061130c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361112f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111269061266d565b60405180910390fd5b61113881611859565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a9906126ff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611221576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121890612791565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112ff9190611d34565b60405180910390a3505050565b61131461113b565b73ffffffffffffffffffffffffffffffffffffffff166113326109f9565b73ffffffffffffffffffffffffffffffffffffffff1614611388576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137f906127fd565b60405180910390fd5b565b6000611396848461101e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146114105781811015611402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f990612869565b60405180910390fd5b61140f8484848403611143565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611485576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147c906128fb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114eb9061298d565b60405180910390fd5b6114ff83838361191f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611585576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157c90612a1f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116739190611d34565b60405180910390a3611686848484611b50565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f290612ab1565b60405180910390fd5b6117078260008361191f565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561178d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178490612b43565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118409190611d34565b60405180910390a361185483600084611b50565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611a625761197d6109f9565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806119e857506119b96109f9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80611a1e57503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5490612baf565b60405180910390fd5b611b4b565b600560149054906101000a900460ff168015611acb5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15611b4a5760065481611add8461080d565b611ae7919061220a565b11158015611b0a575060075481611afd8461080d565b611b07919061220a565b10155b611b49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4090612c1b565b60405180910390fd5b5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611b8f578082015181840152602081019050611b74565b60008484015250505050565b6000601f19601f8301169050919050565b6000611bb782611b55565b611bc18185611b60565b9350611bd1818560208601611b71565b611bda81611b9b565b840191505092915050565b60006020820190508181036000830152611bff8184611bac565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611c4682611c1b565b9050919050565b611c5681611c3b565b8114611c6157600080fd5b50565b600081359050611c7381611c4d565b92915050565b6000819050919050565b611c8c81611c79565b8114611c9757600080fd5b50565b600081359050611ca981611c83565b92915050565b60008060408385031215611cc657611cc5611c11565b5b6000611cd485828601611c64565b9250506020611ce585828601611c9a565b9150509250929050565b60008115159050919050565b611d0481611cef565b82525050565b6000602082019050611d1f6000830184611cfb565b92915050565b611d2e81611c79565b82525050565b6000602082019050611d496000830184611d25565b92915050565b611d5881611cef565b8114611d6357600080fd5b50565b600081359050611d7581611d4f565b92915050565b600060208284031215611d9157611d90611c11565b5b6000611d9f84828501611d66565b91505092915050565b600080600060608486031215611dc157611dc0611c11565b5b6000611dcf86828701611c64565b9350506020611de086828701611c64565b9250506040611df186828701611c9a565b9150509250925092565b600060ff82169050919050565b611e1181611dfb565b82525050565b6000602082019050611e2c6000830184611e08565b92915050565b60008060008060808587031215611e4c57611e4b611c11565b5b6000611e5a87828801611d66565b9450506020611e6b87828801611c64565b9350506040611e7c87828801611c9a565b9250506060611e8d87828801611c9a565b91505092959194509250565b600060208284031215611eaf57611eae611c11565b5b6000611ebd84828501611c9a565b91505092915050565b611ecf81611c3b565b82525050565b6000602082019050611eea6000830184611ec6565b92915050565b6000819050919050565b6000611f15611f10611f0b84611c1b565b611ef0565b611c1b565b9050919050565b6000611f2782611efa565b9050919050565b6000611f3982611f1c565b9050919050565b611f4981611f2e565b82525050565b6000602082019050611f646000830184611f40565b92915050565b600060208284031215611f8057611f7f611c11565b5b6000611f8e84828501611c64565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611fd482611b9b565b810181811067ffffffffffffffff82111715611ff357611ff2611f9c565b5b80604052505050565b6000612006611c07565b90506120128282611fcb565b919050565b600067ffffffffffffffff82111561203257612031611f9c565b5b602082029050602081019050919050565b600080fd5b600061205b61205684612017565b611ffc565b9050808382526020820190506020840283018581111561207e5761207d612043565b5b835b818110156120a757806120938882611c9a565b845260208401935050602081019050612080565b5050509392505050565b600082601f8301126120c6576120c5611f97565b5b81356120d6848260208601612048565b91505092915050565b600080604083850312156120f6576120f5611c11565b5b600083013567ffffffffffffffff81111561211457612113611c16565b5b612120858286016120b1565b925050602061213185828601611c9a565b9150509250929050565b6000806040838503121561215257612151611c11565b5b600061216085828601611c64565b925050602061217185828601611c64565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806121c257607f821691505b6020821081036121d5576121d461217b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061221582611c79565b915061222083611c79565b9250828201905080821115612238576122376121db565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061227c81611c4d565b92915050565b60006020828403121561229857612297611c11565b5b60006122a68482850161226d565b91505092915050565b60006122ba82611c79565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036122ec576122eb6121db565b5b600182019050919050565b7f4d696e742069732066696e697368656400000000000000000000000000000000600082015250565b600061232d601083611b60565b9150612338826122f7565b602082019050919050565b6000602082019050818103600083015261235c81612320565b9050919050565b7f416c72656164792061697264726f70656420455243323020746f20746869732060008201527f5442410000000000000000000000000000000000000000000000000000000000602082015250565b60006123bf602383611b60565b91506123ca82612363565b604082019050919050565b600060208201905081810360008301526123ee816123b2565b9050919050565b60008151905061240481611c83565b92915050565b6000602082840312156124205761241f611c11565b5b600061242e848285016123f5565b91505092915050565b7f596f7520646f6e74206f776e20616e79204d616e6167657273204e4654000000600082015250565b600061246d601d83611b60565b915061247882612437565b602082019050919050565b6000602082019050818103600083015261249c81612460565b9050919050565b7f4e6f7420656e6f75676820746f6b656e7320696e2074686520636f6e7472616360008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b60006124ff602183611b60565b915061250a826124a3565b604082019050919050565b6000602082019050818103600083015261252e816124f2565b9050919050565b600061254082611c79565b915061254b83611c79565b9250828203905081811115612563576125626121db565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006125c5602583611b60565b91506125d082612569565b604082019050919050565b600060208201905081810360008301526125f4816125b8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612657602683611b60565b9150612662826125fb565b604082019050919050565b600060208201905081810360008301526126868161264a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006126e9602483611b60565b91506126f48261268d565b604082019050919050565b60006020820190508181036000830152612718816126dc565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061277b602283611b60565b91506127868261271f565b604082019050919050565b600060208201905081810360008301526127aa8161276e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006127e7602083611b60565b91506127f2826127b1565b602082019050919050565b60006020820190508181036000830152612816816127da565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612853601d83611b60565b915061285e8261281d565b602082019050919050565b6000602082019050818103600083015261288281612846565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006128e5602583611b60565b91506128f082612889565b604082019050919050565b60006020820190508181036000830152612914816128d8565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612977602383611b60565b91506129828261291b565b604082019050919050565b600060208201905081810360008301526129a68161296a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612a09602683611b60565b9150612a14826129ad565b604082019050919050565b60006020820190508181036000830152612a38816129fc565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612a9b602183611b60565b9150612aa682612a3f565b604082019050919050565b60006020820190508181036000830152612aca81612a8e565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612b2d602283611b60565b9150612b3882612ad1565b604082019050919050565b60006020820190508181036000830152612b5c81612b20565b9050919050565b7f54726164696e67206e6f74207374617274656400000000000000000000000000600082015250565b6000612b99601383611b60565b9150612ba482612b63565b602082019050919050565b60006020820190508181036000830152612bc881612b8c565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b6000612c05600683611b60565b9150612c1082612bcf565b602082019050919050565b60006020820190508181036000830152612c3481612bf8565b905091905056fea2646970667358221220fa1eb3cfe77cb3b35db98e45f980766e99c30e147cc21b888561e29c033e0d0d64736f6c63430008110033000000000000000000000000000000000000000000295be96e640669720000000000000000000000000000008c34e6e60731d1ff7e26c712ea1f798f90f29ec6
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101da5760003560e01c806370a082311161010457806395d89b41116100a2578063b03e647811610071578063b03e64781461054b578063dd62ed3e14610555578063e8656fcc14610585578063f2fde38b146105a3576101da565b806395d89b41146104b157806397304ced146104cf578063a457c2d7146104eb578063a9059cbb1461051b576101da565b8063860a32ec116100de578063860a32ec1461042757806389f9a1d3146104455780638da5cb5b1461046357806393a6191414610481576101da565b806370a08231146103d1578063715018a614610401578063719242c21461040b576101da565b806332cb6b0c1161017c57806349bd5a5e1161014b57806349bd5a5e146103595780634e2786fb146103775780634f68e5dc14610395578063651f80a7146103b3576101da565b806332cb6b0c146102d357806339509351146102f15780633aa633aa1461032157806342966c681461033d576101da565b80631ab99e12116101b85780631ab99e121461024b5780631f85e3ca1461026957806323b872dd14610285578063313ce567146102b5576101da565b806306fdde03146101df578063095ea7b3146101fd57806318160ddd1461022d575b600080fd5b6101e76105bf565b6040516101f49190611be5565b60405180910390f35b61021760048036038101906102129190611caf565b610651565b6040516102249190611d0a565b60405180910390f35b610235610674565b6040516102429190611d34565b60405180910390f35b61025361067e565b6040516102609190611d34565b60405180910390f35b610283600480360381019061027e9190611d7b565b610684565b005b61029f600480360381019061029a9190611da8565b6106a9565b6040516102ac9190611d0a565b60405180910390f35b6102bd6106d8565b6040516102ca9190611e17565b60405180910390f35b6102db6106e1565b6040516102e89190611d34565b60405180910390f35b61030b60048036038101906103069190611caf565b6106f0565b6040516103189190611d0a565b60405180910390f35b61033b60048036038101906103369190611e32565b610727565b005b61035760048036038101906103529190611e99565b61079e565b005b6103616107ab565b60405161036e9190611ed5565b60405180910390f35b61037f6107d1565b60405161038c9190611d34565b60405180910390f35b61039d6107d7565b6040516103aa9190611f4f565b60405180910390f35b6103bb6107fd565b6040516103c89190611d34565b60405180910390f35b6103eb60048036038101906103e69190611f6a565b61080d565b6040516103f89190611d34565b60405180910390f35b610409610855565b005b610425600480360381019061042091906120df565b610869565b005b61042f6109e0565b60405161043c9190611d0a565b60405180910390f35b61044d6109f3565b60405161045a9190611d34565b60405180910390f35b61046b6109f9565b6040516104789190611ed5565b60405180910390f35b61049b60048036038101906104969190611e99565b610a23565b6040516104a89190611d0a565b60405180910390f35b6104b9610b14565b6040516104c69190611be5565b60405180910390f35b6104e960048036038101906104e49190611e99565b610ba6565b005b61050560048036038101906105009190611caf565b610f68565b6040516105129190611d0a565b60405180910390f35b61053560048036038101906105309190611caf565b610fdf565b6040516105429190611d0a565b60405180910390f35b610553611002565b005b61056f600480360381019061056a919061213b565b61101e565b60405161057c9190611d34565b60405180910390f35b61058d6110a5565b60405161059a9190611d0a565b60405180910390f35b6105bd60048036038101906105b89190611f6a565b6110b8565b005b6060600380546105ce906121aa565b80601f01602080910402602001604051908101604052809291908181526020018280546105fa906121aa565b80156106475780601f1061061c57610100808354040283529160200191610647565b820191906000526020600020905b81548152906001019060200180831161062a57829003601f168201915b5050505050905090565b60008061065c61113b565b9050610669818585611143565b600191505092915050565b6000600254905090565b60075481565b61068c61130c565b80600860146101000a81548160ff02191690831515021790555050565b6000806106b461113b565b90506106c185828561138a565b6106cc858585611416565b60019150509392505050565b60006012905090565b6a52b7d2dcc80cd2e400000081565b6000806106fb61113b565b905061071c81858561070d858961101e565b610717919061220a565b611143565b600191505092915050565b61072f61130c565b83600560146101000a81548160ff02191690831515021790555082600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816006819055508060078190555050505050565b6107a8338261168c565b50565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006108083061080d565b905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61085d61130c565b6108676000611859565b565b6000805b83518110156109da576000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166321f41afd8684815181106108c9576108c861223e565b5b60200260200101516040518263ffffffff1660e01b81526004016108ed9190611d34565b602060405180830381865afa15801561090a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061092e9190612282565b905060001515600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514801561098f57508383105b156109c6576109b78583815181106109aa576109a961223e565b5b6020026020010151610ba6565b82806109c2906122af565b9350505b5080806109d2906122af565b91505061086d565b50505050565b600560149054906101000a900460ff1681565b60065481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600060096000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166321f41afd856040518263ffffffff1660e01b8152600401610a849190611d34565b602060405180830381865afa158015610aa1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ac59190612282565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b606060048054610b23906121aa565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4f906121aa565b8015610b9c5780601f10610b7157610100808354040283529160200191610b9c565b820191906000526020600020905b815481529060010190602001808311610b7f57829003601f168201915b5050505050905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166321f41afd836040518263ffffffff1660e01b8152600401610c039190611d34565b602060405180830381865afa158015610c20573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c449190612282565b90506109c4600d5410610c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8390612343565b60405180910390fd5b600860149054906101000a900460ff16610cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd290612343565b60405180910390fd5b60001515600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d65906123d5565b60405180910390fd5b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610dcb9190611ed5565b602060405180830381865afa158015610de8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e0c919061240a565b03610e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4390612483565b60405180910390fd5b6001600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600b54610eb03061080d565b1015610ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee890612515565b60405180910390fd5b610efe3082600b54611416565b610f0a30600c5461168c565b674563918244f40000600b6000828254610f249190612535565b92505081905550670de0b6b3a7640000600c6000828254610f45919061220a565b92505081905550600d6000815480929190610f5f906122af565b91905055505050565b600080610f7361113b565b90506000610f81828661101e565b905083811015610fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbd906125db565b60405180910390fd5b610fd38286868403611143565b60019250505092915050565b600080610fea61113b565b9050610ff7818585611416565b600191505092915050565b61100a61130c565b61101c306110173061080d565b61168c565b565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600860149054906101000a900460ff1681565b6110c061130c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361112f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111269061266d565b60405180910390fd5b61113881611859565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a9906126ff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611221576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121890612791565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112ff9190611d34565b60405180910390a3505050565b61131461113b565b73ffffffffffffffffffffffffffffffffffffffff166113326109f9565b73ffffffffffffffffffffffffffffffffffffffff1614611388576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137f906127fd565b60405180910390fd5b565b6000611396848461101e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146114105781811015611402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f990612869565b60405180910390fd5b61140f8484848403611143565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611485576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147c906128fb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114eb9061298d565b60405180910390fd5b6114ff83838361191f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611585576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157c90612a1f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116739190611d34565b60405180910390a3611686848484611b50565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f290612ab1565b60405180910390fd5b6117078260008361191f565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561178d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178490612b43565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118409190611d34565b60405180910390a361185483600084611b50565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611a625761197d6109f9565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806119e857506119b96109f9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80611a1e57503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5490612baf565b60405180910390fd5b611b4b565b600560149054906101000a900460ff168015611acb5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15611b4a5760065481611add8461080d565b611ae7919061220a565b11158015611b0a575060075481611afd8461080d565b611b07919061220a565b10155b611b49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4090612c1b565b60405180910390fd5b5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611b8f578082015181840152602081019050611b74565b60008484015250505050565b6000601f19601f8301169050919050565b6000611bb782611b55565b611bc18185611b60565b9350611bd1818560208601611b71565b611bda81611b9b565b840191505092915050565b60006020820190508181036000830152611bff8184611bac565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611c4682611c1b565b9050919050565b611c5681611c3b565b8114611c6157600080fd5b50565b600081359050611c7381611c4d565b92915050565b6000819050919050565b611c8c81611c79565b8114611c9757600080fd5b50565b600081359050611ca981611c83565b92915050565b60008060408385031215611cc657611cc5611c11565b5b6000611cd485828601611c64565b9250506020611ce585828601611c9a565b9150509250929050565b60008115159050919050565b611d0481611cef565b82525050565b6000602082019050611d1f6000830184611cfb565b92915050565b611d2e81611c79565b82525050565b6000602082019050611d496000830184611d25565b92915050565b611d5881611cef565b8114611d6357600080fd5b50565b600081359050611d7581611d4f565b92915050565b600060208284031215611d9157611d90611c11565b5b6000611d9f84828501611d66565b91505092915050565b600080600060608486031215611dc157611dc0611c11565b5b6000611dcf86828701611c64565b9350506020611de086828701611c64565b9250506040611df186828701611c9a565b9150509250925092565b600060ff82169050919050565b611e1181611dfb565b82525050565b6000602082019050611e2c6000830184611e08565b92915050565b60008060008060808587031215611e4c57611e4b611c11565b5b6000611e5a87828801611d66565b9450506020611e6b87828801611c64565b9350506040611e7c87828801611c9a565b9250506060611e8d87828801611c9a565b91505092959194509250565b600060208284031215611eaf57611eae611c11565b5b6000611ebd84828501611c9a565b91505092915050565b611ecf81611c3b565b82525050565b6000602082019050611eea6000830184611ec6565b92915050565b6000819050919050565b6000611f15611f10611f0b84611c1b565b611ef0565b611c1b565b9050919050565b6000611f2782611efa565b9050919050565b6000611f3982611f1c565b9050919050565b611f4981611f2e565b82525050565b6000602082019050611f646000830184611f40565b92915050565b600060208284031215611f8057611f7f611c11565b5b6000611f8e84828501611c64565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611fd482611b9b565b810181811067ffffffffffffffff82111715611ff357611ff2611f9c565b5b80604052505050565b6000612006611c07565b90506120128282611fcb565b919050565b600067ffffffffffffffff82111561203257612031611f9c565b5b602082029050602081019050919050565b600080fd5b600061205b61205684612017565b611ffc565b9050808382526020820190506020840283018581111561207e5761207d612043565b5b835b818110156120a757806120938882611c9a565b845260208401935050602081019050612080565b5050509392505050565b600082601f8301126120c6576120c5611f97565b5b81356120d6848260208601612048565b91505092915050565b600080604083850312156120f6576120f5611c11565b5b600083013567ffffffffffffffff81111561211457612113611c16565b5b612120858286016120b1565b925050602061213185828601611c9a565b9150509250929050565b6000806040838503121561215257612151611c11565b5b600061216085828601611c64565b925050602061217185828601611c64565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806121c257607f821691505b6020821081036121d5576121d461217b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061221582611c79565b915061222083611c79565b9250828201905080821115612238576122376121db565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061227c81611c4d565b92915050565b60006020828403121561229857612297611c11565b5b60006122a68482850161226d565b91505092915050565b60006122ba82611c79565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036122ec576122eb6121db565b5b600182019050919050565b7f4d696e742069732066696e697368656400000000000000000000000000000000600082015250565b600061232d601083611b60565b9150612338826122f7565b602082019050919050565b6000602082019050818103600083015261235c81612320565b9050919050565b7f416c72656164792061697264726f70656420455243323020746f20746869732060008201527f5442410000000000000000000000000000000000000000000000000000000000602082015250565b60006123bf602383611b60565b91506123ca82612363565b604082019050919050565b600060208201905081810360008301526123ee816123b2565b9050919050565b60008151905061240481611c83565b92915050565b6000602082840312156124205761241f611c11565b5b600061242e848285016123f5565b91505092915050565b7f596f7520646f6e74206f776e20616e79204d616e6167657273204e4654000000600082015250565b600061246d601d83611b60565b915061247882612437565b602082019050919050565b6000602082019050818103600083015261249c81612460565b9050919050565b7f4e6f7420656e6f75676820746f6b656e7320696e2074686520636f6e7472616360008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b60006124ff602183611b60565b915061250a826124a3565b604082019050919050565b6000602082019050818103600083015261252e816124f2565b9050919050565b600061254082611c79565b915061254b83611c79565b9250828203905081811115612563576125626121db565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006125c5602583611b60565b91506125d082612569565b604082019050919050565b600060208201905081810360008301526125f4816125b8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612657602683611b60565b9150612662826125fb565b604082019050919050565b600060208201905081810360008301526126868161264a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006126e9602483611b60565b91506126f48261268d565b604082019050919050565b60006020820190508181036000830152612718816126dc565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061277b602283611b60565b91506127868261271f565b604082019050919050565b600060208201905081810360008301526127aa8161276e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006127e7602083611b60565b91506127f2826127b1565b602082019050919050565b60006020820190508181036000830152612816816127da565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612853601d83611b60565b915061285e8261281d565b602082019050919050565b6000602082019050818103600083015261288281612846565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006128e5602583611b60565b91506128f082612889565b604082019050919050565b60006020820190508181036000830152612914816128d8565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612977602383611b60565b91506129828261291b565b604082019050919050565b600060208201905081810360008301526129a68161296a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612a09602683611b60565b9150612a14826129ad565b604082019050919050565b60006020820190508181036000830152612a38816129fc565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612a9b602183611b60565b9150612aa682612a3f565b604082019050919050565b60006020820190508181036000830152612aca81612a8e565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612b2d602283611b60565b9150612b3882612ad1565b604082019050919050565b60006020820190508181036000830152612b5c81612b20565b9050919050565b7f54726164696e67206e6f74207374617274656400000000000000000000000000600082015250565b6000612b99601383611b60565b9150612ba482612b63565b602082019050919050565b60006020820190508181036000830152612bc881612b8c565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b6000612c05600683611b60565b9150612c1082612bcf565b602082019050919050565b60006020820190508181036000830152612c3481612bf8565b905091905056fea2646970667358221220fa1eb3cfe77cb3b35db98e45f980766e99c30e147cc21b888561e29c033e0d0d64736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000295be96e640669720000000000000000000000000000008c34e6e60731d1ff7e26c712ea1f798f90f29ec6
-----Decoded View---------------
Arg [0] : _initialSupply (uint256): 50000000000000000000000000
Arg [1] : _tba (address): 0x8c34E6e60731D1Ff7E26c712EA1f798F90F29Ec6
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000295be96e64066972000000
Arg [1] : 0000000000000000000000008c34e6e60731d1ff7e26c712ea1f798f90f29ec6
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.