ERC-20
Overview
Max Total Supply
987 ERC20 ***
Holders
81
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
USDTea
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)
/* /$$ /$$ /$$$$$$ /$$$$$$$ /$$$$$$$$ | $$ | $$ /$$__ $$| $$__ $$|__ $$__/ | $$ | $$| $$ \__/| $$ \ $$ | $$ /$$$$$$ /$$$$$$ | $$ | $$| $$$$$$ | $$ | $$ | $$ /$$__ $$ |____ $$ | $$ | $$ \____ $$| $$ | $$ | $$| $$$$$$$$ /$$$$$$$ | $$ | $$ /$$ \ $$| $$ | $$ | $$| $$_____/ /$$__ $$ | $$$$$$/| $$$$$$/| $$$$$$$/ | $$| $$$$$$$| $$$$$$$ \______/ \______/ |_______/ |__/ \_______/ \_______/ The first stablecoin backed by cans of AriZona Iced Tea. */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Pausable.sol"; contract USDTea is ERC20Pausable, Ownable { uint256 public cap; uint256 public shippingFee; uint256 public mintPrice; uint256 public maxPerMint; uint256 public mintCount = 0; uint256 public maxPerRedeem; uint256 public minPerRedeem; constructor( uint256 initialCap, uint256 initialMintPrice, uint256 initialMaxPerMint, uint256 initialShippingFee, uint256 initialMaxPerRedeem, uint256 initalMinPerRedeem, uint256 amtToOwner) ERC20("USDTea", "USDTEA") { cap = initialCap; mintPrice = initialMintPrice; maxPerMint = initialMaxPerMint; shippingFee = initialShippingFee; maxPerRedeem = initialMaxPerRedeem; minPerRedeem = initalMinPerRedeem; _mint(msg.sender, amtToOwner); mintCount += amtToOwner; } function mint(uint256 amt) public payable whenNotPaused { uint256 amtAdjusted = amt * (10 ** 18); require(msg.value == mintPrice * amt, 'LOW_ETHER'); require(amtAdjusted <= maxPerMint, 'TOO_MANY'); require(mintCount + amtAdjusted <= cap, 'CAP_MAXED'); _mint(msg.sender, amtAdjusted); mintCount += amtAdjusted; } function redeem(uint256 amt) public payable whenNotPaused { uint256 amtAdjusted = amt * (10 ** 18); require(balanceOf(msg.sender) >= amtAdjusted, 'LOW_BALANCE'); require(amtAdjusted <= maxPerRedeem, 'REDEEM_MAX'); require(amtAdjusted >= minPerRedeem, 'REDEEM_MIN'); require(msg.value == shippingFee, 'LOW_ETHER'); _burn(msg.sender, amtAdjusted); } function setCap(uint256 newCap) public onlyOwner{ cap = newCap; } function setMintPrice(uint256 newMintPrice) public onlyOwner{ mintPrice = newMintPrice; } function setMaxPerMint(uint256 newMaxPerMint) public onlyOwner{ maxPerMint = newMaxPerMint; } function setShippingFee(uint256 newShippingFee) public onlyOwner{ shippingFee = newShippingFee; } function setMaxPerRedeem(uint256 newMaxPerRedeem) public onlyOwner{ maxPerRedeem = newMaxPerRedeem; } function setMinPerRedeem(uint256 newMinPerRedeem) public onlyOwner{ minPerRedeem = newMinPerRedeem; } function withdraw() public onlyOwner { uint balance = address(this).balance; payable(msg.sender).transfer(balance); } function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner{ _unpause(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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.1 (token/ERC20/extensions/ERC20Pausable.sol) pragma solidity ^0.8.0; import "../ERC20.sol"; import "../../../security/Pausable.sol"; /** * @dev ERC20 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. */ abstract contract ERC20Pausable is ERC20, Pausable { /** * @dev See {ERC20-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual override { super._beforeTokenTransfer(from, to, amount); require(!paused(), "ERC20Pausable: token transfer while paused"); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.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: * * - `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 `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: * * - `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; } _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; _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 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 (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"initialCap","type":"uint256"},{"internalType":"uint256","name":"initialMintPrice","type":"uint256"},{"internalType":"uint256","name":"initialMaxPerMint","type":"uint256"},{"internalType":"uint256","name":"initialShippingFee","type":"uint256"},{"internalType":"uint256","name":"initialMaxPerRedeem","type":"uint256"},{"internalType":"uint256","name":"initalMinPerRedeem","type":"uint256"},{"internalType":"uint256","name":"amtToOwner","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"maxPerMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerRedeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minPerRedeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"redeem","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newCap","type":"uint256"}],"name":"setCap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxPerMint","type":"uint256"}],"name":"setMaxPerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxPerRedeem","type":"uint256"}],"name":"setMaxPerRedeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMinPerRedeem","type":"uint256"}],"name":"setMinPerRedeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newShippingFee","type":"uint256"}],"name":"setShippingFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"shippingFee","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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600a553480156200001657600080fd5b506040516200354f3803806200354f83398181016040528101906200003c91906200051a565b6040518060400160405280600681526020017f55534454656100000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f55534454454100000000000000000000000000000000000000000000000000008152508160039080519060200190620000c092919062000453565b508060049080519060200190620000d992919062000453565b5050506000600560006101000a81548160ff021916908315150217905550620001176200010b6200017b60201b60201c565b6200018360201b60201c565b8660068190555085600881905550846009819055508360078190555082600b8190555081600c819055506200015333826200024960201b60201c565b80600a6000828254620001679190620006f4565b925050819055505050505050505062000809565b600033905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620002bc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002b39062000682565b60405180910390fd5b620002d060008383620003c260201b60201c565b8060026000828254620002e49190620006f4565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200033b9190620006f4565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003a29190620006c6565b60405180910390a3620003be600083836200043260201b60201c565b5050565b620003da8383836200043760201b620014831760201c565b620003ea6200043c60201b60201c565b156200042d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200042490620006a4565b60405180910390fd5b505050565b505050565b505050565b6000600560009054906101000a900460ff16905090565b82805462000461906200075b565b90600052602060002090601f016020900481019282620004855760008555620004d1565b82601f10620004a057805160ff1916838001178555620004d1565b82800160010185558215620004d1579182015b82811115620004d0578251825591602001919060010190620004b3565b5b509050620004e09190620004e4565b5090565b5b80821115620004ff576000816000905550600101620004e5565b5090565b6000815190506200051481620007ef565b92915050565b600080600080600080600060e0888a0312156200053657600080fd5b6000620005468a828b0162000503565b9750506020620005598a828b0162000503565b96505060406200056c8a828b0162000503565b95505060606200057f8a828b0162000503565b9450506080620005928a828b0162000503565b93505060a0620005a58a828b0162000503565b92505060c0620005b88a828b0162000503565b91505092959891949750929550565b6000620005d6601f83620006e3565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b600062000618602a83620006e3565b91507f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008301527f696c6520706175736564000000000000000000000000000000000000000000006020830152604082019050919050565b6200067c8162000751565b82525050565b600060208201905081810360008301526200069d81620005c7565b9050919050565b60006020820190508181036000830152620006bf8162000609565b9050919050565b6000602082019050620006dd600083018462000671565b92915050565b600082825260208201905092915050565b6000620007018262000751565b91506200070e8362000751565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000746576200074562000791565b5b828201905092915050565b6000819050919050565b600060028204905060018216806200077457607f821691505b602082108114156200078b576200078a620007c0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b620007fa8162000751565b81146200080657600080fd5b50565b612d3680620008196000396000f3fe6080604052600436106101ee5760003560e01c8063715018a61161010d578063a9059cbb116100a0578063db6242c31161006f578063db6242c31461069f578063dd62ed3e146106c8578063ee5c329914610705578063f2fde38b1461072e578063f4a0a52814610757576101ee565b8063a9059cbb146105f2578063bff7a6951461062f578063d3ac1e4a1461065a578063db006a7514610683576101ee565b806395d89b41116100dc57806395d89b41146105435780639659867e1461056e578063a0712d6814610599578063a457c2d7146105b5576101ee565b8063715018a6146104c15780638456cb59146104d85780638da5cb5b146104ef5780638e9405101461051a576101ee565b80633f4ba83a11610185578063507e094f11610154578063507e094f146104035780635c975abb1461042e5780636817c76c1461045957806370a0823114610484576101ee565b80633f4ba83a1461036d5780634682f7131461038457806347786d37146103af5780634abaf07e146103d8576101ee565b8063313ce567116101c1578063313ce567146102c3578063355274ea146102ee57806339509351146103195780633ccfd60b14610356576101ee565b806306fdde03146101f3578063095ea7b31461021e57806318160ddd1461025b57806323b872dd14610286575b600080fd5b3480156101ff57600080fd5b50610208610780565b60405161021591906127b1565b60405180910390f35b34801561022a57600080fd5b5061024560048036038101906102409190611fe5565b610812565b6040516102529190612796565b60405180910390f35b34801561026757600080fd5b50610270610835565b60405161027d9190612a73565b60405180910390f35b34801561029257600080fd5b506102ad60048036038101906102a89190611f96565b61083f565b6040516102ba9190612796565b60405180910390f35b3480156102cf57600080fd5b506102d861086e565b6040516102e59190612a8e565b60405180910390f35b3480156102fa57600080fd5b50610303610877565b6040516103109190612a73565b60405180910390f35b34801561032557600080fd5b50610340600480360381019061033b9190611fe5565b61087d565b60405161034d9190612796565b60405180910390f35b34801561036257600080fd5b5061036b6108b4565b005b34801561037957600080fd5b5061038261097f565b005b34801561039057600080fd5b50610399610a05565b6040516103a69190612a73565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d19190612021565b610a0b565b005b3480156103e457600080fd5b506103ed610a91565b6040516103fa9190612a73565b60405180910390f35b34801561040f57600080fd5b50610418610a97565b6040516104259190612a73565b60405180910390f35b34801561043a57600080fd5b50610443610a9d565b6040516104509190612796565b60405180910390f35b34801561046557600080fd5b5061046e610ab4565b60405161047b9190612a73565b60405180910390f35b34801561049057600080fd5b506104ab60048036038101906104a69190611f31565b610aba565b6040516104b89190612a73565b60405180910390f35b3480156104cd57600080fd5b506104d6610b02565b005b3480156104e457600080fd5b506104ed610b8a565b005b3480156104fb57600080fd5b50610504610c10565b604051610511919061277b565b60405180910390f35b34801561052657600080fd5b50610541600480360381019061053c9190612021565b610c3a565b005b34801561054f57600080fd5b50610558610cc0565b60405161056591906127b1565b60405180910390f35b34801561057a57600080fd5b50610583610d52565b6040516105909190612a73565b60405180910390f35b6105b360048036038101906105ae9190612021565b610d58565b005b3480156105c157600080fd5b506105dc60048036038101906105d79190611fe5565b610ec5565b6040516105e99190612796565b60405180910390f35b3480156105fe57600080fd5b5061061960048036038101906106149190611fe5565b610f3c565b6040516106269190612796565b60405180910390f35b34801561063b57600080fd5b50610644610f5f565b6040516106519190612a73565b60405180910390f35b34801561066657600080fd5b50610681600480360381019061067c9190612021565b610f65565b005b61069d60048036038101906106989190612021565b610feb565b005b3480156106ab57600080fd5b506106c660048036038101906106c19190612021565b611172565b005b3480156106d457600080fd5b506106ef60048036038101906106ea9190611f5a565b6111f8565b6040516106fc9190612a73565b60405180910390f35b34801561071157600080fd5b5061072c60048036038101906107279190612021565b61127f565b005b34801561073a57600080fd5b5061075560048036038101906107509190611f31565b611305565b005b34801561076357600080fd5b5061077e60048036038101906107799190612021565b6113fd565b005b60606003805461078f90612c31565b80601f01602080910402602001604051908101604052809291908181526020018280546107bb90612c31565b80156108085780601f106107dd57610100808354040283529160200191610808565b820191906000526020600020905b8154815290600101906020018083116107eb57829003601f168201915b5050505050905090565b60008061081d611488565b905061082a818585611490565b600191505092915050565b6000600254905090565b60008061084a611488565b905061085785828561165b565b6108628585856116e7565b60019150509392505050565b60006012905090565b60065481565b600080610888611488565b90506108a981858561089a85896111f8565b6108a49190612ac5565b611490565b600191505092915050565b6108bc611488565b73ffffffffffffffffffffffffffffffffffffffff166108da610c10565b73ffffffffffffffffffffffffffffffffffffffff1614610930576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092790612953565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561097b573d6000803e3d6000fd5b5050565b610987611488565b73ffffffffffffffffffffffffffffffffffffffff166109a5610c10565b73ffffffffffffffffffffffffffffffffffffffff16146109fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f290612953565b60405180910390fd5b610a03611968565b565b600b5481565b610a13611488565b73ffffffffffffffffffffffffffffffffffffffff16610a31610c10565b73ffffffffffffffffffffffffffffffffffffffff1614610a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7e90612953565b60405180910390fd5b8060068190555050565b60075481565b60095481565b6000600560009054906101000a900460ff16905090565b60085481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b0a611488565b73ffffffffffffffffffffffffffffffffffffffff16610b28610c10565b73ffffffffffffffffffffffffffffffffffffffff1614610b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7590612953565b60405180910390fd5b610b886000611a0a565b565b610b92611488565b73ffffffffffffffffffffffffffffffffffffffff16610bb0610c10565b73ffffffffffffffffffffffffffffffffffffffff1614610c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfd90612953565b60405180910390fd5b610c0e611ad0565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610c42611488565b73ffffffffffffffffffffffffffffffffffffffff16610c60610c10565b73ffffffffffffffffffffffffffffffffffffffff1614610cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cad90612953565b60405180910390fd5b80600b8190555050565b606060048054610ccf90612c31565b80601f0160208091040260200160405190810160405280929190818152602001828054610cfb90612c31565b8015610d485780601f10610d1d57610100808354040283529160200191610d48565b820191906000526020600020905b815481529060010190602001808311610d2b57829003601f168201915b5050505050905090565b600a5481565b610d60610a9d565b15610da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d97906128f3565b60405180910390fd5b6000670de0b6b3a764000082610db69190612b1b565b905081600854610dc69190612b1b565b3414610e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfe90612973565b60405180910390fd5b600954811115610e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e43906129f3565b60405180910390fd5b60065481600a54610e5d9190612ac5565b1115610e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9590612873565b60405180910390fd5b610ea83382611b73565b80600a6000828254610eba9190612ac5565b925050819055505050565b600080610ed0611488565b90506000610ede82866111f8565b905083811015610f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1a90612a13565b60405180910390fd5b610f308286868403611490565b60019250505092915050565b600080610f47611488565b9050610f548185856116e7565b600191505092915050565b600c5481565b610f6d611488565b73ffffffffffffffffffffffffffffffffffffffff16610f8b610c10565b73ffffffffffffffffffffffffffffffffffffffff1614610fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd890612953565b60405180910390fd5b8060078190555050565b610ff3610a9d565b15611033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102a906128f3565b60405180910390fd5b6000670de0b6b3a7640000826110499190612b1b565b90508061105533610aba565b1015611096576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108d906128d3565b60405180910390fd5b600b548111156110db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d290612933565b60405180910390fd5b600c54811015611120576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111790612913565b60405180910390fd5b6007543414611164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115b90612973565b60405180910390fd5b61116e3382611cd3565b5050565b61117a611488565b73ffffffffffffffffffffffffffffffffffffffff16611198610c10565b73ffffffffffffffffffffffffffffffffffffffff16146111ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e590612953565b60405180910390fd5b8060098190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611287611488565b73ffffffffffffffffffffffffffffffffffffffff166112a5610c10565b73ffffffffffffffffffffffffffffffffffffffff16146112fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f290612953565b60405180910390fd5b80600c8190555050565b61130d611488565b73ffffffffffffffffffffffffffffffffffffffff1661132b610c10565b73ffffffffffffffffffffffffffffffffffffffff1614611381576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137890612953565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e890612833565b60405180910390fd5b6113fa81611a0a565b50565b611405611488565b73ffffffffffffffffffffffffffffffffffffffff16611423610c10565b73ffffffffffffffffffffffffffffffffffffffff1614611479576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147090612953565b60405180910390fd5b8060088190555050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f7906129d3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611570576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156790612853565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161164e9190612a73565b60405180910390a3505050565b600061166784846111f8565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146116e157818110156116d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ca90612893565b60405180910390fd5b6116e08484848403611490565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174e906129b3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117be906127d3565b60405180910390fd5b6117d2838383611eaa565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184f906128b3565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118eb9190612ac5565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161194f9190612a73565b60405180910390a3611962848484611f02565b50505050565b611970610a9d565b6119af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a6906127f3565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6119f3611488565b604051611a00919061277b565b60405180910390a1565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611ad8610a9d565b15611b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0f906128f3565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611b5c611488565b604051611b69919061277b565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bda90612a33565b60405180910390fd5b611bef60008383611eaa565b8060026000828254611c019190612ac5565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c569190612ac5565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611cbb9190612a73565b60405180910390a3611ccf60008383611f02565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3a90612993565b60405180910390fd5b611d4f82600083611eaa565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcc90612813565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254611e2c9190612b75565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611e919190612a73565b60405180910390a3611ea583600084611f02565b505050565b611eb5838383611483565b611ebd610a9d565b15611efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef490612a53565b60405180910390fd5b505050565b505050565b600081359050611f1681612cd2565b92915050565b600081359050611f2b81612ce9565b92915050565b600060208284031215611f4357600080fd5b6000611f5184828501611f07565b91505092915050565b60008060408385031215611f6d57600080fd5b6000611f7b85828601611f07565b9250506020611f8c85828601611f07565b9150509250929050565b600080600060608486031215611fab57600080fd5b6000611fb986828701611f07565b9350506020611fca86828701611f07565b9250506040611fdb86828701611f1c565b9150509250925092565b60008060408385031215611ff857600080fd5b600061200685828601611f07565b925050602061201785828601611f1c565b9150509250929050565b60006020828403121561203357600080fd5b600061204184828501611f1c565b91505092915050565b61205381612ba9565b82525050565b61206281612bbb565b82525050565b600061207382612aa9565b61207d8185612ab4565b935061208d818560208601612bfe565b61209681612cc1565b840191505092915050565b60006120ae602383612ab4565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612114601483612ab4565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b6000612154602283612ab4565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006121ba602683612ab4565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612220602283612ab4565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612286600983612ab4565b91507f4341505f4d4158454400000000000000000000000000000000000000000000006000830152602082019050919050565b60006122c6601d83612ab4565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b6000612306602683612ab4565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061236c600b83612ab4565b91507f4c4f575f42414c414e43450000000000000000000000000000000000000000006000830152602082019050919050565b60006123ac601083612ab4565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b60006123ec600a83612ab4565b91507f52454445454d5f4d494e000000000000000000000000000000000000000000006000830152602082019050919050565b600061242c600a83612ab4565b91507f52454445454d5f4d4158000000000000000000000000000000000000000000006000830152602082019050919050565b600061246c602083612ab4565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006124ac600983612ab4565b91507f4c4f575f455448455200000000000000000000000000000000000000000000006000830152602082019050919050565b60006124ec602183612ab4565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612552602583612ab4565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006125b8602483612ab4565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061261e600883612ab4565b91507f544f4f5f4d414e590000000000000000000000000000000000000000000000006000830152602082019050919050565b600061265e602583612ab4565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006126c4601f83612ab4565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6000612704602a83612ab4565b91507f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008301527f696c6520706175736564000000000000000000000000000000000000000000006020830152604082019050919050565b61276681612be7565b82525050565b61277581612bf1565b82525050565b6000602082019050612790600083018461204a565b92915050565b60006020820190506127ab6000830184612059565b92915050565b600060208201905081810360008301526127cb8184612068565b905092915050565b600060208201905081810360008301526127ec816120a1565b9050919050565b6000602082019050818103600083015261280c81612107565b9050919050565b6000602082019050818103600083015261282c81612147565b9050919050565b6000602082019050818103600083015261284c816121ad565b9050919050565b6000602082019050818103600083015261286c81612213565b9050919050565b6000602082019050818103600083015261288c81612279565b9050919050565b600060208201905081810360008301526128ac816122b9565b9050919050565b600060208201905081810360008301526128cc816122f9565b9050919050565b600060208201905081810360008301526128ec8161235f565b9050919050565b6000602082019050818103600083015261290c8161239f565b9050919050565b6000602082019050818103600083015261292c816123df565b9050919050565b6000602082019050818103600083015261294c8161241f565b9050919050565b6000602082019050818103600083015261296c8161245f565b9050919050565b6000602082019050818103600083015261298c8161249f565b9050919050565b600060208201905081810360008301526129ac816124df565b9050919050565b600060208201905081810360008301526129cc81612545565b9050919050565b600060208201905081810360008301526129ec816125ab565b9050919050565b60006020820190508181036000830152612a0c81612611565b9050919050565b60006020820190508181036000830152612a2c81612651565b9050919050565b60006020820190508181036000830152612a4c816126b7565b9050919050565b60006020820190508181036000830152612a6c816126f7565b9050919050565b6000602082019050612a88600083018461275d565b92915050565b6000602082019050612aa3600083018461276c565b92915050565b600081519050919050565b600082825260208201905092915050565b6000612ad082612be7565b9150612adb83612be7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b1057612b0f612c63565b5b828201905092915050565b6000612b2682612be7565b9150612b3183612be7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612b6a57612b69612c63565b5b828202905092915050565b6000612b8082612be7565b9150612b8b83612be7565b925082821015612b9e57612b9d612c63565b5b828203905092915050565b6000612bb482612bc7565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612c1c578082015181840152602081019050612c01565b83811115612c2b576000848401525b50505050565b60006002820490506001821680612c4957607f821691505b60208210811415612c5d57612c5c612c92565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b612cdb81612ba9565b8114612ce657600080fd5b50565b612cf281612be7565b8114612cfd57600080fd5b5056fea26469706673582212207d9bc8d05305f65fb5dd4d79353b61fb11543bc4a2450690b0df67ec7c5190cd64736f6c6343000800003300000000000000000000000000000000000000000000003635c9adc5dea000000000000000000000000000000000000000000000000000000001cfd7a0d5e0000000000000000000000000000000000000000000000000008ac7230489e80000000000000000000000000000000000000000000000000000002386f26fc100000000000000000000000000000000000000000000000000014d1120d7b16000000000000000000000000000000000000000000000000000000de0b6b3a76400000000000000000000000000000000000000000000000000056bc75e2d63100000
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c8063715018a61161010d578063a9059cbb116100a0578063db6242c31161006f578063db6242c31461069f578063dd62ed3e146106c8578063ee5c329914610705578063f2fde38b1461072e578063f4a0a52814610757576101ee565b8063a9059cbb146105f2578063bff7a6951461062f578063d3ac1e4a1461065a578063db006a7514610683576101ee565b806395d89b41116100dc57806395d89b41146105435780639659867e1461056e578063a0712d6814610599578063a457c2d7146105b5576101ee565b8063715018a6146104c15780638456cb59146104d85780638da5cb5b146104ef5780638e9405101461051a576101ee565b80633f4ba83a11610185578063507e094f11610154578063507e094f146104035780635c975abb1461042e5780636817c76c1461045957806370a0823114610484576101ee565b80633f4ba83a1461036d5780634682f7131461038457806347786d37146103af5780634abaf07e146103d8576101ee565b8063313ce567116101c1578063313ce567146102c3578063355274ea146102ee57806339509351146103195780633ccfd60b14610356576101ee565b806306fdde03146101f3578063095ea7b31461021e57806318160ddd1461025b57806323b872dd14610286575b600080fd5b3480156101ff57600080fd5b50610208610780565b60405161021591906127b1565b60405180910390f35b34801561022a57600080fd5b5061024560048036038101906102409190611fe5565b610812565b6040516102529190612796565b60405180910390f35b34801561026757600080fd5b50610270610835565b60405161027d9190612a73565b60405180910390f35b34801561029257600080fd5b506102ad60048036038101906102a89190611f96565b61083f565b6040516102ba9190612796565b60405180910390f35b3480156102cf57600080fd5b506102d861086e565b6040516102e59190612a8e565b60405180910390f35b3480156102fa57600080fd5b50610303610877565b6040516103109190612a73565b60405180910390f35b34801561032557600080fd5b50610340600480360381019061033b9190611fe5565b61087d565b60405161034d9190612796565b60405180910390f35b34801561036257600080fd5b5061036b6108b4565b005b34801561037957600080fd5b5061038261097f565b005b34801561039057600080fd5b50610399610a05565b6040516103a69190612a73565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d19190612021565b610a0b565b005b3480156103e457600080fd5b506103ed610a91565b6040516103fa9190612a73565b60405180910390f35b34801561040f57600080fd5b50610418610a97565b6040516104259190612a73565b60405180910390f35b34801561043a57600080fd5b50610443610a9d565b6040516104509190612796565b60405180910390f35b34801561046557600080fd5b5061046e610ab4565b60405161047b9190612a73565b60405180910390f35b34801561049057600080fd5b506104ab60048036038101906104a69190611f31565b610aba565b6040516104b89190612a73565b60405180910390f35b3480156104cd57600080fd5b506104d6610b02565b005b3480156104e457600080fd5b506104ed610b8a565b005b3480156104fb57600080fd5b50610504610c10565b604051610511919061277b565b60405180910390f35b34801561052657600080fd5b50610541600480360381019061053c9190612021565b610c3a565b005b34801561054f57600080fd5b50610558610cc0565b60405161056591906127b1565b60405180910390f35b34801561057a57600080fd5b50610583610d52565b6040516105909190612a73565b60405180910390f35b6105b360048036038101906105ae9190612021565b610d58565b005b3480156105c157600080fd5b506105dc60048036038101906105d79190611fe5565b610ec5565b6040516105e99190612796565b60405180910390f35b3480156105fe57600080fd5b5061061960048036038101906106149190611fe5565b610f3c565b6040516106269190612796565b60405180910390f35b34801561063b57600080fd5b50610644610f5f565b6040516106519190612a73565b60405180910390f35b34801561066657600080fd5b50610681600480360381019061067c9190612021565b610f65565b005b61069d60048036038101906106989190612021565b610feb565b005b3480156106ab57600080fd5b506106c660048036038101906106c19190612021565b611172565b005b3480156106d457600080fd5b506106ef60048036038101906106ea9190611f5a565b6111f8565b6040516106fc9190612a73565b60405180910390f35b34801561071157600080fd5b5061072c60048036038101906107279190612021565b61127f565b005b34801561073a57600080fd5b5061075560048036038101906107509190611f31565b611305565b005b34801561076357600080fd5b5061077e60048036038101906107799190612021565b6113fd565b005b60606003805461078f90612c31565b80601f01602080910402602001604051908101604052809291908181526020018280546107bb90612c31565b80156108085780601f106107dd57610100808354040283529160200191610808565b820191906000526020600020905b8154815290600101906020018083116107eb57829003601f168201915b5050505050905090565b60008061081d611488565b905061082a818585611490565b600191505092915050565b6000600254905090565b60008061084a611488565b905061085785828561165b565b6108628585856116e7565b60019150509392505050565b60006012905090565b60065481565b600080610888611488565b90506108a981858561089a85896111f8565b6108a49190612ac5565b611490565b600191505092915050565b6108bc611488565b73ffffffffffffffffffffffffffffffffffffffff166108da610c10565b73ffffffffffffffffffffffffffffffffffffffff1614610930576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092790612953565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561097b573d6000803e3d6000fd5b5050565b610987611488565b73ffffffffffffffffffffffffffffffffffffffff166109a5610c10565b73ffffffffffffffffffffffffffffffffffffffff16146109fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f290612953565b60405180910390fd5b610a03611968565b565b600b5481565b610a13611488565b73ffffffffffffffffffffffffffffffffffffffff16610a31610c10565b73ffffffffffffffffffffffffffffffffffffffff1614610a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7e90612953565b60405180910390fd5b8060068190555050565b60075481565b60095481565b6000600560009054906101000a900460ff16905090565b60085481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b0a611488565b73ffffffffffffffffffffffffffffffffffffffff16610b28610c10565b73ffffffffffffffffffffffffffffffffffffffff1614610b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7590612953565b60405180910390fd5b610b886000611a0a565b565b610b92611488565b73ffffffffffffffffffffffffffffffffffffffff16610bb0610c10565b73ffffffffffffffffffffffffffffffffffffffff1614610c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfd90612953565b60405180910390fd5b610c0e611ad0565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610c42611488565b73ffffffffffffffffffffffffffffffffffffffff16610c60610c10565b73ffffffffffffffffffffffffffffffffffffffff1614610cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cad90612953565b60405180910390fd5b80600b8190555050565b606060048054610ccf90612c31565b80601f0160208091040260200160405190810160405280929190818152602001828054610cfb90612c31565b8015610d485780601f10610d1d57610100808354040283529160200191610d48565b820191906000526020600020905b815481529060010190602001808311610d2b57829003601f168201915b5050505050905090565b600a5481565b610d60610a9d565b15610da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d97906128f3565b60405180910390fd5b6000670de0b6b3a764000082610db69190612b1b565b905081600854610dc69190612b1b565b3414610e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfe90612973565b60405180910390fd5b600954811115610e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e43906129f3565b60405180910390fd5b60065481600a54610e5d9190612ac5565b1115610e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9590612873565b60405180910390fd5b610ea83382611b73565b80600a6000828254610eba9190612ac5565b925050819055505050565b600080610ed0611488565b90506000610ede82866111f8565b905083811015610f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1a90612a13565b60405180910390fd5b610f308286868403611490565b60019250505092915050565b600080610f47611488565b9050610f548185856116e7565b600191505092915050565b600c5481565b610f6d611488565b73ffffffffffffffffffffffffffffffffffffffff16610f8b610c10565b73ffffffffffffffffffffffffffffffffffffffff1614610fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd890612953565b60405180910390fd5b8060078190555050565b610ff3610a9d565b15611033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102a906128f3565b60405180910390fd5b6000670de0b6b3a7640000826110499190612b1b565b90508061105533610aba565b1015611096576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108d906128d3565b60405180910390fd5b600b548111156110db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d290612933565b60405180910390fd5b600c54811015611120576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111790612913565b60405180910390fd5b6007543414611164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115b90612973565b60405180910390fd5b61116e3382611cd3565b5050565b61117a611488565b73ffffffffffffffffffffffffffffffffffffffff16611198610c10565b73ffffffffffffffffffffffffffffffffffffffff16146111ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e590612953565b60405180910390fd5b8060098190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611287611488565b73ffffffffffffffffffffffffffffffffffffffff166112a5610c10565b73ffffffffffffffffffffffffffffffffffffffff16146112fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f290612953565b60405180910390fd5b80600c8190555050565b61130d611488565b73ffffffffffffffffffffffffffffffffffffffff1661132b610c10565b73ffffffffffffffffffffffffffffffffffffffff1614611381576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137890612953565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e890612833565b60405180910390fd5b6113fa81611a0a565b50565b611405611488565b73ffffffffffffffffffffffffffffffffffffffff16611423610c10565b73ffffffffffffffffffffffffffffffffffffffff1614611479576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147090612953565b60405180910390fd5b8060088190555050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f7906129d3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611570576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156790612853565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161164e9190612a73565b60405180910390a3505050565b600061166784846111f8565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146116e157818110156116d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ca90612893565b60405180910390fd5b6116e08484848403611490565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174e906129b3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117be906127d3565b60405180910390fd5b6117d2838383611eaa565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184f906128b3565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118eb9190612ac5565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161194f9190612a73565b60405180910390a3611962848484611f02565b50505050565b611970610a9d565b6119af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a6906127f3565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6119f3611488565b604051611a00919061277b565b60405180910390a1565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611ad8610a9d565b15611b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0f906128f3565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611b5c611488565b604051611b69919061277b565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bda90612a33565b60405180910390fd5b611bef60008383611eaa565b8060026000828254611c019190612ac5565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c569190612ac5565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611cbb9190612a73565b60405180910390a3611ccf60008383611f02565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3a90612993565b60405180910390fd5b611d4f82600083611eaa565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcc90612813565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254611e2c9190612b75565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611e919190612a73565b60405180910390a3611ea583600084611f02565b505050565b611eb5838383611483565b611ebd610a9d565b15611efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef490612a53565b60405180910390fd5b505050565b505050565b600081359050611f1681612cd2565b92915050565b600081359050611f2b81612ce9565b92915050565b600060208284031215611f4357600080fd5b6000611f5184828501611f07565b91505092915050565b60008060408385031215611f6d57600080fd5b6000611f7b85828601611f07565b9250506020611f8c85828601611f07565b9150509250929050565b600080600060608486031215611fab57600080fd5b6000611fb986828701611f07565b9350506020611fca86828701611f07565b9250506040611fdb86828701611f1c565b9150509250925092565b60008060408385031215611ff857600080fd5b600061200685828601611f07565b925050602061201785828601611f1c565b9150509250929050565b60006020828403121561203357600080fd5b600061204184828501611f1c565b91505092915050565b61205381612ba9565b82525050565b61206281612bbb565b82525050565b600061207382612aa9565b61207d8185612ab4565b935061208d818560208601612bfe565b61209681612cc1565b840191505092915050565b60006120ae602383612ab4565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612114601483612ab4565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b6000612154602283612ab4565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006121ba602683612ab4565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612220602283612ab4565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612286600983612ab4565b91507f4341505f4d4158454400000000000000000000000000000000000000000000006000830152602082019050919050565b60006122c6601d83612ab4565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b6000612306602683612ab4565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061236c600b83612ab4565b91507f4c4f575f42414c414e43450000000000000000000000000000000000000000006000830152602082019050919050565b60006123ac601083612ab4565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b60006123ec600a83612ab4565b91507f52454445454d5f4d494e000000000000000000000000000000000000000000006000830152602082019050919050565b600061242c600a83612ab4565b91507f52454445454d5f4d4158000000000000000000000000000000000000000000006000830152602082019050919050565b600061246c602083612ab4565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006124ac600983612ab4565b91507f4c4f575f455448455200000000000000000000000000000000000000000000006000830152602082019050919050565b60006124ec602183612ab4565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612552602583612ab4565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006125b8602483612ab4565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061261e600883612ab4565b91507f544f4f5f4d414e590000000000000000000000000000000000000000000000006000830152602082019050919050565b600061265e602583612ab4565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006126c4601f83612ab4565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6000612704602a83612ab4565b91507f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008301527f696c6520706175736564000000000000000000000000000000000000000000006020830152604082019050919050565b61276681612be7565b82525050565b61277581612bf1565b82525050565b6000602082019050612790600083018461204a565b92915050565b60006020820190506127ab6000830184612059565b92915050565b600060208201905081810360008301526127cb8184612068565b905092915050565b600060208201905081810360008301526127ec816120a1565b9050919050565b6000602082019050818103600083015261280c81612107565b9050919050565b6000602082019050818103600083015261282c81612147565b9050919050565b6000602082019050818103600083015261284c816121ad565b9050919050565b6000602082019050818103600083015261286c81612213565b9050919050565b6000602082019050818103600083015261288c81612279565b9050919050565b600060208201905081810360008301526128ac816122b9565b9050919050565b600060208201905081810360008301526128cc816122f9565b9050919050565b600060208201905081810360008301526128ec8161235f565b9050919050565b6000602082019050818103600083015261290c8161239f565b9050919050565b6000602082019050818103600083015261292c816123df565b9050919050565b6000602082019050818103600083015261294c8161241f565b9050919050565b6000602082019050818103600083015261296c8161245f565b9050919050565b6000602082019050818103600083015261298c8161249f565b9050919050565b600060208201905081810360008301526129ac816124df565b9050919050565b600060208201905081810360008301526129cc81612545565b9050919050565b600060208201905081810360008301526129ec816125ab565b9050919050565b60006020820190508181036000830152612a0c81612611565b9050919050565b60006020820190508181036000830152612a2c81612651565b9050919050565b60006020820190508181036000830152612a4c816126b7565b9050919050565b60006020820190508181036000830152612a6c816126f7565b9050919050565b6000602082019050612a88600083018461275d565b92915050565b6000602082019050612aa3600083018461276c565b92915050565b600081519050919050565b600082825260208201905092915050565b6000612ad082612be7565b9150612adb83612be7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b1057612b0f612c63565b5b828201905092915050565b6000612b2682612be7565b9150612b3183612be7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612b6a57612b69612c63565b5b828202905092915050565b6000612b8082612be7565b9150612b8b83612be7565b925082821015612b9e57612b9d612c63565b5b828203905092915050565b6000612bb482612bc7565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612c1c578082015181840152602081019050612c01565b83811115612c2b576000848401525b50505050565b60006002820490506001821680612c4957607f821691505b60208210811415612c5d57612c5c612c92565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b612cdb81612ba9565b8114612ce657600080fd5b50565b612cf281612be7565b8114612cfd57600080fd5b5056fea26469706673582212207d9bc8d05305f65fb5dd4d79353b61fb11543bc4a2450690b0df67ec7c5190cd64736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000003635c9adc5dea000000000000000000000000000000000000000000000000000000001cfd7a0d5e0000000000000000000000000000000000000000000000000008ac7230489e80000000000000000000000000000000000000000000000000000002386f26fc100000000000000000000000000000000000000000000000000014d1120d7b16000000000000000000000000000000000000000000000000000000de0b6b3a76400000000000000000000000000000000000000000000000000056bc75e2d63100000
-----Decoded View---------------
Arg [0] : initialCap (uint256): 1000000000000000000000
Arg [1] : initialMintPrice (uint256): 510000000000000
Arg [2] : initialMaxPerMint (uint256): 10000000000000000000
Arg [3] : initialShippingFee (uint256): 10000000000000000
Arg [4] : initialMaxPerRedeem (uint256): 24000000000000000000
Arg [5] : initalMinPerRedeem (uint256): 1000000000000000000
Arg [6] : amtToOwner (uint256): 100000000000000000000
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000003635c9adc5dea00000
Arg [1] : 0000000000000000000000000000000000000000000000000001cfd7a0d5e000
Arg [2] : 0000000000000000000000000000000000000000000000008ac7230489e80000
Arg [3] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [4] : 0000000000000000000000000000000000000000000000014d1120d7b1600000
Arg [5] : 0000000000000000000000000000000000000000000000000de0b6b3a7640000
Arg [6] : 0000000000000000000000000000000000000000000000056bc75e2d63100000
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.