Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
100,000,000 TWOPAW
Holders
444
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
30,000.000000378305658772 TWOPAWValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PawToken
Compiler Version
v0.8.16+commit.07a7930e
Optimization Enabled:
Yes with 1000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.16; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol"; import "../interfaces/IERC721A.sol"; // https://twitter.com/TwoPawsDefi // https://twopaws.io/ //TOKENOMIC TOKEN TWOPAW. //Total supply 100M //Add uniswap 75% supply token / 4 ETH, 25% team . //LP token Burn (0) address. //Tax: buy and sales of TWOPAW over 80k are taxed at 20%; transfers over 80k are taxed at 1%. //No tax on buy and sales and transfer of < 80k TWOPAW. //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 2PAW token from buy and sales of the token and NFT buy/sell itself, stimulating orders. //NFT Buy 40000 TWOPAW / Sell 30000 TWOPAW //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 PawToken is ERC20, Ownable { string private _name = "TWOPAW Token"; string private _symbol = "TWOPAW"; 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 = 1; 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 { } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @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); }
// SPDX-License-Identifier: MIT 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; }
// SPDX-License-Identifier: MIT 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; }
// SPDX-License-Identifier: MIT 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); }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; 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; }
// SPDX-License-Identifier: MIT 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; }
{ "optimizer": { "enabled": true, "runs": 1000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
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
610100604052600c60c09081526b2a2ba7a820ab902a37b5b2b760a11b60e0526006906200002e9082620007ec565b5060408051808201909152600681526554574f50415760d01b60208201526007906200005b9082620007ec565b506008805460ff191660129081179091556305f5e1006009556200008190600a620009cd565b62000090906203d090620009e5565b600a908155600854620000a99160ff90911690620009cd565b620000b890620f4240620009e5565b600b55600854620000ce9060ff16600a620009cd565b620000dd90622625a0620009e5565b600c556001600d556010805460ff60a01b1916600160a01b179055737a250d5630b4cf539739df2c5dacb4c659f2488d6080523480156200011d57600080fd5b506040516200281e3803806200281e833981016040819052620001409162000a07565b600680546200014f906200075e565b80601f01602080910402602001604051908101604052809291908181526020018280546200017d906200075e565b8015620001ce5780601f10620001a257610100808354040283529160200191620001ce565b820191906000526020600020905b815481529060010190602001808311620001b057829003601f168201915b505050505060078054620001e2906200075e565b80601f016020809104026020016040519081016040528092919081815260200182805462000210906200075e565b8015620002615780601f10620002355761010080835404028352916020019162000261565b820191906000526020600020905b8154815290600101906020018083116200024357829003601f168201915b50505050508160039081620002779190620007ec565b506004620002868282620007ec565b505050620002a36200029d620004fe60201b60201c565b62000502565b600854620002d3908290620002bd9060ff16600a620009cd565b620002cd906305f5e100620009e5565b62000554565b80601060006101000a8154816001600160a01b0302191690836001600160a01b031602179055506080516001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200033b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000361919062000a07565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003b1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003d7919062000a07565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000425573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200044b919062000a07565b6001600160a01b031660a0526080516200046a9030906000196200061b565b6080516001600160a01b0390811660009081526011602081905260408083208054600160ff199182168117909255308552828520805482168317905560105490951684529083208054909416811790935590620004cf6005546001600160a01b031690565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555062000a48565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620005b05760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060026000828254620005c4919062000a32565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0383166200067f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401620005a7565b6001600160a01b038216620006e25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401620005a7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200077357607f821691505b6020821081036200079457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200074357600081815260208120601f850160051c81016020861015620007c35750805b601f850160051c820191505b81811015620007e457828155600101620007cf565b505050505050565b81516001600160401b0381111562000808576200080862000748565b62000820816200081984546200075e565b846200079a565b602080601f8311600181146200085857600084156200083f5750858301515b600019600386901b1c1916600185901b178555620007e4565b600085815260208120601f198616915b82811015620008895788860151825594840194600190910190840162000868565b5085821015620008a85787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200090f578160001904821115620008f357620008f3620008b8565b808516156200090157918102915b93841c9390800290620008d3565b509250929050565b6000826200092857506001620009c7565b816200093757506000620009c7565b81600181146200095057600281146200095b576200097b565b6001915050620009c7565b60ff8411156200096f576200096f620008b8565b50506001821b620009c7565b5060208310610133831016604e8410600b8410161715620009a0575081810a620009c7565b620009ac8383620008ce565b8060001904821115620009c357620009c3620008b8565b0290505b92915050565b6000620009de60ff84168362000917565b9392505050565b600081600019048311821515161562000a025762000a02620008b8565b500290565b60006020828403121562000a1a57600080fd5b81516001600160a01b0381168114620009de57600080fd5b80820180821115620009c757620009c7620008b8565b60805160a051611d7162000aad6000396000818161039201528181610cd901528181610d1401528181610df1015281816110ec015281816111c1015261129c0152600081816102970152818161181e015281816118c9015261197f0152611d716000f3fe6080604052600436106101c65760003560e01c806370a08231116100f7578063a9059cbb11610095578063dd62ed3e11610064578063dd62ed3e1461050a578063ddca3f4314610550578063f2fde38b14610566578063ff9413d81461058657600080fd5b8063a9059cbb1461049f578063aa4bde28146104bf578063cc8f60d9146104d5578063d46b82b9146104ea57600080fd5b80638c0b5e22116100d15780638c0b5e22146104365780638da5cb5b1461044c57806395d89b411461046a578063a457c2d71461047f57600080fd5b806370a08231146103d6578063715018a61461040c57806376cdf25c1461042157600080fd5b8063313ce567116101645780633ad10ef61161013e5780633ad10ef61461034b5780633ccfd60b1461036b57806349bd5a5e1461038057806353e4efc5146103b457600080fd5b8063313ce567146102ee5780633764863c1461030a578063395093511461032b57600080fd5b806310194de3116101a057806310194de3146102615780631694505e1461028557806318160ddd146102b957806323b872dd146102ce57600080fd5b80630676c1b7146101d257806306fdde031461020f578063095ea7b31461023157600080fd5b366101cd57005b600080fd5b3480156101de57600080fd5b50600e546101f2906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561021b57600080fd5b5061022461059b565b6040516102069190611aa7565b34801561023d57600080fd5b5061025161024c366004611ad6565b61062d565b6040519015158152602001610206565b34801561026d57600080fd5b50610277600c5481565b604051908152602001610206565b34801561029157600080fd5b506101f27f000000000000000000000000000000000000000000000000000000000000000081565b3480156102c557600080fd5b50600254610277565b3480156102da57600080fd5b506102516102e9366004611b02565b610647565b3480156102fa57600080fd5b5060405160128152602001610206565b34801561031657600080fd5b5060105461025190600160a01b900460ff1681565b34801561033757600080fd5b50610251610346366004611ad6565b61066b565b34801561035757600080fd5b506010546101f2906001600160a01b031681565b34801561037757600080fd5b506102246106aa565b34801561038c57600080fd5b506101f27f000000000000000000000000000000000000000000000000000000000000000081565b3480156103c057600080fd5b506103d46103cf366004611b43565b610709565b005b3480156103e257600080fd5b506102776103f1366004611b7c565b6001600160a01b031660009081526020819052604090205490565b34801561041857600080fd5b506103d461076a565b34801561042d57600080fd5b506103d461077e565b34801561044257600080fd5b50610277600a5481565b34801561045857600080fd5b506005546001600160a01b03166101f2565b34801561047657600080fd5b5061022461078e565b34801561048b57600080fd5b5061025161049a366004611ad6565b61079d565b3480156104ab57600080fd5b506102516104ba366004611ad6565b61084c565b3480156104cb57600080fd5b50610277600b5481565b3480156104e157600080fd5b506103d461085a565b3480156104f657600080fd5b50600f546101f2906001600160a01b031681565b34801561051657600080fd5b50610277610525366004611b43565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561055c57600080fd5b50610277600d5481565b34801561057257600080fd5b506103d4610581366004611b7c565b61086a565b34801561059257600080fd5b506103d46108fa565b6060600380546105aa90611b99565b80601f01602080910402602001604051908101604052809291908181526020018280546105d690611b99565b80156106235780601f106105f857610100808354040283529160200191610623565b820191906000526020600020905b81548152906001019060200180831161060657829003601f168201915b5050505050905090565b60003361063b81858561093e565b60019150505b92915050565b600033610655858285610a96565b610660858585610b28565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061063b90829086906106a5908790611be9565b61093e565b6010546040516060916000916001600160a01b039091169047908381818185875af1925050503d80600081146106fc576040519150601f19603f3d011682016040523d82523d6000602084013e610701565b606091505b509392505050565b6107116114f1565b600e80546001600160a01b0393841673ffffffffffffffffffffffffffffffffffffffff199182168117909255600f8054939094169216919091179091556000908152601160205260409020805460ff19166001179055565b6107726114f1565b61077c600061154b565b565b6107866114f1565b600019600b55565b6060600480546105aa90611b99565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091908381101561083f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b610660828686840361093e565b60003361063b818585610b28565b6108626114f1565b600019600a55565b6108726114f1565b6001600160a01b0381166108ee5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610836565b6108f78161154b565b50565b6109026114f1565b601080547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff8116600160a01b9182900460ff1615909102179055565b6001600160a01b0383166109b95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610836565b6001600160a01b038216610a355760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610836565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610b225781811015610b155760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610836565b610b22848484840361093e565b50505050565b601054600160a01b900460ff1615610b94576010546001600160a01b03163314610b945760405162461bcd60e51b815260206004820152601460248201527f4c6f636b656420627920646576656c6f7065722e0000000000000000000000006044820152606401610836565b6001600160a01b038316610bf85760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610836565b6001600160a01b038216610c5a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610836565b80610c7a846001600160a01b031660009081526020819052604090205490565b1015610cd75760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610836565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161480610d4857507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316145b8015610dd45750600e60009054906101000a90046001600160a01b03166001600160a01b031663808c36336040518163ffffffff1660e01b8152600401602060405180830381865afa158015610da2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dc69190611bfc565b610dd1906002611c15565b81115b8015610dea5750601054600160a81b900460ff16155b156113b2577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161461102757600e546001600160a01b0316600090815260208190526040812054600f54600e546040517f70a082310000000000000000000000000000000000000000000000000000000081526001600160a01b0391821660048201529293506000929116906370a0823190602401602060405180830381865afa158015610eae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ed29190611bfc565b600f60009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f25573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f499190611bfc565b610f539190611c34565b90506000600c5482600e60009054906101000a90046001600160a01b03166001600160a01b031663b01f3c5f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fd29190611bfc565b610fdc9190611c15565b610fe69190611be9565b9050600c5481610ff69190611be9565b83111561102357600e54600c54611018916001600160a01b03169030906115aa565b611023600c5461174e565b5050505b6001600160a01b03831660009081526011602052604081205460ff168061106657506001600160a01b03831660009081526011602052604090205460ff165b156110725750806113a7565b600a548211156110ea5760405162461bcd60e51b815260206004820152603960248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74000000000000006064820152608401610836565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316036111bd57600b546001600160a01b0384166000908152602081905260409020546111499084611be9565b11156111bd5760405162461bcd60e51b815260206004820152603660248201527f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60448201527f61782077616c6c657420616d6f756e74206c696d6974000000000000000000006064820152608401610836565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b03160361129a57600e54604080517fb749403f00000000000000000000000000000000000000000000000000000000815290516064926001600160a01b03169163b749403f9160048083019260209291908290030181865afa15801561125b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061127f9190611bfc565b6112899085611c15565b6112939190611c47565b9050611371565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b03160361137157600e54604080517f77ae0c0100000000000000000000000000000000000000000000000000000000815290516064926001600160a01b0316916377ae0c019160048083019260209291908290030181865afa158015611336573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135a9190611bfc565b6113649085611c15565b61136e9190611c47565b90505b80156113a1576113818184611c34565b600e5490925061139c9086906001600160a01b0316836115aa565b6113a5565b8291505b505b610b228484836115aa565b6001600160a01b03831660009081526011602052604090205460ff16806113f157506001600160a01b03821660009081526011602052604090205460ff165b15611406576114018383836115aa565b505050565b600e60009054906101000a90046001600160a01b03166001600160a01b031663808c36336040518163ffffffff1660e01b8152600401602060405180830381865afa158015611459573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061147d9190611bfc565b611488906002611c15565b8111156114e65760006064600d54836114a19190611c15565b6114ab9190611c47565b905060006114b98284611c34565b600e549091506114d49086906001600160a01b0316846115aa565b6114df8585836115aa565b5050505050565b6114018383836115aa565b6005546001600160a01b0316331461077c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610836565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831661160e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610836565b6001600160a01b0382166116705760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610836565b6001600160a01b038316600090815260208190526040902054818110156116e85760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610836565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610b22565b6010805460ff60a81b1916600160a81b179055600061176e600283611c47565b9050600061177c8284611c34565b905047611788836117b4565b60006117948247611c34565b90506117a08382611962565b50506010805460ff60a81b19169055505050565b6010805460ff60a81b1916600160a81b17905560408051600280825260608201835260009260208301908036833701905050905030816000815181106117fc576117fc611c69565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561187a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061189e9190611c7f565b816001815181106118b1576118b1611c69565b6001600160a01b0392831660209182029290920101527f00000000000000000000000000000000000000000000000000000000000000001663791ac94783600084306118ff4261012c611be9565b6040518663ffffffff1660e01b815260040161191f959493929190611c9c565b600060405180830381600087803b15801561193957600080fd5b505af115801561194d573d6000803e3d6000fd5b50506010805460ff60a81b1916905550505050565b6010805460ff60a81b1916600160a81b1790556001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663f305d719823085600080836119b74261012c611be9565b60405160e089901b7fffffffff000000000000000000000000000000000000000000000000000000001681526001600160a01b039687166004820152602481019590955260448501939093526064840191909152909216608482015260a481019190915260c40160606040518083038185885af1158015611a3c573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906117a09190611d0d565b6000815180845260005b81811015611a8757602081850181015186830182015201611a6b565b506000602082860101526020601f19601f83011685010191505092915050565b602081526000611aba6020830184611a61565b9392505050565b6001600160a01b03811681146108f757600080fd5b60008060408385031215611ae957600080fd5b8235611af481611ac1565b946020939093013593505050565b600080600060608486031215611b1757600080fd5b8335611b2281611ac1565b92506020840135611b3281611ac1565b929592945050506040919091013590565b60008060408385031215611b5657600080fd5b8235611b6181611ac1565b91506020830135611b7181611ac1565b809150509250929050565b600060208284031215611b8e57600080fd5b8135611aba81611ac1565b600181811c90821680611bad57607f821691505b602082108103611bcd57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561064157610641611bd3565b600060208284031215611c0e57600080fd5b5051919050565b6000816000190483118215151615611c2f57611c2f611bd3565b500290565b8181038181111561064157610641611bd3565b600082611c6457634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611c9157600080fd5b8151611aba81611ac1565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611cec5784516001600160a01b031683529383019391830191600101611cc7565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215611d2257600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122096901c7317e3c4bd6a6e78f789f11c0d63ebf69d1221e2c46cf7b896f157553364736f6c634300081000330000000000000000000000001bfef8075cf668db249ab4b81e58f9608f7383df
Deployed Bytecode
0x6080604052600436106101c65760003560e01c806370a08231116100f7578063a9059cbb11610095578063dd62ed3e11610064578063dd62ed3e1461050a578063ddca3f4314610550578063f2fde38b14610566578063ff9413d81461058657600080fd5b8063a9059cbb1461049f578063aa4bde28146104bf578063cc8f60d9146104d5578063d46b82b9146104ea57600080fd5b80638c0b5e22116100d15780638c0b5e22146104365780638da5cb5b1461044c57806395d89b411461046a578063a457c2d71461047f57600080fd5b806370a08231146103d6578063715018a61461040c57806376cdf25c1461042157600080fd5b8063313ce567116101645780633ad10ef61161013e5780633ad10ef61461034b5780633ccfd60b1461036b57806349bd5a5e1461038057806353e4efc5146103b457600080fd5b8063313ce567146102ee5780633764863c1461030a578063395093511461032b57600080fd5b806310194de3116101a057806310194de3146102615780631694505e1461028557806318160ddd146102b957806323b872dd146102ce57600080fd5b80630676c1b7146101d257806306fdde031461020f578063095ea7b31461023157600080fd5b366101cd57005b600080fd5b3480156101de57600080fd5b50600e546101f2906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561021b57600080fd5b5061022461059b565b6040516102069190611aa7565b34801561023d57600080fd5b5061025161024c366004611ad6565b61062d565b6040519015158152602001610206565b34801561026d57600080fd5b50610277600c5481565b604051908152602001610206565b34801561029157600080fd5b506101f27f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b3480156102c557600080fd5b50600254610277565b3480156102da57600080fd5b506102516102e9366004611b02565b610647565b3480156102fa57600080fd5b5060405160128152602001610206565b34801561031657600080fd5b5060105461025190600160a01b900460ff1681565b34801561033757600080fd5b50610251610346366004611ad6565b61066b565b34801561035757600080fd5b506010546101f2906001600160a01b031681565b34801561037757600080fd5b506102246106aa565b34801561038c57600080fd5b506101f27f00000000000000000000000084554a69cec3f4eb15fc1c80c05ec274fa98283881565b3480156103c057600080fd5b506103d46103cf366004611b43565b610709565b005b3480156103e257600080fd5b506102776103f1366004611b7c565b6001600160a01b031660009081526020819052604090205490565b34801561041857600080fd5b506103d461076a565b34801561042d57600080fd5b506103d461077e565b34801561044257600080fd5b50610277600a5481565b34801561045857600080fd5b506005546001600160a01b03166101f2565b34801561047657600080fd5b5061022461078e565b34801561048b57600080fd5b5061025161049a366004611ad6565b61079d565b3480156104ab57600080fd5b506102516104ba366004611ad6565b61084c565b3480156104cb57600080fd5b50610277600b5481565b3480156104e157600080fd5b506103d461085a565b3480156104f657600080fd5b50600f546101f2906001600160a01b031681565b34801561051657600080fd5b50610277610525366004611b43565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561055c57600080fd5b50610277600d5481565b34801561057257600080fd5b506103d4610581366004611b7c565b61086a565b34801561059257600080fd5b506103d46108fa565b6060600380546105aa90611b99565b80601f01602080910402602001604051908101604052809291908181526020018280546105d690611b99565b80156106235780601f106105f857610100808354040283529160200191610623565b820191906000526020600020905b81548152906001019060200180831161060657829003601f168201915b5050505050905090565b60003361063b81858561093e565b60019150505b92915050565b600033610655858285610a96565b610660858585610b28565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061063b90829086906106a5908790611be9565b61093e565b6010546040516060916000916001600160a01b039091169047908381818185875af1925050503d80600081146106fc576040519150601f19603f3d011682016040523d82523d6000602084013e610701565b606091505b509392505050565b6107116114f1565b600e80546001600160a01b0393841673ffffffffffffffffffffffffffffffffffffffff199182168117909255600f8054939094169216919091179091556000908152601160205260409020805460ff19166001179055565b6107726114f1565b61077c600061154b565b565b6107866114f1565b600019600b55565b6060600480546105aa90611b99565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091908381101561083f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b610660828686840361093e565b60003361063b818585610b28565b6108626114f1565b600019600a55565b6108726114f1565b6001600160a01b0381166108ee5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610836565b6108f78161154b565b50565b6109026114f1565b601080547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff8116600160a01b9182900460ff1615909102179055565b6001600160a01b0383166109b95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610836565b6001600160a01b038216610a355760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610836565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610b225781811015610b155760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610836565b610b22848484840361093e565b50505050565b601054600160a01b900460ff1615610b94576010546001600160a01b03163314610b945760405162461bcd60e51b815260206004820152601460248201527f4c6f636b656420627920646576656c6f7065722e0000000000000000000000006044820152606401610836565b6001600160a01b038316610bf85760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610836565b6001600160a01b038216610c5a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610836565b80610c7a846001600160a01b031660009081526020819052604090205490565b1015610cd75760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610836565b7f00000000000000000000000084554a69cec3f4eb15fc1c80c05ec274fa9828386001600160a01b0316836001600160a01b03161480610d4857507f00000000000000000000000084554a69cec3f4eb15fc1c80c05ec274fa9828386001600160a01b0316826001600160a01b0316145b8015610dd45750600e60009054906101000a90046001600160a01b03166001600160a01b031663808c36336040518163ffffffff1660e01b8152600401602060405180830381865afa158015610da2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dc69190611bfc565b610dd1906002611c15565b81115b8015610dea5750601054600160a81b900460ff16155b156113b2577f00000000000000000000000084554a69cec3f4eb15fc1c80c05ec274fa9828386001600160a01b0316836001600160a01b03161461102757600e546001600160a01b0316600090815260208190526040812054600f54600e546040517f70a082310000000000000000000000000000000000000000000000000000000081526001600160a01b0391821660048201529293506000929116906370a0823190602401602060405180830381865afa158015610eae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ed29190611bfc565b600f60009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f25573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f499190611bfc565b610f539190611c34565b90506000600c5482600e60009054906101000a90046001600160a01b03166001600160a01b031663b01f3c5f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fd29190611bfc565b610fdc9190611c15565b610fe69190611be9565b9050600c5481610ff69190611be9565b83111561102357600e54600c54611018916001600160a01b03169030906115aa565b611023600c5461174e565b5050505b6001600160a01b03831660009081526011602052604081205460ff168061106657506001600160a01b03831660009081526011602052604090205460ff165b156110725750806113a7565b600a548211156110ea5760405162461bcd60e51b815260206004820152603960248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74000000000000006064820152608401610836565b7f00000000000000000000000084554a69cec3f4eb15fc1c80c05ec274fa9828386001600160a01b0316846001600160a01b0316036111bd57600b546001600160a01b0384166000908152602081905260409020546111499084611be9565b11156111bd5760405162461bcd60e51b815260206004820152603660248201527f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60448201527f61782077616c6c657420616d6f756e74206c696d6974000000000000000000006064820152608401610836565b60007f00000000000000000000000084554a69cec3f4eb15fc1c80c05ec274fa9828386001600160a01b0316856001600160a01b03160361129a57600e54604080517fb749403f00000000000000000000000000000000000000000000000000000000815290516064926001600160a01b03169163b749403f9160048083019260209291908290030181865afa15801561125b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061127f9190611bfc565b6112899085611c15565b6112939190611c47565b9050611371565b7f00000000000000000000000084554a69cec3f4eb15fc1c80c05ec274fa9828386001600160a01b0316846001600160a01b03160361137157600e54604080517f77ae0c0100000000000000000000000000000000000000000000000000000000815290516064926001600160a01b0316916377ae0c019160048083019260209291908290030181865afa158015611336573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135a9190611bfc565b6113649085611c15565b61136e9190611c47565b90505b80156113a1576113818184611c34565b600e5490925061139c9086906001600160a01b0316836115aa565b6113a5565b8291505b505b610b228484836115aa565b6001600160a01b03831660009081526011602052604090205460ff16806113f157506001600160a01b03821660009081526011602052604090205460ff165b15611406576114018383836115aa565b505050565b600e60009054906101000a90046001600160a01b03166001600160a01b031663808c36336040518163ffffffff1660e01b8152600401602060405180830381865afa158015611459573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061147d9190611bfc565b611488906002611c15565b8111156114e65760006064600d54836114a19190611c15565b6114ab9190611c47565b905060006114b98284611c34565b600e549091506114d49086906001600160a01b0316846115aa565b6114df8585836115aa565b5050505050565b6114018383836115aa565b6005546001600160a01b0316331461077c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610836565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831661160e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610836565b6001600160a01b0382166116705760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610836565b6001600160a01b038316600090815260208190526040902054818110156116e85760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610836565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610b22565b6010805460ff60a81b1916600160a81b179055600061176e600283611c47565b9050600061177c8284611c34565b905047611788836117b4565b60006117948247611c34565b90506117a08382611962565b50506010805460ff60a81b19169055505050565b6010805460ff60a81b1916600160a81b17905560408051600280825260608201835260009260208301908036833701905050905030816000815181106117fc576117fc611c69565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561187a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061189e9190611c7f565b816001815181106118b1576118b1611c69565b6001600160a01b0392831660209182029290920101527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d1663791ac94783600084306118ff4261012c611be9565b6040518663ffffffff1660e01b815260040161191f959493929190611c9c565b600060405180830381600087803b15801561193957600080fd5b505af115801561194d573d6000803e3d6000fd5b50506010805460ff60a81b1916905550505050565b6010805460ff60a81b1916600160a81b1790556001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d1663f305d719823085600080836119b74261012c611be9565b60405160e089901b7fffffffff000000000000000000000000000000000000000000000000000000001681526001600160a01b039687166004820152602481019590955260448501939093526064840191909152909216608482015260a481019190915260c40160606040518083038185885af1158015611a3c573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906117a09190611d0d565b6000815180845260005b81811015611a8757602081850181015186830182015201611a6b565b506000602082860101526020601f19601f83011685010191505092915050565b602081526000611aba6020830184611a61565b9392505050565b6001600160a01b03811681146108f757600080fd5b60008060408385031215611ae957600080fd5b8235611af481611ac1565b946020939093013593505050565b600080600060608486031215611b1757600080fd5b8335611b2281611ac1565b92506020840135611b3281611ac1565b929592945050506040919091013590565b60008060408385031215611b5657600080fd5b8235611b6181611ac1565b91506020830135611b7181611ac1565b809150509250929050565b600060208284031215611b8e57600080fd5b8135611aba81611ac1565b600181811c90821680611bad57607f821691505b602082108103611bcd57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561064157610641611bd3565b600060208284031215611c0e57600080fd5b5051919050565b6000816000190483118215151615611c2f57611c2f611bd3565b500290565b8181038181111561064157610641611bd3565b600082611c6457634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611c9157600080fd5b8151611aba81611ac1565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611cec5784516001600160a01b031683529383019391830191600101611cc7565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215611d2257600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122096901c7317e3c4bd6a6e78f789f11c0d63ebf69d1221e2c46cf7b896f157553364736f6c63430008100033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000001bfef8075cf668db249ab4b81e58f9608f7383df
-----Decoded View---------------
Arg [0] : _devAddress (address): 0x1bfef8075Cf668DB249ab4b81E58f9608F7383DF
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000001bfef8075cf668db249ab4b81e58f9608f7383df
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.