ERC-20
Overview
Max Total Supply
3,554,457,000,000 POD
Holders
1,704 (0.00%)
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
$21,394.28
Circulating Supply Market Cap
$21,393.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
1,622,118,829.686227276357130504 PODValue
$9.76 ( ~0.0032095280136021 Eth) [0.0456%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PodToken
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity =0.8.19; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; contract PodToken is ERC20, Ownable { address public constant DEAD_ADDRESS = 0x000000000000000000000000000000000000dEaD; uint256 constant DECIMAL_POINTS = 10000; uint256 public taxFees = 99; uint256 public antiBotBlockLimit; address public marketing; uint256 public maxPerWallet; address public router; uint256 public slippage = 200; uint256 public swapThreshold = 1; uint256 public startBlock; uint256 private _feesOnContract; error InvalidAddress(); error InvalidNumber(); error TransferLimitExceeded(); event MarketingUpdated(address indexed marketing); event SlippageUpdated(uint256 indexed slippage); event TaxFeesUpdated(uint256 indexed taxFees); event SwapThresholdUpdated(uint256 indexed swapThreshold); event MaxPerWalletUpdated(uint256 indexed maxPerWallet); constructor( address _marketing, address _router, uint256 _maxPerWallet, uint256 _antiBotBlockLimit ) ERC20("The Other Party", "POD") { if (_marketing == address(0)) revert InvalidAddress(); if (_antiBotBlockLimit == 0) revert InvalidNumber(); if (_maxPerWallet == 0) revert InvalidNumber(); _mint(msg.sender, 3_554_457_000_000 ether); router = _router; marketing = _marketing; maxPerWallet = _maxPerWallet; antiBotBlockLimit = _antiBotBlockLimit; } function _transfer( address _from, address _to, uint256 _amount ) internal virtual override { address _pair = _getPair(address(this), _getWETH()); if (_to == _pair && startBlock == uint256(0)) { startBlock = block.number; } if ( (_from != address(this) && _from != DEAD_ADDRESS && _from != owner() && _from != marketing) && (_to != address(this) && _to != DEAD_ADDRESS && _to != owner() && _to != marketing) ) { if (_to != _pair) { _checkValidTransfer(_to, _amount); } uint256 _feeAmount = (_amount * taxFees) / DECIMAL_POINTS; super._transfer(_from, address(this), _feeAmount); _feesOnContract += _feeAmount; uint256 _swapThresholdAmount = (totalSupply() * swapThreshold) / DECIMAL_POINTS; if (_from != _pair && (_feesOnContract >= _swapThresholdAmount)) { _swap( _feesOnContract, _getPath(address(this), _getWETH()), marketing ); _feesOnContract = 0; } return super._transfer(_from, _to, _amount - _feeAmount); } else return super._transfer(_from, _to, _amount); } function _checkValidTransfer(address _to, uint256 _amount) private view { uint256 _maxWalletAmount = ((totalSupply() * maxPerWallet) / DECIMAL_POINTS); uint256 _userBalance = balanceOf(_to); uint256 _validTokenTransfer = _maxWalletAmount > _userBalance ? _maxWalletAmount - _userBalance : 0; uint256 _transferPerBlock = totalSupply() / antiBotBlockLimit; uint256 _validTokenTransferPerBlock = (block.number - startBlock) * _transferPerBlock; if ( (block.number <= (antiBotBlockLimit + startBlock)) && startBlock != uint256(0) ) { if (_amount > _validTokenTransferPerBlock) revert TransferLimitExceeded(); } if (_amount > _validTokenTransfer) revert TransferLimitExceeded(); } function _getFactory() private view returns (address) { return IUniswapV2Router02(router).factory(); } function _getWETH() private view returns (address) { return IUniswapV2Router02(router).WETH(); } function _getPair( address _tokenA, address _tokenB ) private view returns (address) { return IUniswapV2Factory(_getFactory()).getPair(_tokenA, _tokenB); } function _getPath( address _tokenA, address _tokenB ) private view returns (address[] memory) { address[] memory _path; address WETH = _getWETH(); if (_tokenA == WETH || _tokenB == WETH) { _path = new address[](2); _path[0] = _tokenA; _path[1] = _tokenB; } else { _path = new address[](3); _path[0] = _tokenA; _path[1] = WETH; _path[2] = _tokenB; } return _path; } function _swap( uint256 _amountIn, address[] memory _path, address _to ) private { if (_amountIn > 0) { IERC20(_path[0]).approve(router, _amountIn); uint256 _amountOutMin = (IUniswapV2Router02(router).getAmountsOut( _amountIn, _path )[_path.length - 1] * (DECIMAL_POINTS - slippage)) / DECIMAL_POINTS; IUniswapV2Router02(router) .swapExactTokensForTokensSupportingFeeOnTransferTokens( _amountIn, _amountOutMin, _path, _to, block.timestamp ); } } function updateSwapThreshold(uint256 _swapThreshold) external onlyOwner { if (_swapThreshold == 0) revert InvalidNumber(); swapThreshold = _swapThreshold; emit SwapThresholdUpdated(_swapThreshold); } function updateTaxFees(uint256 _taxFees) external onlyOwner { if (_taxFees == 0) revert InvalidNumber(); taxFees = _taxFees; emit TaxFeesUpdated(_taxFees); } function updateMarketing(address _marketing) external onlyOwner { if (_marketing == address(0)) revert InvalidAddress(); marketing = _marketing; emit MarketingUpdated(_marketing); } function updateMaxPerWallet(uint256 _maxPerWallet) external onlyOwner { if (_maxPerWallet == 0) revert InvalidNumber(); maxPerWallet = _maxPerWallet; emit MaxPerWalletUpdated(_maxPerWallet); } function updateSlippage(uint256 _slippage) external onlyOwner { slippage = _slippage; emit SlippageUpdated(_slippage); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_marketing","type":"address"},{"internalType":"address","name":"_router","type":"address"},{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"},{"internalType":"uint256","name":"_antiBotBlockLimit","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"InvalidAddress","type":"error"},{"inputs":[],"name":"InvalidNumber","type":"error"},{"inputs":[],"name":"TransferLimitExceeded","type":"error"},{"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":"marketing","type":"address"}],"name":"MarketingUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"maxPerWallet","type":"uint256"}],"name":"MaxPerWalletUpdated","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":"uint256","name":"slippage","type":"uint256"}],"name":"SlippageUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"swapThreshold","type":"uint256"}],"name":"SwapThresholdUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"taxFees","type":"uint256"}],"name":"TaxFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEAD_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"antiBotBlockLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketing","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"slippage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_marketing","type":"address"}],"name":"updateMarketing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"}],"name":"updateMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_slippage","type":"uint256"}],"name":"updateSlippage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_swapThreshold","type":"uint256"}],"name":"updateSwapThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxFees","type":"uint256"}],"name":"updateTaxFees","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052606360065560c8600b556001600c553480156200002057600080fd5b50604051620036b3380380620036b3833981810160405281019062000046919062000578565b6040518060400160405280600f81526020017f546865204f7468657220506172747900000000000000000000000000000000008152506040518060400160405280600381526020017f504f4400000000000000000000000000000000000000000000000000000000008152508160039081620000c391906200085a565b508060049081620000d591906200085a565b505050620000f8620000ec6200028e60201b60201c565b6200029660201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036200015f576040517fe6c4247b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600081036200019a576040517f74cbd35f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008203620001d5576040517f74cbd35f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620001f4336c2cdd11eb2650c021c1390000006200035c60201b60201c565b82600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600981905550806007819055505050505062000a5c565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620003ce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003c590620009a2565b60405180910390fd5b620003e260008383620004c960201b60201c565b8060026000828254620003f69190620009f3565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004a9919062000a3f565b60405180910390a3620004c560008383620004ce60201b60201c565b5050565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200050582620004d8565b9050919050565b6200051781620004f8565b81146200052357600080fd5b50565b60008151905062000537816200050c565b92915050565b6000819050919050565b62000552816200053d565b81146200055e57600080fd5b50565b600081519050620005728162000547565b92915050565b60008060008060808587031215620005955762000594620004d3565b5b6000620005a58782880162000526565b9450506020620005b88782880162000526565b9350506040620005cb8782880162000561565b9250506060620005de8782880162000561565b91505092959194509250565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200066c57607f821691505b60208210810362000682576200068162000624565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006ec7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620006ad565b620006f88683620006ad565b95508019841693508086168417925050509392505050565b6000819050919050565b60006200073b620007356200072f846200053d565b62000710565b6200053d565b9050919050565b6000819050919050565b62000757836200071a565b6200076f620007668262000742565b848454620006ba565b825550505050565b600090565b6200078662000777565b620007938184846200074c565b505050565b5b81811015620007bb57620007af6000826200077c565b60018101905062000799565b5050565b601f8211156200080a57620007d48162000688565b620007df846200069d565b81016020851015620007ef578190505b62000807620007fe856200069d565b83018262000798565b50505b505050565b600082821c905092915050565b60006200082f600019846008026200080f565b1980831691505092915050565b60006200084a83836200081c565b9150826002028217905092915050565b6200086582620005ea565b67ffffffffffffffff811115620008815762000880620005f5565b5b6200088d825462000653565b6200089a828285620007bf565b600060209050601f831160018114620008d25760008415620008bd578287015190505b620008c985826200083c565b86555062000939565b601f198416620008e28662000688565b60005b828110156200090c57848901518255600182019150602085019450602081019050620008e5565b868310156200092c578489015162000928601f8916826200081c565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200098a601f8362000941565b9150620009978262000952565b602082019050919050565b60006020820190508181036000830152620009bd816200097b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000a00826200053d565b915062000a0d836200053d565b925082820190508082111562000a285762000a27620009c4565b5b92915050565b62000a39816200053d565b82525050565b600060208201905062000a56600083018462000a2e565b92915050565b612c478062000a6c6000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c806370a08231116100f9578063b91ebc8811610097578063dd62ed3e11610071578063dd62ed3e146104e9578063f2fde38b14610519578063f887ea4014610535578063fecfda4914610553576101c4565b8063b91ebc8814610493578063bdc1d8ed146104af578063cc274b29146104cd576101c4565b806395d89b41116100d357806395d89b41146103f9578063a3a7f23214610417578063a457c2d714610433578063a9059cbb14610463576101c4565b806370a08231146103a1578063715018a6146103d15780638da5cb5b146103db576101c4565b80632d3e474a116101665780633e032a3b116101405780633e032a3b14610329578063453c23101461034757806348cd4cb1146103655780634e6fd6c414610383576101c4565b80632d3e474a146102bd578063313ce567146102db57806339509351146102f9576101c4565b80630ddc0976116101a25780630ddc09761461023557806315b0d4961461025357806318160ddd1461026f57806323b872dd1461028d576101c4565b80630445b667146101c957806306fdde03146101e7578063095ea7b314610205575b600080fd5b6101d161056f565b6040516101de9190611e69565b60405180910390f35b6101ef610575565b6040516101fc9190611f14565b60405180910390f35b61021f600480360381019061021a9190611fd4565b610607565b60405161022c919061202f565b60405180910390f35b61023d61062a565b60405161024a9190611e69565b60405180910390f35b61026d6004803603810190610268919061204a565b610630565b005b61027761066f565b6040516102849190611e69565b60405180910390f35b6102a760048036038101906102a29190612077565b610679565b6040516102b4919061202f565b60405180910390f35b6102c56106a8565b6040516102d291906120d9565b60405180910390f35b6102e36106ce565b6040516102f09190612110565b60405180910390f35b610313600480360381019061030e9190611fd4565b6106d7565b604051610320919061202f565b60405180910390f35b61033161070e565b60405161033e9190611e69565b60405180910390f35b61034f610714565b60405161035c9190611e69565b60405180910390f35b61036d61071a565b60405161037a9190611e69565b60405180910390f35b61038b610720565b60405161039891906120d9565b60405180910390f35b6103bb60048036038101906103b6919061212b565b610726565b6040516103c89190611e69565b60405180910390f35b6103d961076e565b005b6103e3610782565b6040516103f091906120d9565b60405180910390f35b6104016107ac565b60405161040e9190611f14565b60405180910390f35b610431600480360381019061042c919061204a565b61083e565b005b61044d60048036038101906104489190611fd4565b6108b7565b60405161045a919061202f565b60405180910390f35b61047d60048036038101906104789190611fd4565b61092e565b60405161048a919061202f565b60405180910390f35b6104ad60048036038101906104a8919061212b565b610951565b005b6104b7610a46565b6040516104c49190611e69565b60405180910390f35b6104e760048036038101906104e2919061204a565b610a4c565b005b61050360048036038101906104fe9190612158565b610ac5565b6040516105109190611e69565b60405180910390f35b610533600480360381019061052e919061212b565b610b4c565b005b61053d610bcf565b60405161054a91906120d9565b60405180910390f35b61056d6004803603810190610568919061204a565b610bf5565b005b600c5481565b606060038054610584906121c7565b80601f01602080910402602001604051908101604052809291908181526020018280546105b0906121c7565b80156105fd5780601f106105d2576101008083540402835291602001916105fd565b820191906000526020600020905b8154815290600101906020018083116105e057829003601f168201915b5050505050905090565b600080610612610c6e565b905061061f818585610c76565b600191505092915050565b60065481565b610638610e3f565b80600b81905550807ff5a802650e0a86db227cc342f06327d2ca0ff5cf2b12e0084fc5d8a7db2c54fd60405160405180910390a250565b6000600254905090565b600080610684610c6e565b9050610691858285610ebd565b61069c858585610f49565b60019150509392505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b6000806106e2610c6e565b90506107038185856106f48589610ac5565b6106fe9190612227565b610c76565b600191505092915050565b600b5481565b60095481565b600d5481565b61dead81565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610776610e3f565b610780600061131d565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546107bb906121c7565b80601f01602080910402602001604051908101604052809291908181526020018280546107e7906121c7565b80156108345780601f1061080957610100808354040283529160200191610834565b820191906000526020600020905b81548152906001019060200180831161081757829003601f168201915b5050505050905090565b610846610e3f565b60008103610880576040517f74cbd35f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600681905550807fb34cfed6114f46bbf75e6dcc7c7190cae96c183f3933ac3921003c9d53698e3060405160405180910390a250565b6000806108c2610c6e565b905060006108d08286610ac5565b905083811015610915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090c906122cd565b60405180910390fd5b6109228286868403610c76565b60019250505092915050565b600080610939610c6e565b9050610946818585610f49565b600191505092915050565b610959610e3f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109bf576040517fe6c4247b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167feaf8ef35e433762aa696ae9447608369d638cec1961bd2317c4349bb5be9ee7860405160405180910390a250565b60075481565b610a54610e3f565b60008103610a8e576040517f74cbd35f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600c81905550807f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647660405160405180910390a250565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b54610e3f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bba9061235f565b60405180910390fd5b610bcc8161131d565b50565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610bfd610e3f565b60008103610c37576040517f74cbd35f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600981905550807f97e4f91a4b7e108aff6d29a03d7b9f94705ad90ed51b377784a1943ea32257e760405160405180910390a250565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdc906123f1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4b90612483565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e329190611e69565b60405180910390a3505050565b610e47610c6e565b73ffffffffffffffffffffffffffffffffffffffff16610e65610782565b73ffffffffffffffffffffffffffffffffffffffff1614610ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb2906124ef565b60405180910390fd5b565b6000610ec98484610ac5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f435781811015610f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2c9061255b565b60405180910390fd5b610f428484848403610c76565b5b50505050565b6000610f5c30610f576113e3565b61147b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015610f9b57506000600d54145b15610fa85743600d819055505b3073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015611012575061dead73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156110515750611021610782565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156110ab5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156111b657503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561111c575061dead73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801561115b575061112b610782565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156111b55750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b1561130b578073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146111f9576111f88383611508565b5b60006127106006548461120c919061257b565b61121691906125ec565b9050611223853083611635565b80600e60008282546112359190612227565b925050819055506000612710600c5461124c61066f565b611256919061257b565b61126091906125ec565b90508273ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16141580156112a0575080600e5410155b156112ed576112e4600e546112bc306112b76113e3565b6118ab565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611b58565b6000600e819055505b611303868684876112fe919061261d565b611635565b505050611318565b611316848484611635565b505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611452573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114769190612666565b905090565b6000611485611dae565b73ffffffffffffffffffffffffffffffffffffffff1663e6a4390584846040518363ffffffff1660e01b81526004016114bf929190612693565b602060405180830381865afa1580156114dc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115009190612666565b905092915050565b600061271060095461151861066f565b611522919061257b565b61152c91906125ec565b9050600061153984610726565b9050600081831161154b576000611558565b8183611557919061261d565b5b9050600060075461156761066f565b61157191906125ec565b9050600081600d5443611584919061261d565b61158e919061257b565b9050600d546007546115a09190612227565b43111580156115b257506000600d5414155b156115f257808611156115f1576040517f3525bb0b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8286111561162c576040517f3525bb0b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036116a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169b9061272e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611713576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170a906127c0565b60405180910390fd5b61171e838383611e46565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156117a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179b90612852565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118929190611e69565b60405180910390a36118a5848484611e4b565b50505050565b60608060006118b86113e3565b90508073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061191f57508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b15611a1357600267ffffffffffffffff81111561193f5761193e612872565b5b60405190808252806020026020018201604052801561196d5781602001602082028036833780820191505090505b5091508482600081518110611985576119846128a1565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505083826001815181106119d4576119d36128a1565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611b4d565b600367ffffffffffffffff811115611a2e57611a2d612872565b5b604051908082528060200260200182016040528015611a5c5781602001602082028036833780820191505090505b5091508482600081518110611a7457611a736128a1565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508082600181518110611ac357611ac26128a1565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508382600281518110611b1257611b116128a1565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250505b819250505092915050565b6000831115611da95781600081518110611b7557611b746128a1565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518363ffffffff1660e01b8152600401611bd99291906128d0565b6020604051808303816000875af1158015611bf8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c1c9190612925565b506000612710600b54612710611c32919061261d565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d06ca61f87876040518363ffffffff1660e01b8152600401611c8f929190612a10565b600060405180830381865afa158015611cac573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611cd59190612b6e565b60018651611ce3919061261d565b81518110611cf457611cf36128a1565b5b6020026020010151611d06919061257b565b611d1091906125ec565b9050600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d79585838686426040518663ffffffff1660e01b8152600401611d75959493929190612bb7565b600060405180830381600087803b158015611d8f57600080fd5b505af1158015611da3573d6000803e3d6000fd5b50505050505b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e1d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e419190612666565b905090565b505050565b505050565b6000819050919050565b611e6381611e50565b82525050565b6000602082019050611e7e6000830184611e5a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611ebe578082015181840152602081019050611ea3565b60008484015250505050565b6000601f19601f8301169050919050565b6000611ee682611e84565b611ef08185611e8f565b9350611f00818560208601611ea0565b611f0981611eca565b840191505092915050565b60006020820190508181036000830152611f2e8184611edb565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611f7582611f4a565b9050919050565b611f8581611f6a565b8114611f9057600080fd5b50565b600081359050611fa281611f7c565b92915050565b611fb181611e50565b8114611fbc57600080fd5b50565b600081359050611fce81611fa8565b92915050565b60008060408385031215611feb57611fea611f40565b5b6000611ff985828601611f93565b925050602061200a85828601611fbf565b9150509250929050565b60008115159050919050565b61202981612014565b82525050565b60006020820190506120446000830184612020565b92915050565b6000602082840312156120605761205f611f40565b5b600061206e84828501611fbf565b91505092915050565b6000806000606084860312156120905761208f611f40565b5b600061209e86828701611f93565b93505060206120af86828701611f93565b92505060406120c086828701611fbf565b9150509250925092565b6120d381611f6a565b82525050565b60006020820190506120ee60008301846120ca565b92915050565b600060ff82169050919050565b61210a816120f4565b82525050565b60006020820190506121256000830184612101565b92915050565b60006020828403121561214157612140611f40565b5b600061214f84828501611f93565b91505092915050565b6000806040838503121561216f5761216e611f40565b5b600061217d85828601611f93565b925050602061218e85828601611f93565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806121df57607f821691505b6020821081036121f2576121f1612198565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061223282611e50565b915061223d83611e50565b9250828201905080821115612255576122546121f8565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006122b7602583611e8f565b91506122c28261225b565b604082019050919050565b600060208201905081810360008301526122e6816122aa565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612349602683611e8f565b9150612354826122ed565b604082019050919050565b600060208201905081810360008301526123788161233c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006123db602483611e8f565b91506123e68261237f565b604082019050919050565b6000602082019050818103600083015261240a816123ce565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061246d602283611e8f565b915061247882612411565b604082019050919050565b6000602082019050818103600083015261249c81612460565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006124d9602083611e8f565b91506124e4826124a3565b602082019050919050565b60006020820190508181036000830152612508816124cc565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612545601d83611e8f565b91506125508261250f565b602082019050919050565b6000602082019050818103600083015261257481612538565b9050919050565b600061258682611e50565b915061259183611e50565b925082820261259f81611e50565b915082820484148315176125b6576125b56121f8565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006125f782611e50565b915061260283611e50565b925082612612576126116125bd565b5b828204905092915050565b600061262882611e50565b915061263383611e50565b925082820390508181111561264b5761264a6121f8565b5b92915050565b60008151905061266081611f7c565b92915050565b60006020828403121561267c5761267b611f40565b5b600061268a84828501612651565b91505092915050565b60006040820190506126a860008301856120ca565b6126b560208301846120ca565b9392505050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612718602583611e8f565b9150612723826126bc565b604082019050919050565b600060208201905081810360008301526127478161270b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006127aa602383611e8f565b91506127b58261274e565b604082019050919050565b600060208201905081810360008301526127d98161279d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061283c602683611e8f565b9150612847826127e0565b604082019050919050565b6000602082019050818103600083015261286b8161282f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006040820190506128e560008301856120ca565b6128f26020830184611e5a565b9392505050565b61290281612014565b811461290d57600080fd5b50565b60008151905061291f816128f9565b92915050565b60006020828403121561293b5761293a611f40565b5b600061294984828501612910565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61298781611f6a565b82525050565b6000612999838361297e565b60208301905092915050565b6000602082019050919050565b60006129bd82612952565b6129c7818561295d565b93506129d28361296e565b8060005b83811015612a035781516129ea888261298d565b97506129f5836129a5565b9250506001810190506129d6565b5085935050505092915050565b6000604082019050612a256000830185611e5a565b8181036020830152612a3781846129b2565b90509392505050565b600080fd5b612a4e82611eca565b810181811067ffffffffffffffff82111715612a6d57612a6c612872565b5b80604052505050565b6000612a80611f36565b9050612a8c8282612a45565b919050565b600067ffffffffffffffff821115612aac57612aab612872565b5b602082029050602081019050919050565b600080fd5b600081519050612ad181611fa8565b92915050565b6000612aea612ae584612a91565b612a76565b90508083825260208201905060208402830185811115612b0d57612b0c612abd565b5b835b81811015612b365780612b228882612ac2565b845260208401935050602081019050612b0f565b5050509392505050565b600082601f830112612b5557612b54612a40565b5b8151612b65848260208601612ad7565b91505092915050565b600060208284031215612b8457612b83611f40565b5b600082015167ffffffffffffffff811115612ba257612ba1611f45565b5b612bae84828501612b40565b91505092915050565b600060a082019050612bcc6000830188611e5a565b612bd96020830187611e5a565b8181036040830152612beb81866129b2565b9050612bfa60608301856120ca565b612c076080830184611e5a565b969550505050505056fea26469706673582212208e58d865125e6da9a582b6d3fd2c8ccbcb007f03ba380f67fe254693fbd935d864736f6c63430008130033000000000000000000000000a0b9712c3b4b55e8f3bddf7eae5877d7df0ae5cc0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000320
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101c45760003560e01c806370a08231116100f9578063b91ebc8811610097578063dd62ed3e11610071578063dd62ed3e146104e9578063f2fde38b14610519578063f887ea4014610535578063fecfda4914610553576101c4565b8063b91ebc8814610493578063bdc1d8ed146104af578063cc274b29146104cd576101c4565b806395d89b41116100d357806395d89b41146103f9578063a3a7f23214610417578063a457c2d714610433578063a9059cbb14610463576101c4565b806370a08231146103a1578063715018a6146103d15780638da5cb5b146103db576101c4565b80632d3e474a116101665780633e032a3b116101405780633e032a3b14610329578063453c23101461034757806348cd4cb1146103655780634e6fd6c414610383576101c4565b80632d3e474a146102bd578063313ce567146102db57806339509351146102f9576101c4565b80630ddc0976116101a25780630ddc09761461023557806315b0d4961461025357806318160ddd1461026f57806323b872dd1461028d576101c4565b80630445b667146101c957806306fdde03146101e7578063095ea7b314610205575b600080fd5b6101d161056f565b6040516101de9190611e69565b60405180910390f35b6101ef610575565b6040516101fc9190611f14565b60405180910390f35b61021f600480360381019061021a9190611fd4565b610607565b60405161022c919061202f565b60405180910390f35b61023d61062a565b60405161024a9190611e69565b60405180910390f35b61026d6004803603810190610268919061204a565b610630565b005b61027761066f565b6040516102849190611e69565b60405180910390f35b6102a760048036038101906102a29190612077565b610679565b6040516102b4919061202f565b60405180910390f35b6102c56106a8565b6040516102d291906120d9565b60405180910390f35b6102e36106ce565b6040516102f09190612110565b60405180910390f35b610313600480360381019061030e9190611fd4565b6106d7565b604051610320919061202f565b60405180910390f35b61033161070e565b60405161033e9190611e69565b60405180910390f35b61034f610714565b60405161035c9190611e69565b60405180910390f35b61036d61071a565b60405161037a9190611e69565b60405180910390f35b61038b610720565b60405161039891906120d9565b60405180910390f35b6103bb60048036038101906103b6919061212b565b610726565b6040516103c89190611e69565b60405180910390f35b6103d961076e565b005b6103e3610782565b6040516103f091906120d9565b60405180910390f35b6104016107ac565b60405161040e9190611f14565b60405180910390f35b610431600480360381019061042c919061204a565b61083e565b005b61044d60048036038101906104489190611fd4565b6108b7565b60405161045a919061202f565b60405180910390f35b61047d60048036038101906104789190611fd4565b61092e565b60405161048a919061202f565b60405180910390f35b6104ad60048036038101906104a8919061212b565b610951565b005b6104b7610a46565b6040516104c49190611e69565b60405180910390f35b6104e760048036038101906104e2919061204a565b610a4c565b005b61050360048036038101906104fe9190612158565b610ac5565b6040516105109190611e69565b60405180910390f35b610533600480360381019061052e919061212b565b610b4c565b005b61053d610bcf565b60405161054a91906120d9565b60405180910390f35b61056d6004803603810190610568919061204a565b610bf5565b005b600c5481565b606060038054610584906121c7565b80601f01602080910402602001604051908101604052809291908181526020018280546105b0906121c7565b80156105fd5780601f106105d2576101008083540402835291602001916105fd565b820191906000526020600020905b8154815290600101906020018083116105e057829003601f168201915b5050505050905090565b600080610612610c6e565b905061061f818585610c76565b600191505092915050565b60065481565b610638610e3f565b80600b81905550807ff5a802650e0a86db227cc342f06327d2ca0ff5cf2b12e0084fc5d8a7db2c54fd60405160405180910390a250565b6000600254905090565b600080610684610c6e565b9050610691858285610ebd565b61069c858585610f49565b60019150509392505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b6000806106e2610c6e565b90506107038185856106f48589610ac5565b6106fe9190612227565b610c76565b600191505092915050565b600b5481565b60095481565b600d5481565b61dead81565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610776610e3f565b610780600061131d565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546107bb906121c7565b80601f01602080910402602001604051908101604052809291908181526020018280546107e7906121c7565b80156108345780601f1061080957610100808354040283529160200191610834565b820191906000526020600020905b81548152906001019060200180831161081757829003601f168201915b5050505050905090565b610846610e3f565b60008103610880576040517f74cbd35f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600681905550807fb34cfed6114f46bbf75e6dcc7c7190cae96c183f3933ac3921003c9d53698e3060405160405180910390a250565b6000806108c2610c6e565b905060006108d08286610ac5565b905083811015610915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090c906122cd565b60405180910390fd5b6109228286868403610c76565b60019250505092915050565b600080610939610c6e565b9050610946818585610f49565b600191505092915050565b610959610e3f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109bf576040517fe6c4247b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167feaf8ef35e433762aa696ae9447608369d638cec1961bd2317c4349bb5be9ee7860405160405180910390a250565b60075481565b610a54610e3f565b60008103610a8e576040517f74cbd35f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600c81905550807f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647660405160405180910390a250565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b54610e3f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bba9061235f565b60405180910390fd5b610bcc8161131d565b50565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610bfd610e3f565b60008103610c37576040517f74cbd35f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600981905550807f97e4f91a4b7e108aff6d29a03d7b9f94705ad90ed51b377784a1943ea32257e760405160405180910390a250565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdc906123f1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4b90612483565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e329190611e69565b60405180910390a3505050565b610e47610c6e565b73ffffffffffffffffffffffffffffffffffffffff16610e65610782565b73ffffffffffffffffffffffffffffffffffffffff1614610ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb2906124ef565b60405180910390fd5b565b6000610ec98484610ac5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f435781811015610f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2c9061255b565b60405180910390fd5b610f428484848403610c76565b5b50505050565b6000610f5c30610f576113e3565b61147b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015610f9b57506000600d54145b15610fa85743600d819055505b3073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015611012575061dead73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156110515750611021610782565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156110ab5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156111b657503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561111c575061dead73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801561115b575061112b610782565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156111b55750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b1561130b578073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146111f9576111f88383611508565b5b60006127106006548461120c919061257b565b61121691906125ec565b9050611223853083611635565b80600e60008282546112359190612227565b925050819055506000612710600c5461124c61066f565b611256919061257b565b61126091906125ec565b90508273ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16141580156112a0575080600e5410155b156112ed576112e4600e546112bc306112b76113e3565b6118ab565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611b58565b6000600e819055505b611303868684876112fe919061261d565b611635565b505050611318565b611316848484611635565b505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611452573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114769190612666565b905090565b6000611485611dae565b73ffffffffffffffffffffffffffffffffffffffff1663e6a4390584846040518363ffffffff1660e01b81526004016114bf929190612693565b602060405180830381865afa1580156114dc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115009190612666565b905092915050565b600061271060095461151861066f565b611522919061257b565b61152c91906125ec565b9050600061153984610726565b9050600081831161154b576000611558565b8183611557919061261d565b5b9050600060075461156761066f565b61157191906125ec565b9050600081600d5443611584919061261d565b61158e919061257b565b9050600d546007546115a09190612227565b43111580156115b257506000600d5414155b156115f257808611156115f1576040517f3525bb0b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8286111561162c576040517f3525bb0b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036116a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169b9061272e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611713576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170a906127c0565b60405180910390fd5b61171e838383611e46565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156117a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179b90612852565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118929190611e69565b60405180910390a36118a5848484611e4b565b50505050565b60608060006118b86113e3565b90508073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061191f57508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b15611a1357600267ffffffffffffffff81111561193f5761193e612872565b5b60405190808252806020026020018201604052801561196d5781602001602082028036833780820191505090505b5091508482600081518110611985576119846128a1565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505083826001815181106119d4576119d36128a1565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611b4d565b600367ffffffffffffffff811115611a2e57611a2d612872565b5b604051908082528060200260200182016040528015611a5c5781602001602082028036833780820191505090505b5091508482600081518110611a7457611a736128a1565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508082600181518110611ac357611ac26128a1565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508382600281518110611b1257611b116128a1565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250505b819250505092915050565b6000831115611da95781600081518110611b7557611b746128a1565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518363ffffffff1660e01b8152600401611bd99291906128d0565b6020604051808303816000875af1158015611bf8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c1c9190612925565b506000612710600b54612710611c32919061261d565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d06ca61f87876040518363ffffffff1660e01b8152600401611c8f929190612a10565b600060405180830381865afa158015611cac573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611cd59190612b6e565b60018651611ce3919061261d565b81518110611cf457611cf36128a1565b5b6020026020010151611d06919061257b565b611d1091906125ec565b9050600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d79585838686426040518663ffffffff1660e01b8152600401611d75959493929190612bb7565b600060405180830381600087803b158015611d8f57600080fd5b505af1158015611da3573d6000803e3d6000fd5b50505050505b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e1d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e419190612666565b905090565b505050565b505050565b6000819050919050565b611e6381611e50565b82525050565b6000602082019050611e7e6000830184611e5a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611ebe578082015181840152602081019050611ea3565b60008484015250505050565b6000601f19601f8301169050919050565b6000611ee682611e84565b611ef08185611e8f565b9350611f00818560208601611ea0565b611f0981611eca565b840191505092915050565b60006020820190508181036000830152611f2e8184611edb565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611f7582611f4a565b9050919050565b611f8581611f6a565b8114611f9057600080fd5b50565b600081359050611fa281611f7c565b92915050565b611fb181611e50565b8114611fbc57600080fd5b50565b600081359050611fce81611fa8565b92915050565b60008060408385031215611feb57611fea611f40565b5b6000611ff985828601611f93565b925050602061200a85828601611fbf565b9150509250929050565b60008115159050919050565b61202981612014565b82525050565b60006020820190506120446000830184612020565b92915050565b6000602082840312156120605761205f611f40565b5b600061206e84828501611fbf565b91505092915050565b6000806000606084860312156120905761208f611f40565b5b600061209e86828701611f93565b93505060206120af86828701611f93565b92505060406120c086828701611fbf565b9150509250925092565b6120d381611f6a565b82525050565b60006020820190506120ee60008301846120ca565b92915050565b600060ff82169050919050565b61210a816120f4565b82525050565b60006020820190506121256000830184612101565b92915050565b60006020828403121561214157612140611f40565b5b600061214f84828501611f93565b91505092915050565b6000806040838503121561216f5761216e611f40565b5b600061217d85828601611f93565b925050602061218e85828601611f93565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806121df57607f821691505b6020821081036121f2576121f1612198565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061223282611e50565b915061223d83611e50565b9250828201905080821115612255576122546121f8565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006122b7602583611e8f565b91506122c28261225b565b604082019050919050565b600060208201905081810360008301526122e6816122aa565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612349602683611e8f565b9150612354826122ed565b604082019050919050565b600060208201905081810360008301526123788161233c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006123db602483611e8f565b91506123e68261237f565b604082019050919050565b6000602082019050818103600083015261240a816123ce565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061246d602283611e8f565b915061247882612411565b604082019050919050565b6000602082019050818103600083015261249c81612460565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006124d9602083611e8f565b91506124e4826124a3565b602082019050919050565b60006020820190508181036000830152612508816124cc565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612545601d83611e8f565b91506125508261250f565b602082019050919050565b6000602082019050818103600083015261257481612538565b9050919050565b600061258682611e50565b915061259183611e50565b925082820261259f81611e50565b915082820484148315176125b6576125b56121f8565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006125f782611e50565b915061260283611e50565b925082612612576126116125bd565b5b828204905092915050565b600061262882611e50565b915061263383611e50565b925082820390508181111561264b5761264a6121f8565b5b92915050565b60008151905061266081611f7c565b92915050565b60006020828403121561267c5761267b611f40565b5b600061268a84828501612651565b91505092915050565b60006040820190506126a860008301856120ca565b6126b560208301846120ca565b9392505050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612718602583611e8f565b9150612723826126bc565b604082019050919050565b600060208201905081810360008301526127478161270b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006127aa602383611e8f565b91506127b58261274e565b604082019050919050565b600060208201905081810360008301526127d98161279d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061283c602683611e8f565b9150612847826127e0565b604082019050919050565b6000602082019050818103600083015261286b8161282f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006040820190506128e560008301856120ca565b6128f26020830184611e5a565b9392505050565b61290281612014565b811461290d57600080fd5b50565b60008151905061291f816128f9565b92915050565b60006020828403121561293b5761293a611f40565b5b600061294984828501612910565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61298781611f6a565b82525050565b6000612999838361297e565b60208301905092915050565b6000602082019050919050565b60006129bd82612952565b6129c7818561295d565b93506129d28361296e565b8060005b83811015612a035781516129ea888261298d565b97506129f5836129a5565b9250506001810190506129d6565b5085935050505092915050565b6000604082019050612a256000830185611e5a565b8181036020830152612a3781846129b2565b90509392505050565b600080fd5b612a4e82611eca565b810181811067ffffffffffffffff82111715612a6d57612a6c612872565b5b80604052505050565b6000612a80611f36565b9050612a8c8282612a45565b919050565b600067ffffffffffffffff821115612aac57612aab612872565b5b602082029050602081019050919050565b600080fd5b600081519050612ad181611fa8565b92915050565b6000612aea612ae584612a91565b612a76565b90508083825260208201905060208402830185811115612b0d57612b0c612abd565b5b835b81811015612b365780612b228882612ac2565b845260208401935050602081019050612b0f565b5050509392505050565b600082601f830112612b5557612b54612a40565b5b8151612b65848260208601612ad7565b91505092915050565b600060208284031215612b8457612b83611f40565b5b600082015167ffffffffffffffff811115612ba257612ba1611f45565b5b612bae84828501612b40565b91505092915050565b600060a082019050612bcc6000830188611e5a565b612bd96020830187611e5a565b8181036040830152612beb81866129b2565b9050612bfa60608301856120ca565b612c076080830184611e5a565b969550505050505056fea26469706673582212208e58d865125e6da9a582b6d3fd2c8ccbcb007f03ba380f67fe254693fbd935d864736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000a0b9712c3b4b55e8f3bddf7eae5877d7df0ae5cc0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000320
-----Decoded View---------------
Arg [0] : _marketing (address): 0xA0b9712C3B4b55E8f3bdDf7eae5877D7df0Ae5cC
Arg [1] : _router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [2] : _maxPerWallet (uint256): 100
Arg [3] : _antiBotBlockLimit (uint256): 800
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000a0b9712c3b4b55e8f3bddf7eae5877d7df0ae5cc
Arg [1] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000320
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.