ERC-20
Overview
Max Total Supply
100,000,000 1TAIL
Holders
91
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
716,145.864045755566066238 1TAILValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TailToken
Compiler Version
v0.8.16+commit.07a7930e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-02-25 */ // https://t.me/OneTailToken // SPDX-License-Identifier: MIT 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; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) /** * @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); } // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol) /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } pragma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } pragma solidity ^0.8.16; interface IERC721A { function totalSupply() external view returns (uint256); function tokenByIndex(uint256 index) external view returns (uint256); function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); function supportsInterface(bytes4 interfaceId) external view returns (bool); function balanceOf(address owner) external view returns (uint256); function ownerOf(uint256 tokenId) external view returns (address); function name() external view returns (string memory); function symbol() external view returns (string memory); function tokenURI(uint256 tokenId) external view returns (string memory); function approve(address to, uint256 tokenId) external; function getApproved(uint256 tokenId) external view returns (address); function setApprovalForAll(address operator, bool approved) external; function isApprovedForAll(address owner, address operator) external view returns (bool); function transferFrom(address from, address to, uint256 tokenId) external; function safeTransferFrom(address from, address to, uint256 tokenId) external; function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) external; } pragma solidity ^0.8.16; //TOKENOMIC TOKEN ONETAIL. //Total supply 100M //Add uniswap 100% supply token / 6 ETH //LP token Burn (0) address. //Tax: buy and sales of ONETAIL over 80k are taxed at 20%; transfers over 80k are taxed at 1%. //No tax on buy and sales and transfer of < 80k ONETAIL. //Auto-added Liquidity: 1.25% of tokens are auto-added to the pair if it has an overabundance of tokens. Liquidity not added from (number of sales NFTDAO * 30000) + 2.5m is used to buy back NFT. //All tax proceeds are allocated to the protocol for incentives. //TOKENOMIC PROTOCOL //The protocol collects 0.3% of the loan amount if it is taken. //The protocol distributes the 1TAIL token from buy and sales of the token and NFT buy/sell itself, stimulating orders. //NFT Buy 40000 ONETAIL / Sell 30000 ONETAIL //Only NFT holders can place reward orders! //1 NFT = 1 Reward order ! //NFTDAO holders are entitled to all the proceeds of the protocol after the sale of 1650 NFTDAO. //The owner will change to the DAO contract address! //Reward Formula: Repayment date must be 21 days from now (repayment date + loan amount/ denominator)*(repayment date + loan amount/ denominator). //Only the DAO can add new denominator & tokens or change them. interface IProtocol { function exchangeFeeBuyPercent() external view returns (uint256); function exchangeFeeSellPercent() external view returns (uint256); function protocolNFTSellPrice() external view returns (uint256); function protocolNFTBuyPrice() external view returns (uint256); } contract TailToken is ERC20, Ownable { string private _name = "ONETAIL Token"; string private _symbol = "1TAIL"; uint8 private _decimals = 18; uint256 private _totalSupply = 100000000; uint256 public maxTxAmount = 250000 * 10 ** _decimals; uint256 public maxWalletAmount = 1000000 * 10 ** _decimals; uint256 public amountToLiquify = 2500000 * 10 ** _decimals; uint256 public fee = 5; address public protocolAddress; address public protocolNFT; address public devAddress; bool public devLocked = true; bool inSwapAndLiquify; IUniswapV2Router02 public immutable uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); address public immutable uniswapV2Pair; mapping(address => bool) private _isExcludedFromFee; modifier devUnlock { if (devLocked){ require( msg.sender == devAddress, "Locked by developer."); } _; } modifier lockTheSwap() { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } constructor(address _devAddress) ERC20(_name, _symbol) { _mint(_devAddress, (100000000 * 10 ** _decimals)); devAddress = _devAddress; uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH()); _approve(address(this), address(uniswapV2Router), type(uint256).max); _isExcludedFromFee[address(uniswapV2Router)] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[devAddress] = true; _isExcludedFromFee[owner()] = true; } function _transfer(address from, address to, uint256 amount) internal override devUnlock { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(balanceOf(from) >= amount, "ERC20: transfer amount exceeds balance"); if ( (from == uniswapV2Pair || to == uniswapV2Pair) && amount > IProtocol(protocolAddress).protocolNFTBuyPrice() * 2 && !inSwapAndLiquify) { if (from != uniswapV2Pair) { uint256 contractBalance = balanceOf(protocolAddress); uint256 lockedNFT = IERC721A(protocolNFT).totalSupply() - IERC721(protocolNFT).balanceOf(protocolAddress); uint256 lockedTokens = (IProtocol(protocolAddress).protocolNFTSellPrice() * lockedNFT) + amountToLiquify; if (contractBalance > lockedTokens + amountToLiquify) { super._transfer(protocolAddress, address(this), amountToLiquify); _swapAndLiquify(amountToLiquify); } } uint256 transferAmount; if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) { transferAmount = amount; } else { require(amount <= maxTxAmount, "ERC20: transfer amount exceeds the max transaction amount"); if (from == uniswapV2Pair) { require((amount + balanceOf(to)) <= maxWalletAmount, "ERC20: balance amount exceeded max wallet amount limit"); } uint256 protocolAmount; if(from == uniswapV2Pair) { protocolAmount = (amount * IProtocol(protocolAddress).exchangeFeeBuyPercent() / 100); }else if (to == uniswapV2Pair){ protocolAmount = (amount * IProtocol(protocolAddress).exchangeFeeSellPercent() / 100); } if (protocolAmount != 0) { transferAmount = amount - protocolAmount; super._transfer(from, protocolAddress, protocolAmount); } else { transferAmount = amount; } } super._transfer(from, to, transferAmount); } else { if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) { super._transfer(from, to, amount); } else if (amount > IProtocol(protocolAddress).protocolNFTBuyPrice() * 2) { uint256 protocolAmount = (amount * fee / 100); uint256 transferAmount = amount - protocolAmount; super._transfer(from, protocolAddress, protocolAmount); super._transfer(from, to, transferAmount); }else { super._transfer(from, to, amount); } } } function _swapAndLiquify(uint256 _tokenAmount) private lockTheSwap { uint256 half = (_tokenAmount / 2); uint256 otherHalf = (_tokenAmount - half); uint256 initialBalance = address(this).balance; _swapTokensForEth(half); uint256 newBalance = (address(this).balance - initialBalance); _addLiquidity(otherHalf, newBalance); } function _swapTokensForEth(uint256 _tokenAmount) private lockTheSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( _tokenAmount, 0, path, address(this), (block.timestamp + 300) ); } function _addLiquidity(uint256 _tokenAmount, uint256 _ethAmount) private lockTheSwap { uniswapV2Router.addLiquidityETH{value : _ethAmount}( address(this), _tokenAmount, 0, 0, address(this), (block.timestamp + 300) ); } function setProtocolAndNFTAddresses(address _protocolAddress, address _NFTToken) public onlyOwner { protocolAddress = _protocolAddress; protocolNFT = _NFTToken; _isExcludedFromFee[protocolAddress] = true; } function setMaxTxAmount() public onlyOwner { maxTxAmount = type(uint256).max; } function setMaxWalletAmount() public onlyOwner { maxWalletAmount = type(uint256).max; } function toggleLock() public onlyOwner { devLocked = !devLocked; } function withdraw() public returns(bytes memory){ (, bytes memory resp) = devAddress.call{value: address(this).balance}(""); return resp; } receive() external payable { } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_devAddress","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":[{"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":[],"name":"amountToLiquify","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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","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":"protocolAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"protocolNFT","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_protocolAddress","type":"address"},{"internalType":"address","name":"_NFTToken","type":"address"}],"name":"setProtocolAndNFTAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
610100604052600d60c09081526c27a722aa20a4a6102a37b5b2b760991b60e0526006906200002f9082620007ec565b506040805180820190915260058152640c5510525360da1b60208201526007906200005b9082620007ec565b506008805460ff191660129081179091556305f5e1006009556200008190600a620009cd565b62000090906203d090620009e5565b600a908155600854620000a99160ff90911690620009cd565b620000b890620f4240620009e5565b600b55600854620000ce9060ff16600a620009cd565b620000dd90622625a0620009e5565b600c556005600d556010805460ff60a01b1916600160a01b179055737a250d5630b4cf539739df2c5dacb4c659f2488d6080523480156200011d57600080fd5b506040516200262838038062002628833981016040819052620001409162000a07565b600680546200014f906200075e565b80601f01602080910402602001604051908101604052809291908181526020018280546200017d906200075e565b8015620001ce5780601f10620001a257610100808354040283529160200191620001ce565b820191906000526020600020905b815481529060010190602001808311620001b057829003601f168201915b505050505060078054620001e2906200075e565b80601f016020809104026020016040519081016040528092919081815260200182805462000210906200075e565b8015620002615780601f10620002355761010080835404028352916020019162000261565b820191906000526020600020905b8154815290600101906020018083116200024357829003601f168201915b50505050508160039081620002779190620007ec565b506004620002868282620007ec565b505050620002a36200029d620004fe60201b60201c565b62000502565b600854620002d3908290620002bd9060ff16600a620009cd565b620002cd906305f5e100620009e5565b62000554565b80601060006101000a8154816001600160a01b0302191690836001600160a01b031602179055506080516001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200033b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000361919062000a07565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003b1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003d7919062000a07565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000425573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200044b919062000a07565b6001600160a01b031660a0526080516200046a9030906000196200061b565b6080516001600160a01b0390811660009081526011602081905260408083208054600160ff199182168117909255308552828520805482168317905560105490951684529083208054909416811790935590620004cf6005546001600160a01b031690565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555062000a48565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620005b05760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060026000828254620005c4919062000a32565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0383166200067f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401620005a7565b6001600160a01b038216620006e25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401620005a7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200077357607f821691505b6020821081036200079457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200074357600081815260208120601f850160051c81016020861015620007c35750805b601f850160051c820191505b81811015620007e457828155600101620007cf565b505050505050565b81516001600160401b0381111562000808576200080862000748565b62000820816200081984546200075e565b846200079a565b602080601f8311600181146200085857600084156200083f5750858301515b600019600386901b1c1916600185901b178555620007e4565b600085815260208120601f198616915b82811015620008895788860151825594840194600190910190840162000868565b5085821015620008a85787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200090f578160001904821115620008f357620008f3620008b8565b808516156200090157918102915b93841c9390800290620008d3565b509250929050565b6000826200092857506001620009c7565b816200093757506000620009c7565b81600181146200095057600281146200095b576200097b565b6001915050620009c7565b60ff8411156200096f576200096f620008b8565b50506001821b620009c7565b5060208310610133831016604e8410600b8410161715620009a0575081810a620009c7565b620009ac8383620008ce565b8060001904821115620009c357620009c3620008b8565b0290505b92915050565b6000620009de60ff84168362000917565b9392505050565b600081600019048311821515161562000a025762000a02620008b8565b500290565b60006020828403121562000a1a57600080fd5b81516001600160a01b0381168114620009de57600080fd5b80820180821115620009c757620009c7620008b8565b60805160a051611b7b62000aad6000396000818161039201528181610b4501528181610b8001528181610c5d01528181610f3f0152818161100d01526110cf015260008181610297015281816115720152818161161d01526116d30152611b7b6000f3fe6080604052600436106101c65760003560e01c806370a08231116100f7578063a9059cbb11610095578063dd62ed3e11610064578063dd62ed3e1461050a578063ddca3f431461052a578063f2fde38b14610540578063ff9413d81461056057600080fd5b8063a9059cbb1461049f578063aa4bde28146104bf578063cc8f60d9146104d5578063d46b82b9146104ea57600080fd5b80638c0b5e22116100d15780638c0b5e22146104365780638da5cb5b1461044c57806395d89b411461046a578063a457c2d71461047f57600080fd5b806370a08231146103d6578063715018a61461040c57806376cdf25c1461042157600080fd5b8063313ce567116101645780633ad10ef61161013e5780633ad10ef61461034b5780633ccfd60b1461036b57806349bd5a5e1461038057806353e4efc5146103b457600080fd5b8063313ce567146102ee5780633764863c1461030a578063395093511461032b57600080fd5b806310194de3116101a057806310194de3146102615780631694505e1461028557806318160ddd146102b957806323b872dd146102ce57600080fd5b80630676c1b7146101d257806306fdde031461020f578063095ea7b31461023157600080fd5b366101cd57005b600080fd5b3480156101de57600080fd5b50600e546101f2906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561021b57600080fd5b50610224610575565b60405161020691906117e3565b34801561023d57600080fd5b5061025161024c366004611812565b610607565b6040519015158152602001610206565b34801561026d57600080fd5b50610277600c5481565b604051908152602001610206565b34801561029157600080fd5b506101f27f000000000000000000000000000000000000000000000000000000000000000081565b3480156102c557600080fd5b50600254610277565b3480156102da57600080fd5b506102516102e936600461183e565b610621565b3480156102fa57600080fd5b5060405160128152602001610206565b34801561031657600080fd5b5060105461025190600160a01b900460ff1681565b34801561033757600080fd5b50610251610346366004611812565b610645565b34801561035757600080fd5b506010546101f2906001600160a01b031681565b34801561037757600080fd5b50610224610667565b34801561038c57600080fd5b506101f27f000000000000000000000000000000000000000000000000000000000000000081565b3480156103c057600080fd5b506103d46103cf36600461187f565b6106c6565b005b3480156103e257600080fd5b506102776103f13660046118b8565b6001600160a01b031660009081526020819052604090205490565b34801561041857600080fd5b506103d461071a565b34801561042d57600080fd5b506103d461072e565b34801561044257600080fd5b50610277600a5481565b34801561045857600080fd5b506005546001600160a01b03166101f2565b34801561047657600080fd5b5061022461073e565b34801561048b57600080fd5b5061025161049a366004611812565b61074d565b3480156104ab57600080fd5b506102516104ba366004611812565b6107cd565b3480156104cb57600080fd5b50610277600b5481565b3480156104e157600080fd5b506103d46107db565b3480156104f657600080fd5b50600f546101f2906001600160a01b031681565b34801561051657600080fd5b5061027761052536600461187f565b6107eb565b34801561053657600080fd5b50610277600d5481565b34801561054c57600080fd5b506103d461055b3660046118b8565b610816565b34801561056c57600080fd5b506103d461088f565b606060038054610584906118d5565b80601f01602080910402602001604051908101604052809291908181526020018280546105b0906118d5565b80156105fd5780601f106105d2576101008083540402835291602001916105fd565b820191906000526020600020905b8154815290600101906020018083116105e057829003601f168201915b5050505050905090565b6000336106158185856108b8565b60019150505b92915050565b60003361062f8582856109dc565b61063a858585610a56565b506001949350505050565b60003361061581858561065883836107eb565b6106629190611925565b6108b8565b6010546040516060916000916001600160a01b039091169047908381818185875af1925050503d80600081146106b9576040519150601f19603f3d011682016040523d82523d6000602084013e6106be565b606091505b509392505050565b6106ce61130b565b600e80546001600160a01b039384166001600160a01b03199182168117909255600f8054939094169216919091179091556000908152601160205260409020805460ff19166001179055565b61072261130b565b61072c6000611365565b565b61073661130b565b600019600b55565b606060048054610584906118d5565b6000338161075b82866107eb565b9050838110156107c05760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61063a82868684036108b8565b600033610615818585610a56565b6107e361130b565b600019600a55565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61081e61130b565b6001600160a01b0381166108835760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107b7565b61088c81611365565b50565b61089761130b565b6010805460ff60a01b198116600160a01b9182900460ff1615909102179055565b6001600160a01b03831661091a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107b7565b6001600160a01b03821661097b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107b7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006109e884846107eb565b90506000198114610a505781811015610a435760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107b7565b610a5084848484036108b8565b50505050565b601054600160a01b900460ff1615610ab9576010546001600160a01b03163314610ab95760405162461bcd60e51b81526020600482015260146024820152732637b1b5b2b210313c903232bb32b637b832b91760611b60448201526064016107b7565b6001600160a01b038316610adf5760405162461bcd60e51b81526004016107b790611938565b6001600160a01b038216610b055760405162461bcd60e51b81526004016107b79061197d565b80610b25846001600160a01b031660009081526020819052604090205490565b1015610b435760405162461bcd60e51b81526004016107b7906119c0565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161480610bb457507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316145b8015610c405750600e60009054906101000a90046001600160a01b03166001600160a01b031663808c36336040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c329190611a06565b610c3d906002611a1f565b81115b8015610c565750601054600160a81b900460ff16155b156111cc577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614610e7a57600e546001600160a01b0316600090815260208190526040812054600f54600e546040516370a0823160e01b81526001600160a01b0391821660048201529293506000929116906370a0823190602401602060405180830381865afa158015610d01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d259190611a06565b600f60009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d9c9190611a06565b610da69190611a3e565b90506000600c5482600e60009054906101000a90046001600160a01b03166001600160a01b031663b01f3c5f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e259190611a06565b610e2f9190611a1f565b610e399190611925565b9050600c5481610e499190611925565b831115610e7657600e54600c54610e6b916001600160a01b03169030906113b7565b610e76600c546114a2565b5050505b6001600160a01b03831660009081526011602052604081205460ff1680610eb957506001600160a01b03831660009081526011602052604090205460ff165b15610ec55750806111c1565b600a54821115610f3d5760405162461bcd60e51b815260206004820152603960248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e740000000000000060648201526084016107b7565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b03160361100957600b546001600160a01b038416600090815260208190526040902054610f9c9084611925565b11156110095760405162461bcd60e51b815260206004820152603660248201527f45524332303a2062616c616e636520616d6f756e74206578636565646564206d604482015275185e081dd85b1b195d08185b5bdd5b9d081b1a5b5a5d60521b60648201526084016107b7565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b0316036110cd57600e546040805163b749403f60e01b815290516064926001600160a01b03169163b749403f9160048083019260209291908290030181865afa15801561108e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110b29190611a06565b6110bc9085611a1f565b6110c69190611a51565b905061118b565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b03160361118b57600e54604080516377ae0c0160e01b815290516064926001600160a01b0316916377ae0c019160048083019260209291908290030181865afa158015611150573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111749190611a06565b61117e9085611a1f565b6111889190611a51565b90505b80156111bb5761119b8184611a3e565b600e549092506111b69086906001600160a01b0316836113b7565b6111bf565b8291505b505b610a508484836113b7565b6001600160a01b03831660009081526011602052604090205460ff168061120b57506001600160a01b03821660009081526011602052604090205460ff165b156112205761121b8383836113b7565b505050565b600e60009054906101000a90046001600160a01b03166001600160a01b031663808c36336040518163ffffffff1660e01b8152600401602060405180830381865afa158015611273573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112979190611a06565b6112a2906002611a1f565b8111156113005760006064600d54836112bb9190611a1f565b6112c59190611a51565b905060006112d38284611a3e565b600e549091506112ee9086906001600160a01b0316846113b7565b6112f98585836113b7565b5050505050565b61121b8383836113b7565b6005546001600160a01b0316331461072c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107b7565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166113dd5760405162461bcd60e51b81526004016107b790611938565b6001600160a01b0382166114035760405162461bcd60e51b81526004016107b79061197d565b6001600160a01b0383166000908152602081905260409020548181101561143c5760405162461bcd60e51b81526004016107b7906119c0565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610a50565b6010805460ff60a81b1916600160a81b17905560006114c2600283611a51565b905060006114d08284611a3e565b9050476114dc83611508565b60006114e88247611a3e565b90506114f483826116b6565b50506010805460ff60a81b19169055505050565b6010805460ff60a81b1916600160a81b179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061155057611550611a73565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115ce573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115f29190611a89565b8160018151811061160557611605611a73565b6001600160a01b0392831660209182029290920101527f00000000000000000000000000000000000000000000000000000000000000001663791ac94783600084306116534261012c611925565b6040518663ffffffff1660e01b8152600401611673959493929190611aa6565b600060405180830381600087803b15801561168d57600080fd5b505af11580156116a1573d6000803e3d6000fd5b50506010805460ff60a81b1916905550505050565b6010805460ff60a81b1916600160a81b1790556001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663f305d7198230856000808361170b4261012c611925565b60405160e089901b6001600160e01b03191681526001600160a01b039687166004820152602481019590955260448501939093526064840191909152909216608482015260a481019190915260c40160606040518083038185885af1158015611778573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906114f49190611b17565b6000815180845260005b818110156117c3576020818501810151868301820152016117a7565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006117f6602083018461179d565b9392505050565b6001600160a01b038116811461088c57600080fd5b6000806040838503121561182557600080fd5b8235611830816117fd565b946020939093013593505050565b60008060006060848603121561185357600080fd5b833561185e816117fd565b9250602084013561186e816117fd565b929592945050506040919091013590565b6000806040838503121561189257600080fd5b823561189d816117fd565b915060208301356118ad816117fd565b809150509250929050565b6000602082840312156118ca57600080fd5b81356117f6816117fd565b600181811c908216806118e957607f821691505b60208210810361190957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561061b5761061b61190f565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b600060208284031215611a1857600080fd5b5051919050565b6000816000190483118215151615611a3957611a3961190f565b500290565b8181038181111561061b5761061b61190f565b600082611a6e57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611a9b57600080fd5b81516117f6816117fd565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611af65784516001600160a01b031683529383019391830191600101611ad1565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215611b2c57600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212205c56fd8768364fe987618165124feb23758748eb495b57d914928d1cb2b41bae64736f6c63430008100033000000000000000000000000758495749f64e5f2e8ed6b78792ca12c2ea79e17
Deployed Bytecode
0x6080604052600436106101c65760003560e01c806370a08231116100f7578063a9059cbb11610095578063dd62ed3e11610064578063dd62ed3e1461050a578063ddca3f431461052a578063f2fde38b14610540578063ff9413d81461056057600080fd5b8063a9059cbb1461049f578063aa4bde28146104bf578063cc8f60d9146104d5578063d46b82b9146104ea57600080fd5b80638c0b5e22116100d15780638c0b5e22146104365780638da5cb5b1461044c57806395d89b411461046a578063a457c2d71461047f57600080fd5b806370a08231146103d6578063715018a61461040c57806376cdf25c1461042157600080fd5b8063313ce567116101645780633ad10ef61161013e5780633ad10ef61461034b5780633ccfd60b1461036b57806349bd5a5e1461038057806353e4efc5146103b457600080fd5b8063313ce567146102ee5780633764863c1461030a578063395093511461032b57600080fd5b806310194de3116101a057806310194de3146102615780631694505e1461028557806318160ddd146102b957806323b872dd146102ce57600080fd5b80630676c1b7146101d257806306fdde031461020f578063095ea7b31461023157600080fd5b366101cd57005b600080fd5b3480156101de57600080fd5b50600e546101f2906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561021b57600080fd5b50610224610575565b60405161020691906117e3565b34801561023d57600080fd5b5061025161024c366004611812565b610607565b6040519015158152602001610206565b34801561026d57600080fd5b50610277600c5481565b604051908152602001610206565b34801561029157600080fd5b506101f27f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b3480156102c557600080fd5b50600254610277565b3480156102da57600080fd5b506102516102e936600461183e565b610621565b3480156102fa57600080fd5b5060405160128152602001610206565b34801561031657600080fd5b5060105461025190600160a01b900460ff1681565b34801561033757600080fd5b50610251610346366004611812565b610645565b34801561035757600080fd5b506010546101f2906001600160a01b031681565b34801561037757600080fd5b50610224610667565b34801561038c57600080fd5b506101f27f000000000000000000000000c4d52fb102a8b9391392820d9d87836116b09a1481565b3480156103c057600080fd5b506103d46103cf36600461187f565b6106c6565b005b3480156103e257600080fd5b506102776103f13660046118b8565b6001600160a01b031660009081526020819052604090205490565b34801561041857600080fd5b506103d461071a565b34801561042d57600080fd5b506103d461072e565b34801561044257600080fd5b50610277600a5481565b34801561045857600080fd5b506005546001600160a01b03166101f2565b34801561047657600080fd5b5061022461073e565b34801561048b57600080fd5b5061025161049a366004611812565b61074d565b3480156104ab57600080fd5b506102516104ba366004611812565b6107cd565b3480156104cb57600080fd5b50610277600b5481565b3480156104e157600080fd5b506103d46107db565b3480156104f657600080fd5b50600f546101f2906001600160a01b031681565b34801561051657600080fd5b5061027761052536600461187f565b6107eb565b34801561053657600080fd5b50610277600d5481565b34801561054c57600080fd5b506103d461055b3660046118b8565b610816565b34801561056c57600080fd5b506103d461088f565b606060038054610584906118d5565b80601f01602080910402602001604051908101604052809291908181526020018280546105b0906118d5565b80156105fd5780601f106105d2576101008083540402835291602001916105fd565b820191906000526020600020905b8154815290600101906020018083116105e057829003601f168201915b5050505050905090565b6000336106158185856108b8565b60019150505b92915050565b60003361062f8582856109dc565b61063a858585610a56565b506001949350505050565b60003361061581858561065883836107eb565b6106629190611925565b6108b8565b6010546040516060916000916001600160a01b039091169047908381818185875af1925050503d80600081146106b9576040519150601f19603f3d011682016040523d82523d6000602084013e6106be565b606091505b509392505050565b6106ce61130b565b600e80546001600160a01b039384166001600160a01b03199182168117909255600f8054939094169216919091179091556000908152601160205260409020805460ff19166001179055565b61072261130b565b61072c6000611365565b565b61073661130b565b600019600b55565b606060048054610584906118d5565b6000338161075b82866107eb565b9050838110156107c05760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61063a82868684036108b8565b600033610615818585610a56565b6107e361130b565b600019600a55565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61081e61130b565b6001600160a01b0381166108835760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107b7565b61088c81611365565b50565b61089761130b565b6010805460ff60a01b198116600160a01b9182900460ff1615909102179055565b6001600160a01b03831661091a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107b7565b6001600160a01b03821661097b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107b7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006109e884846107eb565b90506000198114610a505781811015610a435760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107b7565b610a5084848484036108b8565b50505050565b601054600160a01b900460ff1615610ab9576010546001600160a01b03163314610ab95760405162461bcd60e51b81526020600482015260146024820152732637b1b5b2b210313c903232bb32b637b832b91760611b60448201526064016107b7565b6001600160a01b038316610adf5760405162461bcd60e51b81526004016107b790611938565b6001600160a01b038216610b055760405162461bcd60e51b81526004016107b79061197d565b80610b25846001600160a01b031660009081526020819052604090205490565b1015610b435760405162461bcd60e51b81526004016107b7906119c0565b7f000000000000000000000000c4d52fb102a8b9391392820d9d87836116b09a146001600160a01b0316836001600160a01b03161480610bb457507f000000000000000000000000c4d52fb102a8b9391392820d9d87836116b09a146001600160a01b0316826001600160a01b0316145b8015610c405750600e60009054906101000a90046001600160a01b03166001600160a01b031663808c36336040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c329190611a06565b610c3d906002611a1f565b81115b8015610c565750601054600160a81b900460ff16155b156111cc577f000000000000000000000000c4d52fb102a8b9391392820d9d87836116b09a146001600160a01b0316836001600160a01b031614610e7a57600e546001600160a01b0316600090815260208190526040812054600f54600e546040516370a0823160e01b81526001600160a01b0391821660048201529293506000929116906370a0823190602401602060405180830381865afa158015610d01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d259190611a06565b600f60009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d9c9190611a06565b610da69190611a3e565b90506000600c5482600e60009054906101000a90046001600160a01b03166001600160a01b031663b01f3c5f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e259190611a06565b610e2f9190611a1f565b610e399190611925565b9050600c5481610e499190611925565b831115610e7657600e54600c54610e6b916001600160a01b03169030906113b7565b610e76600c546114a2565b5050505b6001600160a01b03831660009081526011602052604081205460ff1680610eb957506001600160a01b03831660009081526011602052604090205460ff165b15610ec55750806111c1565b600a54821115610f3d5760405162461bcd60e51b815260206004820152603960248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e740000000000000060648201526084016107b7565b7f000000000000000000000000c4d52fb102a8b9391392820d9d87836116b09a146001600160a01b0316846001600160a01b03160361100957600b546001600160a01b038416600090815260208190526040902054610f9c9084611925565b11156110095760405162461bcd60e51b815260206004820152603660248201527f45524332303a2062616c616e636520616d6f756e74206578636565646564206d604482015275185e081dd85b1b195d08185b5bdd5b9d081b1a5b5a5d60521b60648201526084016107b7565b60007f000000000000000000000000c4d52fb102a8b9391392820d9d87836116b09a146001600160a01b0316856001600160a01b0316036110cd57600e546040805163b749403f60e01b815290516064926001600160a01b03169163b749403f9160048083019260209291908290030181865afa15801561108e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110b29190611a06565b6110bc9085611a1f565b6110c69190611a51565b905061118b565b7f000000000000000000000000c4d52fb102a8b9391392820d9d87836116b09a146001600160a01b0316846001600160a01b03160361118b57600e54604080516377ae0c0160e01b815290516064926001600160a01b0316916377ae0c019160048083019260209291908290030181865afa158015611150573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111749190611a06565b61117e9085611a1f565b6111889190611a51565b90505b80156111bb5761119b8184611a3e565b600e549092506111b69086906001600160a01b0316836113b7565b6111bf565b8291505b505b610a508484836113b7565b6001600160a01b03831660009081526011602052604090205460ff168061120b57506001600160a01b03821660009081526011602052604090205460ff165b156112205761121b8383836113b7565b505050565b600e60009054906101000a90046001600160a01b03166001600160a01b031663808c36336040518163ffffffff1660e01b8152600401602060405180830381865afa158015611273573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112979190611a06565b6112a2906002611a1f565b8111156113005760006064600d54836112bb9190611a1f565b6112c59190611a51565b905060006112d38284611a3e565b600e549091506112ee9086906001600160a01b0316846113b7565b6112f98585836113b7565b5050505050565b61121b8383836113b7565b6005546001600160a01b0316331461072c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107b7565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166113dd5760405162461bcd60e51b81526004016107b790611938565b6001600160a01b0382166114035760405162461bcd60e51b81526004016107b79061197d565b6001600160a01b0383166000908152602081905260409020548181101561143c5760405162461bcd60e51b81526004016107b7906119c0565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610a50565b6010805460ff60a81b1916600160a81b17905560006114c2600283611a51565b905060006114d08284611a3e565b9050476114dc83611508565b60006114e88247611a3e565b90506114f483826116b6565b50506010805460ff60a81b19169055505050565b6010805460ff60a81b1916600160a81b179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061155057611550611a73565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115ce573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115f29190611a89565b8160018151811061160557611605611a73565b6001600160a01b0392831660209182029290920101527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d1663791ac94783600084306116534261012c611925565b6040518663ffffffff1660e01b8152600401611673959493929190611aa6565b600060405180830381600087803b15801561168d57600080fd5b505af11580156116a1573d6000803e3d6000fd5b50506010805460ff60a81b1916905550505050565b6010805460ff60a81b1916600160a81b1790556001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d1663f305d7198230856000808361170b4261012c611925565b60405160e089901b6001600160e01b03191681526001600160a01b039687166004820152602481019590955260448501939093526064840191909152909216608482015260a481019190915260c40160606040518083038185885af1158015611778573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906114f49190611b17565b6000815180845260005b818110156117c3576020818501810151868301820152016117a7565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006117f6602083018461179d565b9392505050565b6001600160a01b038116811461088c57600080fd5b6000806040838503121561182557600080fd5b8235611830816117fd565b946020939093013593505050565b60008060006060848603121561185357600080fd5b833561185e816117fd565b9250602084013561186e816117fd565b929592945050506040919091013590565b6000806040838503121561189257600080fd5b823561189d816117fd565b915060208301356118ad816117fd565b809150509250929050565b6000602082840312156118ca57600080fd5b81356117f6816117fd565b600181811c908216806118e957607f821691505b60208210810361190957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561061b5761061b61190f565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b600060208284031215611a1857600080fd5b5051919050565b6000816000190483118215151615611a3957611a3961190f565b500290565b8181038181111561061b5761061b61190f565b600082611a6e57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611a9b57600080fd5b81516117f6816117fd565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611af65784516001600160a01b031683529383019391830191600101611ad1565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215611b2c57600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212205c56fd8768364fe987618165124feb23758748eb495b57d914928d1cb2b41bae64736f6c63430008100033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000758495749f64e5f2e8ed6b78792ca12c2ea79e17
-----Decoded View---------------
Arg [0] : _devAddress (address): 0x758495749F64E5F2e8eD6b78792CA12c2Ea79E17
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000758495749f64e5f2e8ed6b78792ca12c2ea79e17
Deployed Bytecode Sourcemap
36869:6573:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37306:30;;;;;;;;;;-1:-1:-1;37306:30:0;;;;-1:-1:-1;;;;;37306:30:0;;;;;;-1:-1:-1;;;;;178:32:1;;;160:51;;148:2;133:18;37306:30:0;;;;;;;;8899:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;11250:201::-;;;;;;;;;;-1:-1:-1;11250:201:0;;;;;:::i;:::-;;:::i;:::-;;;1496:14:1;;1489:22;1471:41;;1459:2;1444:18;11250:201:0;1331:187:1;37208:58:0;;;;;;;;;;;;;;;;;;;1669:25:1;;;1657:2;1642:18;37208:58:0;1523:177:1;37477:116:0;;;;;;;;;;;;;;;10019:108;;;;;;;;;;-1:-1:-1;10107:12:0;;10019:108;;12031:295;;;;;;;;;;-1:-1:-1;12031:295:0;;;;;:::i;:::-;;:::i;9861:93::-;;;;;;;;;;-1:-1:-1;9861:93:0;;9944:2;2543:36:1;;2531:2;2516:18;9861:93:0;2401:184:1;37412:28:0;;;;;;;;;;-1:-1:-1;37412:28:0;;;;-1:-1:-1;;;37412:28:0;;;;;;12735:238;;;;;;;;;;-1:-1:-1;12735:238:0;;;;;:::i;:::-;;:::i;37378:25::-;;;;;;;;;;-1:-1:-1;37378:25:0;;;;-1:-1:-1;;;;;37378:25:0;;;43232:162;;;;;;;;;;;;;:::i;37600:38::-;;;;;;;;;;;;;;;42688:238;;;;;;;;;;-1:-1:-1;42688:238:0;;;;;:::i;:::-;;:::i;:::-;;10190:127;;;;;;;;;;-1:-1:-1;10190:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10291:18:0;10264:7;10291:18;;;;;;;;;;;;10190:127;2575:103;;;;;;;;;;;;;:::i;43035:101::-;;;;;;;;;;;;;:::i;37083:53::-;;;;;;;;;;;;;;;;1927:87;;;;;;;;;;-1:-1:-1;2000:6:0;;-1:-1:-1;;;;;2000:6:0;1927:87;;9118:104;;;;;;;;;;;;;:::i;13476:436::-;;;;;;;;;;-1:-1:-1;13476:436:0;;;;;:::i;:::-;;:::i;10523:193::-;;;;;;;;;;-1:-1:-1;10523:193:0;;;;;:::i;:::-;;:::i;37143:58::-;;;;;;;;;;;;;;;;42934:93;;;;;;;;;;;;;:::i;37343:26::-;;;;;;;;;;-1:-1:-1;37343:26:0;;;;-1:-1:-1;;;;;37343:26:0;;;10779:151;;;;;;;;;;-1:-1:-1;10779:151:0;;;;;:::i;:::-;;:::i;37273:22::-;;;;;;;;;;;;;;;;2833:201;;;;;;;;;;-1:-1:-1;2833:201:0;;;;;:::i;:::-;;:::i;43144:80::-;;;;;;;;;;;;;:::i;8899:100::-;8953:13;8986:5;8979:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8899:100;:::o;11250:201::-;11333:4;712:10;11389:32;712:10;11405:7;11414:6;11389:8;:32::i;:::-;11439:4;11432:11;;;11250:201;;;;;:::o;12031:295::-;12162:4;712:10;12220:38;12236:4;712:10;12251:6;12220:15;:38::i;:::-;12269:27;12279:4;12285:2;12289:6;12269:9;:27::i;:::-;-1:-1:-1;12314:4:0;;12031:295;-1:-1:-1;;;;12031:295:0:o;12735:238::-;12823:4;712:10;12879:64;712:10;12895:7;12932:10;12904:25;712:10;12895:7;12904:9;:25::i;:::-;:38;;;;:::i;:::-;12879:8;:64::i;43232:162::-;43315:10;;:49;;43267:12;;43294:17;;-1:-1:-1;;;;;43315:10:0;;;;43338:21;;43294:17;43315:49;43294:17;43315:49;43338:21;43315:10;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43291:73:0;43232:162;-1:-1:-1;;;43232:162:0:o;42688:238::-;1813:13;:11;:13::i;:::-;42797:15:::1;:34:::0;;-1:-1:-1;;;;;42797:34:0;;::::1;-1:-1:-1::0;;;;;;42797:34:0;;::::1;::::0;::::1;::::0;;;42842:11:::1;:23:::0;;;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;42797:15:::1;42876:35:::0;;;:18:::1;:35;::::0;;;;:42;;-1:-1:-1;;42876:42:0::1;42797:34:::0;42876:42:::1;::::0;;42688:238::o;2575:103::-;1813:13;:11;:13::i;:::-;2640:30:::1;2667:1;2640:18;:30::i;:::-;2575:103::o:0;43035:101::-;1813:13;:11;:13::i;:::-;-1:-1:-1;;43093:15:0::1;:35:::0;43035:101::o;9118:104::-;9174:13;9207:7;9200:14;;;;;:::i;13476:436::-;13569:4;712:10;13569:4;13652:25;712:10;13669:7;13652:9;:25::i;:::-;13625:52;;13716:15;13696:16;:35;;13688:85;;;;-1:-1:-1;;;13688:85:0;;4517:2:1;13688:85:0;;;4499:21:1;4556:2;4536:18;;;4529:30;4595:34;4575:18;;;4568:62;-1:-1:-1;;;4646:18:1;;;4639:35;4691:19;;13688:85:0;;;;;;;;;13809:60;13818:5;13825:7;13853:15;13834:16;:34;13809:8;:60::i;10523:193::-;10602:4;712:10;10658:28;712:10;10675:2;10679:6;10658:9;:28::i;42934:93::-;1813:13;:11;:13::i;:::-;-1:-1:-1;;42988:11:0::1;:31:::0;42934:93::o;10779:151::-;-1:-1:-1;;;;;10895:18:0;;;10868:7;10895:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10779:151::o;2833:201::-;1813:13;:11;:13::i;:::-;-1:-1:-1;;;;;2922:22:0;::::1;2914:73;;;::::0;-1:-1:-1;;;2914:73:0;;4923:2:1;2914:73:0::1;::::0;::::1;4905:21:1::0;4962:2;4942:18;;;4935:30;5001:34;4981:18;;;4974:62;-1:-1:-1;;;5052:18:1;;;5045:36;5098:19;;2914:73:0::1;4721:402:1::0;2914:73:0::1;2998:28;3017:8;2998:18;:28::i;:::-;2833:201:::0;:::o;43144:80::-;1813:13;:11;:13::i;:::-;43207:9:::1;::::0;;-1:-1:-1;;;;43194:22:0;::::1;-1:-1:-1::0;;;43207:9:0;;;::::1;;;43206:10;43194:22:::0;;::::1;;::::0;;43144:80::o;17503:380::-;-1:-1:-1;;;;;17639:19:0;;17631:68;;;;-1:-1:-1;;;17631:68:0;;5330:2:1;17631:68:0;;;5312:21:1;5369:2;5349:18;;;5342:30;5408:34;5388:18;;;5381:62;-1:-1:-1;;;5459:18:1;;;5452:34;5503:19;;17631:68:0;5128:400:1;17631:68:0;-1:-1:-1;;;;;17718:21:0;;17710:68;;;;-1:-1:-1;;;17710:68:0;;5735:2:1;17710:68:0;;;5717:21:1;5774:2;5754:18;;;5747:30;5813:34;5793:18;;;5786:62;-1:-1:-1;;;5864:18:1;;;5857:32;5906:19;;17710:68:0;5533:398:1;17710:68:0;-1:-1:-1;;;;;17791:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17843:32;;1669:25:1;;;17843:32:0;;1642:18:1;17843:32:0;;;;;;;17503:380;;;:::o;18174:453::-;18309:24;18336:25;18346:5;18353:7;18336:9;:25::i;:::-;18309:52;;-1:-1:-1;;18376:16:0;:37;18372:248;;18458:6;18438:16;:26;;18430:68;;;;-1:-1:-1;;;18430:68:0;;6138:2:1;18430:68:0;;;6120:21:1;6177:2;6157:18;;;6150:30;6216:31;6196:18;;;6189:59;6265:18;;18430:68:0;5936:353:1;18430:68:0;18542:51;18551:5;18558:7;18586:6;18567:16;:25;18542:8;:51::i;:::-;18298:329;18174:453;;;:::o;38585:2942::-;37741:9;;-1:-1:-1;;;37741:9:0;;;;37737:116;;;37806:10;;-1:-1:-1;;;;;37806:10:0;37792;:24;37766:75;;;;-1:-1:-1;;;37766:75:0;;6496:2:1;37766:75:0;;;6478:21:1;6535:2;6515:18;;;6508:30;-1:-1:-1;;;6554:18:1;;;6547:50;6614:18;;37766:75:0;6294:344:1;37766:75:0;-1:-1:-1;;;;;38693:18:0;::::1;38685:68;;;;-1:-1:-1::0;;;38685:68:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;38772:16:0;::::1;38764:64;;;;-1:-1:-1::0;;;38764:64:0::1;;;;;;;:::i;:::-;38866:6;38847:15;38857:4;-1:-1:-1::0;;;;;10291:18:0;10264:7;10291:18;;;;;;;;;;;;10190:127;38847:15:::1;:25;;38839:76;;;;-1:-1:-1::0;;;38839:76:0::1;;;;;;;:::i;:::-;38953:13;-1:-1:-1::0;;;;;38945:21:0::1;:4;-1:-1:-1::0;;;;;38945:21:0::1;;:44;;;;38976:13;-1:-1:-1::0;;;;;38970:19:0::1;:2;-1:-1:-1::0;;;;;38970:19:0::1;;38945:44;38944:124;;;;;39026:15;;;;;;;;;-1:-1:-1::0;;;;;39026:15:0::1;-1:-1:-1::0;;;;;39016:46:0::1;;:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:52;::::0;39067:1:::1;39016:52;:::i;:::-;39007:6;:61;38944:124;:158;;;;-1:-1:-1::0;39086:16:0::1;::::0;-1:-1:-1;;;39086:16:0;::::1;;;39085:17;38944:158;38926:2594;;;39131:13;-1:-1:-1::0;;;;;39123:21:0::1;:4;-1:-1:-1::0;;;;;39123:21:0::1;;39119:595;;39201:15;::::0;-1:-1:-1;;;;;39201:15:0::1;39165:23;10291:18:::0;;;;;;;;;;;39302:11:::1;::::0;39325:15:::1;::::0;39294:47:::1;::::0;-1:-1:-1;;;39294:47:0;;-1:-1:-1;;;;;39325:15:0;;::::1;39294:47;::::0;::::1;160:51:1::0;39165:52:0;;-1:-1:-1;39236:17:0::1;::::0;39302:11;::::1;::::0;39294:30:::1;::::0;133:18:1;;39294:47:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39265:11;;;;;;;;;-1:-1:-1::0;;;;;39265:11:0::1;-1:-1:-1::0;;;;;39256:33:0::1;;:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:85;;;;:::i;:::-;39236:105;;39360:20;39449:15;;39436:9;39394:15;;;;;;;;;-1:-1:-1::0;;;;;39394:15:0::1;-1:-1:-1::0;;;;;39384:47:0::1;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:61;;;;:::i;:::-;39383:81;;;;:::i;:::-;39360:104;;39520:15;;39505:12;:30;;;;:::i;:::-;39487:15;:48;39483:216;;;39576:15;::::0;39608::::1;::::0;39560:64:::1;::::0;-1:-1:-1;;;;;39576:15:0::1;::::0;39601:4:::1;::::0;39560:15:::1;:64::i;:::-;39647:32;39663:15;;39647;:32::i;:::-;39146:568;;;39119:595;-1:-1:-1::0;;;;;39771:24:0;::::1;39730:22;39771:24:::0;;;:18:::1;:24;::::0;;;;;::::1;;::::0;:50:::1;;-1:-1:-1::0;;;;;;39799:22:0;::::1;;::::0;;;:18:::1;:22;::::0;;;;;::::1;;39771:50;39767:1100;;;-1:-1:-1::0;39859:6:0;39767:1100:::1;;;39924:11;;39914:6;:21;;39906:91;;;::::0;-1:-1:-1;;;39906:91:0;;8557:2:1;39906:91:0::1;::::0;::::1;8539:21:1::0;8596:2;8576:18;;;8569:30;8635:34;8615:18;;;8608:62;8706:27;8686:18;;;8679:55;8751:19;;39906:91:0::1;8355:421:1::0;39906:91:0::1;40028:13;-1:-1:-1::0;;;;;40020:21:0::1;:4;-1:-1:-1::0;;;;;40020:21:0::1;::::0;40016:180:::1;;40102:15;::::0;-1:-1:-1;;;;;10291:18:0;;10264:7;10291:18;;;;;;;;;;;40075:22:::1;::::0;:6;:22:::1;:::i;:::-;40074:43;;40066:110;;;::::0;-1:-1:-1;;;40066:110:0;;8983:2:1;40066:110:0::1;::::0;::::1;8965:21:1::0;9022:2;9002:18;;;8995:30;9061:34;9041:18;;;9034:62;-1:-1:-1;;;9112:18:1;;;9105:52;9174:19;;40066:110:0::1;8781:418:1::0;40066:110:0::1;40216:22;40268:13;-1:-1:-1::0;;;;;40260:21:0::1;:4;-1:-1:-1::0;;;;;40260:21:0::1;::::0;40257:310:::1;;40343:15;::::0;40333:50:::1;::::0;;-1:-1:-1;;;40333:50:0;;;;40386:3:::1;::::0;-1:-1:-1;;;;;40343:15:0::1;::::0;40333:48:::1;::::0;:50:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;40343:15;40333:50:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40324:59;::::0;:6;:59:::1;:::i;:::-;:65;;;;:::i;:::-;40306:84;;40257:310;;;40425:13;-1:-1:-1::0;;;;;40419:19:0::1;:2;-1:-1:-1::0;;;;;40419:19:0::1;::::0;40415:152:::1;;40499:15;::::0;40489:51:::1;::::0;;-1:-1:-1;;;40489:51:0;;;;40543:3:::1;::::0;-1:-1:-1;;;;;40499:15:0::1;::::0;40489:49:::1;::::0;:51:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;40499:15;40489:51:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40480:60;::::0;:6;:60:::1;:::i;:::-;:66;;;;:::i;:::-;40462:85;;40415:152;40597:19:::0;;40593:257:::1;;40658:23;40667:14:::0;40658:6;:23:::1;:::i;:::-;40726:15;::::0;40641:40;;-1:-1:-1;40704:54:0::1;::::0;40720:4;;-1:-1:-1;;;;;40726:15:0::1;40743:14:::0;40704:15:::1;:54::i;:::-;40593:257;;;40824:6;40807:23;;40593:257;39887:980;39767:1100;40881:41;40897:4;40903:2;40907:14;40881:15;:41::i;38926:2594::-;-1:-1:-1::0;;;;;40963:24:0;::::1;;::::0;;;:18:::1;:24;::::0;;;;;::::1;;::::0;:50:::1;;-1:-1:-1::0;;;;;;40991:22:0;::::1;;::::0;;;:18:::1;:22;::::0;;;;;::::1;;40963:50;40959:550;;;41034:33;41050:4;41056:2;41060:6;41034:15;:33::i;:::-;38585:2942:::0;;;:::o;40959:550::-:1;41112:15;;;;;;;;;-1:-1:-1::0;;;;;41112:15:0::1;-1:-1:-1::0;;;;;41102:46:0::1;;:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:52;::::0;41153:1:::1;41102:52;:::i;:::-;41093:6;:61;41089:420;;;41175:22;41216:3;41210;;41201:6;:12;;;;:::i;:::-;:18;;;;:::i;:::-;41175:45:::0;-1:-1:-1;41239:22:0::1;41264:23;41175:45:::0;41264:6;:23:::1;:::i;:::-;41328:15;::::0;41239:48;;-1:-1:-1;41306:54:0::1;::::0;41322:4;;-1:-1:-1;;;;;41328:15:0::1;41345:14:::0;41306:15:::1;:54::i;:::-;41379:41;41395:4;41401:2;41405:14;41379:15;:41::i;:::-;41156:280;;38585:2942:::0;;;:::o;41089:420::-:1;41460:33;41476:4;41482:2;41486:6;41460:15;:33::i;2092:132::-:0;2000:6;;-1:-1:-1;;;;;2000:6:0;712:10;2156:23;2148:68;;;;-1:-1:-1;;;2148:68:0;;9628:2:1;2148:68:0;;;9610:21:1;;;9647:18;;;9640:30;9706:34;9686:18;;;9679:62;9758:18;;2148:68:0;9426:356:1;3194:191:0;3287:6;;;-1:-1:-1;;;;;3304:17:0;;;-1:-1:-1;;;;;;3304:17:0;;;;;;;3337:40;;3287:6;;;3304:17;3287:6;;3337:40;;3268:16;;3337:40;3257:128;3194:191;:::o;14382:840::-;-1:-1:-1;;;;;14513:18:0;;14505:68;;;;-1:-1:-1;;;14505:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14592:16:0;;14584:64;;;;-1:-1:-1;;;14584:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14734:15:0;;14712:19;14734:15;;;;;;;;;;;14768:21;;;;14760:72;;;;-1:-1:-1;;;14760:72:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14868:15:0;;;:9;:15;;;;;;;;;;;14886:20;;;14868:38;;15086:13;;;;;;;;;;:23;;;;;;15138:26;;1669:25:1;;;15086:13:0;;15138:26;;1642:18:1;15138:26:0;;;;;;;15177:37;38585:2942;41535:385;37914:16;:23;;-1:-1:-1;;;;37914:23:0;-1:-1:-1;;;37914:23:0;;;;41629:16:::1;41644:1;41629:12:::0;:16:::1;:::i;:::-;41613:33:::0;-1:-1:-1;41657:17:0::1;41678:19;41613:33:::0;41678:12;:19:::1;:::i;:::-;41657:41:::0;-1:-1:-1;41734:21:0::1;41768:23;41786:4:::0;41768:17:::1;:23::i;:::-;41804:18;41826:38;41850:14:::0;41826:21:::1;:38;:::i;:::-;41804:61;;41876:36;41890:9;41901:10;41876:13;:36::i;:::-;-1:-1:-1::0;;37960:16:0;:24;;-1:-1:-1;;;;37960:24:0;;;-1:-1:-1;;;41535:385:0:o;41928:425::-;37914:16;:23;;-1:-1:-1;;;;37914:23:0;-1:-1:-1;;;37914:23:0;;;42032:16:::1;::::0;;42046:1:::1;42032:16:::0;;;;;::::1;::::0;;-1:-1:-1;;42032:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;42032:16:0::1;42008:40;;42077:4;42059;42064:1;42059:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1::0;;;;;42059:23:0::1;;;-1:-1:-1::0;;;;;42059:23:0::1;;;::::0;::::1;42103:15;-1:-1:-1::0;;;;;42103:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42093:4;42098:1;42093:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;42093:32:0;;::::1;:7;::::0;;::::1;::::0;;;;;:32;42140:15:::1;:66;;42221:12:::0;42248:1:::1;42264:4:::0;42291::::1;42312:21;:15;42330:3;42312:21;:::i;:::-;42140:205;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;37960:16:0;:24;;-1:-1:-1;;;;37960:24:0;;;-1:-1:-1;;;;41928:425:0:o;42361:319::-;37914:16;:23;;-1:-1:-1;;;;37914:23:0;-1:-1:-1;;;37914:23:0;;;-1:-1:-1;;;;;42457:15:0::1;:31;;42497:10:::0;42531:4:::1;42551:12:::0;37914:23;;42531:4;42639:21:::1;:15;42657:3;42639:21;:::i;:::-;42457:215;::::0;::::1;::::0;;;-1:-1:-1;;;;;;42457:215:0;;;-1:-1:-1;;;;;11651:15:1;;;42457:215:0::1;::::0;::::1;11633:34:1::0;11683:18;;;11676:34;;;;11726:18;;;11719:34;;;;11769:18;;;11762:34;;;;11833:15;;;11812:19;;;11805:44;11865:19;;;11858:35;;;;11567:19;;42457:215:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;222:423:1:-:0;264:3;302:5;296:12;329:6;324:3;317:19;354:1;364:162;378:6;375:1;372:13;364:162;;;440:4;496:13;;;492:22;;486:29;468:11;;;464:20;;457:59;393:12;364:162;;;368:3;571:1;564:4;555:6;550:3;546:16;542:27;535:38;634:4;627:2;623:7;618:2;610:6;606:15;602:29;597:3;593:39;589:50;582:57;;;222:423;;;;:::o;650:220::-;799:2;788:9;781:21;762:4;819:45;860:2;849:9;845:18;837:6;819:45;:::i;:::-;811:53;650:220;-1:-1:-1;;;650:220:1:o;875:131::-;-1:-1:-1;;;;;950:31:1;;940:42;;930:70;;996:1;993;986:12;1011:315;1079:6;1087;1140:2;1128:9;1119:7;1115:23;1111:32;1108:52;;;1156:1;1153;1146:12;1108:52;1195:9;1182:23;1214:31;1239:5;1214:31;:::i;:::-;1264:5;1316:2;1301:18;;;;1288:32;;-1:-1:-1;;;1011:315:1:o;1940:456::-;2017:6;2025;2033;2086:2;2074:9;2065:7;2061:23;2057:32;2054:52;;;2102:1;2099;2092:12;2054:52;2141:9;2128:23;2160:31;2185:5;2160:31;:::i;:::-;2210:5;-1:-1:-1;2267:2:1;2252:18;;2239:32;2280:33;2239:32;2280:33;:::i;:::-;1940:456;;2332:7;;-1:-1:-1;;;2386:2:1;2371:18;;;;2358:32;;1940:456::o;2813:388::-;2881:6;2889;2942:2;2930:9;2921:7;2917:23;2913:32;2910:52;;;2958:1;2955;2948:12;2910:52;2997:9;2984:23;3016:31;3041:5;3016:31;:::i;:::-;3066:5;-1:-1:-1;3123:2:1;3108:18;;3095:32;3136:33;3095:32;3136:33;:::i;:::-;3188:7;3178:17;;;2813:388;;;;;:::o;3206:247::-;3265:6;3318:2;3306:9;3297:7;3293:23;3289:32;3286:52;;;3334:1;3331;3324:12;3286:52;3373:9;3360:23;3392:31;3417:5;3392:31;:::i;3458:380::-;3537:1;3533:12;;;;3580;;;3601:61;;3655:4;3647:6;3643:17;3633:27;;3601:61;3708:2;3700:6;3697:14;3677:18;3674:38;3671:161;;3754:10;3749:3;3745:20;3742:1;3735:31;3789:4;3786:1;3779:15;3817:4;3814:1;3807:15;3671:161;;3458:380;;;:::o;3843:127::-;3904:10;3899:3;3895:20;3892:1;3885:31;3935:4;3932:1;3925:15;3959:4;3956:1;3949:15;3975:125;4040:9;;;4061:10;;;4058:36;;;4074:18;;:::i;6643:401::-;6845:2;6827:21;;;6884:2;6864:18;;;6857:30;6923:34;6918:2;6903:18;;6896:62;-1:-1:-1;;;6989:2:1;6974:18;;6967:35;7034:3;7019:19;;6643:401::o;7049:399::-;7251:2;7233:21;;;7290:2;7270:18;;;7263:30;7329:34;7324:2;7309:18;;7302:62;-1:-1:-1;;;7395:2:1;7380:18;;7373:33;7438:3;7423:19;;7049:399::o;7453:402::-;7655:2;7637:21;;;7694:2;7674:18;;;7667:30;7733:34;7728:2;7713:18;;7706:62;-1:-1:-1;;;7799:2:1;7784:18;;7777:36;7845:3;7830:19;;7453:402::o;7860:184::-;7930:6;7983:2;7971:9;7962:7;7958:23;7954:32;7951:52;;;7999:1;7996;7989:12;7951:52;-1:-1:-1;8022:16:1;;7860:184;-1:-1:-1;7860:184:1:o;8049:168::-;8089:7;8155:1;8151;8147:6;8143:14;8140:1;8137:21;8132:1;8125:9;8118:17;8114:45;8111:71;;;8162:18;;:::i;:::-;-1:-1:-1;8202:9:1;;8049:168::o;8222:128::-;8289:9;;;8310:11;;;8307:37;;;8324:18;;:::i;9204:217::-;9244:1;9270;9260:132;;9314:10;9309:3;9305:20;9302:1;9295:31;9349:4;9346:1;9339:15;9377:4;9374:1;9367:15;9260:132;-1:-1:-1;9406:9:1;;9204:217::o;9919:127::-;9980:10;9975:3;9971:20;9968:1;9961:31;10011:4;10008:1;10001:15;10035:4;10032:1;10025:15;10051:251;10121:6;10174:2;10162:9;10153:7;10149:23;10145:32;10142:52;;;10190:1;10187;10180:12;10142:52;10222:9;10216:16;10241:31;10266:5;10241:31;:::i;10307:980::-;10569:4;10617:3;10606:9;10602:19;10648:6;10637:9;10630:25;10674:2;10712:6;10707:2;10696:9;10692:18;10685:34;10755:3;10750:2;10739:9;10735:18;10728:31;10779:6;10814;10808:13;10845:6;10837;10830:22;10883:3;10872:9;10868:19;10861:26;;10922:2;10914:6;10910:15;10896:29;;10943:1;10953:195;10967:6;10964:1;10961:13;10953:195;;;11032:13;;-1:-1:-1;;;;;11028:39:1;11016:52;;11123:15;;;;11088:12;;;;11064:1;10982:9;10953:195;;;-1:-1:-1;;;;;;;11204:32:1;;;;11199:2;11184:18;;11177:60;-1:-1:-1;;;11268:3:1;11253:19;11246:35;11165:3;10307:980;-1:-1:-1;;;10307:980:1:o;11904:306::-;11992:6;12000;12008;12061:2;12049:9;12040:7;12036:23;12032:32;12029:52;;;12077:1;12074;12067:12;12029:52;12106:9;12100:16;12090:26;;12156:2;12145:9;12141:18;12135:25;12125:35;;12200:2;12189:9;12185:18;12179:25;12169:35;;11904:306;;;;;:::o
Swarm Source
ipfs://5c56fd8768364fe987618165124feb23758748eb495b57d914928d1cb2b41bae
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.