Overview
Max Total Supply
100,000,000 LOCK
Holders
3,822 ( -0.026%)
Market
Price
$0.37 @ 0.000147 ETH
Onchain Market Cap
$36,947,700.00
Circulating Supply Market Cap
$11,720,812.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000000000002 LOCKValue
$0.00 ( ~0 Eth) [0.0000%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
HoudiniSwapToken
Compiler Version
v0.8.22+commit.4fc1097e
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.22; import "@openzeppelin/contracts/access/Ownable2Step.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@uniswap/v3-core/contracts/interfaces/IUniswapV3Factory.sol"; interface ISwapRouter { function WETH9() external pure returns (address); function factory() external pure returns (address); } interface ISwapPool { function factory() external pure returns (address); } contract HoudiniSwapToken is ERC20, Ownable2Step { using Address for address; using SafeERC20 for IERC20; ISwapRouter public immutable swapRouter; address public constant ZERO_ADDRESS = address(0); address public constant DEAD_ADDRESS = address(0xdead); bool private _ammProtectionEnabled; bool public launched; mapping(address => bool) private _isExcludedFromLimits; mapping(address => bool) private _automatedMarketMakerPair; mapping(address => bool) private _isBot; event Airdrop(address account, uint256 amount); event Launch(uint256 blockNumber, uint256 timestamp); event WithdrawStuckTokens(address token, uint256 amount); event ExcludeFromLimits(address indexed account, bool value); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event SetBots(address indexed account, bool value); modifier onlyContract(address account) { require( account.isContract(), "HoudiniSwapToken: The address does not contain a contract" ); _; } constructor() ERC20("Houdini Swap", "LOCK") { uint256 tSupply = 100_000_000 ether; swapRouter = ISwapRouter(0xE592427A0AEce92De3Edee1F18E0157C05861564); _excludeFromLimits(_msgSender(), true); _excludeFromLimits(address(this), true); _excludeFromLimits(DEAD_ADDRESS, true); _excludeFromLimits(0xb27308f9F90D607463bb33eA1BeBb41C27CE5AB6, true); // Uniswap V3 Quoter _excludeFromLimits(0x61fFE014bA17989E743c5F6cB21bF9697530B21e, true); // Uniswap V3 QuoterV2 _mint(_msgSender(), tSupply); } receive() external payable {} function burn(uint256 amount) public { _burn(_msgSender(), amount); } function airdrop( address[] memory accounts, uint256[] memory amounts ) public onlyOwner { require( accounts.length == amounts.length, "HoudiniSwapToken: Arrays must be the same length" ); for (uint256 i = 0; i < accounts.length; i++) { address account = accounts[i]; uint256 amount = amounts[i]; _transfer(_msgSender(), account, amount); emit Airdrop(account, amount); } } function launch() public onlyOwner { require(!launched, "HoudiniSwapToken: Already launched."); IUniswapV3Factory uniswapV3Factory = IUniswapV3Factory( swapRouter.factory() ); address WETH9 = swapRouter.WETH9(); address uniswapV3Pool = uniswapV3Factory.getPool( address(this), WETH9, 10000 ); if (uniswapV3Pool == ZERO_ADDRESS) { uniswapV3Pool = uniswapV3Factory.createPool( address(this), WETH9, 10000 ); } _setAutomatedMarketMakerPair(address(uniswapV3Pool), true); _ammProtectionEnabled = true; launched = true; emit Launch(block.number, block.timestamp); } function withdrawStuckTokens(address tkn) public onlyOwner { uint256 amount; if (tkn == ZERO_ADDRESS) { bool success; amount = address(this).balance; (success, ) = address(_msgSender()).call{value: amount}(""); } else { amount = IERC20(tkn).balanceOf(address(this)); require(amount > 0, "HoudiniSwapToken: No tokens"); IERC20(tkn).safeTransfer(_msgSender(), amount); } emit WithdrawStuckTokens(tkn, amount); } function excludeFromLimits( address[] calldata accounts, bool value ) public onlyOwner { for (uint256 i = 0; i < accounts.length; i++) { _excludeFromLimits(accounts[i], value); } } function setAutomatedMarketMakerPair( address account, bool value ) public onlyOwner onlyContract(account) { require( !_automatedMarketMakerPair[account], "HoudiniSwapToken: AMM Pair already set." ); _setAutomatedMarketMakerPair(account, value); } function setBots(address[] calldata accounts, bool value) public onlyOwner { for (uint256 i = 0; i < accounts.length; i++) { if ( (!_automatedMarketMakerPair[accounts[i]]) && (accounts[i] != address(swapRouter)) && (accounts[i] != address(this)) && (!_isExcludedFromLimits[accounts[i]]) ) _setBots(accounts[i], value); } } function isExcludedFromLimits(address account) public view returns (bool) { return _isExcludedFromLimits[account]; } function automatedMarketMakerPairs( address account ) public view returns (bool) { return _automatedMarketMakerPair[account]; } function isBot(address account) public view returns (bool) { return _isBot[account]; } function _transfer( address from, address to, uint256 amount ) internal virtual override { require( from != ZERO_ADDRESS, "HoudiniSwapToken: transfer from the zero address" ); require( to != ZERO_ADDRESS, "HoudiniSwapToken: transfer to the zero address" ); if (_isExcludedFromLimits[from] || _isExcludedFromLimits[to]) { super._transfer(from, to, amount); return; } require(!_isBot[from], "HoudiniSwapToken: bot detected"); require( _msgSender() == from || !_isBot[_msgSender()], "HoudiniSwapToken: bot detected" ); require( tx.origin == from || tx.origin == _msgSender() || !_isBot[tx.origin], "HoudiniSwapToken: bot detected" ); if (amount == 0) { super._transfer(from, to, 0); return; } address ownr = owner(); require( launched || from == ownr || to == ownr || to == DEAD_ADDRESS, "HoudiniSwapToken: Not launched." ); _validateAddresses(from, to); super._transfer(from, to, amount); } function _validateAddresses(address from, address to) internal virtual { if (_ammProtectionEnabled) { if ( !_automatedMarketMakerPair[from] && !_automatedMarketMakerPair[to] ) { if (to.isContract()) { try ISwapPool(to).factory() returns (address factory) { require( factory == ZERO_ADDRESS, "HoudiniSwapToken: AMM not supported." ); } catch {} } if (from.isContract()) { try ISwapPool(from).factory() returns (address factory) { require( factory == ZERO_ADDRESS, "HoudiniSwapToken: AMM not supported." ); } catch {} } } } } function _excludeFromLimits(address account, bool value) internal virtual { _isExcludedFromLimits[account] = value; emit ExcludeFromLimits(account, value); } function _setBots(address account, bool value) internal virtual { _isBot[account] = value; emit SetBots(account, value); } function _setAutomatedMarketMakerPair( address account, bool value ) internal virtual { _automatedMarketMakerPair[account] = value; emit SetAutomatedMarketMakerPair(account, value); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable2Step.sol) pragma solidity ^0.8.0; import "./Ownable.sol"; /** * @dev Contract module which provides 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} and {acceptOwnership}. * * This module is used through inheritance. It will make available all functions * from parent (Ownable). */ abstract contract Ownable2Step is Ownable { address private _pendingOwner; event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner); /** * @dev Returns the address of the pending owner. */ function pendingOwner() public view virtual returns (address) { return _pendingOwner; } /** * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one. * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual override onlyOwner { _pendingOwner = newOwner; emit OwnershipTransferStarted(owner(), newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner. * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual override { delete _pendingOwner; super._transferOwnership(newOwner); } /** * @dev The new owner accepts the ownership transfer. */ function acceptOwnership() public virtual { address sender = _msgSender(); require(pendingOwner() == sender, "Ownable2Step: caller is not the new owner"); _transferOwnership(sender); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../extensions/IERC20Permit.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value)); } /** * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value)); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval * to be set to zero before setting it to a non-zero value, such as USDT. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0)); _callOptionalReturn(token, approvalCall); } } /** * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`. * Revert on invalid signature. */ function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// 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: GPL-2.0-or-later pragma solidity >=0.5.0; /// @title The interface for the Uniswap V3 Factory /// @notice The Uniswap V3 Factory facilitates creation of Uniswap V3 pools and control over the protocol fees interface IUniswapV3Factory { /// @notice Emitted when the owner of the factory is changed /// @param oldOwner The owner before the owner was changed /// @param newOwner The owner after the owner was changed event OwnerChanged(address indexed oldOwner, address indexed newOwner); /// @notice Emitted when a pool is created /// @param token0 The first token of the pool by address sort order /// @param token1 The second token of the pool by address sort order /// @param fee The fee collected upon every swap in the pool, denominated in hundredths of a bip /// @param tickSpacing The minimum number of ticks between initialized ticks /// @param pool The address of the created pool event PoolCreated( address indexed token0, address indexed token1, uint24 indexed fee, int24 tickSpacing, address pool ); /// @notice Emitted when a new fee amount is enabled for pool creation via the factory /// @param fee The enabled fee, denominated in hundredths of a bip /// @param tickSpacing The minimum number of ticks between initialized ticks for pools created with the given fee event FeeAmountEnabled(uint24 indexed fee, int24 indexed tickSpacing); /// @notice Returns the current owner of the factory /// @dev Can be changed by the current owner via setOwner /// @return The address of the factory owner function owner() external view returns (address); /// @notice Returns the tick spacing for a given fee amount, if enabled, or 0 if not enabled /// @dev A fee amount can never be removed, so this value should be hard coded or cached in the calling context /// @param fee The enabled fee, denominated in hundredths of a bip. Returns 0 in case of unenabled fee /// @return The tick spacing function feeAmountTickSpacing(uint24 fee) external view returns (int24); /// @notice Returns the pool address for a given pair of tokens and a fee, or address 0 if it does not exist /// @dev tokenA and tokenB may be passed in either token0/token1 or token1/token0 order /// @param tokenA The contract address of either token0 or token1 /// @param tokenB The contract address of the other token /// @param fee The fee collected upon every swap in the pool, denominated in hundredths of a bip /// @return pool The pool address function getPool( address tokenA, address tokenB, uint24 fee ) external view returns (address pool); /// @notice Creates a pool for the given two tokens and fee /// @param tokenA One of the two tokens in the desired pool /// @param tokenB The other of the two tokens in the desired pool /// @param fee The desired fee for the pool /// @dev tokenA and tokenB may be passed in either order: token0/token1 or token1/token0. tickSpacing is retrieved /// from the fee. The call will revert if the pool already exists, the fee is invalid, or the token arguments /// are invalid. /// @return pool The address of the newly created pool function createPool( address tokenA, address tokenB, uint24 fee ) external returns (address pool); /// @notice Updates the owner of the factory /// @dev Must be called by the current owner /// @param _owner The new owner of the factory function setOwner(address _owner) external; /// @notice Enables a fee amount with the given tickSpacing /// @dev Fee amounts may never be removed once enabled /// @param fee The fee amount to enable, denominated in hundredths of a bip (i.e. 1e-6) /// @param tickSpacing The spacing between ticks to be enforced for all pools created with the given fee amount function enableFeeAmount(uint24 fee, int24 tickSpacing) external; }
{ "optimizer": { "enabled": true, "runs": 200 }, "evmVersion": "paris", "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Airdrop","type":"event"},{"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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"value","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"blockNumber","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"Launch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"value","type":"bool"}],"name":"SetBots","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"WithdrawStuckTokens","type":"event"},{"inputs":[],"name":"DEAD_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ZERO_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launched","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapRouter","outputs":[{"internalType":"contract ISwapRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tkn","type":"address"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a06040523480156200001157600080fd5b506040518060400160405280600c81526020016b0486f7564696e6920537761760a41b815250604051806040016040528060048152602001634c4f434b60e01b815250816003908162000065919062000377565b50600462000074828262000377565b505050620000916200008b6200013360201b60201c565b62000137565b73e592427a0aece92de3edee1f18e0157c058615646080526a52b7d2dcc80cd2e4000000620000c233600162000155565b620000cf30600162000155565b620000de61dead600162000155565b620000ff73b27308f9f90d607463bb33ea1bebb41c27ce5ab6600162000155565b620001207361ffe014ba17989e743c5f6cb21bf9697530b21e600162000155565b6200012c3382620001b4565b506200046b565b3390565b600680546001600160a01b031916905562000152816200027a565b50565b6001600160a01b038216600081815260076020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc92910160405180910390a25050565b6001600160a01b0382166200020f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806002600082825462000223919062000443565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620002fc57607f821691505b6020821081036200031d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002cc576000816000526020600020601f850160051c810160208610156200034e5750805b601f850160051c820191505b818110156200036f578281556001016200035a565b505050505050565b81516001600160401b03811115620003935762000393620002d1565b620003ab81620003a48454620002e7565b8462000323565b602080601f831160018114620003e35760008415620003ca5750858301515b600019600386901b1c1916600185901b1785556200036f565b600085815260208120601f198616915b828110156200041457888601518255948401946001909101908401620003f3565b5085821015620004335787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200046557634e487b7160e01b600052601160045260246000fd5b92915050565b6080516123b96200049c6000396000818161055e01528181610675015281816106fb0152610d5701526123b96000f3fe6080604052600436106101d15760003560e01c8063715018a6116100f7578063a457c2d711610095578063cb96372811610064578063cb96372814610580578063dd62ed3e146105a0578063e30c3978146105c0578063f2fde38b146105de57600080fd5b8063a457c2d7146104d3578063a9059cbb146104f3578063b62496f514610513578063c31c9c071461054c57600080fd5b80638da5cb5b116100d15780638da5cb5b1461046057806395d89b411461047e5780639a7a23d6146104935780639c0db5f3146104b357600080fd5b8063715018a61461041557806379ba50971461042a5780638091f3bf1461043f57600080fd5b8063395093511161016f578063538ba4f91161013e578063538ba4f9146103715780635cce86cd1461038657806367243482146103bf57806370a08231146103df57600080fd5b806339509351146102ca5780633bbac579146102ea57806342966c68146103235780634e6fd6c41461034357600080fd5b8063106a5a8f116101ab578063106a5a8f1461024f57806318160ddd1461026f57806323b872dd1461028e578063313ce567146102ae57600080fd5b806301339c21146101dd57806306fdde03146101f4578063095ea7b31461021f57600080fd5b366101d857005b600080fd5b3480156101e957600080fd5b506101f26105fe565b005b34801561020057600080fd5b506102096108e3565b6040516102169190611e9f565b60405180910390f35b34801561022b57600080fd5b5061023f61023a366004611ee7565b610975565b6040519015158152602001610216565b34801561025b57600080fd5b506101f261026a366004611f21565b61098f565b34801561027b57600080fd5b506002545b604051908152602001610216565b34801561029a57600080fd5b5061023f6102a9366004611fa7565b6109e0565b3480156102ba57600080fd5b5060405160128152602001610216565b3480156102d657600080fd5b5061023f6102e5366004611ee7565b610a04565b3480156102f657600080fd5b5061023f610305366004611fe8565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561032f57600080fd5b506101f261033e36600461200c565b610a26565b34801561034f57600080fd5b5061035961dead81565b6040516001600160a01b039091168152602001610216565b34801561037d57600080fd5b50610359600081565b34801561039257600080fd5b5061023f6103a1366004611fe8565b6001600160a01b031660009081526007602052604090205460ff1690565b3480156103cb57600080fd5b506101f26103da3660046120ff565b610a33565b3480156103eb57600080fd5b506102806103fa366004611fe8565b6001600160a01b031660009081526020819052604090205490565b34801561042157600080fd5b506101f2610b4f565b34801561043657600080fd5b506101f2610b63565b34801561044b57600080fd5b5060065461023f90600160a81b900460ff1681565b34801561046c57600080fd5b506005546001600160a01b0316610359565b34801561048a57600080fd5b50610209610bda565b34801561049f57600080fd5b506101f26104ae3660046121c1565b610be9565b3480156104bf57600080fd5b506101f26104ce366004611f21565b610cf2565b3480156104df57600080fd5b5061023f6104ee366004611ee7565b610e7b565b3480156104ff57600080fd5b5061023f61050e366004611ee7565b610ef6565b34801561051f57600080fd5b5061023f61052e366004611fe8565b6001600160a01b031660009081526008602052604090205460ff1690565b34801561055857600080fd5b506103597f000000000000000000000000000000000000000000000000000000000000000081565b34801561058c57600080fd5b506101f261059b366004611fe8565b610f04565b3480156105ac57600080fd5b506102806105bb3660046121fa565b611084565b3480156105cc57600080fd5b506006546001600160a01b0316610359565b3480156105ea57600080fd5b506101f26105f9366004611fe8565b6110af565b610606611120565b600654600160a81b900460ff16156106715760405162461bcd60e51b815260206004820152602360248201527f486f7564696e6953776170546f6b656e3a20416c7265616479206c61756e636860448201526232b21760e91b60648201526084015b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106f59190612228565b905060007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316634aa4a4fc6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610757573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061077b9190612228565b604051630b4c774160e11b81523060048201526001600160a01b0380831660248301526127106044830152919250600091841690631698ee8290606401602060405180830381865afa1580156107d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107f99190612228565b90506001600160a01b0381166108865760405163a167129560e01b81523060048201526001600160a01b038381166024830152612710604483015284169063a1671295906064016020604051808303816000875af115801561085f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108839190612228565b90505b61089181600161117a565b6006805461ffff60a01b191661010160a01b179055604080514381524260208201527fa4eda92a9703eeccb36fbed43c5cfce0e180464bf695e806d3bd0e439743fd56910160405180910390a1505050565b6060600380546108f290612245565b80601f016020809104026020016040519081016040528092919081815260200182805461091e90612245565b801561096b5780601f106109405761010080835404028352916020019161096b565b820191906000526020600020905b81548152906001019060200180831161094e57829003601f168201915b5050505050905090565b6000336109838185856111ce565b60019150505b92915050565b610997611120565b60005b828110156109da576109d28484838181106109b7576109b761227f565b90506020020160208101906109cc9190611fe8565b836112f2565b60010161099a565b50505050565b6000336109ee858285611352565b6109f98585856113c6565b506001949350505050565b600033610983818585610a178383611084565b610a219190612295565b6111ce565b610a3033826116a0565b50565b610a3b611120565b8051825114610aa55760405162461bcd60e51b815260206004820152603060248201527f486f7564696e6953776170546f6b656e3a20417272617973206d75737420626560448201526f040e8d0ca40e6c2daca40d8cadccee8d60831b6064820152608401610668565b60005b8251811015610b4a576000838281518110610ac557610ac561227f565b602002602001015190506000838381518110610ae357610ae361227f565b60200260200101519050610afe610af73390565b83836113c6565b604080516001600160a01b0384168152602081018390527f8c32c568416fcf97be35ce5b27844cfddcd63a67a1a602c3595ba5dac38f303a910160405180910390a15050600101610aa8565b505050565b610b57611120565b610b6160006117d2565b565b60065433906001600160a01b03168114610bd15760405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206044820152683732bb9037bbb732b960b91b6064820152608401610668565b610a30816117d2565b6060600480546108f290612245565b610bf1611120565b816001600160a01b0381163b610c6f5760405162461bcd60e51b815260206004820152603960248201527f486f7564696e6953776170546f6b656e3a20546865206164647265737320646f60448201527f6573206e6f7420636f6e7461696e206120636f6e7472616374000000000000006064820152608401610668565b6001600160a01b03831660009081526008602052604090205460ff1615610ce85760405162461bcd60e51b815260206004820152602760248201527f486f7564696e6953776170546f6b656e3a20414d4d205061697220616c726561604482015266323c9039b2ba1760c91b6064820152608401610668565b610b4a838361117a565b610cfa611120565b60005b828110156109da5760086000858584818110610d1b57610d1b61227f565b9050602002016020810190610d309190611fe8565b6001600160a01b0316815260208101919091526040016000205460ff16158015610db257507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316848483818110610d9157610d9161227f565b9050602002016020810190610da69190611fe8565b6001600160a01b031614155b8015610ded575030848483818110610dcc57610dcc61227f565b9050602002016020810190610de19190611fe8565b6001600160a01b031614155b8015610e3e575060076000858584818110610e0a57610e0a61227f565b9050602002016020810190610e1f9190611fe8565b6001600160a01b0316815260208101919091526040016000205460ff16155b15610e7357610e73848483818110610e5857610e5861227f565b9050602002016020810190610e6d9190611fe8565b836117eb565b600101610cfd565b60003381610e898286611084565b905083811015610ee95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610668565b6109f982868684036111ce565b6000336109838185856113c6565b610f0c611120565b60006001600160a01b038216610f7057506040514790600090339083908381818185875af1925050503d8060008114610f61576040519150601f19603f3d011682016040523d82523d6000602084013e610f66565b606091505b5061103e92505050565b6040516370a0823160e01b81523060048201526001600160a01b038316906370a0823190602401602060405180830381865afa158015610fb4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fd891906122b6565b90506000811161102a5760405162461bcd60e51b815260206004820152601b60248201527f486f7564696e6953776170546f6b656e3a204e6f20746f6b656e7300000000006044820152606401610668565b61103e6001600160a01b0383163383611843565b604080516001600160a01b0384168152602081018390527f07c81a5e6d155913a9ed2ce53630058179c89fc94bb5de130620b0245c9f6a0b910160405180910390a15050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6110b7611120565b600680546001600160a01b0383166001600160a01b031990911681179091556110e86005546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6005546001600160a01b03163314610b615760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610668565b6001600160a01b038216600081815260086020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166112305760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610668565b6001600160a01b0382166112915760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610668565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038216600081815260076020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a25050565b600061135e8484611084565b905060001981146109da57818110156113b95760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610668565b6109da84848484036111ce565b6001600160a01b0383166114355760405162461bcd60e51b815260206004820152603060248201527f486f7564696e6953776170546f6b656e3a207472616e736665722066726f6d2060448201526f746865207a65726f206164647265737360801b6064820152608401610668565b6001600160a01b0382166114a25760405162461bcd60e51b815260206004820152602e60248201527f486f7564696e6953776170546f6b656e3a207472616e7366657220746f20746860448201526d65207a65726f206164647265737360901b6064820152608401610668565b6001600160a01b03831660009081526007602052604090205460ff16806114e157506001600160a01b03821660009081526007602052604090205460ff165b156114f157610b4a838383611895565b6001600160a01b03831660009081526009602052604090205460ff161561152a5760405162461bcd60e51b8152600401610668906122cf565b336001600160a01b038416148061155157503360009081526009602052604090205460ff16155b61156d5760405162461bcd60e51b8152600401610668906122cf565b326001600160a01b038416148061158357503233145b8061159e57503260009081526009602052604090205460ff16155b6115ba5760405162461bcd60e51b8152600401610668906122cf565b806000036115ce57610b4a83836000611895565b60006115e26005546001600160a01b031690565b600654909150600160a81b900460ff168061160e5750806001600160a01b0316846001600160a01b0316145b8061162a5750806001600160a01b0316836001600160a01b0316145b8061163f57506001600160a01b03831661dead145b61168b5760405162461bcd60e51b815260206004820152601f60248201527f486f7564696e6953776170546f6b656e3a204e6f74206c61756e636865642e006044820152606401610668565b6116958484611a39565b6109da848484611895565b6001600160a01b0382166117005760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610668565b6001600160a01b038216600090815260208190526040902054818110156117745760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610668565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600680546001600160a01b0319169055610a3081611bc4565b6001600160a01b038216600081815260096020908152604091829020805460ff191685151590811790915591519182527ff7f8b40d08076851dfb7cfd6c584ae9a829a570f264abee45e0d7ca342ae8dc89101611346565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610b4a908490611c16565b6001600160a01b0383166118f95760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610668565b6001600160a01b03821661195b5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610668565b6001600160a01b038316600090815260208190526040902054818110156119d35760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610668565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36109da565b600654600160a01b900460ff1615611bc0576001600160a01b03821660009081526008602052604090205460ff16158015611a8d57506001600160a01b03811660009081526008602052604090205460ff16155b15611bc0576001600160a01b0381163b15611b2a57806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015611afc575060408051601f3d908101601f19168201909252611af991810190612228565b60015b15611b2a576001600160a01b03811615611b285760405162461bcd60e51b815260040161066890612306565b505b6001600160a01b0382163b15611bc057816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015611b94575060408051601f3d908101601f19168201909252611b9191810190612228565b60015b15611bc0576001600160a01b03811615610b4a5760405162461bcd60e51b815260040161066890612306565b5050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611c6b826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611ceb9092919063ffffffff16565b9050805160001480611c8c575080806020019051810190611c8c919061234a565b610b4a5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610668565b6060611cfa8484600085611d02565b949350505050565b606082471015611d635760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610668565b600080866001600160a01b03168587604051611d7f9190612367565b60006040518083038185875af1925050503d8060008114611dbc576040519150601f19603f3d011682016040523d82523d6000602084013e611dc1565b606091505b5091509150611dd287838387611ddd565b979650505050505050565b60608315611e4c578251600003611e45576001600160a01b0385163b611e455760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610668565b5081611cfa565b611cfa8383815115611e615781518083602001fd5b8060405162461bcd60e51b81526004016106689190611e9f565b60005b83811015611e96578181015183820152602001611e7e565b50506000910152565b6020815260008251806020840152611ebe816040850160208701611e7b565b601f01601f19169190910160400192915050565b6001600160a01b0381168114610a3057600080fd5b60008060408385031215611efa57600080fd5b8235611f0581611ed2565b946020939093013593505050565b8015158114610a3057600080fd5b600080600060408486031215611f3657600080fd5b833567ffffffffffffffff80821115611f4e57600080fd5b818601915086601f830112611f6257600080fd5b813581811115611f7157600080fd5b8760208260051b8501011115611f8657600080fd5b60209283019550935050840135611f9c81611f13565b809150509250925092565b600080600060608486031215611fbc57600080fd5b8335611fc781611ed2565b92506020840135611fd781611ed2565b929592945050506040919091013590565b600060208284031215611ffa57600080fd5b813561200581611ed2565b9392505050565b60006020828403121561201e57600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561206457612064612025565b604052919050565b600067ffffffffffffffff82111561208657612086612025565b5060051b60200190565b600082601f8301126120a157600080fd5b813560206120b66120b18361206c565b61203b565b8083825260208201915060208460051b8701019350868411156120d857600080fd5b602086015b848110156120f457803583529183019183016120dd565b509695505050505050565b6000806040838503121561211257600080fd5b823567ffffffffffffffff8082111561212a57600080fd5b818501915085601f83011261213e57600080fd5b8135602061214e6120b18361206c565b82815260059290921b8401810191818101908984111561216d57600080fd5b948201945b8386101561219457853561218581611ed2565b82529482019490820190612172565b965050860135925050808211156121aa57600080fd5b506121b785828601612090565b9150509250929050565b600080604083850312156121d457600080fd5b82356121df81611ed2565b915060208301356121ef81611f13565b809150509250929050565b6000806040838503121561220d57600080fd5b823561221881611ed2565b915060208301356121ef81611ed2565b60006020828403121561223a57600080fd5b815161200581611ed2565b600181811c9082168061225957607f821691505b60208210810361227957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b8082018082111561098957634e487b7160e01b600052601160045260246000fd5b6000602082840312156122c857600080fd5b5051919050565b6020808252601e908201527f486f7564696e6953776170546f6b656e3a20626f742064657465637465640000604082015260600190565b60208082526024908201527f486f7564696e6953776170546f6b656e3a20414d4d206e6f7420737570706f726040820152633a32b21760e11b606082015260800190565b60006020828403121561235c57600080fd5b815161200581611f13565b60008251612379818460208701611e7b565b919091019291505056fea2646970667358221220bea34454d607a238072d8884af516a86821ad32ca406e0945506985b66aafe3564736f6c63430008160033
Deployed Bytecode
0x6080604052600436106101d15760003560e01c8063715018a6116100f7578063a457c2d711610095578063cb96372811610064578063cb96372814610580578063dd62ed3e146105a0578063e30c3978146105c0578063f2fde38b146105de57600080fd5b8063a457c2d7146104d3578063a9059cbb146104f3578063b62496f514610513578063c31c9c071461054c57600080fd5b80638da5cb5b116100d15780638da5cb5b1461046057806395d89b411461047e5780639a7a23d6146104935780639c0db5f3146104b357600080fd5b8063715018a61461041557806379ba50971461042a5780638091f3bf1461043f57600080fd5b8063395093511161016f578063538ba4f91161013e578063538ba4f9146103715780635cce86cd1461038657806367243482146103bf57806370a08231146103df57600080fd5b806339509351146102ca5780633bbac579146102ea57806342966c68146103235780634e6fd6c41461034357600080fd5b8063106a5a8f116101ab578063106a5a8f1461024f57806318160ddd1461026f57806323b872dd1461028e578063313ce567146102ae57600080fd5b806301339c21146101dd57806306fdde03146101f4578063095ea7b31461021f57600080fd5b366101d857005b600080fd5b3480156101e957600080fd5b506101f26105fe565b005b34801561020057600080fd5b506102096108e3565b6040516102169190611e9f565b60405180910390f35b34801561022b57600080fd5b5061023f61023a366004611ee7565b610975565b6040519015158152602001610216565b34801561025b57600080fd5b506101f261026a366004611f21565b61098f565b34801561027b57600080fd5b506002545b604051908152602001610216565b34801561029a57600080fd5b5061023f6102a9366004611fa7565b6109e0565b3480156102ba57600080fd5b5060405160128152602001610216565b3480156102d657600080fd5b5061023f6102e5366004611ee7565b610a04565b3480156102f657600080fd5b5061023f610305366004611fe8565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561032f57600080fd5b506101f261033e36600461200c565b610a26565b34801561034f57600080fd5b5061035961dead81565b6040516001600160a01b039091168152602001610216565b34801561037d57600080fd5b50610359600081565b34801561039257600080fd5b5061023f6103a1366004611fe8565b6001600160a01b031660009081526007602052604090205460ff1690565b3480156103cb57600080fd5b506101f26103da3660046120ff565b610a33565b3480156103eb57600080fd5b506102806103fa366004611fe8565b6001600160a01b031660009081526020819052604090205490565b34801561042157600080fd5b506101f2610b4f565b34801561043657600080fd5b506101f2610b63565b34801561044b57600080fd5b5060065461023f90600160a81b900460ff1681565b34801561046c57600080fd5b506005546001600160a01b0316610359565b34801561048a57600080fd5b50610209610bda565b34801561049f57600080fd5b506101f26104ae3660046121c1565b610be9565b3480156104bf57600080fd5b506101f26104ce366004611f21565b610cf2565b3480156104df57600080fd5b5061023f6104ee366004611ee7565b610e7b565b3480156104ff57600080fd5b5061023f61050e366004611ee7565b610ef6565b34801561051f57600080fd5b5061023f61052e366004611fe8565b6001600160a01b031660009081526008602052604090205460ff1690565b34801561055857600080fd5b506103597f000000000000000000000000e592427a0aece92de3edee1f18e0157c0586156481565b34801561058c57600080fd5b506101f261059b366004611fe8565b610f04565b3480156105ac57600080fd5b506102806105bb3660046121fa565b611084565b3480156105cc57600080fd5b506006546001600160a01b0316610359565b3480156105ea57600080fd5b506101f26105f9366004611fe8565b6110af565b610606611120565b600654600160a81b900460ff16156106715760405162461bcd60e51b815260206004820152602360248201527f486f7564696e6953776170546f6b656e3a20416c7265616479206c61756e636860448201526232b21760e91b60648201526084015b60405180910390fd5b60007f000000000000000000000000e592427a0aece92de3edee1f18e0157c058615646001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106f59190612228565b905060007f000000000000000000000000e592427a0aece92de3edee1f18e0157c058615646001600160a01b0316634aa4a4fc6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610757573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061077b9190612228565b604051630b4c774160e11b81523060048201526001600160a01b0380831660248301526127106044830152919250600091841690631698ee8290606401602060405180830381865afa1580156107d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107f99190612228565b90506001600160a01b0381166108865760405163a167129560e01b81523060048201526001600160a01b038381166024830152612710604483015284169063a1671295906064016020604051808303816000875af115801561085f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108839190612228565b90505b61089181600161117a565b6006805461ffff60a01b191661010160a01b179055604080514381524260208201527fa4eda92a9703eeccb36fbed43c5cfce0e180464bf695e806d3bd0e439743fd56910160405180910390a1505050565b6060600380546108f290612245565b80601f016020809104026020016040519081016040528092919081815260200182805461091e90612245565b801561096b5780601f106109405761010080835404028352916020019161096b565b820191906000526020600020905b81548152906001019060200180831161094e57829003601f168201915b5050505050905090565b6000336109838185856111ce565b60019150505b92915050565b610997611120565b60005b828110156109da576109d28484838181106109b7576109b761227f565b90506020020160208101906109cc9190611fe8565b836112f2565b60010161099a565b50505050565b6000336109ee858285611352565b6109f98585856113c6565b506001949350505050565b600033610983818585610a178383611084565b610a219190612295565b6111ce565b610a3033826116a0565b50565b610a3b611120565b8051825114610aa55760405162461bcd60e51b815260206004820152603060248201527f486f7564696e6953776170546f6b656e3a20417272617973206d75737420626560448201526f040e8d0ca40e6c2daca40d8cadccee8d60831b6064820152608401610668565b60005b8251811015610b4a576000838281518110610ac557610ac561227f565b602002602001015190506000838381518110610ae357610ae361227f565b60200260200101519050610afe610af73390565b83836113c6565b604080516001600160a01b0384168152602081018390527f8c32c568416fcf97be35ce5b27844cfddcd63a67a1a602c3595ba5dac38f303a910160405180910390a15050600101610aa8565b505050565b610b57611120565b610b6160006117d2565b565b60065433906001600160a01b03168114610bd15760405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206044820152683732bb9037bbb732b960b91b6064820152608401610668565b610a30816117d2565b6060600480546108f290612245565b610bf1611120565b816001600160a01b0381163b610c6f5760405162461bcd60e51b815260206004820152603960248201527f486f7564696e6953776170546f6b656e3a20546865206164647265737320646f60448201527f6573206e6f7420636f6e7461696e206120636f6e7472616374000000000000006064820152608401610668565b6001600160a01b03831660009081526008602052604090205460ff1615610ce85760405162461bcd60e51b815260206004820152602760248201527f486f7564696e6953776170546f6b656e3a20414d4d205061697220616c726561604482015266323c9039b2ba1760c91b6064820152608401610668565b610b4a838361117a565b610cfa611120565b60005b828110156109da5760086000858584818110610d1b57610d1b61227f565b9050602002016020810190610d309190611fe8565b6001600160a01b0316815260208101919091526040016000205460ff16158015610db257507f000000000000000000000000e592427a0aece92de3edee1f18e0157c058615646001600160a01b0316848483818110610d9157610d9161227f565b9050602002016020810190610da69190611fe8565b6001600160a01b031614155b8015610ded575030848483818110610dcc57610dcc61227f565b9050602002016020810190610de19190611fe8565b6001600160a01b031614155b8015610e3e575060076000858584818110610e0a57610e0a61227f565b9050602002016020810190610e1f9190611fe8565b6001600160a01b0316815260208101919091526040016000205460ff16155b15610e7357610e73848483818110610e5857610e5861227f565b9050602002016020810190610e6d9190611fe8565b836117eb565b600101610cfd565b60003381610e898286611084565b905083811015610ee95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610668565b6109f982868684036111ce565b6000336109838185856113c6565b610f0c611120565b60006001600160a01b038216610f7057506040514790600090339083908381818185875af1925050503d8060008114610f61576040519150601f19603f3d011682016040523d82523d6000602084013e610f66565b606091505b5061103e92505050565b6040516370a0823160e01b81523060048201526001600160a01b038316906370a0823190602401602060405180830381865afa158015610fb4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fd891906122b6565b90506000811161102a5760405162461bcd60e51b815260206004820152601b60248201527f486f7564696e6953776170546f6b656e3a204e6f20746f6b656e7300000000006044820152606401610668565b61103e6001600160a01b0383163383611843565b604080516001600160a01b0384168152602081018390527f07c81a5e6d155913a9ed2ce53630058179c89fc94bb5de130620b0245c9f6a0b910160405180910390a15050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6110b7611120565b600680546001600160a01b0383166001600160a01b031990911681179091556110e86005546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6005546001600160a01b03163314610b615760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610668565b6001600160a01b038216600081815260086020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166112305760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610668565b6001600160a01b0382166112915760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610668565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038216600081815260076020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a25050565b600061135e8484611084565b905060001981146109da57818110156113b95760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610668565b6109da84848484036111ce565b6001600160a01b0383166114355760405162461bcd60e51b815260206004820152603060248201527f486f7564696e6953776170546f6b656e3a207472616e736665722066726f6d2060448201526f746865207a65726f206164647265737360801b6064820152608401610668565b6001600160a01b0382166114a25760405162461bcd60e51b815260206004820152602e60248201527f486f7564696e6953776170546f6b656e3a207472616e7366657220746f20746860448201526d65207a65726f206164647265737360901b6064820152608401610668565b6001600160a01b03831660009081526007602052604090205460ff16806114e157506001600160a01b03821660009081526007602052604090205460ff165b156114f157610b4a838383611895565b6001600160a01b03831660009081526009602052604090205460ff161561152a5760405162461bcd60e51b8152600401610668906122cf565b336001600160a01b038416148061155157503360009081526009602052604090205460ff16155b61156d5760405162461bcd60e51b8152600401610668906122cf565b326001600160a01b038416148061158357503233145b8061159e57503260009081526009602052604090205460ff16155b6115ba5760405162461bcd60e51b8152600401610668906122cf565b806000036115ce57610b4a83836000611895565b60006115e26005546001600160a01b031690565b600654909150600160a81b900460ff168061160e5750806001600160a01b0316846001600160a01b0316145b8061162a5750806001600160a01b0316836001600160a01b0316145b8061163f57506001600160a01b03831661dead145b61168b5760405162461bcd60e51b815260206004820152601f60248201527f486f7564696e6953776170546f6b656e3a204e6f74206c61756e636865642e006044820152606401610668565b6116958484611a39565b6109da848484611895565b6001600160a01b0382166117005760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610668565b6001600160a01b038216600090815260208190526040902054818110156117745760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610668565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600680546001600160a01b0319169055610a3081611bc4565b6001600160a01b038216600081815260096020908152604091829020805460ff191685151590811790915591519182527ff7f8b40d08076851dfb7cfd6c584ae9a829a570f264abee45e0d7ca342ae8dc89101611346565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610b4a908490611c16565b6001600160a01b0383166118f95760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610668565b6001600160a01b03821661195b5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610668565b6001600160a01b038316600090815260208190526040902054818110156119d35760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610668565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36109da565b600654600160a01b900460ff1615611bc0576001600160a01b03821660009081526008602052604090205460ff16158015611a8d57506001600160a01b03811660009081526008602052604090205460ff16155b15611bc0576001600160a01b0381163b15611b2a57806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015611afc575060408051601f3d908101601f19168201909252611af991810190612228565b60015b15611b2a576001600160a01b03811615611b285760405162461bcd60e51b815260040161066890612306565b505b6001600160a01b0382163b15611bc057816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015611b94575060408051601f3d908101601f19168201909252611b9191810190612228565b60015b15611bc0576001600160a01b03811615610b4a5760405162461bcd60e51b815260040161066890612306565b5050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611c6b826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611ceb9092919063ffffffff16565b9050805160001480611c8c575080806020019051810190611c8c919061234a565b610b4a5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610668565b6060611cfa8484600085611d02565b949350505050565b606082471015611d635760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610668565b600080866001600160a01b03168587604051611d7f9190612367565b60006040518083038185875af1925050503d8060008114611dbc576040519150601f19603f3d011682016040523d82523d6000602084013e611dc1565b606091505b5091509150611dd287838387611ddd565b979650505050505050565b60608315611e4c578251600003611e45576001600160a01b0385163b611e455760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610668565b5081611cfa565b611cfa8383815115611e615781518083602001fd5b8060405162461bcd60e51b81526004016106689190611e9f565b60005b83811015611e96578181015183820152602001611e7e565b50506000910152565b6020815260008251806020840152611ebe816040850160208701611e7b565b601f01601f19169190910160400192915050565b6001600160a01b0381168114610a3057600080fd5b60008060408385031215611efa57600080fd5b8235611f0581611ed2565b946020939093013593505050565b8015158114610a3057600080fd5b600080600060408486031215611f3657600080fd5b833567ffffffffffffffff80821115611f4e57600080fd5b818601915086601f830112611f6257600080fd5b813581811115611f7157600080fd5b8760208260051b8501011115611f8657600080fd5b60209283019550935050840135611f9c81611f13565b809150509250925092565b600080600060608486031215611fbc57600080fd5b8335611fc781611ed2565b92506020840135611fd781611ed2565b929592945050506040919091013590565b600060208284031215611ffa57600080fd5b813561200581611ed2565b9392505050565b60006020828403121561201e57600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561206457612064612025565b604052919050565b600067ffffffffffffffff82111561208657612086612025565b5060051b60200190565b600082601f8301126120a157600080fd5b813560206120b66120b18361206c565b61203b565b8083825260208201915060208460051b8701019350868411156120d857600080fd5b602086015b848110156120f457803583529183019183016120dd565b509695505050505050565b6000806040838503121561211257600080fd5b823567ffffffffffffffff8082111561212a57600080fd5b818501915085601f83011261213e57600080fd5b8135602061214e6120b18361206c565b82815260059290921b8401810191818101908984111561216d57600080fd5b948201945b8386101561219457853561218581611ed2565b82529482019490820190612172565b965050860135925050808211156121aa57600080fd5b506121b785828601612090565b9150509250929050565b600080604083850312156121d457600080fd5b82356121df81611ed2565b915060208301356121ef81611f13565b809150509250929050565b6000806040838503121561220d57600080fd5b823561221881611ed2565b915060208301356121ef81611ed2565b60006020828403121561223a57600080fd5b815161200581611ed2565b600181811c9082168061225957607f821691505b60208210810361227957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b8082018082111561098957634e487b7160e01b600052601160045260246000fd5b6000602082840312156122c857600080fd5b5051919050565b6020808252601e908201527f486f7564696e6953776170546f6b656e3a20626f742064657465637465640000604082015260600190565b60208082526024908201527f486f7564696e6953776170546f6b656e3a20414d4d206e6f7420737570706f726040820152633a32b21760e11b606082015260800190565b60006020828403121561235c57600080fd5b815161200581611f13565b60008251612379818460208701611e7b565b919091019291505056fea2646970667358221220bea34454d607a238072d8884af516a86821ad32ca406e0945506985b66aafe3564736f6c63430008160033
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.