ERC-20
Overview
Max Total Supply
100,000 OPTA
Holders
129
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
16.255092670453152064 OPTAValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
OpenVistaToken
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-12-08 */ /* http://t.me/OpenVistaEth https://www.0penvista.com/ https://x.com/0penVista */ // File: libraries/SaeMath.sol pragma solidity >=0.4.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } function min(uint256 x, uint256 y) internal pure returns (uint256 z) { z = x < y ? x : y; } // babylonian method (https://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Babylonian_method) function sqrt(uint256 y) internal pure returns (uint256 z) { if (y > 3) { z = y; uint256 x = y / 2 + 1; while (x < z) { z = x; x = (y / x + x) / 2; } } else if (y != 0) { z = 1; } } } // File: interfaces/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); } // File: interfaces/IERC20Metadata.sol pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: contracts/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; } } // File: contracts/ERC20.sol pragma solidity ^0.8.0; /** * @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 {} } // File: interfaces/IOpenVistaRouter.sol pragma solidity >=0.6.2; interface IOpenVistaRouter { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); 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); function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, uint deadline ) external returns (uint amountETH); 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 payable; function launch( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, uint8 buyLpFee, uint8 sellLpFee, uint8 buyProtocolFee, uint8 sellProtocolFee, address protocolAddress ) external payable returns (uint amountToken, uint amountETH, uint liquidity); } // File: contracts/OpenVistaToken.sol pragma solidity ^0.8.0; contract OpenVistaToken is ERC20 { using SafeMath for uint256; uint constant _initial_supply = 100000 * (10 ** 18); address public owner; uint256 public blockLaunch; address public lpPair; uint256 fees = 2; uint256 public maxWalletPercent = 100; uint256 public maxWallet; uint256 private constant swapTokensAtAmountPercent = 50; uint256 private constant maxSwapableTokensPercent = 100; uint256 swapTokensAtAmount; uint256 _maxSwapableTokens; bool public isTradingLive = false; bool public swapEnabled = false; bool public limitsInEffect = true; bool private swapping; mapping(address => bool) public _isExcludedFromFees; mapping(address => bool) public _isExcludedmaxwallet; mapping(address => bool) public automatedMarketMakerPairs; IOpenVistaRouter public _router; constructor(address _routerAddress) ERC20("OpenVista", "OPTA") { _mint(msg.sender, _initial_supply); owner = msg.sender; _router = IOpenVistaRouter(_routerAddress); _isExcludedFromFees[owner] = true; _isExcludedFromFees[address(this)] = true; _isExcludedmaxwallet[owner] = true; _isExcludedmaxwallet[address(this)] = true; maxWallet = (_initial_supply * maxWalletPercent) / 100; swapTokensAtAmount = (_initial_supply * swapTokensAtAmountPercent) / 10_000; _maxSwapableTokens = (_initial_supply * maxSwapableTokensPercent) / 10_000; } function launchToken(address _lp) public { require(msg.sender == owner); blockLaunch = block.number; lpPair = _lp; automatedMarketMakerPairs[lpPair] = true; isTradingLive = true; swapEnabled = true; } function updateSwapAmount(uint256 _newSwapAmount) public { require(msg.sender == owner); swapTokensAtAmount = _newSwapAmount; } function _transfer(address from, address to, uint256 amount) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if (from != owner && to != owner && to != address(0) && to != address(0xdead) && !swapping) { if (!isTradingLive) { require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active."); } // BUY if (automatedMarketMakerPairs[from] && !_isExcludedmaxwallet[to]) { require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded"); } // SELL else if (automatedMarketMakerPairs[to] && !_isExcludedmaxwallet[from]) { require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded"); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(min(contractTokenBalance, _maxSwapableTokens)); swapping = false; } bool takeFee = !swapping; if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; if (takeFee) { fees = amount * getFees() / 100; if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function min(uint256 a, uint256 b) private pure returns (uint256) { return (a > b) ? b : a; } function swapTokensForEth(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = _router.WETH(); _approve(address(this), address(_router), tokenAmount); _router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, owner, block.timestamp ); } function swapBack(uint256 amount) private { bool success; if (amount == 0) { return; } uint256 amountToSwapForETH = amount; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance; (success, ) = address(owner).call{ value: ethBalance }(""); } function updateRouter(address _new) public { require(msg.sender == owner); _router = IOpenVistaRouter(_new); } function updatePair(address _new) public { require(msg.sender == owner); lpPair = _new; } function excludeFromFees(address _address, bool _bool) public { require(msg.sender == owner); _isExcludedFromFees[_address] = _bool; } function removeMaxWallet() public { require(msg.sender == owner); limitsInEffect = false; } function getFees() public view returns(uint256) { uint256 taxFees; if(block.number <= blockLaunch + 5) { taxFees = 40; } else if(block.number <= blockLaunch + 15) { taxFees = 20; } else { taxFees = 5; } return taxFees; } function updateSwapEnabled(bool _isEnable) external { require(msg.sender == owner); swapEnabled = _isEnable; } function manualSwap(uint256 amount) external { require(msg.sender == owner); require(amount <= balanceOf(address(this)) && amount > 0, "Wrong amount"); swapBack(amount); } function recoverTokensFromContract(address _tokenAddress, uint256 _amount) external { require(msg.sender == owner); bool succ = ERC20(_tokenAddress).transfer(owner, _amount); require(succ, "Transfer failed"); } function excluded(address[] memory _address) public { require(msg.sender == owner); for (uint256 i = 0; i < _address.length; i++) { _isExcludedFromFees[_address[i]] = true; } } receive() external payable {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_routerAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedmaxwallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_router","outputs":[{"internalType":"contract IOpenVistaRouter","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":[{"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":"","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":[],"name":"blockLaunch","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":"_address","type":"address"},{"internalType":"bool","name":"_bool","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_address","type":"address[]"}],"name":"excluded","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isTradingLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_lp","type":"address"}],"name":"launchToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletPercent","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":[{"internalType":"address","name":"_tokenAddress","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"recoverTokensFromContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_new","type":"address"}],"name":"updatePair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_new","type":"address"}],"name":"updateRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSwapAmount","type":"uint256"}],"name":"updateSwapAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isEnable","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405260026008556064600955600d805462ffffff1916620100001790553480156200002c57600080fd5b5060405162001f5b38038062001f5b8339810160408190526200004f9162000346565b60408051808201825260098152684f70656e566973746160b81b6020808301918252835180850190945260048452634f50544160e01b9084015281519192916200009c91600391620002a0565b508051620000b2906004906020840190620002a0565b505050620000d13369152d02c7e14af6800000620001d960201b60201c565b600580546001600160a01b03199081163317808355601180546001600160a01b038681169190941617905581166000908152600e60209081526040808320805460ff19908116600190811790925530808652838620805483168417905596549095168452600f909252808320805485168317905593825292902080549091169091179055600954606490620001719069152d02c7e14af6800000620003f2565b6200017d9190620003d1565b600a556127106200019a603269152d02c7e14af6800000620003f2565b620001a69190620003d1565b600b55612710620001c3606469152d02c7e14af6800000620003f2565b620001cf9190620003d1565b600c555062000467565b6001600160a01b0382166200020b5760405162461bcd60e51b8152600401620002029062000376565b60405180910390fd5b62000219600083836200029b565b80600260008282546200022d9190620003b6565b90915550506001600160a01b038216600081815260208190526040808220805485019055517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9062000281908590620003ad565b60405180910390a362000297600083836200029b565b5050565b505050565b828054620002ae9062000414565b90600052602060002090601f016020900481019282620002d257600085556200031d565b82601f10620002ed57805160ff19168380011785556200031d565b828001600101855582156200031d579182015b828111156200031d57825182559160200191906001019062000300565b506200032b9291506200032f565b5090565b5b808211156200032b576000815560010162000330565b60006020828403121562000358578081fd5b81516001600160a01b03811681146200036f578182fd5b9392505050565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60008219821115620003cc57620003cc62000451565b500190565b600082620003ed57634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156200040f576200040f62000451565b500290565b6002810460018216806200042957607f821691505b602082108114156200044b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b611ae480620004776000396000f3fe6080604052600436106101fd5760003560e01c80638da5cb5b1161010d578063c0246668116100a0578063dd62ed3e1161006f578063dd62ed3e14610566578063e0bf7fd114610586578063e6be4a72146105a6578063edae876f146105c6578063f8b45b05146105db57610204565b8063c0246668146104fc578063c851cc321461051c578063db8d55f11461053c578063dc07b6171461055157610204565b8063a9059cbb116100dc578063a9059cbb1461047c578063ab3b55451461049c578063b62496f5146104bc578063b70143c9146104dc57610204565b80638da5cb5b14610412578063924de9b71461042757806395d89b4114610447578063a457c2d71461045c57610204565b80633d9a3d19116101905780636ddd17131161015f5780636ddd17131461038857806370a082311461039d5780637a3c8640146103bd5780637f5fffd8146103dd5780638d0fdc6d146103f257610204565b80633d9a3d191461031c5780634484961814610331578063452ed4f1146103515780634a62bb651461037357610204565b806323b872dd116101cc57806323b872dd146102a55780632ded0b04146102c5578063313ce567146102da57806339509351146102fc57610204565b806306fdde0314610209578063095ea7b31461023457806318160ddd146102615780631b56bbf91461028357610204565b3661020457005b600080fd5b34801561021557600080fd5b5061021e6105f0565b60405161022b9190611645565b60405180910390f35b34801561024057600080fd5b5061025461024f3660046114ce565b610682565b60405161022b919061163a565b34801561026d57600080fd5b506102766106a4565b60405161022b9190611914565b34801561028f57600080fd5b506102a361029e3660046113f1565b6106aa565b005b3480156102b157600080fd5b506102546102c0366004611461565b6106e3565b3480156102d157600080fd5b50610254610711565b3480156102e657600080fd5b506102ef61071a565b60405161022b919061198d565b34801561030857600080fd5b506102546103173660046114ce565b61071f565b34801561032857600080fd5b5061027661074b565b34801561033d57600080fd5b506102a361034c3660046114f9565b610751565b34801561035d57600080fd5b506103666107e2565b60405161022b919061160d565b34801561037f57600080fd5b506102546107f1565b34801561039457600080fd5b50610254610800565b3480156103a957600080fd5b506102766103b83660046113f1565b61080e565b3480156103c957600080fd5b506102a36103d83660046113f1565b61082d565b3480156103e957600080fd5b5061027661089b565b3480156103fe57600080fd5b5061025461040d3660046113f1565b6108a1565b34801561041e57600080fd5b506103666108b6565b34801561043357600080fd5b506102a36104423660046115ba565b6108c5565b34801561045357600080fd5b5061021e6108f6565b34801561046857600080fd5b506102546104773660046114ce565b610905565b34801561048857600080fd5b506102546104973660046114ce565b610956565b3480156104a857600080fd5b506102a36104b73660046115f2565b61096e565b3480156104c857600080fd5b506102546104d73660046113f1565b61098a565b3480156104e857600080fd5b506102a36104f73660046115f2565b61099f565b34801561050857600080fd5b506102a36105173660046114a1565b6109f6565b34801561052857600080fd5b506102a36105373660046113f1565b610a38565b34801561054857600080fd5b50610276610a71565b34801561055d57600080fd5b506102a3610ab6565b34801561057257600080fd5b50610276610581366004611429565b610adb565b34801561059257600080fd5b506102546105a13660046113f1565b610b06565b3480156105b257600080fd5b506102a36105c13660046114ce565b610b1b565b3480156105d257600080fd5b50610366610bdd565b3480156105e757600080fd5b50610276610bec565b6060600380546105ff90611a09565b80601f016020809104026020016040519081016040528092919081815260200182805461062b90611a09565b80156106785780601f1061064d57610100808354040283529160200191610678565b820191906000526020600020905b81548152906001019060200180831161065b57829003601f168201915b5050505050905090565b60008061068d610bf2565b905061069a818585610bf6565b5060019392505050565b60025490565b6005546001600160a01b031633146106c157600080fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6000806106ee610bf2565b90506106fb858285610caa565b610706858585610cf4565b506001949350505050565b600d5460ff1681565b601290565b60008061072a610bf2565b905061069a81858561073c8589610adb565b610746919061199b565b610bf6565b60095481565b6005546001600160a01b0316331461076857600080fd5b60005b81518110156107de576001600e600084848151811061079a57634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806107d681611a44565b91505061076b565b5050565b6007546001600160a01b031681565b600d5462010000900460ff1681565b600d54610100900460ff1681565b6001600160a01b0381166000908152602081905260409020545b919050565b6005546001600160a01b0316331461084457600080fd5b43600655600780546001600160a01b0319166001600160a01b039283161790819055166000908152601060205260409020805460ff199081166001908117909255600d8054610100921690921761ff001916179055565b60065481565b600f6020526000908152604090205460ff1681565b6005546001600160a01b031681565b6005546001600160a01b031633146108dc57600080fd5b600d80549115156101000261ff0019909216919091179055565b6060600480546105ff90611a09565b600080610910610bf2565b9050600061091e8286610adb565b9050838110156109495760405162461bcd60e51b8152600401610940906118a9565b60405180910390fd5b6107068286868403610bf6565b600080610961610bf2565b905061069a818585610cf4565b6005546001600160a01b0316331461098557600080fd5b600b55565b60106020526000908152604090205460ff1681565b6005546001600160a01b031633146109b657600080fd5b6109bf3061080e565b81111580156109ce5750600081115b6109ea5760405162461bcd60e51b8152600401610940906118ee565b6109f3816110d3565b50565b6005546001600160a01b03163314610a0d57600080fd5b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610a4f57600080fd5b601180546001600160a01b0319166001600160a01b0392909216919091179055565b6000806006546005610a83919061199b565b4311610a9157506028610ab1565b600654610a9f90600f61199b565b4311610aad57506014610ab1565b5060055b905090565b6005546001600160a01b03163314610acd57600080fd5b600d805462ff000019169055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600e6020526000908152604090205460ff1681565b6005546001600160a01b03163314610b3257600080fd5b60055460405163a9059cbb60e01b81526000916001600160a01b038086169263a9059cbb92610b679216908690600401611621565b602060405180830381600087803b158015610b8157600080fd5b505af1158015610b95573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb991906115d6565b905080610bd85760405162461bcd60e51b81526004016109409061174d565b505050565b6011546001600160a01b031681565b600a5481565b3390565b6001600160a01b038316610c1c5760405162461bcd60e51b815260040161094090611838565b6001600160a01b038216610c425760405162461bcd60e51b81526004016109409061170b565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610c9d908590611914565b60405180910390a3505050565b6000610cb68484610adb565b90506000198114610cee5781811015610ce15760405162461bcd60e51b815260040161094090611776565b610cee8484848403610bf6565b50505050565b6001600160a01b038316610d1a5760405162461bcd60e51b8152600401610940906117f3565b6001600160a01b038216610d405760405162461bcd60e51b815260040161094090611698565b80610d5657610d5183836000611144565b610bd8565b600d5462010000900460ff1615610f37576005546001600160a01b03848116911614801590610d9357506005546001600160a01b03838116911614155b8015610da757506001600160a01b03821615155b8015610dbe57506001600160a01b03821661dead14155b8015610dd45750600d546301000000900460ff16155b15610f3757600d5460ff16610e3e576001600160a01b0383166000908152600e602052604090205460ff1680610e2257506001600160a01b0382166000908152600e602052604090205460ff165b610e3e5760405162461bcd60e51b8152600401610940906116db565b6001600160a01b03831660009081526010602052604090205460ff168015610e7f57506001600160a01b0382166000908152600f602052604090205460ff16155b15610ebd57600a54610e908361080e565b610e9a908361199b565b1115610eb85760405162461bcd60e51b81526004016109409061187c565b610f37565b6001600160a01b03821660009081526010602052604090205460ff168015610efe57506001600160a01b0383166000908152600f602052604090205460ff16155b15610f3757600a54610f0f8361080e565b610f19908361199b565b1115610f375760405162461bcd60e51b81526004016109409061187c565b6000610f423061080e565b600b5490915081108015908190610f605750600d54610100900460ff165b8015610f765750600d546301000000900460ff16155b8015610f9b57506001600160a01b03851660009081526010602052604090205460ff16155b8015610fc057506001600160a01b0385166000908152600e602052604090205460ff16155b8015610fe557506001600160a01b0384166000908152600e602052604090205460ff16155b1561102257600d805463ff00000019166301000000179055600c546110149061100f908490611245565b6110d3565b600d805463ff000000191690555b600d546001600160a01b0386166000908152600e602052604090205460ff630100000090920482161591168061107057506001600160a01b0385166000908152600e602052604090205460ff165b15611079575060005b600081156110bf57606461108b610a71565b61109590876119d3565b61109f91906119b3565b905080156110b2576110b2873083611144565b6110bc81866119f2565b94505b6110ca878787611144565b50505050505050565b6000816110e057506109f3565b816110ea8161125d565b60055460405147916001600160a01b03169082906111079061160a565b60006040518083038185875af1925050503d80600081146110ca576040519150601f19603f3d011682016040523d82523d6000602084013e6110ca565b6001600160a01b03831661116a5760405162461bcd60e51b8152600401610940906117f3565b6001600160a01b0382166111905760405162461bcd60e51b815260040161094090611698565b61119b838383610bd8565b6001600160a01b038316600090815260208190526040902054818110156111d45760405162461bcd60e51b8152600401610940906117ad565b6001600160a01b0380851660008181526020819052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611232908690611914565b60405180910390a3610cee848484610bd8565b60008183116112545782611256565b815b9392505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106112a057634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152601154604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b1580156112f457600080fd5b505afa158015611308573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061132c919061140d565b8160018151811061134d57634e487b7160e01b600052603260045260246000fd5b6001600160a01b0392831660209182029290920101526011546113739130911684610bf6565b60115460055460405163791ac94760e01b81526001600160a01b039283169263791ac947926113b09287926000928892911690429060040161191d565b600060405180830381600087803b1580156113ca57600080fd5b505af11580156113de573d6000803e3d6000fd5b505050505050565b803561082881611a8b565b600060208284031215611402578081fd5b813561125681611a8b565b60006020828403121561141e578081fd5b815161125681611a8b565b6000806040838503121561143b578081fd5b823561144681611a8b565b9150602083013561145681611a8b565b809150509250929050565b600080600060608486031215611475578081fd5b833561148081611a8b565b9250602084013561149081611a8b565b929592945050506040919091013590565b600080604083850312156114b3578182fd5b82356114be81611a8b565b9150602083013561145681611aa0565b600080604083850312156114e0578182fd5b82356114eb81611a8b565b946020939093013593505050565b6000602080838503121561150b578182fd5b823567ffffffffffffffff80821115611522578384fd5b818501915085601f830112611535578384fd5b81358181111561154757611547611a75565b8381026040518582820101818110858211171561156657611566611a75565b604052828152858101935084860182860187018a1015611584578788fd5b8795505b838610156115ad57611599816113e6565b855260019590950194938601938601611588565b5098975050505050505050565b6000602082840312156115cb578081fd5b813561125681611aa0565b6000602082840312156115e7578081fd5b815161125681611aa0565b600060208284031215611603578081fd5b5035919050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b6000602080835283518082850152825b8181101561167157858101830151858201604001528201611655565b818111156116825783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252601690820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604082015260600190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252600f908201526e151c985b9cd9995c8819985a5b1959608a1b604082015260600190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526013908201527213585e081dd85b1b195d08195e18d959591959606a1b604082015260600190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252600c908201526b15dc9bdb99c8185b5bdd5b9d60a21b604082015260600190565b90815260200190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b8181101561196c5784516001600160a01b031683529383019391830191600101611947565b50506001600160a01b03969096166060850152505050608001529392505050565b60ff91909116815260200190565b600082198211156119ae576119ae611a5f565b500190565b6000826119ce57634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156119ed576119ed611a5f565b500290565b600082821015611a0457611a04611a5f565b500390565b600281046001821680611a1d57607f821691505b60208210811415611a3e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611a5857611a58611a5f565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146109f357600080fd5b80151581146109f357600080fdfea2646970667358221220ded7a5cc4628c8753817d2897cf2b4d6883e5685a218072de1f5f45efecd1aa764736f6c63430008000033000000000000000000000000d600b85dda4d7828a08beae8d2c4a3e8264ca5c6
Deployed Bytecode
0x6080604052600436106101fd5760003560e01c80638da5cb5b1161010d578063c0246668116100a0578063dd62ed3e1161006f578063dd62ed3e14610566578063e0bf7fd114610586578063e6be4a72146105a6578063edae876f146105c6578063f8b45b05146105db57610204565b8063c0246668146104fc578063c851cc321461051c578063db8d55f11461053c578063dc07b6171461055157610204565b8063a9059cbb116100dc578063a9059cbb1461047c578063ab3b55451461049c578063b62496f5146104bc578063b70143c9146104dc57610204565b80638da5cb5b14610412578063924de9b71461042757806395d89b4114610447578063a457c2d71461045c57610204565b80633d9a3d19116101905780636ddd17131161015f5780636ddd17131461038857806370a082311461039d5780637a3c8640146103bd5780637f5fffd8146103dd5780638d0fdc6d146103f257610204565b80633d9a3d191461031c5780634484961814610331578063452ed4f1146103515780634a62bb651461037357610204565b806323b872dd116101cc57806323b872dd146102a55780632ded0b04146102c5578063313ce567146102da57806339509351146102fc57610204565b806306fdde0314610209578063095ea7b31461023457806318160ddd146102615780631b56bbf91461028357610204565b3661020457005b600080fd5b34801561021557600080fd5b5061021e6105f0565b60405161022b9190611645565b60405180910390f35b34801561024057600080fd5b5061025461024f3660046114ce565b610682565b60405161022b919061163a565b34801561026d57600080fd5b506102766106a4565b60405161022b9190611914565b34801561028f57600080fd5b506102a361029e3660046113f1565b6106aa565b005b3480156102b157600080fd5b506102546102c0366004611461565b6106e3565b3480156102d157600080fd5b50610254610711565b3480156102e657600080fd5b506102ef61071a565b60405161022b919061198d565b34801561030857600080fd5b506102546103173660046114ce565b61071f565b34801561032857600080fd5b5061027661074b565b34801561033d57600080fd5b506102a361034c3660046114f9565b610751565b34801561035d57600080fd5b506103666107e2565b60405161022b919061160d565b34801561037f57600080fd5b506102546107f1565b34801561039457600080fd5b50610254610800565b3480156103a957600080fd5b506102766103b83660046113f1565b61080e565b3480156103c957600080fd5b506102a36103d83660046113f1565b61082d565b3480156103e957600080fd5b5061027661089b565b3480156103fe57600080fd5b5061025461040d3660046113f1565b6108a1565b34801561041e57600080fd5b506103666108b6565b34801561043357600080fd5b506102a36104423660046115ba565b6108c5565b34801561045357600080fd5b5061021e6108f6565b34801561046857600080fd5b506102546104773660046114ce565b610905565b34801561048857600080fd5b506102546104973660046114ce565b610956565b3480156104a857600080fd5b506102a36104b73660046115f2565b61096e565b3480156104c857600080fd5b506102546104d73660046113f1565b61098a565b3480156104e857600080fd5b506102a36104f73660046115f2565b61099f565b34801561050857600080fd5b506102a36105173660046114a1565b6109f6565b34801561052857600080fd5b506102a36105373660046113f1565b610a38565b34801561054857600080fd5b50610276610a71565b34801561055d57600080fd5b506102a3610ab6565b34801561057257600080fd5b50610276610581366004611429565b610adb565b34801561059257600080fd5b506102546105a13660046113f1565b610b06565b3480156105b257600080fd5b506102a36105c13660046114ce565b610b1b565b3480156105d257600080fd5b50610366610bdd565b3480156105e757600080fd5b50610276610bec565b6060600380546105ff90611a09565b80601f016020809104026020016040519081016040528092919081815260200182805461062b90611a09565b80156106785780601f1061064d57610100808354040283529160200191610678565b820191906000526020600020905b81548152906001019060200180831161065b57829003601f168201915b5050505050905090565b60008061068d610bf2565b905061069a818585610bf6565b5060019392505050565b60025490565b6005546001600160a01b031633146106c157600080fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6000806106ee610bf2565b90506106fb858285610caa565b610706858585610cf4565b506001949350505050565b600d5460ff1681565b601290565b60008061072a610bf2565b905061069a81858561073c8589610adb565b610746919061199b565b610bf6565b60095481565b6005546001600160a01b0316331461076857600080fd5b60005b81518110156107de576001600e600084848151811061079a57634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806107d681611a44565b91505061076b565b5050565b6007546001600160a01b031681565b600d5462010000900460ff1681565b600d54610100900460ff1681565b6001600160a01b0381166000908152602081905260409020545b919050565b6005546001600160a01b0316331461084457600080fd5b43600655600780546001600160a01b0319166001600160a01b039283161790819055166000908152601060205260409020805460ff199081166001908117909255600d8054610100921690921761ff001916179055565b60065481565b600f6020526000908152604090205460ff1681565b6005546001600160a01b031681565b6005546001600160a01b031633146108dc57600080fd5b600d80549115156101000261ff0019909216919091179055565b6060600480546105ff90611a09565b600080610910610bf2565b9050600061091e8286610adb565b9050838110156109495760405162461bcd60e51b8152600401610940906118a9565b60405180910390fd5b6107068286868403610bf6565b600080610961610bf2565b905061069a818585610cf4565b6005546001600160a01b0316331461098557600080fd5b600b55565b60106020526000908152604090205460ff1681565b6005546001600160a01b031633146109b657600080fd5b6109bf3061080e565b81111580156109ce5750600081115b6109ea5760405162461bcd60e51b8152600401610940906118ee565b6109f3816110d3565b50565b6005546001600160a01b03163314610a0d57600080fd5b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610a4f57600080fd5b601180546001600160a01b0319166001600160a01b0392909216919091179055565b6000806006546005610a83919061199b565b4311610a9157506028610ab1565b600654610a9f90600f61199b565b4311610aad57506014610ab1565b5060055b905090565b6005546001600160a01b03163314610acd57600080fd5b600d805462ff000019169055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600e6020526000908152604090205460ff1681565b6005546001600160a01b03163314610b3257600080fd5b60055460405163a9059cbb60e01b81526000916001600160a01b038086169263a9059cbb92610b679216908690600401611621565b602060405180830381600087803b158015610b8157600080fd5b505af1158015610b95573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb991906115d6565b905080610bd85760405162461bcd60e51b81526004016109409061174d565b505050565b6011546001600160a01b031681565b600a5481565b3390565b6001600160a01b038316610c1c5760405162461bcd60e51b815260040161094090611838565b6001600160a01b038216610c425760405162461bcd60e51b81526004016109409061170b565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610c9d908590611914565b60405180910390a3505050565b6000610cb68484610adb565b90506000198114610cee5781811015610ce15760405162461bcd60e51b815260040161094090611776565b610cee8484848403610bf6565b50505050565b6001600160a01b038316610d1a5760405162461bcd60e51b8152600401610940906117f3565b6001600160a01b038216610d405760405162461bcd60e51b815260040161094090611698565b80610d5657610d5183836000611144565b610bd8565b600d5462010000900460ff1615610f37576005546001600160a01b03848116911614801590610d9357506005546001600160a01b03838116911614155b8015610da757506001600160a01b03821615155b8015610dbe57506001600160a01b03821661dead14155b8015610dd45750600d546301000000900460ff16155b15610f3757600d5460ff16610e3e576001600160a01b0383166000908152600e602052604090205460ff1680610e2257506001600160a01b0382166000908152600e602052604090205460ff165b610e3e5760405162461bcd60e51b8152600401610940906116db565b6001600160a01b03831660009081526010602052604090205460ff168015610e7f57506001600160a01b0382166000908152600f602052604090205460ff16155b15610ebd57600a54610e908361080e565b610e9a908361199b565b1115610eb85760405162461bcd60e51b81526004016109409061187c565b610f37565b6001600160a01b03821660009081526010602052604090205460ff168015610efe57506001600160a01b0383166000908152600f602052604090205460ff16155b15610f3757600a54610f0f8361080e565b610f19908361199b565b1115610f375760405162461bcd60e51b81526004016109409061187c565b6000610f423061080e565b600b5490915081108015908190610f605750600d54610100900460ff165b8015610f765750600d546301000000900460ff16155b8015610f9b57506001600160a01b03851660009081526010602052604090205460ff16155b8015610fc057506001600160a01b0385166000908152600e602052604090205460ff16155b8015610fe557506001600160a01b0384166000908152600e602052604090205460ff16155b1561102257600d805463ff00000019166301000000179055600c546110149061100f908490611245565b6110d3565b600d805463ff000000191690555b600d546001600160a01b0386166000908152600e602052604090205460ff630100000090920482161591168061107057506001600160a01b0385166000908152600e602052604090205460ff165b15611079575060005b600081156110bf57606461108b610a71565b61109590876119d3565b61109f91906119b3565b905080156110b2576110b2873083611144565b6110bc81866119f2565b94505b6110ca878787611144565b50505050505050565b6000816110e057506109f3565b816110ea8161125d565b60055460405147916001600160a01b03169082906111079061160a565b60006040518083038185875af1925050503d80600081146110ca576040519150601f19603f3d011682016040523d82523d6000602084013e6110ca565b6001600160a01b03831661116a5760405162461bcd60e51b8152600401610940906117f3565b6001600160a01b0382166111905760405162461bcd60e51b815260040161094090611698565b61119b838383610bd8565b6001600160a01b038316600090815260208190526040902054818110156111d45760405162461bcd60e51b8152600401610940906117ad565b6001600160a01b0380851660008181526020819052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611232908690611914565b60405180910390a3610cee848484610bd8565b60008183116112545782611256565b815b9392505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106112a057634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152601154604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b1580156112f457600080fd5b505afa158015611308573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061132c919061140d565b8160018151811061134d57634e487b7160e01b600052603260045260246000fd5b6001600160a01b0392831660209182029290920101526011546113739130911684610bf6565b60115460055460405163791ac94760e01b81526001600160a01b039283169263791ac947926113b09287926000928892911690429060040161191d565b600060405180830381600087803b1580156113ca57600080fd5b505af11580156113de573d6000803e3d6000fd5b505050505050565b803561082881611a8b565b600060208284031215611402578081fd5b813561125681611a8b565b60006020828403121561141e578081fd5b815161125681611a8b565b6000806040838503121561143b578081fd5b823561144681611a8b565b9150602083013561145681611a8b565b809150509250929050565b600080600060608486031215611475578081fd5b833561148081611a8b565b9250602084013561149081611a8b565b929592945050506040919091013590565b600080604083850312156114b3578182fd5b82356114be81611a8b565b9150602083013561145681611aa0565b600080604083850312156114e0578182fd5b82356114eb81611a8b565b946020939093013593505050565b6000602080838503121561150b578182fd5b823567ffffffffffffffff80821115611522578384fd5b818501915085601f830112611535578384fd5b81358181111561154757611547611a75565b8381026040518582820101818110858211171561156657611566611a75565b604052828152858101935084860182860187018a1015611584578788fd5b8795505b838610156115ad57611599816113e6565b855260019590950194938601938601611588565b5098975050505050505050565b6000602082840312156115cb578081fd5b813561125681611aa0565b6000602082840312156115e7578081fd5b815161125681611aa0565b600060208284031215611603578081fd5b5035919050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b6000602080835283518082850152825b8181101561167157858101830151858201604001528201611655565b818111156116825783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252601690820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604082015260600190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252600f908201526e151c985b9cd9995c8819985a5b1959608a1b604082015260600190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526013908201527213585e081dd85b1b195d08195e18d959591959606a1b604082015260600190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252600c908201526b15dc9bdb99c8185b5bdd5b9d60a21b604082015260600190565b90815260200190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b8181101561196c5784516001600160a01b031683529383019391830191600101611947565b50506001600160a01b03969096166060850152505050608001529392505050565b60ff91909116815260200190565b600082198211156119ae576119ae611a5f565b500190565b6000826119ce57634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156119ed576119ed611a5f565b500290565b600082821015611a0457611a04611a5f565b500390565b600281046001821680611a1d57607f821691505b60208210811415611a3e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611a5857611a58611a5f565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146109f357600080fd5b80151581146109f357600080fdfea2646970667358221220ded7a5cc4628c8753817d2897cf2b4d6883e5685a218072de1f5f45efecd1aa764736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000d600b85dda4d7828a08beae8d2c4a3e8264ca5c6
-----Decoded View---------------
Arg [0] : _routerAddress (address): 0xD600b85Dda4d7828a08BeAe8D2c4a3e8264cA5c6
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000d600b85dda4d7828a08beae8d2c4a3e8264ca5c6
Deployed Bytecode Sourcemap
25454:6490:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12315:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14675:201;;;;;;;;;;-1:-1:-1;14675:201:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;13444:108::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30351:112::-;;;;;;;;;;-1:-1:-1;30351:112:0;;;;;:::i;:::-;;:::i;:::-;;15456:261;;;;;;;;;;-1:-1:-1;15456:261:0;;;;;:::i;:::-;;:::i;25966:33::-;;;;;;;;;;;;;:::i;13286:93::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;16126:238::-;;;;;;;;;;-1:-1:-1;16126:238:0;;;;;:::i;:::-;;:::i;25699:37::-;;;;;;;;;;;;;:::i;31683:221::-;;;;;;;;;;-1:-1:-1;31683:221:0;;;;;:::i;:::-;;:::i;25646:21::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26044:33::-;;;;;;;;;;;;;:::i;26006:31::-;;;;;;;;;;;;;:::i;13615:127::-;;;;;;;;;;-1:-1:-1;13615:127:0;;;;;:::i;:::-;;:::i;26983:271::-;;;;;;;;;;-1:-1:-1;26983:271:0;;;;;:::i;:::-;;:::i;25613:26::-;;;;;;;;;;;;;:::i;26174:52::-;;;;;;;;;;-1:-1:-1;26174:52:0;;;;;:::i;:::-;;:::i;25586:20::-;;;;;;;;;;;;;:::i;31084:133::-;;;;;;;;;;-1:-1:-1;31084:133:0;;;;;:::i;:::-;;:::i;12534:104::-;;;;;;;;;;;;;:::i;16867:436::-;;;;;;;;;;-1:-1:-1;16867:436:0;;;;;:::i;:::-;;:::i;13948:193::-;;;;;;;;;;-1:-1:-1;13948:193:0;;;;;:::i;:::-;;:::i;27262:154::-;;;;;;;;;;-1:-1:-1;27262:154:0;;;;;:::i;:::-;;:::i;26233:57::-;;;;;;;;;;-1:-1:-1;26233:57:0;;;;;:::i;:::-;;:::i;31226:203::-;;;;;;;;;;-1:-1:-1;31226:203:0;;;;;:::i;:::-;;:::i;30471:157::-;;;;;;;;;;-1:-1:-1;30471:157:0;;;;;:::i;:::-;;:::i;30210:133::-;;;;;;;;;;-1:-1:-1;30210:133:0;;;;;:::i;:::-;;:::i;30758:318::-;;;;;;;;;;;;;:::i;30636:114::-;;;;;;;;;;;;;:::i;14204:151::-;;;;;;;;;;-1:-1:-1;14204:151:0;;;;;:::i;:::-;;:::i;26116:51::-;;;;;;;;;;-1:-1:-1;26116:51:0;;;;;:::i;:::-;;:::i;31437:240::-;;;;;;;;;;-1:-1:-1;31437:240:0;;;;;:::i;:::-;;:::i;26299:31::-;;;;;;;;;;;;;:::i;25743:24::-;;;;;;;;;;;;;:::i;12315:100::-;12369:13;12402:5;12395:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12315:100;:::o;14675:201::-;14758:4;14775:13;14791:12;:10;:12::i;:::-;14775:28;;14814:32;14823:5;14830:7;14839:6;14814:8;:32::i;:::-;-1:-1:-1;14864:4:0;;14675:201;-1:-1:-1;;;14675:201:0:o;13444:108::-;13532:12;;13444:108;:::o;30351:112::-;30425:5;;-1:-1:-1;;;;;30425:5:0;30411:10;:19;30403:28;;;;;;30442:6;:13;;-1:-1:-1;;;;;;30442:13:0;-1:-1:-1;;;;;30442:13:0;;;;;;;;;;30351:112::o;15456:261::-;15553:4;15570:15;15588:12;:10;:12::i;:::-;15570:30;;15611:38;15627:4;15633:7;15642:6;15611:15;:38::i;:::-;15660:27;15670:4;15676:2;15680:6;15660:9;:27::i;:::-;-1:-1:-1;15705:4:0;;15456:261;-1:-1:-1;;;;15456:261:0:o;25966:33::-;;;;;;:::o;13286:93::-;13369:2;13286:93;:::o;16126:238::-;16214:4;16231:13;16247:12;:10;:12::i;:::-;16231:28;;16270:64;16279:5;16286:7;16323:10;16295:25;16305:5;16312:7;16295:9;:25::i;:::-;:38;;;;:::i;:::-;16270:8;:64::i;25699:37::-;;;;:::o;31683:221::-;31768:5;;-1:-1:-1;;;;;31768:5:0;31754:10;:19;31746:28;;;;;;31790:9;31785:112;31809:8;:15;31805:1;:19;31785:112;;;31881:4;31846:19;:32;31866:8;31875:1;31866:11;;;;;;-1:-1:-1;;;31866:11:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31846:32:0;;;;;;;;;;;-1:-1:-1;31846:32:0;:39;;-1:-1:-1;;31846:39:0;;;;;;;;;;31826:3;;;;:::i;:::-;;;;31785:112;;;;31683:221;:::o;25646:21::-;;;-1:-1:-1;;;;;25646:21:0;;:::o;26044:33::-;;;;;;;;;:::o;26006:31::-;;;;;;;;;:::o;13615:127::-;-1:-1:-1;;;;;13716:18:0;;13689:7;13716:18;;;;;;;;;;;13615:127;;;;:::o;26983:271::-;27059:5;;-1:-1:-1;;;;;27059:5:0;27045:10;:19;27037:28;;;;;;27092:12;27078:11;:26;27117:6;:12;;-1:-1:-1;;;;;;27117:12:0;-1:-1:-1;;;;;27117:12:0;;;;;;;;27168:6;-1:-1:-1;27142:33:0;;;:25;:33;;;;;:40;;-1:-1:-1;;27142:40:0;;;-1:-1:-1;27142:40:0;;;;;;27195:13;:20;;27117:12;27195:20;;;;;-1:-1:-1;;27228:18:0;;;;26983:271::o;25613:26::-;;;;:::o;26174:52::-;;;;;;;;;;;;;;;:::o;25586:20::-;;;-1:-1:-1;;;;;25586:20:0;;:::o;31084:133::-;31169:5;;-1:-1:-1;;;;;31169:5:0;31155:10;:19;31147:28;;;;;;31186:11;:23;;;;;;;-1:-1:-1;;31186:23:0;;;;;;;;;31084:133::o;12534:104::-;12590:13;12623:7;12616:14;;;;;:::i;16867:436::-;16960:4;16977:13;16993:12;:10;:12::i;:::-;16977:28;;17016:24;17043:25;17053:5;17060:7;17043:9;:25::i;:::-;17016:52;;17107:15;17087:16;:35;;17079:85;;;;-1:-1:-1;;;17079:85:0;;;;;;;:::i;:::-;;;;;;;;;17200:60;17209:5;17216:7;17244:15;17225:16;:34;17200:8;:60::i;13948:193::-;14027:4;14044:13;14060:12;:10;:12::i;:::-;14044:28;;14083;14093:5;14100:2;14104:6;14083:9;:28::i;27262:154::-;27354:5;;-1:-1:-1;;;;;27354:5:0;27340:10;:19;27332:28;;;;;;27373:18;:35;27262:154::o;26233:57::-;;;;;;;;;;;;;;;:::o;31226:203::-;31304:5;;-1:-1:-1;;;;;31304:5:0;31290:10;:19;31282:28;;;;;;31339:24;31357:4;31339:9;:24::i;:::-;31329:6;:34;;:48;;;;;31376:1;31367:6;:10;31329:48;31321:73;;;;-1:-1:-1;;;31321:73:0;;;;;;;:::i;:::-;31405:16;31414:6;31405:8;:16::i;:::-;31226:203;:::o;30471:157::-;30566:5;;-1:-1:-1;;;;;30566:5:0;30552:10;:19;30544:28;;;;;;-1:-1:-1;;;;;30583:29:0;;;;;;;;:19;:29;;;;;:37;;-1:-1:-1;;30583:37:0;;;;;;;;;;30471:157::o;30210:133::-;30286:5;;-1:-1:-1;;;;;30286:5:0;30272:10;:19;30264:28;;;;;;30303:7;:32;;-1:-1:-1;;;;;;30303:32:0;-1:-1:-1;;;;;30303:32:0;;;;;;;;;;30210:133::o;30758:318::-;30797:7;30817:15;30862:11;;30876:1;30862:15;;;;:::i;:::-;30846:12;:31;30843:201;;-1:-1:-1;30904:2:0;30843:201;;;30943:11;;:16;;30957:2;30943:16;:::i;:::-;30927:12;:32;30924:120;;-1:-1:-1;30986:2:0;30924:120;;;-1:-1:-1;31031:1:0;30924:120;31061:7;-1:-1:-1;30758:318:0;:::o;30636:114::-;30703:5;;-1:-1:-1;;;;;30703:5:0;30689:10;:19;30681:28;;;;;;30720:14;:22;;-1:-1:-1;;30720:22:0;;;30636:114::o;14204:151::-;-1:-1:-1;;;;;14320:18:0;;;14293:7;14320:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14204:151::o;26116:51::-;;;;;;;;;;;;;;;:::o;31437:240::-;31554:5;;-1:-1:-1;;;;;31554:5:0;31540:10;:19;31532:28;;;;;;31613:5;;31583:45;;-1:-1:-1;;;31583:45:0;;31571:9;;-1:-1:-1;;;;;31583:29:0;;;;;;:45;;31613:5;;31620:7;;31583:45;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31571:57;;31647:4;31639:32;;;;-1:-1:-1;;;31639:32:0;;;;;;;:::i;:::-;31437:240;;;:::o;26299:31::-;;;-1:-1:-1;;;;;26299:31:0;;:::o;25743:24::-;;;;:::o;10058:98::-;10138:10;10058:98;:::o;20860:346::-;-1:-1:-1;;;;;20962:19:0;;20954:68;;;;-1:-1:-1;;;20954:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21041:21:0;;21033:68;;;;-1:-1:-1;;;21033:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21114:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;21166:32;;;;;21144:6;;21166:32;:::i;:::-;;;;;;;;20860:346;;;:::o;21497:419::-;21598:24;21625:25;21635:5;21642:7;21625:9;:25::i;:::-;21598:52;;-1:-1:-1;;21665:16:0;:37;21661:248;;21747:6;21727:16;:26;;21719:68;;;;-1:-1:-1;;;21719:68:0;;;;;;;:::i;:::-;21831:51;21840:5;21847:7;21875:6;21856:16;:25;21831:8;:51::i;:::-;21497:419;;;;:::o;27424:1900::-;-1:-1:-1;;;;;27520:18:0;;27512:68;;;;-1:-1:-1;;;27512:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27597:16:0;;27589:64;;;;-1:-1:-1;;;27589:64:0;;;;;;;:::i;:::-;27668:11;27664:83;;27692:28;27708:4;27714:2;27718:1;27692:15;:28::i;:::-;27731:7;;27664:83;27761:14;;;;;;;27757:684;;;27800:5;;-1:-1:-1;;;;;27792:13:0;;;27800:5;;27792:13;;;;:28;;-1:-1:-1;27815:5:0;;-1:-1:-1;;;;;27809:11:0;;;27815:5;;27809:11;;27792:28;:48;;;;-1:-1:-1;;;;;;27824:16:0;;;;27792:48;:73;;;;-1:-1:-1;;;;;;27844:21:0;;27858:6;27844:21;;27792:73;:86;;;;-1:-1:-1;27870:8:0;;;;;;;27869:9;27792:86;27788:644;;;27898:13;;;;27893:136;;-1:-1:-1;;;;;27936:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;27965:23:0;;;;;;:19;:23;;;;;;;;27936:52;27928:87;;;;-1:-1:-1;;;27928:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28065:31:0;;;;;;:25;:31;;;;;;;;:60;;;;-1:-1:-1;;;;;;28101:24:0;;;;;;:20;:24;;;;;;;;28100:25;28065:60;28061:360;;;28176:9;;28159:13;28169:2;28159:9;:13::i;:::-;28150:22;;:6;:22;:::i;:::-;:35;;28142:67;;;;-1:-1:-1;;;28142:67:0;;;;;;;:::i;:::-;28061:360;;;-1:-1:-1;;;;;28263:29:0;;;;;;:25;:29;;;;;;;;:60;;;;-1:-1:-1;;;;;;28297:26:0;;;;;;:20;:26;;;;;;;;28296:27;28263:60;28259:162;;;28374:9;;28357:13;28367:2;28357:9;:13::i;:::-;28348:22;;:6;:22;:::i;:::-;:35;;28340:67;;;;-1:-1:-1;;;28340:67:0;;;;;;;:::i;:::-;28451:28;28482:24;28500:4;28482:9;:24::i;:::-;28556:18;;28451:55;;-1:-1:-1;28532:42:0;;;;;;;28599:31;;-1:-1:-1;28619:11:0;;;;;;;28599:31;:53;;;;-1:-1:-1;28644:8:0;;;;;;;28643:9;28599:53;:98;;;;-1:-1:-1;;;;;;28666:31:0;;;;;;:25;:31;;;;;;;;28665:32;28599:98;:137;;;;-1:-1:-1;;;;;;28711:25:0;;;;;;:19;:25;;;;;;;;28710:26;28599:137;:174;;;;-1:-1:-1;;;;;;28750:23:0;;;;;;:19;:23;;;;;;;;28749:24;28599:174;28585:327;;;28794:8;:15;;-1:-1:-1;;28794:15:0;;;;;28855:18;;28820:55;;28829:45;;28833:20;;28829:3;:45::i;:::-;28820:8;:55::i;:::-;28886:8;:16;;-1:-1:-1;;28886:16:0;;;28585:327;28938:8;;-1:-1:-1;;;;;28961:25:0;;28922:12;28961:25;;;:19;:25;;;;;;28938:8;;;;;;;28937:9;;28961:25;;:52;;-1:-1:-1;;;;;;28990:23:0;;;;;;:19;:23;;;;;;;;28961:52;28957:94;;;-1:-1:-1;29036:5:0;28957:94;29061:12;29092:7;29088:185;;;29142:3;29130:9;:7;:9::i;:::-;29121:18;;:6;:18;:::i;:::-;:24;;;;:::i;:::-;29114:31;-1:-1:-1;29162:8:0;;29158:81;;29185:42;29201:4;29215;29222;29185:15;:42::i;:::-;29249:14;29259:4;29249:14;;:::i;:::-;;;29088:185;29283:33;29299:4;29305:2;29309:6;29283:15;:33::i;:::-;27424:1900;;;;;;;:::o;29864:334::-;29915:12;29942:11;29938:44;;29966:7;;;29938:44;30021:6;30036:36;30021:6;30036:16;:36::i;:::-;30154:5;;30146:44;;30102:21;;-1:-1:-1;;;;;30154:5:0;;30102:21;;30146:44;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17773:806;-1:-1:-1;;;;;17870:18:0;;17862:68;;;;-1:-1:-1;;;17862:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17949:16:0;;17941:64;;;;-1:-1:-1;;;17941:64:0;;;;;;;:::i;:::-;18018:38;18039:4;18045:2;18049:6;18018:20;:38::i;:::-;-1:-1:-1;;;;;18091:15:0;;18069:19;18091:15;;;;;;;;;;;18125:21;;;;18117:72;;;;-1:-1:-1;;;18117:72:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18225:15:0;;;:9;:15;;;;;;;;;;;18243:20;;;18225:38;;18443:13;;;;;;;;;;:23;;;;;;18495:26;;;;;;18257:6;;18495:26;:::i;:::-;;;;;;;;18534:37;18554:4;18560:2;18564:6;18534:19;:37::i;29332:105::-;29389:7;29419:1;29415;:5;29414:15;;29428:1;29414:15;;;29424:1;29414:15;29407:22;29332:105;-1:-1:-1;;;29332:105:0:o;29445:411::-;29533:16;;;29547:1;29533:16;;;;;;;;29509:21;;29533:16;;;;;;;;;;-1:-1:-1;29533:16:0;29509:40;;29576:4;29558;29563:1;29558:7;;;;;;-1:-1:-1;;;29558:7:0;;;;;;;;;-1:-1:-1;;;;;29558:23:0;;;:7;;;;;;;;;;:23;;;;29600:7;;:14;;;-1:-1:-1;;;29600:14:0;;;;:7;;;;;:12;;:14;;;;;29558:7;;29600:14;;;;;:7;:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;29590:4;29595:1;29590:7;;;;;;-1:-1:-1;;;29590:7:0;;;;;;;;;-1:-1:-1;;;;;29590:24:0;;;:7;;;;;;;;;:24;29657:7;;29625:54;;29642:4;;29657:7;29667:11;29625:8;:54::i;:::-;29690:7;;29808:5;;29690:158;;-1:-1:-1;;;29690:158:0;;-1:-1:-1;;;;;29690:7:0;;;;:58;;:158;;29759:11;;29690:7;;29793:4;;29808:5;;;29824:15;;29690:158;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29445:411;;:::o;14:138:1:-;84:20;;113:33;84:20;113:33;:::i;157:259::-;;269:2;257:9;248:7;244:23;240:32;237:2;;;290:6;282;275:22;237:2;334:9;321:23;353:33;380:5;353:33;:::i;421:263::-;;544:2;532:9;523:7;519:23;515:32;512:2;;;565:6;557;550:22;512:2;602:9;596:16;621:33;648:5;621:33;:::i;689:402::-;;;818:2;806:9;797:7;793:23;789:32;786:2;;;839:6;831;824:22;786:2;883:9;870:23;902:33;929:5;902:33;:::i;:::-;954:5;-1:-1:-1;1011:2:1;996:18;;983:32;1024:35;983:32;1024:35;:::i;:::-;1078:7;1068:17;;;776:315;;;;;:::o;1096:470::-;;;;1242:2;1230:9;1221:7;1217:23;1213:32;1210:2;;;1263:6;1255;1248:22;1210:2;1307:9;1294:23;1326:33;1353:5;1326:33;:::i;:::-;1378:5;-1:-1:-1;1435:2:1;1420:18;;1407:32;1448:35;1407:32;1448:35;:::i;:::-;1200:366;;1502:7;;-1:-1:-1;;;1556:2:1;1541:18;;;;1528:32;;1200:366::o;1571:396::-;;;1697:2;1685:9;1676:7;1672:23;1668:32;1665:2;;;1718:6;1710;1703:22;1665:2;1762:9;1749:23;1781:33;1808:5;1781:33;:::i;:::-;1833:5;-1:-1:-1;1890:2:1;1875:18;;1862:32;1903;1862;1903;:::i;1972:327::-;;;2101:2;2089:9;2080:7;2076:23;2072:32;2069:2;;;2122:6;2114;2107:22;2069:2;2166:9;2153:23;2185:33;2212:5;2185:33;:::i;:::-;2237:5;2289:2;2274:18;;;;2261:32;;-1:-1:-1;;;2059:240:1:o;2304:1166::-;;2419:2;2462;2450:9;2441:7;2437:23;2433:32;2430:2;;;2483:6;2475;2468:22;2430:2;2528:9;2515:23;2557:18;2598:2;2590:6;2587:14;2584:2;;;2619:6;2611;2604:22;2584:2;2662:6;2651:9;2647:22;2637:32;;2707:7;2700:4;2696:2;2692:13;2688:27;2678:2;;2734:6;2726;2719:22;2678:2;2775;2762:16;2797:2;2793;2790:10;2787:2;;;2803:18;;:::i;:::-;2850:2;2846;2842:11;2882:2;2876:9;2933:2;2928;2920:6;2916:15;2912:24;2986:6;2974:10;2971:22;2966:2;2954:10;2951:18;2948:46;2945:2;;;2997:18;;:::i;:::-;3033:2;3026:22;3083:18;;;3117:15;;;;-1:-1:-1;3152:11:1;;;3182;;;3178:20;;3175:33;-1:-1:-1;3172:2:1;;;3226:6;3218;3211:22;3172:2;3253:6;3244:15;;3268:171;3282:2;3279:1;3276:9;3268:171;;;3339:25;3360:3;3339:25;:::i;:::-;3327:38;;3300:1;3293:9;;;;;3385:12;;;;3417;;3268:171;;;-1:-1:-1;3458:6:1;2399:1071;-1:-1:-1;;;;;;;;2399:1071:1:o;3475:253::-;;3584:2;3572:9;3563:7;3559:23;3555:32;3552:2;;;3605:6;3597;3590:22;3552:2;3649:9;3636:23;3668:30;3692:5;3668:30;:::i;3733:257::-;;3853:2;3841:9;3832:7;3828:23;3824:32;3821:2;;;3874:6;3866;3859:22;3821:2;3911:9;3905:16;3930:30;3954:5;3930:30;:::i;3995:190::-;;4107:2;4095:9;4086:7;4082:23;4078:32;4075:2;;;4128:6;4120;4113:22;4075:2;-1:-1:-1;4156:23:1;;4065:120;-1:-1:-1;4065:120:1:o;4190:205::-;4390:3;4381:14::o;4400:203::-;-1:-1:-1;;;;;4564:32:1;;;;4546:51;;4534:2;4519:18;;4501:102::o;4608:274::-;-1:-1:-1;;;;;4800:32:1;;;;4782:51;;4864:2;4849:18;;4842:34;4770:2;4755:18;;4737:145::o;4887:187::-;5052:14;;5045:22;5027:41;;5015:2;5000:18;;4982:92::o;5312:603::-;;5453:2;5482;5471:9;5464:21;5514:6;5508:13;5557:6;5552:2;5541:9;5537:18;5530:34;5582:4;5595:140;5609:6;5606:1;5603:13;5595:140;;;5704:14;;;5700:23;;5694:30;5670:17;;;5689:2;5666:26;5659:66;5624:10;;5595:140;;;5753:6;5750:1;5747:13;5744:2;;;5823:4;5818:2;5809:6;5798:9;5794:22;5790:31;5783:45;5744:2;-1:-1:-1;5899:2:1;5878:15;-1:-1:-1;;5874:29:1;5859:45;;;;5906:2;5855:54;;5433:482;-1:-1:-1;;;5433:482:1:o;5920:399::-;6122:2;6104:21;;;6161:2;6141:18;;;6134:30;6200:34;6195:2;6180:18;;6173:62;-1:-1:-1;;;6266:2:1;6251:18;;6244:33;6309:3;6294:19;;6094:225::o;6324:346::-;6526:2;6508:21;;;6565:2;6545:18;;;6538:30;-1:-1:-1;;;6599:2:1;6584:18;;6577:52;6661:2;6646:18;;6498:172::o;6675:398::-;6877:2;6859:21;;;6916:2;6896:18;;;6889:30;6955:34;6950:2;6935:18;;6928:62;-1:-1:-1;;;7021:2:1;7006:18;;6999:32;7063:3;7048:19;;6849:224::o;7078:339::-;7280:2;7262:21;;;7319:2;7299:18;;;7292:30;-1:-1:-1;;;7353:2:1;7338:18;;7331:45;7408:2;7393:18;;7252:165::o;7422:353::-;7624:2;7606:21;;;7663:2;7643:18;;;7636:30;7702:31;7697:2;7682:18;;7675:59;7766:2;7751:18;;7596:179::o;7780:402::-;7982:2;7964:21;;;8021:2;8001:18;;;7994:30;8060:34;8055:2;8040:18;;8033:62;-1:-1:-1;;;8126:2:1;8111:18;;8104:36;8172:3;8157:19;;7954:228::o;8187:401::-;8389:2;8371:21;;;8428:2;8408:18;;;8401:30;8467:34;8462:2;8447:18;;8440:62;-1:-1:-1;;;8533:2:1;8518:18;;8511:35;8578:3;8563:19;;8361:227::o;8593:400::-;8795:2;8777:21;;;8834:2;8814:18;;;8807:30;8873:34;8868:2;8853:18;;8846:62;-1:-1:-1;;;8939:2:1;8924:18;;8917:34;8983:3;8968:19;;8767:226::o;8998:343::-;9200:2;9182:21;;;9239:2;9219:18;;;9212:30;-1:-1:-1;;;9273:2:1;9258:18;;9251:49;9332:2;9317:18;;9172:169::o;9346:401::-;9548:2;9530:21;;;9587:2;9567:18;;;9560:30;9626:34;9621:2;9606:18;;9599:62;-1:-1:-1;;;9692:2:1;9677:18;;9670:35;9737:3;9722:19;;9520:227::o;9752:336::-;9954:2;9936:21;;;9993:2;9973:18;;;9966:30;-1:-1:-1;;;10027:2:1;10012:18;;10005:42;10079:2;10064:18;;9926:162::o;10093:177::-;10239:25;;;10227:2;10212:18;;10194:76::o;10275:983::-;;10585:3;10574:9;10570:19;10616:6;10605:9;10598:25;10642:2;10680:6;10675:2;10664:9;10660:18;10653:34;10723:3;10718:2;10707:9;10703:18;10696:31;10747:6;10782;10776:13;10813:6;10805;10798:22;10851:3;10840:9;10836:19;10829:26;;10890:2;10882:6;10878:15;10864:29;;10911:4;10924:195;10938:6;10935:1;10932:13;10924:195;;;11003:13;;-1:-1:-1;;;;;10999:39:1;10987:52;;11094:15;;;;11059:12;;;;11035:1;10953:9;10924:195;;;-1:-1:-1;;;;;;;11175:32:1;;;;11170:2;11155:18;;11148:60;-1:-1:-1;;;11239:3:1;11224:19;11217:35;11136:3;10546:712;-1:-1:-1;;;10546:712:1:o;11263:184::-;11435:4;11423:17;;;;11405:36;;11393:2;11378:18;;11360:87::o;11452:128::-;;11523:1;11519:6;11516:1;11513:13;11510:2;;;11529:18;;:::i;:::-;-1:-1:-1;11565:9:1;;11500:80::o;11585:217::-;;11651:1;11641:2;;-1:-1:-1;;;11676:31:1;;11730:4;11727:1;11720:15;11758:4;11683:1;11748:15;11641:2;-1:-1:-1;11787:9:1;;11631:171::o;11807:168::-;;11913:1;11909;11905:6;11901:14;11898:1;11895:21;11890:1;11883:9;11876:17;11872:45;11869:2;;;11920:18;;:::i;:::-;-1:-1:-1;11960:9:1;;11859:116::o;11980:125::-;;12048:1;12045;12042:8;12039:2;;;12053:18;;:::i;:::-;-1:-1:-1;12090:9:1;;12029:76::o;12110:380::-;12195:1;12185:12;;12242:1;12232:12;;;12253:2;;12307:4;12299:6;12295:17;12285:27;;12253:2;12360;12352:6;12349:14;12329:18;12326:38;12323:2;;;12406:10;12401:3;12397:20;12394:1;12387:31;12441:4;12438:1;12431:15;12469:4;12466:1;12459:15;12323:2;;12165:325;;;:::o;12495:135::-;;-1:-1:-1;;12555:17:1;;12552:2;;;12575:18;;:::i;:::-;-1:-1:-1;12622:1:1;12611:13;;12542:88::o;12635:127::-;12696:10;12691:3;12687:20;12684:1;12677:31;12727:4;12724:1;12717:15;12751:4;12748:1;12741:15;12767:127;12828:10;12823:3;12819:20;12816:1;12809:31;12859:4;12856:1;12849:15;12883:4;12880:1;12873:15;12899:133;-1:-1:-1;;;;;12976:31:1;;12966:42;;12956:2;;13022:1;13019;13012:12;13037:120;13125:5;13118:13;13111:21;13104:5;13101:32;13091:2;;13147:1;13144;13137:12
Swarm Source
ipfs://ded7a5cc4628c8753817d2897cf2b4d6883e5685a218072de1f5f45efecd1aa7
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.