ERC-20
Overview
Max Total Supply
1,000,000,000 PTOOLS
Holders
33
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
24,967,757.052574838501055314 PTOOLSValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PriceTools
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-07-03 */ /** PriceTools platform will open the world of crypto investing to you in a few minutes. You get access to full analytics on all projects coming to market every day. Website: https://pricetoolstoken.io/ Telegram: https://t.me/PricetoolsToken Medium: https://medium.com/@pricetools Twitter: https://twitter.com/pricetoolstoken Gitbook: https://pricetoolstoken.gitbook.io/pricetools/ Live dapp, LP locked, safu contract, renounce after launch. */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.19; pragma experimental ABIEncoderV2; ////// lib/openzeppelin-contracts/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.0 (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; } } ////// lib/openzeppelin-contracts/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } ////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) /* pragma solidity ^0.8.0; */ /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` 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 sender, address recipient, uint256 amount ) external returns (bool); /** * @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); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (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); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts v4.4.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. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, 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}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), 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}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, 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; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, 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 Hook that is called before any transfer of tokens. This includes * minting and burning. */ 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. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } ////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol) /* pragma solidity ^0.8.0; */ /** * @dev Wrappers over Solidity's arithmetic operations. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // 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 (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * 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) { unchecked { require(b > 0, errorMessage); return a % b; } } } interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract PriceTools is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public marketingWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; uint256 public buyFee; uint256 public sellFee; /******************/ // exlcude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; event ExcludeFromFees(address indexed account, bool isExcluded); event marketingWalletUpdated( address indexed newWallet, address indexed oldWallet ); constructor() ERC20("PriceTools", "PTOOLS") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); uint256 _buyFee = 0; uint256 _sellFee = 0; uint256 totalSupply = 1_000_000_000 * 1e18; maxTransactionAmount = totalSupply * 3 / 100; // 3% from total supply maxWallet = totalSupply * 3 / 100; // 3% from total supply swapTokensAtAmount = (totalSupply * 35) / 100000; // 0.035% swap wallet buyFee = _buyFee; sellFee = _sellFee; marketingWallet = address(0x2bAAa0858Fc4F97Ef83aAA6b1ef2B94A43A3b6A6); // wallet for marketing // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(marketingWallet, true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(marketingWallet, true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.1%" ); maxTransactionAmount = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } function updateFees( uint256 _buyFee, uint256 _sellFee ) external onlyOwner { buyFee = _buyFee; sellFee = _sellFee; require(buyFee.div(2) <= 30, "Buy tax too high"); require(sellFee.div(2) <= 35, "Sell tax too high"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } 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 (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } //when buy if ( from == uniswapV2Pair && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && !swapping && to == uniswapV2Pair && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (to == uniswapV2Pair && sellFee > 0) { fees = amount.mul(sellFee).div(100); } // on buy else if (from == uniswapV2Pair && buyFee > 0) { fees = amount.mul(buyFee).div(100); } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForETH(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, marketingWallet, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); if (contractBalance == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } swapTokensForETH(contractBalance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","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":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyFee","type":"uint256"},{"internalType":"uint256","name":"_sellFee","type":"uint256"}],"name":"updateFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052600a805461ffff191660011790553480156200001f57600080fd5b506040518060400160405280600a8152602001695072696365546f6f6c7360b01b8152506040518060400160405280600681526020016550544f4f4c5360d01b815250816003908162000073919062000697565b50600462000082828262000697565b5050506200009f620000996200038f60201b60201c565b62000393565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000c1816001620003e5565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200010c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000132919062000763565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000180573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001a6919062000763565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620001f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021a919062000763565b6001600160a01b031660a081905262000235906001620003e5565b6000806b033b2e3c9fd0803ce8000000606462000254826003620007ab565b620002609190620007cb565b600755606462000272826003620007ab565b6200027e9190620007cb565b600955620186a062000292826023620007ab565b6200029e9190620007cb565b600855600b839055600c829055600680546001600160a01b031916732baaa0858fc4f97ef83aaa6b1ef2b94a43a3b6a6179055620002f0620002e86005546001600160a01b031690565b60016200045f565b60065462000309906001600160a01b031660016200045f565b620003163060016200045f565b6200032561dead60016200045f565b620003446200033c6005546001600160a01b031690565b6001620003e5565b6006546200035d906001600160a01b03166001620003e5565b6200036a306001620003e5565b6200037961dead6001620003e5565b62000385338262000509565b5050505062000804565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004345760405162461bcd60e51b815260206004820181905260248201526000805160206200239b83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620004aa5760405162461bcd60e51b815260206004820181905260248201526000805160206200239b83398151915260448201526064016200042b565b6001600160a01b0382166000818152600d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005615760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200042b565b8060026000828254620005759190620007ee565b90915550506001600160a01b03821660009081526020819052604081208054839290620005a4908490620007ee565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200061e57607f821691505b6020821081036200063f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620005ee57600081815260208120601f850160051c810160208610156200066e5750805b601f850160051c820191505b818110156200068f578281556001016200067a565b505050505050565b81516001600160401b03811115620006b357620006b3620005f3565b620006cb81620006c4845462000609565b8462000645565b602080601f831160018114620007035760008415620006ea5750858301515b600019600386901b1c1916600185901b1785556200068f565b600085815260208120601f198616915b82811015620007345788860151825594840194600190910190840162000713565b5085821015620007535787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200077657600080fd5b81516001600160a01b03811681146200078e57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620007c557620007c562000795565b92915050565b600082620007e957634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620007c557620007c562000795565b60805160a051611b406200085b6000396000818161039b01528181610f810152818161117e0152818161128b01526112fa015260008181610290015281816115f6015281816116af01526116ee0152611b406000f3fe6080604052600436106101e75760003560e01c8063715018a611610102578063bbc0c74211610095578063dd62ed3e11610064578063dd62ed3e146105ad578063e2f45605146105f3578063f2fde38b14610609578063f8b45b051461062957600080fd5b8063bbc0c74214610538578063c024666814610557578063c8c8ebe414610577578063d257b34f1461058d57600080fd5b80638a8c523c116100d15780638a8c523c146104d05780638da5cb5b146104e557806395d89b4114610503578063a9059cbb1461051857600080fd5b8063715018a614610466578063751039fc1461047b5780637571336a1461049057806375f0a874146104b057600080fd5b80632b14ca561161017a5780634a62bb65116101495780634a62bb65146103bd5780634fbee193146103d75780636db794371461041057806370a082311461043057600080fd5b80632b14ca5614610341578063313ce56714610357578063470624021461037357806349bd5a5e1461038957600080fd5b806318160ddd116101b657806318160ddd146102ca578063203e727e146102e957806323b872dd1461030b57806327c8f8351461032b57600080fd5b806306fdde03146101f3578063095ea7b31461021e57806310d5de531461024e5780631694505e1461027e57600080fd5b366101ee57005b600080fd5b3480156101ff57600080fd5b5061020861063f565b6040516102159190611766565b60405180910390f35b34801561022a57600080fd5b5061023e6102393660046117c9565b6106d1565b6040519015158152602001610215565b34801561025a57600080fd5b5061023e6102693660046117f5565b600e6020526000908152604090205460ff1681565b34801561028a57600080fd5b506102b27f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610215565b3480156102d657600080fd5b506002545b604051908152602001610215565b3480156102f557600080fd5b50610309610304366004611812565b6106e8565b005b34801561031757600080fd5b5061023e61032636600461182b565b6107ce565b34801561033757600080fd5b506102b261dead81565b34801561034d57600080fd5b506102db600c5481565b34801561036357600080fd5b5060405160128152602001610215565b34801561037f57600080fd5b506102db600b5481565b34801561039557600080fd5b506102b27f000000000000000000000000000000000000000000000000000000000000000081565b3480156103c957600080fd5b50600a5461023e9060ff1681565b3480156103e357600080fd5b5061023e6103f23660046117f5565b6001600160a01b03166000908152600d602052604090205460ff1690565b34801561041c57600080fd5b5061030961042b36600461186c565b610878565b34801561043c57600080fd5b506102db61044b3660046117f5565b6001600160a01b031660009081526020819052604090205490565b34801561047257600080fd5b50610309610951565b34801561048757600080fd5b5061023e610987565b34801561049c57600080fd5b506103096104ab36600461188e565b6109c4565b3480156104bc57600080fd5b506006546102b2906001600160a01b031681565b3480156104dc57600080fd5b50610309610a19565b3480156104f157600080fd5b506005546001600160a01b03166102b2565b34801561050f57600080fd5b50610208610a54565b34801561052457600080fd5b5061023e6105333660046117c9565b610a63565b34801561054457600080fd5b50600a5461023e90610100900460ff1681565b34801561056357600080fd5b5061030961057236600461188e565b610a70565b34801561058357600080fd5b506102db60075481565b34801561059957600080fd5b5061023e6105a8366004611812565b610af9565b3480156105b957600080fd5b506102db6105c83660046118cc565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156105ff57600080fd5b506102db60085481565b34801561061557600080fd5b506103096106243660046117f5565b610c4b565b34801561063557600080fd5b506102db60095481565b60606003805461064e906118fa565b80601f016020809104026020016040519081016040528092919081815260200182805461067a906118fa565b80156106c75780601f1061069c576101008083540402835291602001916106c7565b820191906000526020600020905b8154815290600101906020018083116106aa57829003601f168201915b5050505050905090565b60006106de338484610ce6565b5060015b92915050565b6005546001600160a01b0316331461071b5760405162461bcd60e51b815260040161071290611934565b60405180910390fd5b670de0b6b3a76400006103e861073060025490565b61073b90600161197f565b6107459190611996565b61074f9190611996565b8110156107b65760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610712565b6107c881670de0b6b3a764000061197f565b60075550565b60006107db848484610e0a565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156108605760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610712565b61086d8533858403610ce6565b506001949350505050565b6005546001600160a01b031633146108a25760405162461bcd60e51b815260040161071290611934565b600b829055600c819055601e6108b983600261138f565b11156108fa5760405162461bcd60e51b815260206004820152601060248201526f084eaf240e8c2f040e8dede40d0d2ced60831b6044820152606401610712565b600c5460239061090b90600261138f565b111561094d5760405162461bcd60e51b81526020600482015260116024820152700a6cad8d840e8c2f040e8dede40d0d2ced607b1b6044820152606401610712565b5050565b6005546001600160a01b0316331461097b5760405162461bcd60e51b815260040161071290611934565b61098560006113a2565b565b6005546000906001600160a01b031633146109b45760405162461bcd60e51b815260040161071290611934565b50600a805460ff19169055600190565b6005546001600160a01b031633146109ee5760405162461bcd60e51b815260040161071290611934565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610a435760405162461bcd60e51b815260040161071290611934565b600a805461ff001916610100179055565b60606004805461064e906118fa565b60006106de338484610e0a565b6005546001600160a01b03163314610a9a5760405162461bcd60e51b815260040161071290611934565b6001600160a01b0382166000818152600d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546000906001600160a01b03163314610b265760405162461bcd60e51b815260040161071290611934565b620186a0610b3360025490565b610b3e90600161197f565b610b489190611996565b821015610bb55760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610712565b6103e8610bc160025490565b610bcc90600561197f565b610bd69190611996565b821115610c425760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610712565b50600855600190565b6005546001600160a01b03163314610c755760405162461bcd60e51b815260040161071290611934565b6001600160a01b038116610cda5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610712565b610ce3816113a2565b50565b6001600160a01b038316610d485760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610712565b6001600160a01b038216610da95760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610712565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610e305760405162461bcd60e51b8152600401610712906119b8565b6001600160a01b038216610e565760405162461bcd60e51b8152600401610712906119fd565b80600003610e6f57610e6a838360006113f4565b505050565b600a5460ff1615611147576005546001600160a01b03848116911614801590610ea657506005546001600160a01b03838116911614155b8015610eba57506001600160a01b03821615155b8015610ed157506001600160a01b03821661dead14155b8015610ee75750600554600160a01b900460ff16155b1561114757600a54610100900460ff16610f7f576001600160a01b0383166000908152600d602052604090205460ff1680610f3a57506001600160a01b0382166000908152600d602052604090205460ff165b610f7f5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610712565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316148015610fd957506001600160a01b0382166000908152600e602052604090205460ff16155b156110bd5760075481111561104e5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610712565b6009546001600160a01b0383166000908152602081905260409020546110749083611a40565b11156110b85760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610712565b611147565b6001600160a01b0382166000908152600e602052604090205460ff16611147576009546001600160a01b0383166000908152602081905260409020546111039083611a40565b11156111475760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610712565b30600090815260208190526040902054600854811080159081906111755750600554600160a01b900460ff16155b80156111b257507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b80156111d757506001600160a01b0385166000908152600d602052604090205460ff16155b80156111fc57506001600160a01b0384166000908152600d602052604090205460ff16155b1561122a576005805460ff60a01b1916600160a01b17905561121c611549565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152600d602052604090205460ff600160a01b90920482161591168061127857506001600160a01b0385166000908152600d602052604090205460ff165b15611281575060005b6000811561137b577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b03161480156112cc57506000600c54115b156112f8576112f160646112eb600c548861159390919063ffffffff16565b9061138f565b905061135d565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316876001600160a01b031614801561133b57506000600b54115b1561135d5761135a60646112eb600b548861159390919063ffffffff16565b90505b801561136e5761136e8730836113f4565b6113788186611a53565b94505b6113868787876113f4565b50505050505050565b600061139b8284611996565b9392505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831661141a5760405162461bcd60e51b8152600401610712906119b8565b6001600160a01b0382166114405760405162461bcd60e51b8152600401610712906119fd565b6001600160a01b038316600090815260208190526040902054818110156114b85760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610712565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906114ef908490611a40565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161153b91815260200190565b60405180910390a350505050565b30600090815260208190526040812054908190036115645750565b60085461157290601461197f565b81111561158a5760085461158790601461197f565b90505b610ce38161159f565b600061139b828461197f565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106115d4576115d4611a66565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611652573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116769190611a7c565b8160018151811061168957611689611a66565b60200260200101906001600160a01b031690816001600160a01b0316815250506116d4307f000000000000000000000000000000000000000000000000000000000000000084610ce6565b60065460405163791ac94760e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169263791ac94792611730928792600092889291909116904290600401611a99565b600060405180830381600087803b15801561174a57600080fd5b505af115801561175e573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b8181101561179357858101830151858201604001528201611777565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610ce357600080fd5b600080604083850312156117dc57600080fd5b82356117e7816117b4565b946020939093013593505050565b60006020828403121561180757600080fd5b813561139b816117b4565b60006020828403121561182457600080fd5b5035919050565b60008060006060848603121561184057600080fd5b833561184b816117b4565b9250602084013561185b816117b4565b929592945050506040919091013590565b6000806040838503121561187f57600080fd5b50508035926020909101359150565b600080604083850312156118a157600080fd5b82356118ac816117b4565b9150602083013580151581146118c157600080fd5b809150509250929050565b600080604083850312156118df57600080fd5b82356118ea816117b4565b915060208301356118c1816117b4565b600181811c9082168061190e57607f821691505b60208210810361192e57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176106e2576106e2611969565b6000826119b357634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808201808211156106e2576106e2611969565b818103818111156106e2576106e2611969565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611a8e57600080fd5b815161139b816117b4565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611ae95784516001600160a01b031683529383019391830191600101611ac4565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122019774890461229ac0e8c5c605649932a7e82385ea317b92275468a645b49791f64736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x6080604052600436106101e75760003560e01c8063715018a611610102578063bbc0c74211610095578063dd62ed3e11610064578063dd62ed3e146105ad578063e2f45605146105f3578063f2fde38b14610609578063f8b45b051461062957600080fd5b8063bbc0c74214610538578063c024666814610557578063c8c8ebe414610577578063d257b34f1461058d57600080fd5b80638a8c523c116100d15780638a8c523c146104d05780638da5cb5b146104e557806395d89b4114610503578063a9059cbb1461051857600080fd5b8063715018a614610466578063751039fc1461047b5780637571336a1461049057806375f0a874146104b057600080fd5b80632b14ca561161017a5780634a62bb65116101495780634a62bb65146103bd5780634fbee193146103d75780636db794371461041057806370a082311461043057600080fd5b80632b14ca5614610341578063313ce56714610357578063470624021461037357806349bd5a5e1461038957600080fd5b806318160ddd116101b657806318160ddd146102ca578063203e727e146102e957806323b872dd1461030b57806327c8f8351461032b57600080fd5b806306fdde03146101f3578063095ea7b31461021e57806310d5de531461024e5780631694505e1461027e57600080fd5b366101ee57005b600080fd5b3480156101ff57600080fd5b5061020861063f565b6040516102159190611766565b60405180910390f35b34801561022a57600080fd5b5061023e6102393660046117c9565b6106d1565b6040519015158152602001610215565b34801561025a57600080fd5b5061023e6102693660046117f5565b600e6020526000908152604090205460ff1681565b34801561028a57600080fd5b506102b27f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610215565b3480156102d657600080fd5b506002545b604051908152602001610215565b3480156102f557600080fd5b50610309610304366004611812565b6106e8565b005b34801561031757600080fd5b5061023e61032636600461182b565b6107ce565b34801561033757600080fd5b506102b261dead81565b34801561034d57600080fd5b506102db600c5481565b34801561036357600080fd5b5060405160128152602001610215565b34801561037f57600080fd5b506102db600b5481565b34801561039557600080fd5b506102b27f0000000000000000000000004cb9d6eed70de0e5570a0bfee413c2402ec9dab281565b3480156103c957600080fd5b50600a5461023e9060ff1681565b3480156103e357600080fd5b5061023e6103f23660046117f5565b6001600160a01b03166000908152600d602052604090205460ff1690565b34801561041c57600080fd5b5061030961042b36600461186c565b610878565b34801561043c57600080fd5b506102db61044b3660046117f5565b6001600160a01b031660009081526020819052604090205490565b34801561047257600080fd5b50610309610951565b34801561048757600080fd5b5061023e610987565b34801561049c57600080fd5b506103096104ab36600461188e565b6109c4565b3480156104bc57600080fd5b506006546102b2906001600160a01b031681565b3480156104dc57600080fd5b50610309610a19565b3480156104f157600080fd5b506005546001600160a01b03166102b2565b34801561050f57600080fd5b50610208610a54565b34801561052457600080fd5b5061023e6105333660046117c9565b610a63565b34801561054457600080fd5b50600a5461023e90610100900460ff1681565b34801561056357600080fd5b5061030961057236600461188e565b610a70565b34801561058357600080fd5b506102db60075481565b34801561059957600080fd5b5061023e6105a8366004611812565b610af9565b3480156105b957600080fd5b506102db6105c83660046118cc565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156105ff57600080fd5b506102db60085481565b34801561061557600080fd5b506103096106243660046117f5565b610c4b565b34801561063557600080fd5b506102db60095481565b60606003805461064e906118fa565b80601f016020809104026020016040519081016040528092919081815260200182805461067a906118fa565b80156106c75780601f1061069c576101008083540402835291602001916106c7565b820191906000526020600020905b8154815290600101906020018083116106aa57829003601f168201915b5050505050905090565b60006106de338484610ce6565b5060015b92915050565b6005546001600160a01b0316331461071b5760405162461bcd60e51b815260040161071290611934565b60405180910390fd5b670de0b6b3a76400006103e861073060025490565b61073b90600161197f565b6107459190611996565b61074f9190611996565b8110156107b65760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610712565b6107c881670de0b6b3a764000061197f565b60075550565b60006107db848484610e0a565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156108605760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610712565b61086d8533858403610ce6565b506001949350505050565b6005546001600160a01b031633146108a25760405162461bcd60e51b815260040161071290611934565b600b829055600c819055601e6108b983600261138f565b11156108fa5760405162461bcd60e51b815260206004820152601060248201526f084eaf240e8c2f040e8dede40d0d2ced60831b6044820152606401610712565b600c5460239061090b90600261138f565b111561094d5760405162461bcd60e51b81526020600482015260116024820152700a6cad8d840e8c2f040e8dede40d0d2ced607b1b6044820152606401610712565b5050565b6005546001600160a01b0316331461097b5760405162461bcd60e51b815260040161071290611934565b61098560006113a2565b565b6005546000906001600160a01b031633146109b45760405162461bcd60e51b815260040161071290611934565b50600a805460ff19169055600190565b6005546001600160a01b031633146109ee5760405162461bcd60e51b815260040161071290611934565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610a435760405162461bcd60e51b815260040161071290611934565b600a805461ff001916610100179055565b60606004805461064e906118fa565b60006106de338484610e0a565b6005546001600160a01b03163314610a9a5760405162461bcd60e51b815260040161071290611934565b6001600160a01b0382166000818152600d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546000906001600160a01b03163314610b265760405162461bcd60e51b815260040161071290611934565b620186a0610b3360025490565b610b3e90600161197f565b610b489190611996565b821015610bb55760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610712565b6103e8610bc160025490565b610bcc90600561197f565b610bd69190611996565b821115610c425760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610712565b50600855600190565b6005546001600160a01b03163314610c755760405162461bcd60e51b815260040161071290611934565b6001600160a01b038116610cda5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610712565b610ce3816113a2565b50565b6001600160a01b038316610d485760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610712565b6001600160a01b038216610da95760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610712565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610e305760405162461bcd60e51b8152600401610712906119b8565b6001600160a01b038216610e565760405162461bcd60e51b8152600401610712906119fd565b80600003610e6f57610e6a838360006113f4565b505050565b600a5460ff1615611147576005546001600160a01b03848116911614801590610ea657506005546001600160a01b03838116911614155b8015610eba57506001600160a01b03821615155b8015610ed157506001600160a01b03821661dead14155b8015610ee75750600554600160a01b900460ff16155b1561114757600a54610100900460ff16610f7f576001600160a01b0383166000908152600d602052604090205460ff1680610f3a57506001600160a01b0382166000908152600d602052604090205460ff165b610f7f5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610712565b7f0000000000000000000000004cb9d6eed70de0e5570a0bfee413c2402ec9dab26001600160a01b0316836001600160a01b0316148015610fd957506001600160a01b0382166000908152600e602052604090205460ff16155b156110bd5760075481111561104e5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610712565b6009546001600160a01b0383166000908152602081905260409020546110749083611a40565b11156110b85760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610712565b611147565b6001600160a01b0382166000908152600e602052604090205460ff16611147576009546001600160a01b0383166000908152602081905260409020546111039083611a40565b11156111475760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610712565b30600090815260208190526040902054600854811080159081906111755750600554600160a01b900460ff16155b80156111b257507f0000000000000000000000004cb9d6eed70de0e5570a0bfee413c2402ec9dab26001600160a01b0316846001600160a01b0316145b80156111d757506001600160a01b0385166000908152600d602052604090205460ff16155b80156111fc57506001600160a01b0384166000908152600d602052604090205460ff16155b1561122a576005805460ff60a01b1916600160a01b17905561121c611549565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152600d602052604090205460ff600160a01b90920482161591168061127857506001600160a01b0385166000908152600d602052604090205460ff165b15611281575060005b6000811561137b577f0000000000000000000000004cb9d6eed70de0e5570a0bfee413c2402ec9dab26001600160a01b0316866001600160a01b03161480156112cc57506000600c54115b156112f8576112f160646112eb600c548861159390919063ffffffff16565b9061138f565b905061135d565b7f0000000000000000000000004cb9d6eed70de0e5570a0bfee413c2402ec9dab26001600160a01b0316876001600160a01b031614801561133b57506000600b54115b1561135d5761135a60646112eb600b548861159390919063ffffffff16565b90505b801561136e5761136e8730836113f4565b6113788186611a53565b94505b6113868787876113f4565b50505050505050565b600061139b8284611996565b9392505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831661141a5760405162461bcd60e51b8152600401610712906119b8565b6001600160a01b0382166114405760405162461bcd60e51b8152600401610712906119fd565b6001600160a01b038316600090815260208190526040902054818110156114b85760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610712565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906114ef908490611a40565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161153b91815260200190565b60405180910390a350505050565b30600090815260208190526040812054908190036115645750565b60085461157290601461197f565b81111561158a5760085461158790601461197f565b90505b610ce38161159f565b600061139b828461197f565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106115d4576115d4611a66565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611652573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116769190611a7c565b8160018151811061168957611689611a66565b60200260200101906001600160a01b031690816001600160a01b0316815250506116d4307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610ce6565b60065460405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81169263791ac94792611730928792600092889291909116904290600401611a99565b600060405180830381600087803b15801561174a57600080fd5b505af115801561175e573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b8181101561179357858101830151858201604001528201611777565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610ce357600080fd5b600080604083850312156117dc57600080fd5b82356117e7816117b4565b946020939093013593505050565b60006020828403121561180757600080fd5b813561139b816117b4565b60006020828403121561182457600080fd5b5035919050565b60008060006060848603121561184057600080fd5b833561184b816117b4565b9250602084013561185b816117b4565b929592945050506040919091013590565b6000806040838503121561187f57600080fd5b50508035926020909101359150565b600080604083850312156118a157600080fd5b82356118ac816117b4565b9150602083013580151581146118c157600080fd5b809150509250929050565b600080604083850312156118df57600080fd5b82356118ea816117b4565b915060208301356118c1816117b4565b600181811c9082168061190e57607f821691505b60208210810361192e57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176106e2576106e2611969565b6000826119b357634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808201808211156106e2576106e2611969565b818103818111156106e2576106e2611969565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611a8e57600080fd5b815161139b816117b4565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611ae95784516001600160a01b031683529383019391830191600101611ac4565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122019774890461229ac0e8c5c605649932a7e82385ea317b92275468a645b49791f64736f6c63430008130033
Deployed Bytecode Sourcemap
20813:8604:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8300:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10467:169;;;;;;;;;;-1:-1:-1;10467:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;10467:169:0;1023:187:1;21523:63:0;;;;;;;;;;-1:-1:-1;21523:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;20893:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1657:32:1;;;1639:51;;1627:2;1612:18;20893:51:0;1467:229:1;9420:108:0;;;;;;;;;;-1:-1:-1;9508:12:0;;9420:108;;;1847:25:1;;;1835:2;1820:18;9420:108:0;1701:177:1;24410:275:0;;;;;;;;;;-1:-1:-1;24410:275:0;;;;;:::i;:::-;;:::i;:::-;;11118:492;;;;;;;;;;-1:-1:-1;11118:492:0;;;;;:::i;:::-;;:::i;20996:53::-;;;;;;;;;;;;21042:6;20996:53;;21352:22;;;;;;;;;;;;;;;;9262:93;;;;;;;;;;-1:-1:-1;9262:93:0;;9345:2;2879:36:1;;2867:2;2852:18;9262:93:0;2737:184:1;21324:21:0;;;;;;;;;;;;;;;;20951:38;;;;;;;;;;;;;;;21242:33;;;;;;;;;;-1:-1:-1;21242:33:0;;;;;;;;25351:126;;;;;;;;;;-1:-1:-1;25351:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;25441:28:0;25417:4;25441:28;;;:19;:28;;;;;;;;;25351:126;24868:283;;;;;;;;;;-1:-1:-1;24868:283:0;;;;;:::i;:::-;;:::i;9591:127::-;;;;;;;;;;-1:-1:-1;9591:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;9692:18:0;9665:7;9692:18;;;;;;;;;;;;9591:127;3230:103;;;;;;;;;;;;;:::i;23714:121::-;;;;;;;;;;;;;:::i;24693:167::-;;;;;;;;;;-1:-1:-1;24693:167:0;;;;;:::i;:::-;;:::i;21088:30::-;;;;;;;;;;-1:-1:-1;21088:30:0;;;;-1:-1:-1;;;;;21088:30:0;;;23579:83;;;;;;;;;;;;;:::i;2579:87::-;;;;;;;;;;-1:-1:-1;2652:6:0;;-1:-1:-1;;;;;2652:6:0;2579:87;;8519:104;;;;;;;;;;;;;:::i;9931:175::-;;;;;;;;;;-1:-1:-1;9931:175:0;;;;;:::i;:::-;;:::i;21282:33::-;;;;;;;;;;-1:-1:-1;21282:33:0;;;;;;;;;;;25159:182;;;;;;;;;;-1:-1:-1;25159:182:0;;;;;:::i;:::-;;:::i;21127:35::-;;;;;;;;;;;;;;;;23905:497;;;;;;;;;;-1:-1:-1;23905:497:0;;;;;:::i;:::-;;:::i;10169:151::-;;;;;;;;;;-1:-1:-1;10169:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;10285:18:0;;;10258:7;10285:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10169:151;21169:33;;;;;;;;;;;;;;;;3488:201;;;;;;;;;;-1:-1:-1;3488:201:0;;;;;:::i;:::-;;:::i;21209:24::-;;;;;;;;;;;;;;;;8300:100;8354:13;8387:5;8380:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8300:100;:::o;10467:169::-;10550:4;10567:39;1332:10;10590:7;10599:6;10567:8;:39::i;:::-;-1:-1:-1;10624:4:0;10467:169;;;;;:::o;24410:275::-;2652:6;;-1:-1:-1;;;;;2652:6:0;1332:10;2799:23;2791:68;;;;-1:-1:-1;;;2791:68:0;;;;;;;:::i;:::-;;;;;;;;;24547:4:::1;24539;24518:13;9508:12:::0;;;9420:108;24518:13:::1;:17;::::0;24534:1:::1;24518:17;:::i;:::-;24517:26;;;;:::i;:::-;24516:35;;;;:::i;:::-;24506:6;:45;;24484:142;;;::::0;-1:-1:-1;;;24484:142:0;;5468:2:1;24484:142:0::1;::::0;::::1;5450:21:1::0;5507:2;5487:18;;;5480:30;5546:34;5526:18;;;5519:62;-1:-1:-1;;;5597:18:1;;;5590:45;5652:19;;24484:142:0::1;5266:411:1::0;24484:142:0::1;24660:17;:6:::0;24670::::1;24660:17;:::i;:::-;24637:20;:40:::0;-1:-1:-1;24410:275:0:o;11118:492::-;11258:4;11275:36;11285:6;11293:9;11304:6;11275:9;:36::i;:::-;-1:-1:-1;;;;;11351:19:0;;11324:24;11351:19;;;:11;:19;;;;;;;;1332:10;11351:33;;;;;;;;11403:26;;;;11395:79;;;;-1:-1:-1;;;11395:79:0;;5884:2:1;11395:79:0;;;5866:21:1;5923:2;5903:18;;;5896:30;5962:34;5942:18;;;5935:62;-1:-1:-1;;;6013:18:1;;;6006:38;6061:19;;11395:79:0;5682:404:1;11395:79:0;11510:57;11519:6;1332:10;11560:6;11541:16;:25;11510:8;:57::i;:::-;-1:-1:-1;11598:4:0;;11118:492;-1:-1:-1;;;;11118:492:0:o;24868:283::-;2652:6;;-1:-1:-1;;;;;2652:6:0;1332:10;2799:23;2791:68;;;;-1:-1:-1;;;2791:68:0;;;;;;;:::i;:::-;24978:6:::1;:16:::0;;;25005:7:::1;:18:::0;;;25059:2:::1;25042:13;24987:7:::0;25053:1:::1;25042:10;:13::i;:::-;:19;;25034:48;;;::::0;-1:-1:-1;;;25034:48:0;;6293:2:1;25034:48:0::1;::::0;::::1;6275:21:1::0;6332:2;6312:18;;;6305:30;-1:-1:-1;;;6351:18:1;;;6344:46;6407:18;;25034:48:0::1;6091:340:1::0;25034:48:0::1;25101:7;::::0;25119:2:::1;::::0;25101:14:::1;::::0;25113:1:::1;25101:11;:14::i;:::-;:20;;25093:50;;;::::0;-1:-1:-1;;;25093:50:0;;6638:2:1;25093:50:0::1;::::0;::::1;6620:21:1::0;6677:2;6657:18;;;6650:30;-1:-1:-1;;;6696:18:1;;;6689:47;6753:18;;25093:50:0::1;6436:341:1::0;25093:50:0::1;24868:283:::0;;:::o;3230:103::-;2652:6;;-1:-1:-1;;;;;2652:6:0;1332:10;2799:23;2791:68;;;;-1:-1:-1;;;2791:68:0;;;;;;;:::i;:::-;3295:30:::1;3322:1;3295:18;:30::i;:::-;3230:103::o:0;23714:121::-;2652:6;;23766:4;;-1:-1:-1;;;;;2652:6:0;1332:10;2799:23;2791:68;;;;-1:-1:-1;;;2791:68:0;;;;;;;:::i;:::-;-1:-1:-1;23783:14:0::1;:22:::0;;-1:-1:-1;;23783:22:0::1;::::0;;;23714:121;:::o;24693:167::-;2652:6;;-1:-1:-1;;;;;2652:6:0;1332:10;2799:23;2791:68;;;;-1:-1:-1;;;2791:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;24806:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;24806:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;24693:167::o;23579:83::-;2652:6;;-1:-1:-1;;;;;2652:6:0;1332:10;2799:23;2791:68;;;;-1:-1:-1;;;2791:68:0;;;;;;;:::i;:::-;23634:13:::1;:20:::0;;-1:-1:-1;;23634:20:0::1;;;::::0;;23579:83::o;8519:104::-;8575:13;8608:7;8601:14;;;;;:::i;9931:175::-;10017:4;10034:42;1332:10;10058:9;10069:6;10034:9;:42::i;25159:182::-;2652:6;;-1:-1:-1;;;;;2652:6:0;1332:10;2799:23;2791:68;;;;-1:-1:-1;;;2791:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25244:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;25244:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;25299:34;;1163:41:1;;;25299:34:0::1;::::0;1136:18:1;25299:34:0::1;;;;;;;25159:182:::0;;:::o;23905:497::-;2652:6;;24013:4;;-1:-1:-1;;;;;2652:6:0;1332:10;2799:23;2791:68;;;;-1:-1:-1;;;2791:68:0;;;;;;;:::i;:::-;24092:6:::1;24071:13;9508:12:::0;;;9420:108;24071:13:::1;:17;::::0;24087:1:::1;24071:17;:::i;:::-;24070:28;;;;:::i;:::-;24057:9;:41;;24035:144;;;::::0;-1:-1:-1;;;24035:144:0;;6984:2:1;24035:144:0::1;::::0;::::1;6966:21:1::0;7023:2;7003:18;;;6996:30;7062:34;7042:18;;;7035:62;-1:-1:-1;;;7113:18:1;;;7106:51;7174:19;;24035:144:0::1;6782:417:1::0;24035:144:0::1;24247:4;24226:13;9508:12:::0;;;9420:108;24226:13:::1;:17;::::0;24242:1:::1;24226:17;:::i;:::-;24225:26;;;;:::i;:::-;24212:9;:39;;24190:141;;;::::0;-1:-1:-1;;;24190:141:0;;7406:2:1;24190:141:0::1;::::0;::::1;7388:21:1::0;7445:2;7425:18;;;7418:30;7484:34;7464:18;;;7457:62;-1:-1:-1;;;7535:18:1;;;7528:50;7595:19;;24190:141:0::1;7204:416:1::0;24190:141:0::1;-1:-1:-1::0;24342:18:0::1;:30:::0;24390:4:::1;::::0;23905:497::o;3488:201::-;2652:6;;-1:-1:-1;;;;;2652:6:0;1332:10;2799:23;2791:68;;;;-1:-1:-1;;;2791:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3577:22:0;::::1;3569:73;;;::::0;-1:-1:-1;;;3569:73:0;;7827:2:1;3569:73:0::1;::::0;::::1;7809:21:1::0;7866:2;7846:18;;;7839:30;7905:34;7885:18;;;7878:62;-1:-1:-1;;;7956:18:1;;;7949:36;8002:19;;3569:73:0::1;7625:402:1::0;3569:73:0::1;3653:28;3672:8;3653:18;:28::i;:::-;3488:201:::0;:::o;13959:380::-;-1:-1:-1;;;;;14095:19:0;;14087:68;;;;-1:-1:-1;;;14087:68:0;;8234:2:1;14087:68:0;;;8216:21:1;8273:2;8253:18;;;8246:30;8312:34;8292:18;;;8285:62;-1:-1:-1;;;8363:18:1;;;8356:34;8407:19;;14087:68:0;8032:400:1;14087:68:0;-1:-1:-1;;;;;14174:21:0;;14166:68;;;;-1:-1:-1;;;14166:68:0;;8639:2:1;14166:68:0;;;8621:21:1;8678:2;8658:18;;;8651:30;8717:34;8697:18;;;8690:62;-1:-1:-1;;;8768:18:1;;;8761:32;8810:19;;14166:68:0;8437:398:1;14166:68:0;-1:-1:-1;;;;;14247:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14299:32;;1847:25:1;;;14299:32:0;;1820:18:1;14299:32:0;;;;;;;13959:380;;;:::o;25485:2981::-;-1:-1:-1;;;;;25617:18:0;;25609:68;;;;-1:-1:-1;;;25609:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25696:16:0;;25688:64;;;;-1:-1:-1;;;25688:64:0;;;;;;;:::i;:::-;25769:6;25779:1;25769:11;25765:93;;25797:28;25813:4;25819:2;25823:1;25797:15;:28::i;:::-;25485:2981;;;:::o;25765:93::-;25874:14;;;;25870:1298;;;2652:6;;-1:-1:-1;;;;;25927:15:0;;;2652:6;;25927:15;;;;:49;;-1:-1:-1;2652:6:0;;-1:-1:-1;;;;;25963:13:0;;;2652:6;;25963:13;;25927:49;:86;;;;-1:-1:-1;;;;;;25997:16:0;;;;25927:86;:128;;;;-1:-1:-1;;;;;;26034:21:0;;26048:6;26034:21;;25927:128;:158;;;;-1:-1:-1;26077:8:0;;-1:-1:-1;;;26077:8:0;;;;26076:9;25927:158;25905:1252;;;26125:13;;;;;;;26120:223;;-1:-1:-1;;;;;26197:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;26226:23:0;;;;;;:19;:23;;;;;;;;26197:52;26163:160;;;;-1:-1:-1;;;26163:160:0;;9852:2:1;26163:160:0;;;9834:21:1;9891:2;9871:18;;;9864:30;-1:-1:-1;;;9910:18:1;;;9903:52;9972:18;;26163:160:0;9650:346:1;26163:160:0;26425:13;-1:-1:-1;;;;;26417:21:0;:4;-1:-1:-1;;;;;26417:21:0;;:82;;;;-1:-1:-1;;;;;;26464:35:0;;;;;;:31;:35;;;;;;;;26463:36;26417:82;26391:751;;;26586:20;;26576:6;:30;;26542:169;;;;-1:-1:-1;;;26542:169:0;;10203:2:1;26542:169:0;;;10185:21:1;10242:2;10222:18;;;10215:30;10281:34;10261:18;;;10254:62;-1:-1:-1;;;10332:18:1;;;10325:51;10393:19;;26542:169:0;10001:417:1;26542:169:0;26794:9;;-1:-1:-1;;;;;9692:18:0;;9665:7;9692:18;;;;;;;;;;;26768:22;;:6;:22;:::i;:::-;:35;;26734:140;;;;-1:-1:-1;;;26734:140:0;;10755:2:1;26734:140:0;;;10737:21:1;10794:2;10774:18;;;10767:30;-1:-1:-1;;;10813:18:1;;;10806:49;10872:18;;26734:140:0;10553:343:1;26734:140:0;26391:751;;;-1:-1:-1;;;;;26922:35:0;;;;;;:31;:35;;;;;;;;26917:225;;27042:9;;-1:-1:-1;;;;;9692:18:0;;9665:7;9692:18;;;;;;;;;;;27016:22;;:6;:22;:::i;:::-;:35;;26982:140;;;;-1:-1:-1;;;26982:140:0;;10755:2:1;26982:140:0;;;10737:21:1;10794:2;10774:18;;;10767:30;-1:-1:-1;;;10813:18:1;;;10806:49;10872:18;;26982:140:0;10553:343:1;26982:140:0;27229:4;27180:28;9692:18;;;;;;;;;;;27287;;27263:42;;;;;;;27336:33;;-1:-1:-1;27361:8:0;;-1:-1:-1;;;27361:8:0;;;;27360:9;27336:33;:69;;;;;27392:13;-1:-1:-1;;;;;27386:19:0;:2;-1:-1:-1;;;;;27386:19:0;;27336:69;:112;;;;-1:-1:-1;;;;;;27423:25:0;;;;;;:19;:25;;;;;;;;27422:26;27336:112;:153;;;;-1:-1:-1;;;;;;27466:23:0;;;;;;:19;:23;;;;;;;;27465:24;27336:153;27318:285;;;27516:8;:15;;-1:-1:-1;;;;27516:15:0;-1:-1:-1;;;27516:15:0;;;27548:10;:8;:10::i;:::-;27575:8;:16;;-1:-1:-1;;;;27575:16:0;;;27318:285;27631:8;;-1:-1:-1;;;;;27741:25:0;;27615:12;27741:25;;;:19;:25;;;;;;27631:8;-1:-1:-1;;;27631:8:0;;;;;27630:9;;27741:25;;:52;;-1:-1:-1;;;;;;27770:23:0;;;;;;:19;:23;;;;;;;;27741:52;27737:100;;;-1:-1:-1;27820:5:0;27737:100;27849:12;27954:7;27950:463;;;28012:13;-1:-1:-1;;;;;28006:19:0;:2;-1:-1:-1;;;;;28006:19:0;;:34;;;;;28039:1;28029:7;;:11;28006:34;28002:262;;;28068:28;28092:3;28068:19;28079:7;;28068:6;:10;;:19;;;;:::i;:::-;:23;;:28::i;:::-;28061:35;;28002:262;;;28166:13;-1:-1:-1;;;;;28158:21:0;:4;-1:-1:-1;;;;;28158:21:0;;:35;;;;;28192:1;28183:6;;:10;28158:35;28154:110;;;28221:27;28244:3;28221:18;28232:6;;28221;:10;;:18;;;;:::i;:27::-;28214:34;;28154:110;28284:8;;28280:91;;28313:42;28329:4;28343;28350;28313:15;:42::i;:::-;28387:14;28397:4;28387:14;;:::i;:::-;;;27950:463;28425:33;28441:4;28447:2;28451:6;28425:15;:33::i;:::-;25598:2868;;;;25485:2981;;;:::o;18048:98::-;18106:7;18133:5;18137:1;18133;:5;:::i;:::-;18126:12;18048:98;-1:-1:-1;;;18048:98:0:o;3849:191::-;3942:6;;;-1:-1:-1;;;;;3959:17:0;;;-1:-1:-1;;;;;;3959:17:0;;;;;;;3992:40;;3942:6;;;3959:17;3942:6;;3992:40;;3923:16;;3992:40;3912:128;3849:191;:::o;12100:733::-;-1:-1:-1;;;;;12240:20:0;;12232:70;;;;-1:-1:-1;;;12232:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12321:23:0;;12313:71;;;;-1:-1:-1;;;12313:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12481:17:0;;12457:21;12481:17;;;;;;;;;;;12517:23;;;;12509:74;;;;-1:-1:-1;;;12509:74:0;;11236:2:1;12509:74:0;;;11218:21:1;11275:2;11255:18;;;11248:30;11314:34;11294:18;;;11287:62;-1:-1:-1;;;11365:18:1;;;11358:36;11411:19;;12509:74:0;11034:402:1;12509:74:0;-1:-1:-1;;;;;12619:17:0;;;:9;:17;;;;;;;;;;;12639:22;;;12619:42;;12683:20;;;;;;;;:30;;12655:6;;12619:9;12683:30;;12655:6;;12683:30;:::i;:::-;;;;;;;;12748:9;-1:-1:-1;;;;;12731:35:0;12740:6;-1:-1:-1;;;;;12731:35:0;;12759:6;12731:35;;;;1847:25:1;;1835:2;1820:18;;1701:177;12731:35:0;;;;;;;;12221:612;12100:733;;;:::o;29073:339::-;29156:4;29112:23;9692:18;;;;;;;;;;;;29177:20;;;29173:59;;29214:7;29073:339::o;29173:59::-;29266:18;;:23;;29287:2;29266:23;:::i;:::-;29248:15;:41;29244:115;;;29324:18;;:23;;29345:2;29324:23;:::i;:::-;29306:41;;29244:115;29371:33;29388:15;29371:16;:33::i;17781:98::-;17839:7;17866:5;17870:1;17866;:5;:::i;28474:591::-;28624:16;;;28638:1;28624:16;;;;;;;;28600:21;;28624:16;;;;;;;;;;-1:-1:-1;28624:16:0;28600:40;;28669:4;28651;28656:1;28651:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;28651:23:0;;;-1:-1:-1;;;;;28651:23:0;;;;;28695:15;-1:-1:-1;;;;;28695:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28685:4;28690:1;28685:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;28685:32:0;;;-1:-1:-1;;;;;28685:32:0;;;;;28730:62;28747:4;28762:15;28780:11;28730:8;:62::i;:::-;29001:15;;28831:226;;-1:-1:-1;;;28831:226:0;;-1:-1:-1;;;;;28831:15:0;:66;;;;;:226;;28912:11;;28938:1;;28982:4;;29001:15;;;;;29031;;28831:226;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28529:536;28474:591;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:247::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;1382:9;1369:23;1401:31;1426:5;1401:31;:::i;1883:180::-;1942:6;1995:2;1983:9;1974:7;1970:23;1966:32;1963:52;;;2011:1;2008;2001:12;1963:52;-1:-1:-1;2034:23:1;;1883:180;-1:-1:-1;1883:180:1:o;2068:456::-;2145:6;2153;2161;2214:2;2202:9;2193:7;2189:23;2185:32;2182:52;;;2230:1;2227;2220:12;2182:52;2269:9;2256:23;2288:31;2313:5;2288:31;:::i;:::-;2338:5;-1:-1:-1;2395:2:1;2380:18;;2367:32;2408:33;2367:32;2408:33;:::i;:::-;2068:456;;2460:7;;-1:-1:-1;;;2514:2:1;2499:18;;;;2486:32;;2068:456::o;2926:248::-;2994:6;3002;3055:2;3043:9;3034:7;3030:23;3026:32;3023:52;;;3071:1;3068;3061:12;3023:52;-1:-1:-1;;3094:23:1;;;3164:2;3149:18;;;3136:32;;-1:-1:-1;2926:248:1:o;3179:416::-;3244:6;3252;3305:2;3293:9;3284:7;3280:23;3276:32;3273:52;;;3321:1;3318;3311:12;3273:52;3360:9;3347:23;3379:31;3404:5;3379:31;:::i;:::-;3429:5;-1:-1:-1;3486:2:1;3471:18;;3458:32;3528:15;;3521:23;3509:36;;3499:64;;3559:1;3556;3549:12;3499:64;3582:7;3572:17;;;3179:416;;;;;:::o;3600:388::-;3668:6;3676;3729:2;3717:9;3708:7;3704:23;3700:32;3697:52;;;3745:1;3742;3735:12;3697:52;3784:9;3771:23;3803:31;3828:5;3803:31;:::i;:::-;3853:5;-1:-1:-1;3910:2:1;3895:18;;3882:32;3923:33;3882:32;3923:33;:::i;3993:380::-;4072:1;4068:12;;;;4115;;;4136:61;;4190:4;4182:6;4178:17;4168:27;;4136:61;4243:2;4235:6;4232:14;4212:18;4209:38;4206:161;;4289:10;4284:3;4280:20;4277:1;4270:31;4324:4;4321:1;4314:15;4352:4;4349:1;4342:15;4206:161;;3993:380;;;:::o;4378:356::-;4580:2;4562:21;;;4599:18;;;4592:30;4658:34;4653:2;4638:18;;4631:62;4725:2;4710:18;;4378:356::o;4739:127::-;4800:10;4795:3;4791:20;4788:1;4781:31;4831:4;4828:1;4821:15;4855:4;4852:1;4845:15;4871:168;4944:9;;;4975;;4992:15;;;4986:22;;4972:37;4962:71;;5013:18;;:::i;5044:217::-;5084:1;5110;5100:132;;5154:10;5149:3;5145:20;5142:1;5135:31;5189:4;5186:1;5179:15;5217:4;5214:1;5207:15;5100:132;-1:-1:-1;5246:9:1;;5044:217::o;8840:401::-;9042:2;9024:21;;;9081:2;9061:18;;;9054:30;9120:34;9115:2;9100:18;;9093:62;-1:-1:-1;;;9186:2:1;9171:18;;9164:35;9231:3;9216:19;;8840:401::o;9246:399::-;9448:2;9430:21;;;9487:2;9467:18;;;9460:30;9526:34;9521:2;9506:18;;9499:62;-1:-1:-1;;;9592:2:1;9577:18;;9570:33;9635:3;9620:19;;9246:399::o;10423:125::-;10488:9;;;10509:10;;;10506:36;;;10522:18;;:::i;10901:128::-;10968:9;;;10989:11;;;10986:37;;;11003:18;;:::i;11573:127::-;11634:10;11629:3;11625:20;11622:1;11615:31;11665:4;11662:1;11655:15;11689:4;11686:1;11679:15;11705:251;11775:6;11828:2;11816:9;11807:7;11803:23;11799:32;11796:52;;;11844:1;11841;11834:12;11796:52;11876:9;11870:16;11895:31;11920:5;11895:31;:::i;11961:980::-;12223:4;12271:3;12260:9;12256:19;12302:6;12291:9;12284:25;12328:2;12366:6;12361:2;12350:9;12346:18;12339:34;12409:3;12404:2;12393:9;12389:18;12382:31;12433:6;12468;12462:13;12499:6;12491;12484:22;12537:3;12526:9;12522:19;12515:26;;12576:2;12568:6;12564:15;12550:29;;12597:1;12607:195;12621:6;12618:1;12615:13;12607:195;;;12686:13;;-1:-1:-1;;;;;12682:39:1;12670:52;;12777:15;;;;12742:12;;;;12718:1;12636:9;12607:195;;;-1:-1:-1;;;;;;;12858:32:1;;;;12853:2;12838:18;;12831:60;-1:-1:-1;;;12922:3:1;12907:19;12900:35;12819:3;11961:980;-1:-1:-1;;;11961:980:1:o
Swarm Source
ipfs://19774890461229ac0e8c5c605649932a7e82385ea317b92275468a645b49791f
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.