Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 427 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 21208085 | 6 days ago | IN | 0 ETH | 0.00060337 | ||||
Approve | 21207841 | 6 days ago | IN | 0 ETH | 0.00052897 | ||||
Approve | 21207827 | 6 days ago | IN | 0 ETH | 0.00065232 | ||||
Approve | 21207797 | 6 days ago | IN | 0 ETH | 0.00058847 | ||||
Approve | 21207795 | 6 days ago | IN | 0 ETH | 0.00060473 | ||||
Approve | 21187999 | 9 days ago | IN | 0 ETH | 0.00132752 | ||||
Approve | 21178947 | 10 days ago | IN | 0 ETH | 0.00181088 | ||||
Approve | 21177902 | 10 days ago | IN | 0 ETH | 0.0009935 | ||||
Approve | 21177712 | 10 days ago | IN | 0 ETH | 0.00105692 | ||||
Approve | 21177535 | 10 days ago | IN | 0 ETH | 0.0007683 | ||||
Approve | 21177172 | 10 days ago | IN | 0 ETH | 0.00124973 | ||||
Approve | 21177148 | 10 days ago | IN | 0 ETH | 0.00099933 | ||||
Approve | 21176745 | 10 days ago | IN | 0 ETH | 0.00088754 | ||||
Approve | 21176745 | 10 days ago | IN | 0 ETH | 0.00088754 | ||||
Approve | 21176369 | 10 days ago | IN | 0 ETH | 0.00105908 | ||||
Approve | 21176145 | 10 days ago | IN | 0 ETH | 0.00249982 | ||||
Approve | 21175461 | 10 days ago | IN | 0 ETH | 0.00222879 | ||||
Approve | 21175332 | 10 days ago | IN | 0 ETH | 0.00147057 | ||||
Approve | 21175326 | 10 days ago | IN | 0 ETH | 0.00137061 | ||||
Approve | 21175297 | 10 days ago | IN | 0 ETH | 0.0014243 | ||||
Approve | 21175292 | 10 days ago | IN | 0 ETH | 0.00129351 | ||||
Approve | 21175292 | 10 days ago | IN | 0 ETH | 0.00158035 | ||||
Approve | 21175291 | 10 days ago | IN | 0 ETH | 0.00138366 | ||||
Approve | 21175289 | 10 days ago | IN | 0 ETH | 0.00144268 | ||||
Approve | 21175280 | 10 days ago | IN | 0 ETH | 0.0012752 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
20180875 | 149 days ago | 0.15798772 ETH | ||||
20180875 | 149 days ago | 0.15798772 ETH | ||||
20180868 | 149 days ago | 0.13121406 ETH | ||||
20180868 | 149 days ago | 0.13121406 ETH | ||||
20180867 | 149 days ago | 0.11830715 ETH | ||||
20180867 | 149 days ago | 0.11830715 ETH | ||||
20180860 | 149 days ago | 0.10960701 ETH | ||||
20180860 | 149 days ago | 0.10960701 ETH | ||||
20180858 | 149 days ago | 0.11827838 ETH | ||||
20180858 | 149 days ago | 0.11827838 ETH | ||||
20180856 | 149 days ago | 0.1102998 ETH | ||||
20180856 | 149 days ago | 0.1102998 ETH | ||||
20180854 | 149 days ago | 0.13999571 ETH | ||||
20180854 | 149 days ago | 0.13999571 ETH | ||||
20180852 | 149 days ago | 0.16379746 ETH | ||||
20180852 | 149 days ago | 0.16379746 ETH | ||||
20180848 | 149 days ago | 0.18660981 ETH | ||||
20180848 | 149 days ago | 0.18660981 ETH | ||||
20180847 | 149 days ago | 0.21138784 ETH | ||||
20180847 | 149 days ago | 0.21138784 ETH | ||||
20180845 | 149 days ago | 0.25020117 ETH | ||||
20180845 | 149 days ago | 0.25020117 ETH | ||||
20180844 | 149 days ago | 0.39213471 ETH | ||||
20180844 | 149 days ago | 0.39213471 ETH | ||||
20180843 | 149 days ago | 0.561215 ETH |
Loading...
Loading
Contract Name:
vivek
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-06-27 */ /* * SPDX-License-Identifier: MIT * https://t.me/VivekOnEthereum * https://t.me/VivekOnEthereum * https://vivekcoin.net */ pragma solidity 0.8.19; 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. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot 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). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @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) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be 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. * * 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 a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ 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. * * 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) { 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 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. * * 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 `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 ); } 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); } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } 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 upd 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 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 upd allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance( address spender, uint256 addedValue ) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][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 upd 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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } 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 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; } _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 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 {} } 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); } } interface IDexFactory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair( address tokenA, address tokenB ) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair( address tokenA, address tokenB ) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IDexRouter { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB, uint256 liquidity); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns (uint256 amountToken, uint256 amountETH, uint256 liquidity); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract vivek is Context, ERC20, Ownable { using SafeMath for uint256; mapping(address => bool) private _isExcludedFromFee; address payable private _taxWallet; uint256 firstBlock; uint64 private lastLiquifyTime; uint256 private buyFee = 20; uint256 private sellFee = 80; uint256 private _preventSwapBefore = 1; uint256 private _buyCount = 0; uint256 private _txAmountLimit; uint256 private _walletAmountLimit; uint256 private _swapbackMin; uint256 private _swapbackMax; IDexRouter private uniswapV2Router; address private uniswapV2Pair; bool private tradingOpen; bool private inSwap = false; bool private swapEnabled = false; event MaxTxAmountUpdated(uint _txAmountLimit); event MaxWalletAmountUpdated(uint _walletAmountLimit); event FeesUpdated(uint buyFee, uint sellFee); event SwapbackUpdated(uint _swapbackMin, uint _swapbackMax); event FeeReceiverUpdated(address _taxWallet); event ExcludedFromFee(address account, bool status); event LimitsRemoved(); event TradingOpened(); modifier lockTheSwap() { inSwap = true; _; inSwap = false; } constructor() ERC20("vivek", "vivek") { uint256 _totalSupply = 100_000_000_000_000 * 10 ** 9; _txAmountLimit = (_totalSupply * 10) / 1000; _walletAmountLimit = (_totalSupply * 10) / 1000; _swapbackMin = (_totalSupply * 5) / 10000; _swapbackMax = (_totalSupply * 300) / 10000; _taxWallet = payable(0x3cde31518712288C26Ea0FFF8C3809F3F9164141); _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_taxWallet] = true; _mint(_msgSender(), _totalSupply); } receive() external payable {} function decimals() public view virtual override returns (uint8) { return 9; } function ot() external onlyOwner { require(!tradingOpen, "trading is already open"); uniswapV2Router = IDexRouter( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); _approve(address(this), address(uniswapV2Router), totalSupply()); uniswapV2Pair = IDexFactory(uniswapV2Router.factory()).createPair( address(this), uniswapV2Router.WETH() ); uniswapV2Router.addLiquidityETH{value: address(this).balance}( address(this), balanceOf(address(this)), 0, 0, owner(), block.timestamp ); IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max); swapEnabled = true; tradingOpen = true; firstBlock = block.number; lastLiquifyTime = uint64(block.number); _isExcludedFromFee[address(this)] = true; buyFee = 80; emit TradingOpened(); } function setReceiverWallet(address payable marketingWallet) external onlyOwner { _taxWallet = marketingWallet; emit FeeReceiverUpdated(marketingWallet); } function setTxAmtMax(uint256 newValue) external onlyOwner { require(newValue >= 1, "Max tx cant be lower than 0.1%"); _txAmountLimit = (totalSupply() * newValue) / 1000; emit MaxTxAmountUpdated(_txAmountLimit); } function setWMax(uint256 newValue) external onlyOwner { require(newValue >= 1, "Max wallet cant be lower than 0.1%"); _walletAmountLimit = (totalSupply() * newValue) / 1000; emit MaxWalletAmountUpdated(_walletAmountLimit); } function setrangeSB( uint256 taxSwapThreshold, uint256 maxTaxSwap ) external onlyOwner { _swapbackMin = (totalSupply() * taxSwapThreshold) / 10000; _swapbackMax = (totalSupply() * maxTaxSwap) / 10000; emit SwapbackUpdated(taxSwapThreshold, maxTaxSwap); } function removeLimits() external onlyOwner { _txAmountLimit = totalSupply(); _walletAmountLimit = totalSupply(); emit MaxTxAmountUpdated(totalSupply()); emit MaxWalletAmountUpdated(totalSupply()); } function changeTxFees(uint256 buyTax, uint256 sellTax) external onlyOwner { require(buyTax <= 99, "Invalid buy tax value"); require(sellTax <= 99, "Invalid sell tax value"); buyFee = buyTax; sellFee = sellTax; emit FeesUpdated(buyTax, sellTax); } function recoverETHER() external { require(msg.sender == _taxWallet, "Only fee receiver can trigger"); _taxWallet.transfer(address(this).balance); } function setFeeWl(address account, bool status) external onlyOwner { _isExcludedFromFee[account] = status; emit ExcludedFromFee(account, status); } function viewInfo() external view returns ( uint256 _buyFee, uint256 _sellFee, uint256 maxTxAmount, uint256 maxWalletSize, uint256 taxSwapThreshold, uint256 maxTaxSwap ) { return ( buyFee, sellFee, _txAmountLimit, _walletAmountLimit, _swapbackMin, _swapbackMax ); } 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"); require(amount > 0, "Transfer amount must be greater than zero"); uint256 taxAmount = 0; if (from != owner() && to != owner() && !inSwap) { taxAmount = amount.mul(buyFee).div(100); if ( from == uniswapV2Pair && to != address(uniswapV2Router) && !_isExcludedFromFee[to] ) { require(amount <= _txAmountLimit, "Exceeds the _txAmountLimit."); require( balanceOf(to) + amount <= _walletAmountLimit, "Exceeds the maxWalletSize." ); if (firstBlock + 3 > block.number) { require(!isContract(to)); } _buyCount++; } if (to != uniswapV2Pair && !_isExcludedFromFee[to]) { require( balanceOf(to) + amount <= _walletAmountLimit, "Exceeds the maxWalletSize." ); } if (to == uniswapV2Pair && from != address(this)) { taxAmount = amount.mul(sellFee).div(100); } uint256 contractTokenBalance = balanceOf(address(this)); if ( !inSwap && to == uniswapV2Pair && swapEnabled && contractTokenBalance > _swapbackMin && _buyCount > _preventSwapBefore && lastLiquifyTime != uint64(block.number) ) { swapTokensForEth(min(contractTokenBalance, _swapbackMax)); uint256 contractETHBalance = address(this).balance; if (contractETHBalance > 0) { sendETHToFee(); } } } if (taxAmount > 0) { super._transfer(from, address(this), taxAmount); } super._transfer(from, to, amount.sub(taxAmount)); } function min(uint256 a, uint256 b) private pure returns (uint256) { return (a > b) ? b : a; } function isContract(address account) private view returns (bool) { uint256 size; assembly { size := extcodesize(account) } return size > 0; } function triggerSwap() external { require( msg.sender == _taxWallet || msg.sender == owner(), "Only fee receiver can trigger" ); uint256 contractTokenBalance = balanceOf(address(this)); swapTokensForEth(contractTokenBalance); uint256 contractETHBalance = address(this).balance; if (contractETHBalance > 0) { sendETHToFee(); } } function swapTokensForEth(uint256 tokenAmount) private lockTheSwap { lastLiquifyTime = uint64(block.number); address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function sendETHToFee() private { bool success; (success, ) = address(_taxWallet).call{value: address(this).balance}( "" ); } }
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":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"ExcludedFromFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_taxWallet","type":"address"}],"name":"FeeReceiverUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"buyFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellFee","type":"uint256"}],"name":"FeesUpdated","type":"event"},{"anonymous":false,"inputs":[],"name":"LimitsRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_txAmountLimit","type":"uint256"}],"name":"MaxTxAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_walletAmountLimit","type":"uint256"}],"name":"MaxWalletAmountUpdated","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":false,"internalType":"uint256","name":"_swapbackMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_swapbackMax","type":"uint256"}],"name":"SwapbackUpdated","type":"event"},{"anonymous":false,"inputs":[],"name":"TradingOpened","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"internalType":"uint256","name":"buyTax","type":"uint256"},{"internalType":"uint256","name":"sellTax","type":"uint256"}],"name":"changeTxFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"recoverETHER","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"setFeeWl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"marketingWallet","type":"address"}],"name":"setReceiverWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"setTxAmtMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"setWMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxSwapThreshold","type":"uint256"},{"internalType":"uint256","name":"maxTaxSwap","type":"uint256"}],"name":"setrangeSB","outputs":[],"stateMutability":"nonpayable","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":"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":"triggerSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"viewInfo","outputs":[{"internalType":"uint256","name":"_buyFee","type":"uint256"},{"internalType":"uint256","name":"_sellFee","type":"uint256"},{"internalType":"uint256","name":"maxTxAmount","type":"uint256"},{"internalType":"uint256","name":"maxWalletSize","type":"uint256"},{"internalType":"uint256","name":"taxSwapThreshold","type":"uint256"},{"internalType":"uint256","name":"maxTaxSwap","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526014600a556050600b556001600c556000600d556013805461ffff60a81b191690553480156200003357600080fd5b50604080518082018252600580825264766976656b60d81b6020808401829052845180860190955291845290830152906003620000718382620003bc565b506004620000808282620003bc565b5050506200009d62000097620001d560201b60201c565b620001d9565b69152d02c7e14af68000006103e8620000b882600a6200049e565b620000c49190620004be565b600e556103e8620000d782600a6200049e565b620000e39190620004be565b600f55612710620000f68260056200049e565b620001029190620004be565b601055612710620001168261012c6200049e565b620001229190620004be565b601155600780546001600160a01b031916733cde31518712288c26ea0fff8c3809f3f9164141179055600160066000620001646005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff199687161790553081526006909352818320805485166001908117909155600754909116835291208054909216179055620001ce620001c73390565b826200022b565b50620004f7565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620002865760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200029a9190620004e1565b90915550506001600160a01b03821660009081526020819052604081208054839290620002c9908490620004e1565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200034357607f821691505b6020821081036200036457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200031357600081815260208120601f850160051c81016020861015620003935750805b601f850160051c820191505b81811015620003b4578281556001016200039f565b505050505050565b81516001600160401b03811115620003d857620003d862000318565b620003f081620003e984546200032e565b846200036a565b602080601f8311600181146200042857600084156200040f5750858301515b600019600386901b1c1916600185901b178555620003b4565b600085815260208120601f198616915b82811015620004595788860151825594840194600190910190840162000438565b5085821015620004785787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620004b857620004b862000488565b92915050565b600082620004dc57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620004b857620004b862000488565b611fe080620005076000396000f3fe60806040526004361061016a5760003560e01c80637430f615116100d1578063a457c2d71161008a578063bbd2330711610064578063bbd2330714610441578063dd62ed3e14610461578063f2fde38b146104a7578063ff46a64c146104c757600080fd5b8063a457c2d7146103b5578063a9059cbb146103d5578063ae601480146103f557600080fd5b80637430f61514610319578063751039fc14610339578063884d23641461034e5780638da5cb5b146103635780638f937cc41461038b57806395d89b41146103a057600080fd5b806323b872dd1161012357806323b872dd14610252578063313ce56714610272578063395093511461028e5780634ee093fd146102ae57806370a08231146102ce578063715018a61461030457600080fd5b806306fdde0314610176578063095ea7b3146101a157806314c5496f146101d157806316fdb869146101f357806318160ddd1461021357806322912cb21461023257600080fd5b3661017157005b600080fd5b34801561018257600080fd5b5061018b6104dc565b6040516101989190611b9f565b60405180910390f35b3480156101ad57600080fd5b506101c16101bc366004611c02565b61056e565b6040519015158152602001610198565b3480156101dd57600080fd5b506101f16101ec366004611c2e565b610585565b005b3480156101ff57600080fd5b506101f161020e366004611c47565b610671565b34801561021f57600080fd5b506002545b604051908152602001610198565b34801561023e57600080fd5b506101f161024d366004611c69565b610776565b34801561025e57600080fd5b506101c161026d366004611c86565b6107ee565b34801561027e57600080fd5b5060405160098152602001610198565b34801561029a57600080fd5b506101c16102a9366004611c02565b610898565b3480156102ba57600080fd5b506101f16102c9366004611c47565b6108d4565b3480156102da57600080fd5b506102246102e9366004611c69565b6001600160a01b031660009081526020819052604090205490565b34801561031057600080fd5b506101f161097c565b34801561032557600080fd5b506101f1610334366004611c2e565b6109b2565b34801561034557600080fd5b506101f1610a83565b34801561035a57600080fd5b506101f1610b31565b34801561036f57600080fd5b506005546040516001600160a01b039091168152602001610198565b34801561039757600080fd5b506101f1610bc7565b3480156103ac57600080fd5b5061018b610c62565b3480156103c157600080fd5b506101c16103d0366004611c02565b610c71565b3480156103e157600080fd5b506101c16103f0366004611c02565b610d0a565b34801561040157600080fd5b50600a54600b54600e54600f54601054601154604080519687526020870195909552938501929092526060840152608083015260a082015260c001610198565b34801561044d57600080fd5b506101f161045c366004611cd5565b610d17565b34801561046d57600080fd5b5061022461047c366004611d0e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156104b357600080fd5b506101f16104c2366004611c69565b610d9d565b3480156104d357600080fd5b506101f1610e35565b6060600380546104eb90611d3c565b80601f016020809104026020016040519081016040528092919081815260200182805461051790611d3c565b80156105645780601f1061053957610100808354040283529160200191610564565b820191906000526020600020905b81548152906001019060200180831161054757829003601f168201915b5050505050905090565b600061057b33848461124c565b5060015b92915050565b6005546001600160a01b031633146105b85760405162461bcd60e51b81526004016105af90611d70565b60405180910390fd5b60018110156106145760405162461bcd60e51b815260206004820152602260248201527f4d61782077616c6c65742063616e74206265206c6f776572207468616e20302e604482015261312560f01b60648201526084016105af565b6103e88161062160025490565b61062b9190611dbb565b6106359190611dd2565b600f8190556040519081527f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e001906020015b60405180910390a150565b6005546001600160a01b0316331461069b5760405162461bcd60e51b81526004016105af90611d70565b60638211156106e45760405162461bcd60e51b8152602060048201526015602482015274496e76616c696420627579207461782076616c756560581b60448201526064016105af565b606381111561072e5760405162461bcd60e51b8152602060048201526016602482015275496e76616c69642073656c6c207461782076616c756560501b60448201526064016105af565b600a829055600b81905560408051838152602081018390527f5c6323bf1c2d7aaea2c091a4751c1c87af7f2864650c336507a77d0557af37a191015b60405180910390a15050565b6005546001600160a01b031633146107a05760405162461bcd60e51b81526004016105af90611d70565b600780546001600160a01b0319166001600160a01b0383169081179091556040519081527f27aae5db36d94179909d019ae0b1ac7c16d96d953148f63c0f6a0a9c8ead79ee90602001610666565b60006107fb848484611370565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156108805760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016105af565b61088d853385840361124c565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161057b9185906108cf908690611df4565b61124c565b6005546001600160a01b031633146108fe5760405162461bcd60e51b81526004016105af90611d70565b6127108261090b60025490565b6109159190611dbb565b61091f9190611dd2565b6010556127108161092f60025490565b6109399190611dbb565b6109439190611dd2565b60115560408051838152602081018390527f2b3f4c022d9943b151090e389857495bb9d8493714259cc19a540f5a11475fb1910161076a565b6005546001600160a01b031633146109a65760405162461bcd60e51b81526004016105af90611d70565b6109b060006117d3565b565b6005546001600160a01b031633146109dc5760405162461bcd60e51b81526004016105af90611d70565b6001811015610a2d5760405162461bcd60e51b815260206004820152601e60248201527f4d61782074782063616e74206265206c6f776572207468616e20302e3125000060448201526064016105af565b6103e881610a3a60025490565b610a449190611dbb565b610a4e9190611dd2565b600e8190556040519081527f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf90602001610666565b6005546001600160a01b03163314610aad5760405162461bcd60e51b81526004016105af90611d70565b600254600e55600254600f557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf610ae360025490565b60405190815260200160405180910390a17f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e001610b1e60025490565b60405190815260200160405180910390a1565b6007546001600160a01b03163314610b8b5760405162461bcd60e51b815260206004820152601d60248201527f4f6e6c79206665652072656365697665722063616e207472696767657200000060448201526064016105af565b6007546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610bc4573d6000803e3d6000fd5b50565b6007546001600160a01b0316331480610bea57506005546001600160a01b031633145b610c365760405162461bcd60e51b815260206004820152601d60248201527f4f6e6c79206665652072656365697665722063616e207472696767657200000060448201526064016105af565b30600090815260208190526040902054610c4f81611825565b478015610c5e57610c5e6119be565b5050565b6060600480546104eb90611d3c565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610cf35760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105af565b610d00338585840361124c565b5060019392505050565b600061057b338484611370565b6005546001600160a01b03163314610d415760405162461bcd60e51b81526004016105af90611d70565b6001600160a01b038216600081815260066020908152604091829020805460ff19168515159081179091558251938452908301527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa9910161076a565b6005546001600160a01b03163314610dc75760405162461bcd60e51b81526004016105af90611d70565b6001600160a01b038116610e2c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105af565b610bc4816117d3565b6005546001600160a01b03163314610e5f5760405162461bcd60e51b81526004016105af90611d70565b601354600160a01b900460ff1615610eb95760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064016105af565b601280546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d908117909155610ef19030906108cf60025490565b601260009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f44573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f689190611e07565b6001600160a01b031663c9c6539630601260009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fee9190611e07565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801561103b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061105f9190611e07565b601380546001600160a01b039283166001600160a01b03199091161790556012541663f305d71947306110a7816001600160a01b031660009081526020819052604090205490565b6000806110bc6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015611124573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906111499190611e24565b505060135460125460405163095ea7b360e01b81526001600160a01b03918216600482015260001960248201529116915063095ea7b3906044016020604051808303816000875af11580156111a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111c69190611e52565b506013805462ff00ff60a01b19166201000160a01b1790554360088190556009805467ffffffffffffffff191667ffffffffffffffff90921691909117905530600090815260066020526040808220805460ff191660011790556050600a55517fea4359d5c4b8f0945a64ab9c37fe830b3407d45e0e6e6f84275977a570457d6f9190a1565b6001600160a01b0383166112ae5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105af565b6001600160a01b03821661130f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105af565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166113965760405162461bcd60e51b81526004016105af90611e6f565b6001600160a01b0382166113bc5760405162461bcd60e51b81526004016105af90611eb4565b6000811161141e5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016105af565b60006114326005546001600160a01b031690565b6001600160a01b0316846001600160a01b03161415801561146157506005546001600160a01b03848116911614155b80156114775750601354600160a81b900460ff16155b156117a85761149c6064611496600a5485611a0b90919063ffffffff16565b90611a1e565b6013549091506001600160a01b0385811691161480156114ca57506012546001600160a01b03848116911614155b80156114ef57506001600160a01b03831660009081526006602052604090205460ff16155b156115f957600e548211156115465760405162461bcd60e51b815260206004820152601b60248201527f4578636565647320746865205f7478416d6f756e744c696d69742e000000000060448201526064016105af565b600f5482611569856001600160a01b031660009081526020819052604090205490565b6115739190611df4565b11156115c15760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e00000000000060448201526064016105af565b4360085460036115d19190611df4565b11156115e357823b156115e357600080fd5b600d80549060006115f383611ef7565b91905055505b6013546001600160a01b0384811691161480159061163057506001600160a01b03831660009081526006602052604090205460ff16155b156116b057600f5482611658856001600160a01b031660009081526020819052604090205490565b6116629190611df4565b11156116b05760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e00000000000060448201526064016105af565b6013546001600160a01b0384811691161480156116d657506001600160a01b0384163014155b156116f8576116f56064611496600b5485611a0b90919063ffffffff16565b90505b30600090815260208190526040902054601354600160a81b900460ff1615801561172f57506013546001600160a01b038581169116145b80156117445750601354600160b01b900460ff165b8015611751575060105481115b80156117605750600c54600d54115b801561177c57506009544367ffffffffffffffff908116911614155b156117a65761179561179082601154611a2a565b611825565b4780156117a4576117a46119be565b505b505b80156117b9576117b9843083611a3f565b6117cd84846117c88585611b93565b611a3f565b50505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6013805460ff60a81b1916600160a81b1790556009805467ffffffffffffffff431667ffffffffffffffff19909116179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061188c5761188c611f10565b6001600160a01b03928316602091820292909201810191909152601254604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156118e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119099190611e07565b8160018151811061191c5761191c611f10565b6001600160a01b039283166020918202929092010152601254611942913091168461124c565b60125460405163791ac94760e01b81526001600160a01b039091169063791ac9479061197b908590600090869030904290600401611f26565b600060405180830381600087803b15801561199557600080fd5b505af11580156119a9573d6000803e3d6000fd5b50506013805460ff60a81b1916905550505050565b6007546040516000916001600160a01b03169047908381818185875af1925050503d80600081146117cd576040519150601f19603f3d011682016040523d82523d6000602084013e6117cd565b6000611a178284611dbb565b9392505050565b6000611a178284611dd2565b6000818311611a395782611a17565b50919050565b6001600160a01b038316611a655760405162461bcd60e51b81526004016105af90611e6f565b6001600160a01b038216611a8b5760405162461bcd60e51b81526004016105af90611eb4565b6001600160a01b03831660009081526020819052604090205481811015611b035760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105af565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611b3a908490611df4565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b8691815260200190565b60405180910390a36117cd565b6000611a178284611f97565b600060208083528351808285015260005b81811015611bcc57858101830151858201604001528201611bb0565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610bc457600080fd5b60008060408385031215611c1557600080fd5b8235611c2081611bed565b946020939093013593505050565b600060208284031215611c4057600080fd5b5035919050565b60008060408385031215611c5a57600080fd5b50508035926020909101359150565b600060208284031215611c7b57600080fd5b8135611a1781611bed565b600080600060608486031215611c9b57600080fd5b8335611ca681611bed565b92506020840135611cb681611bed565b929592945050506040919091013590565b8015158114610bc457600080fd5b60008060408385031215611ce857600080fd5b8235611cf381611bed565b91506020830135611d0381611cc7565b809150509250929050565b60008060408385031215611d2157600080fd5b8235611d2c81611bed565b91506020830135611d0381611bed565b600181811c90821680611d5057607f821691505b602082108103611a3957634e487b7160e01b600052602260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761057f5761057f611da5565b600082611def57634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561057f5761057f611da5565b600060208284031215611e1957600080fd5b8151611a1781611bed565b600080600060608486031215611e3957600080fd5b8351925060208401519150604084015190509250925092565b600060208284031215611e6457600080fd5b8151611a1781611cc7565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600060018201611f0957611f09611da5565b5060010190565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611f765784516001600160a01b031683529383019391830191600101611f51565b50506001600160a01b03969096166060850152505050608001529392505050565b8181038181111561057f5761057f611da556fea2646970667358221220bfb204eae5fbff438ae1fde733592150fd08847c831c7c6a586909d495471b7b64736f6c63430008130033
Deployed Bytecode
0x60806040526004361061016a5760003560e01c80637430f615116100d1578063a457c2d71161008a578063bbd2330711610064578063bbd2330714610441578063dd62ed3e14610461578063f2fde38b146104a7578063ff46a64c146104c757600080fd5b8063a457c2d7146103b5578063a9059cbb146103d5578063ae601480146103f557600080fd5b80637430f61514610319578063751039fc14610339578063884d23641461034e5780638da5cb5b146103635780638f937cc41461038b57806395d89b41146103a057600080fd5b806323b872dd1161012357806323b872dd14610252578063313ce56714610272578063395093511461028e5780634ee093fd146102ae57806370a08231146102ce578063715018a61461030457600080fd5b806306fdde0314610176578063095ea7b3146101a157806314c5496f146101d157806316fdb869146101f357806318160ddd1461021357806322912cb21461023257600080fd5b3661017157005b600080fd5b34801561018257600080fd5b5061018b6104dc565b6040516101989190611b9f565b60405180910390f35b3480156101ad57600080fd5b506101c16101bc366004611c02565b61056e565b6040519015158152602001610198565b3480156101dd57600080fd5b506101f16101ec366004611c2e565b610585565b005b3480156101ff57600080fd5b506101f161020e366004611c47565b610671565b34801561021f57600080fd5b506002545b604051908152602001610198565b34801561023e57600080fd5b506101f161024d366004611c69565b610776565b34801561025e57600080fd5b506101c161026d366004611c86565b6107ee565b34801561027e57600080fd5b5060405160098152602001610198565b34801561029a57600080fd5b506101c16102a9366004611c02565b610898565b3480156102ba57600080fd5b506101f16102c9366004611c47565b6108d4565b3480156102da57600080fd5b506102246102e9366004611c69565b6001600160a01b031660009081526020819052604090205490565b34801561031057600080fd5b506101f161097c565b34801561032557600080fd5b506101f1610334366004611c2e565b6109b2565b34801561034557600080fd5b506101f1610a83565b34801561035a57600080fd5b506101f1610b31565b34801561036f57600080fd5b506005546040516001600160a01b039091168152602001610198565b34801561039757600080fd5b506101f1610bc7565b3480156103ac57600080fd5b5061018b610c62565b3480156103c157600080fd5b506101c16103d0366004611c02565b610c71565b3480156103e157600080fd5b506101c16103f0366004611c02565b610d0a565b34801561040157600080fd5b50600a54600b54600e54600f54601054601154604080519687526020870195909552938501929092526060840152608083015260a082015260c001610198565b34801561044d57600080fd5b506101f161045c366004611cd5565b610d17565b34801561046d57600080fd5b5061022461047c366004611d0e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156104b357600080fd5b506101f16104c2366004611c69565b610d9d565b3480156104d357600080fd5b506101f1610e35565b6060600380546104eb90611d3c565b80601f016020809104026020016040519081016040528092919081815260200182805461051790611d3c565b80156105645780601f1061053957610100808354040283529160200191610564565b820191906000526020600020905b81548152906001019060200180831161054757829003601f168201915b5050505050905090565b600061057b33848461124c565b5060015b92915050565b6005546001600160a01b031633146105b85760405162461bcd60e51b81526004016105af90611d70565b60405180910390fd5b60018110156106145760405162461bcd60e51b815260206004820152602260248201527f4d61782077616c6c65742063616e74206265206c6f776572207468616e20302e604482015261312560f01b60648201526084016105af565b6103e88161062160025490565b61062b9190611dbb565b6106359190611dd2565b600f8190556040519081527f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e001906020015b60405180910390a150565b6005546001600160a01b0316331461069b5760405162461bcd60e51b81526004016105af90611d70565b60638211156106e45760405162461bcd60e51b8152602060048201526015602482015274496e76616c696420627579207461782076616c756560581b60448201526064016105af565b606381111561072e5760405162461bcd60e51b8152602060048201526016602482015275496e76616c69642073656c6c207461782076616c756560501b60448201526064016105af565b600a829055600b81905560408051838152602081018390527f5c6323bf1c2d7aaea2c091a4751c1c87af7f2864650c336507a77d0557af37a191015b60405180910390a15050565b6005546001600160a01b031633146107a05760405162461bcd60e51b81526004016105af90611d70565b600780546001600160a01b0319166001600160a01b0383169081179091556040519081527f27aae5db36d94179909d019ae0b1ac7c16d96d953148f63c0f6a0a9c8ead79ee90602001610666565b60006107fb848484611370565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156108805760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016105af565b61088d853385840361124c565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161057b9185906108cf908690611df4565b61124c565b6005546001600160a01b031633146108fe5760405162461bcd60e51b81526004016105af90611d70565b6127108261090b60025490565b6109159190611dbb565b61091f9190611dd2565b6010556127108161092f60025490565b6109399190611dbb565b6109439190611dd2565b60115560408051838152602081018390527f2b3f4c022d9943b151090e389857495bb9d8493714259cc19a540f5a11475fb1910161076a565b6005546001600160a01b031633146109a65760405162461bcd60e51b81526004016105af90611d70565b6109b060006117d3565b565b6005546001600160a01b031633146109dc5760405162461bcd60e51b81526004016105af90611d70565b6001811015610a2d5760405162461bcd60e51b815260206004820152601e60248201527f4d61782074782063616e74206265206c6f776572207468616e20302e3125000060448201526064016105af565b6103e881610a3a60025490565b610a449190611dbb565b610a4e9190611dd2565b600e8190556040519081527f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf90602001610666565b6005546001600160a01b03163314610aad5760405162461bcd60e51b81526004016105af90611d70565b600254600e55600254600f557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf610ae360025490565b60405190815260200160405180910390a17f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e001610b1e60025490565b60405190815260200160405180910390a1565b6007546001600160a01b03163314610b8b5760405162461bcd60e51b815260206004820152601d60248201527f4f6e6c79206665652072656365697665722063616e207472696767657200000060448201526064016105af565b6007546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610bc4573d6000803e3d6000fd5b50565b6007546001600160a01b0316331480610bea57506005546001600160a01b031633145b610c365760405162461bcd60e51b815260206004820152601d60248201527f4f6e6c79206665652072656365697665722063616e207472696767657200000060448201526064016105af565b30600090815260208190526040902054610c4f81611825565b478015610c5e57610c5e6119be565b5050565b6060600480546104eb90611d3c565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610cf35760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105af565b610d00338585840361124c565b5060019392505050565b600061057b338484611370565b6005546001600160a01b03163314610d415760405162461bcd60e51b81526004016105af90611d70565b6001600160a01b038216600081815260066020908152604091829020805460ff19168515159081179091558251938452908301527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa9910161076a565b6005546001600160a01b03163314610dc75760405162461bcd60e51b81526004016105af90611d70565b6001600160a01b038116610e2c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105af565b610bc4816117d3565b6005546001600160a01b03163314610e5f5760405162461bcd60e51b81526004016105af90611d70565b601354600160a01b900460ff1615610eb95760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064016105af565b601280546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d908117909155610ef19030906108cf60025490565b601260009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f44573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f689190611e07565b6001600160a01b031663c9c6539630601260009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fee9190611e07565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801561103b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061105f9190611e07565b601380546001600160a01b039283166001600160a01b03199091161790556012541663f305d71947306110a7816001600160a01b031660009081526020819052604090205490565b6000806110bc6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015611124573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906111499190611e24565b505060135460125460405163095ea7b360e01b81526001600160a01b03918216600482015260001960248201529116915063095ea7b3906044016020604051808303816000875af11580156111a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111c69190611e52565b506013805462ff00ff60a01b19166201000160a01b1790554360088190556009805467ffffffffffffffff191667ffffffffffffffff90921691909117905530600090815260066020526040808220805460ff191660011790556050600a55517fea4359d5c4b8f0945a64ab9c37fe830b3407d45e0e6e6f84275977a570457d6f9190a1565b6001600160a01b0383166112ae5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105af565b6001600160a01b03821661130f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105af565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166113965760405162461bcd60e51b81526004016105af90611e6f565b6001600160a01b0382166113bc5760405162461bcd60e51b81526004016105af90611eb4565b6000811161141e5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016105af565b60006114326005546001600160a01b031690565b6001600160a01b0316846001600160a01b03161415801561146157506005546001600160a01b03848116911614155b80156114775750601354600160a81b900460ff16155b156117a85761149c6064611496600a5485611a0b90919063ffffffff16565b90611a1e565b6013549091506001600160a01b0385811691161480156114ca57506012546001600160a01b03848116911614155b80156114ef57506001600160a01b03831660009081526006602052604090205460ff16155b156115f957600e548211156115465760405162461bcd60e51b815260206004820152601b60248201527f4578636565647320746865205f7478416d6f756e744c696d69742e000000000060448201526064016105af565b600f5482611569856001600160a01b031660009081526020819052604090205490565b6115739190611df4565b11156115c15760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e00000000000060448201526064016105af565b4360085460036115d19190611df4565b11156115e357823b156115e357600080fd5b600d80549060006115f383611ef7565b91905055505b6013546001600160a01b0384811691161480159061163057506001600160a01b03831660009081526006602052604090205460ff16155b156116b057600f5482611658856001600160a01b031660009081526020819052604090205490565b6116629190611df4565b11156116b05760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e00000000000060448201526064016105af565b6013546001600160a01b0384811691161480156116d657506001600160a01b0384163014155b156116f8576116f56064611496600b5485611a0b90919063ffffffff16565b90505b30600090815260208190526040902054601354600160a81b900460ff1615801561172f57506013546001600160a01b038581169116145b80156117445750601354600160b01b900460ff165b8015611751575060105481115b80156117605750600c54600d54115b801561177c57506009544367ffffffffffffffff908116911614155b156117a65761179561179082601154611a2a565b611825565b4780156117a4576117a46119be565b505b505b80156117b9576117b9843083611a3f565b6117cd84846117c88585611b93565b611a3f565b50505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6013805460ff60a81b1916600160a81b1790556009805467ffffffffffffffff431667ffffffffffffffff19909116179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061188c5761188c611f10565b6001600160a01b03928316602091820292909201810191909152601254604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156118e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119099190611e07565b8160018151811061191c5761191c611f10565b6001600160a01b039283166020918202929092010152601254611942913091168461124c565b60125460405163791ac94760e01b81526001600160a01b039091169063791ac9479061197b908590600090869030904290600401611f26565b600060405180830381600087803b15801561199557600080fd5b505af11580156119a9573d6000803e3d6000fd5b50506013805460ff60a81b1916905550505050565b6007546040516000916001600160a01b03169047908381818185875af1925050503d80600081146117cd576040519150601f19603f3d011682016040523d82523d6000602084013e6117cd565b6000611a178284611dbb565b9392505050565b6000611a178284611dd2565b6000818311611a395782611a17565b50919050565b6001600160a01b038316611a655760405162461bcd60e51b81526004016105af90611e6f565b6001600160a01b038216611a8b5760405162461bcd60e51b81526004016105af90611eb4565b6001600160a01b03831660009081526020819052604090205481811015611b035760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105af565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611b3a908490611df4565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b8691815260200190565b60405180910390a36117cd565b6000611a178284611f97565b600060208083528351808285015260005b81811015611bcc57858101830151858201604001528201611bb0565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610bc457600080fd5b60008060408385031215611c1557600080fd5b8235611c2081611bed565b946020939093013593505050565b600060208284031215611c4057600080fd5b5035919050565b60008060408385031215611c5a57600080fd5b50508035926020909101359150565b600060208284031215611c7b57600080fd5b8135611a1781611bed565b600080600060608486031215611c9b57600080fd5b8335611ca681611bed565b92506020840135611cb681611bed565b929592945050506040919091013590565b8015158114610bc457600080fd5b60008060408385031215611ce857600080fd5b8235611cf381611bed565b91506020830135611d0381611cc7565b809150509250929050565b60008060408385031215611d2157600080fd5b8235611d2c81611bed565b91506020830135611d0381611bed565b600181811c90821680611d5057607f821691505b602082108103611a3957634e487b7160e01b600052602260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761057f5761057f611da5565b600082611def57634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561057f5761057f611da5565b600060208284031215611e1957600080fd5b8151611a1781611bed565b600080600060608486031215611e3957600080fd5b8351925060208401519150604084015190509250925092565b600060208284031215611e6457600080fd5b8151611a1781611cc7565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600060018201611f0957611f09611da5565b5060010190565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611f765784516001600160a01b031683529383019391830191600101611f51565b50506001600160a01b03969096166060850152505050608001529392505050565b8181038181111561057f5761057f611da556fea2646970667358221220bfb204eae5fbff438ae1fde733592150fd08847c831c7c6a586909d495471b7b64736f6c63430008130033
Deployed Bytecode Sourcemap
25413:9171:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11011:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13244:194;;;;;;;;;;-1:-1:-1;13244:194:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;13244:194:0;1023:187:1;28828:256:0;;;;;;;;;;-1:-1:-1;28828:256:0;;;;;:::i;:::-;;:::i;:::-;;29656:296;;;;;;;;;;-1:-1:-1;29656:296:0;;;;;:::i;:::-;;:::i;12131:108::-;;;;;;;;;;-1:-1:-1;12219:12:0;;12131:108;;;1799:25:1;;;1787:2;1772:18;12131:108:0;1653:177:1;28389:179:0;;;;;;;;;;-1:-1:-1;28389:179:0;;;;;:::i;:::-;;:::i;13916:529::-;;;;;;;;;;-1:-1:-1;13916:529:0;;;;;:::i;:::-;;:::i;27280:92::-;;;;;;;;;;-1:-1:-1;27280:92:0;;27363:1;2698:36:1;;2686:2;2671:18;27280:92:0;2556:184:1;14850:290:0;;;;;;;;;;-1:-1:-1;14850:290:0;;;;;:::i;:::-;;:::i;29092:309::-;;;;;;;;;;-1:-1:-1;29092:309:0;;;;;:::i;:::-;;:::i;12302:143::-;;;;;;;;;;-1:-1:-1;12302:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;12419:18:0;12392:7;12419:18;;;;;;;;;;;;12302:143;22350:103;;;;;;;;;;;;;:::i;28576:244::-;;;;;;;;;;-1:-1:-1;28576:244:0;;;;;:::i;:::-;;:::i;29409:239::-;;;;;;;;;;;;;:::i;29960:171::-;;;;;;;;;;;;;:::i;21699:87::-;;;;;;;;;;-1:-1:-1;21772:6:0;;21699:87;;-1:-1:-1;;;;;21772:6:0;;;3143:51:1;;3131:2;3116:18;21699:87:0;2997:203:1;33427:436:0;;;;;;;;;;;;;:::i;11230:104::-;;;;;;;;;;;;;:::i;15639:475::-;;;;;;;;;;-1:-1:-1;15639:475:0;;;;;:::i;:::-;;:::i;12658:200::-;;;;;;;;;;-1:-1:-1;12658:200:0;;;;;:::i;:::-;;:::i;30317:485::-;;;;;;;;;;-1:-1:-1;30639:6:0;;30660:7;;30682:14;;30711:18;;30744:12;;30771;;30317:485;;;3492:25:1;;;3548:2;3533:18;;3526:34;;;;3576:18;;;3569:34;;;;3634:2;3619:18;;3612:34;3677:3;3662:19;;3655:35;3721:3;3706:19;;3699:35;3479:3;3464:19;30317:485:0;3205:535:1;30139:170:0;;;;;;;;;;-1:-1:-1;30139:170:0;;;;;:::i;:::-;;:::i;12921:176::-;;;;;;;;;;-1:-1:-1;12921:176:0;;;;;:::i;:::-;-1:-1:-1;;;;;13062:18:0;;;13035:7;13062:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12921:176;22608:238;;;;;;;;;;-1:-1:-1;22608:238:0;;;;;:::i;:::-;;:::i;27380:1001::-;;;;;;;;;;;;;:::i;11011:100::-;11065:13;11098:5;11091:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11011:100;:::o;13244:194::-;13352:4;13369:39;10097:10;13392:7;13401:6;13369:8;:39::i;:::-;-1:-1:-1;13426:4:0;13244:194;;;;;:::o;28828:256::-;21772:6;;-1:-1:-1;;;;;21772:6:0;10097:10;21919:23;21911:68;;;;-1:-1:-1;;;21911:68:0;;;;;;;:::i;:::-;;;;;;;;;28913:1:::1;28901:8;:13;;28893:60;;;::::0;-1:-1:-1;;;28893:60:0;;5596:2:1;28893:60:0::1;::::0;::::1;5578:21:1::0;5635:2;5615:18;;;5608:30;5674:34;5654:18;;;5647:62;-1:-1:-1;;;5725:18:1;;;5718:32;5767:19;;28893:60:0::1;5394:398:1::0;28893:60:0::1;29014:4;29002:8;28986:13;12219:12:::0;;;12131:108;28986:13:::1;:24;;;;:::i;:::-;28985:33;;;;:::i;:::-;28964:18;:54:::0;;;29034:42:::1;::::0;1799:25:1;;;29034:42:0::1;::::0;1787:2:1;1772:18;29034:42:0::1;;;;;;;;28828:256:::0;:::o;29656:296::-;21772:6;;-1:-1:-1;;;;;21772:6:0;10097:10;21919:23;21911:68;;;;-1:-1:-1;;;21911:68:0;;;;;;;:::i;:::-;29759:2:::1;29749:6;:12;;29741:46;;;::::0;-1:-1:-1;;;29741:46:0;;6526:2:1;29741:46:0::1;::::0;::::1;6508:21:1::0;6565:2;6545:18;;;6538:30;-1:-1:-1;;;6584:18:1;;;6577:51;6645:18;;29741:46:0::1;6324:345:1::0;29741:46:0::1;29817:2;29806:7;:13;;29798:48;;;::::0;-1:-1:-1;;;29798:48:0;;6876:2:1;29798:48:0::1;::::0;::::1;6858:21:1::0;6915:2;6895:18;;;6888:30;-1:-1:-1;;;6934:18:1;;;6927:52;6996:18;;29798:48:0::1;6674:346:1::0;29798:48:0::1;29857:6;:15:::0;;;29883:7:::1;:17:::0;;;29916:28:::1;::::0;;7199:25:1;;;7255:2;7240:18;;7233:34;;;29916:28:0::1;::::0;7172:18:1;29916:28:0::1;;;;;;;;29656:296:::0;;:::o;28389:179::-;21772:6;;-1:-1:-1;;;;;21772:6:0;10097:10;21919:23;21911:68;;;;-1:-1:-1;;;21911:68:0;;;;;;;:::i;:::-;28479:10:::1;:28:::0;;-1:-1:-1;;;;;;28479:28:0::1;-1:-1:-1::0;;;;;28479:28:0;::::1;::::0;;::::1;::::0;;;28525:35:::1;::::0;3143:51:1;;;28525:35:0::1;::::0;3131:2:1;3116:18;28525:35:0::1;2997:203:1::0;13916:529:0;14056:4;14073:36;14083:6;14091:9;14102:6;14073:9;:36::i;:::-;-1:-1:-1;;;;;14149:19:0;;14122:24;14149:19;;;:11;:19;;;;;;;;10097:10;14149:33;;;;;;;;14215:26;;;;14193:116;;;;-1:-1:-1;;;14193:116:0;;7696:2:1;14193:116:0;;;7678:21:1;7735:2;7715:18;;;7708:30;7774:34;7754:18;;;7747:62;-1:-1:-1;;;7825:18:1;;;7818:38;7873:19;;14193:116:0;7494:404:1;14193:116:0;14345:57;14354:6;10097:10;14395:6;14376:16;:25;14345:8;:57::i;:::-;-1:-1:-1;14433:4:0;;13916:529;-1:-1:-1;;;;13916:529:0:o;14850:290::-;10097:10;14963:4;15052:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15052:34:0;;;;;;;;;;14963:4;;14980:130;;15030:7;;15052:47;;15089:10;;15052:47;:::i;:::-;14980:8;:130::i;29092:309::-;21772:6;;-1:-1:-1;;;;;21772:6:0;10097:10;21919:23;21911:68;;;;-1:-1:-1;;;21911:68:0;;;;;;;:::i;:::-;29265:5:::1;29245:16;29229:13;12219:12:::0;;;12131:108;29229:13:::1;:32;;;;:::i;:::-;29228:42;;;;:::i;:::-;29213:12;:57:::0;29327:5:::1;29313:10:::0;29297:13:::1;12219:12:::0;;;12131:108;29297:13:::1;:26;;;;:::i;:::-;29296:36;;;;:::i;:::-;29281:12;:51:::0;29348:45:::1;::::0;;7199:25:1;;;7255:2;7240:18;;7233:34;;;29348:45:0::1;::::0;7172:18:1;29348:45:0::1;7025:248:1::0;22350:103:0;21772:6;;-1:-1:-1;;;;;21772:6:0;10097:10;21919:23;21911:68;;;;-1:-1:-1;;;21911:68:0;;;;;;;:::i;:::-;22415:30:::1;22442:1;22415:18;:30::i;:::-;22350:103::o:0;28576:244::-;21772:6;;-1:-1:-1;;;;;21772:6:0;10097:10;21919:23;21911:68;;;;-1:-1:-1;;;21911:68:0;;;;;;;:::i;:::-;28665:1:::1;28653:8;:13;;28645:56;;;::::0;-1:-1:-1;;;28645:56:0;;8235:2:1;28645:56:0::1;::::0;::::1;8217:21:1::0;8274:2;8254:18;;;8247:30;8313:32;8293:18;;;8286:60;8363:18;;28645:56:0::1;8033:354:1::0;28645:56:0::1;28758:4;28746:8;28730:13;12219:12:::0;;;12131:108;28730:13:::1;:24;;;;:::i;:::-;28729:33;;;;:::i;:::-;28712:14;:50:::0;;;28778:34:::1;::::0;1799:25:1;;;28778:34:0::1;::::0;1787:2:1;1772:18;28778:34:0::1;1653:177:1::0;29409:239:0;21772:6;;-1:-1:-1;;;;;21772:6:0;10097:10;21919:23;21911:68;;;;-1:-1:-1;;;21911:68:0;;;;;;;:::i;:::-;12219:12;;29463:14:::1;:30:::0;12219:12;;29504:18:::1;:34:::0;29554:33:::1;29573:13;12219:12:::0;;;12131:108;29573:13:::1;29554:33;::::0;1799:25:1;;;1787:2;1772:18;29554:33:0::1;;;;;;;29603:37;29626:13;12219:12:::0;;;12131:108;29626:13:::1;29603:37;::::0;1799:25:1;;;1787:2;1772:18;29603:37:0::1;;;;;;;29409:239::o:0;29960:171::-;30026:10;;-1:-1:-1;;;;;30026:10:0;30012;:24;30004:66;;;;-1:-1:-1;;;30004:66:0;;8594:2:1;30004:66:0;;;8576:21:1;8633:2;8613:18;;;8606:30;8672:31;8652:18;;;8645:59;8721:18;;30004:66:0;8392:353:1;30004:66:0;30081:10;;:42;;-1:-1:-1;;;;;30081:10:0;;;;30101:21;30081:42;;;;;:10;:42;:10;:42;30101:21;30081:10;:42;;;;;;;;;;;;;;;;;;;;;29960:171::o;33427:436::-;33506:10;;-1:-1:-1;;;;;33506:10:0;33492;:24;;:49;;-1:-1:-1;21772:6:0;;-1:-1:-1;;;;;21772:6:0;33520:10;:21;33492:49;33470:128;;;;-1:-1:-1;;;33470:128:0;;8594:2:1;33470:128:0;;;8576:21:1;8633:2;8613:18;;;8606:30;8672:31;8652:18;;;8645:59;8721:18;;33470:128:0;8392:353:1;33470:128:0;33658:4;33609:28;12419:18;;;;;;;;;;;33677:38;12419:18;33677:16;:38::i;:::-;33755:21;33791:22;;33787:69;;33830:14;:12;:14::i;:::-;33459:404;;33427:436::o;11230:104::-;11286:13;11319:7;11312:14;;;;;:::i;15639:475::-;10097:10;15757:4;15801:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15801:34:0;;;;;;;;;;15868:35;;;;15846:122;;;;-1:-1:-1;;;15846:122:0;;8952:2:1;15846:122:0;;;8934:21:1;8991:2;8971:18;;;8964:30;9030:34;9010:18;;;9003:62;-1:-1:-1;;;9081:18:1;;;9074:35;9126:19;;15846:122:0;8750:401:1;15846:122:0;16004:67;10097:10;16027:7;16055:15;16036:16;:34;16004:8;:67::i;:::-;-1:-1:-1;16102:4:0;;15639:475;-1:-1:-1;;;15639:475:0:o;12658:200::-;12769:4;12786:42;10097:10;12810:9;12821:6;12786:9;:42::i;30139:170::-;21772:6;;-1:-1:-1;;;;;21772:6:0;10097:10;21919:23;21911:68;;;;-1:-1:-1;;;21911:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30217:27:0;::::1;;::::0;;;:18:::1;:27;::::0;;;;;;;;:36;;-1:-1:-1;;30217:36:0::1;::::0;::::1;;::::0;;::::1;::::0;;;30269:32;;9324:51:1;;;9391:18;;;9384:50;30269:32:0::1;::::0;9297:18:1;30269:32:0::1;9156:284:1::0;22608:238:0;21772:6;;-1:-1:-1;;;;;21772:6:0;10097:10;21919:23;21911:68;;;;-1:-1:-1;;;21911:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22711:22:0;::::1;22689:110;;;::::0;-1:-1:-1;;;22689:110:0;;9647:2:1;22689:110:0::1;::::0;::::1;9629:21:1::0;9686:2;9666:18;;;9659:30;9725:34;9705:18;;;9698:62;-1:-1:-1;;;9776:18:1;;;9769:36;9822:19;;22689:110:0::1;9445:402:1::0;22689:110:0::1;22810:28;22829:8;22810:18;:28::i;27380:1001::-:0;21772:6;;-1:-1:-1;;;;;21772:6:0;10097:10;21919:23;21911:68;;;;-1:-1:-1;;;21911:68:0;;;;;;;:::i;:::-;27433:11:::1;::::0;-1:-1:-1;;;27433:11:0;::::1;;;27432:12;27424:48;;;::::0;-1:-1:-1;;;27424:48:0;;10054:2:1;27424:48:0::1;::::0;::::1;10036:21:1::0;10093:2;10073:18;;;10066:30;10132:25;10112:18;;;10105:53;10175:18;;27424:48:0::1;9852:347:1::0;27424:48:0::1;27483:15;:96:::0;;-1:-1:-1;;;;;;27483:96:0::1;27526:42;27483:96:::0;;::::1;::::0;;;27590:64:::1;::::0;27607:4:::1;::::0;27640:13:::1;12219:12:::0;;;12131:108;27590:64:::1;27693:15;;;;;;;;;-1:-1:-1::0;;;;;27693:15:0::1;-1:-1:-1::0;;;;;27693:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;27681:49:0::1;;27753:4;27773:15;;;;;;;;;-1:-1:-1::0;;;;;27773:15:0::1;-1:-1:-1::0;;;;;27773:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27681:125;::::0;-1:-1:-1;;;;;;27681:125:0::1;::::0;;;;;;-1:-1:-1;;;;;10690:15:1;;;27681:125:0::1;::::0;::::1;10672:34:1::0;10742:15;;10722:18;;;10715:43;10607:18;;27681:125:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27665:13;:141:::0;;-1:-1:-1;;;;;27665:141:0;;::::1;-1:-1:-1::0;;;;;;27665:141:0;;::::1;;::::0;;27817:15:::1;::::0;::::1;:31;27856:21;27901:4;27921:24;27901:4:::0;-1:-1:-1;;;;;12419:18:0;12392:7;12419:18;;;;;;;;;;;;12302:143;27921:24:::1;27960:1;27976::::0;27992:7:::1;21772:6:::0;;-1:-1:-1;;;;;21772:6:0;;21699:87;27992:7:::1;27817:223;::::0;::::1;::::0;;;-1:-1:-1;;;;;;27817:223:0;;;-1:-1:-1;;;;;11128:15:1;;;27817:223:0::1;::::0;::::1;11110:34:1::0;11160:18;;;11153:34;;;;11203:18;;;11196:34;;;;11246:18;;;11239:34;11310:15;;;11289:19;;;11282:44;28014:15:0::1;11342:19:1::0;;;11335:35;11044:19;;27817:223:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;28058:13:0::1;::::0;28089:15:::1;::::0;28051:71:::1;::::0;-1:-1:-1;;;28051:71:0;;-1:-1:-1;;;;;28089:15:0;;::::1;28051:71;::::0;::::1;11866:51:1::0;-1:-1:-1;;11933:18:1;;;11926:34;28058:13:0;::::1;::::0;-1:-1:-1;28051:29:0::1;::::0;11839:18:1;;28051:71:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;28133:11:0::1;:18:::0;;-1:-1:-1;;;;28162:18:0;-1:-1:-1;;;28162:18:0;;;28204:12:::1;28191:10;:25:::0;;;28227:15:::1;:38:::0;;-1:-1:-1;;28227:38:0::1;;::::0;;::::1;::::0;;;::::1;::::0;;28303:4:::1;-1:-1:-1::0;28276:33:0;;;:18:::1;:33;::::0;;;;;:40;;-1:-1:-1;;28276:40:0::1;-1:-1:-1::0;28276:40:0::1;::::0;;28338:2:::1;-1:-1:-1::0;28329:11:0;28358:15;::::1;::::0;-1:-1:-1;28358:15:0::1;27380:1001::o:0;19422:380::-;-1:-1:-1;;;;;19558:19:0;;19550:68;;;;-1:-1:-1;;;19550:68:0;;12423:2:1;19550:68:0;;;12405:21:1;12462:2;12442:18;;;12435:30;12501:34;12481:18;;;12474:62;-1:-1:-1;;;12552:18:1;;;12545:34;12596:19;;19550:68:0;12221:400:1;19550:68:0;-1:-1:-1;;;;;19637:21:0;;19629:68;;;;-1:-1:-1;;;19629:68:0;;12828:2:1;19629:68:0;;;12810:21:1;12867:2;12847:18;;;12840:30;12906:34;12886:18;;;12879:62;-1:-1:-1;;;12957:18:1;;;12950:32;12999:19;;19629:68:0;12626:398:1;19629:68:0;-1:-1:-1;;;;;19710:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19762:32;;1799:25:1;;;19762:32:0;;1772:18:1;19762:32:0;;;;;;;19422:380;;;:::o;30810:2291::-;-1:-1:-1;;;;;30942:18:0;;30934:68;;;;-1:-1:-1;;;30934:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31021:16:0;;31013:64;;;;-1:-1:-1;;;31013:64:0;;;;;;;:::i;:::-;31105:1;31096:6;:10;31088:64;;;;-1:-1:-1;;;31088:64:0;;14041:2:1;31088:64:0;;;14023:21:1;14080:2;14060:18;;;14053:30;14119:34;14099:18;;;14092:62;-1:-1:-1;;;14170:18:1;;;14163:39;14219:19;;31088:64:0;13839:405:1;31088:64:0;31163:17;31207:7;21772:6;;-1:-1:-1;;;;;21772:6:0;;21699:87;31207:7;-1:-1:-1;;;;;31199:15:0;:4;-1:-1:-1;;;;;31199:15:0;;;:32;;;;-1:-1:-1;21772:6:0;;-1:-1:-1;;;;;31218:13:0;;;21772:6;;31218:13;;31199:32;:43;;;;-1:-1:-1;31236:6:0;;-1:-1:-1;;;31236:6:0;;;;31235:7;31199:43;31195:1735;;;31285:27;31308:3;31285:18;31296:6;;31285;:10;;:18;;;;:::i;:::-;:22;;:27::i;:::-;31359:13;;31273:39;;-1:-1:-1;;;;;;31351:21:0;;;31359:13;;31351:21;:72;;;;-1:-1:-1;31407:15:0;;-1:-1:-1;;;;;31393:30:0;;;31407:15;;31393:30;;31351:72;:116;;;;-1:-1:-1;;;;;;31445:22:0;;;;;;:18;:22;;;;;;;;31444:23;31351:116;31329:568;;;31520:14;;31510:6;:24;;31502:64;;;;-1:-1:-1;;;31502:64:0;;14451:2:1;31502:64:0;;;14433:21:1;14490:2;14470:18;;;14463:30;14529:29;14509:18;;;14502:57;14576:18;;31502:64:0;14249:351:1;31502:64:0;31641:18;;31631:6;31615:13;31625:2;-1:-1:-1;;;;;12419:18:0;12392:7;12419:18;;;;;;;;;;;;12302:143;31615:13;:22;;;;:::i;:::-;:44;;31585:144;;;;-1:-1:-1;;;31585:144:0;;14807:2:1;31585:144:0;;;14789:21:1;14846:2;14826:18;;;14819:30;14885:28;14865:18;;;14858:56;14931:18;;31585:144:0;14605:350:1;31585:144:0;31771:12;31754:10;;31767:1;31754:14;;;;:::i;:::-;:29;31750:102;;;33355:20;;33403:8;31808:24;;;;;;31870:9;:11;;;:9;:11;;;:::i;:::-;;;;;;31329:568;31923:13;;-1:-1:-1;;;;;31917:19:0;;;31923:13;;31917:19;;;;:46;;-1:-1:-1;;;;;;31941:22:0;;;;;;:18;:22;;;;;;;;31940:23;31917:46;31913:231;;;32040:18;;32030:6;32014:13;32024:2;-1:-1:-1;;;;;12419:18:0;12392:7;12419:18;;;;;;;;;;;;12302:143;32014:13;:22;;;;:::i;:::-;:44;;31984:144;;;;-1:-1:-1;;;31984:144:0;;14807:2:1;31984:144:0;;;14789:21:1;14846:2;14826:18;;;14819:30;14885:28;14865:18;;;14858:56;14931:18;;31984:144:0;14605:350:1;31984:144:0;32170:13;;-1:-1:-1;;;;;32164:19:0;;;32170:13;;32164:19;:44;;;;-1:-1:-1;;;;;;32187:21:0;;32203:4;32187:21;;32164:44;32160:125;;;32241:28;32265:3;32241:19;32252:7;;32241:6;:10;;:19;;;;:::i;:28::-;32229:40;;32160:125;32350:4;32301:28;12419:18;;;;;;;;;;;32394:6;;-1:-1:-1;;;32394:6:0;;;;32393:7;:47;;;;-1:-1:-1;32427:13:0;;-1:-1:-1;;;;;32421:19:0;;;32427:13;;32421:19;32393:47;:79;;;;-1:-1:-1;32461:11:0;;-1:-1:-1;;;32461:11:0;;;;32393:79;:135;;;;;32516:12;;32493:20;:35;32393:135;:186;;;;;32561:18;;32549:9;;:30;32393:186;:246;;;;-1:-1:-1;32600:15:0;;32626:12;32600:39;;;;:15;;:39;;32393:246;32371:548;;;32674:57;32691:39;32695:20;32717:12;;32691:3;:39::i;:::-;32674:16;:57::i;:::-;32779:21;32823:22;;32819:85;;32870:14;:12;:14::i;:::-;32655:264;32371:548;31244:1686;31195:1735;32946:13;;32942:93;;32976:47;32992:4;33006;33013:9;32976:15;:47::i;:::-;33045:48;33061:4;33067:2;33071:21;:6;33082:9;33071:10;:21::i;:::-;33045:15;:48::i;:::-;30923:2178;30810:2291;;;:::o;23006:191::-;23099:6;;;-1:-1:-1;;;;;23116:17:0;;;-1:-1:-1;;;;;;23116:17:0;;;;;;;23149:40;;23099:6;;;23116:17;23099:6;;23149:40;;23080:16;;23149:40;23069:128;23006:191;:::o;33871:532::-;26575:6;:13;;-1:-1:-1;;;;26575:13:0;-1:-1:-1;;;26575:13:0;;;33949:15:::1;:38:::0;;::::1;33974:12;33949:38;-1:-1:-1::0;;33949:38:0;;::::1;;::::0;;34022:16:::1;::::0;;34036:1:::1;34022:16:::0;;;;;::::1;::::0;;-1:-1:-1;;34022:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;34022:16:0::1;33998:40;;34067:4;34049;34054:1;34049:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;34049:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;34093:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;34093:22:0;;;;:15;;;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;34049:7;;34093:22;;;;;:15;:22:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34083:4;34088:1;34083:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;34083:32:0;;::::1;:7;::::0;;::::1;::::0;;;;;:32;34158:15:::1;::::0;34126:62:::1;::::0;34143:4:::1;::::0;34158:15:::1;34176:11:::0;34126:8:::1;:62::i;:::-;34199:15;::::0;:196:::1;::::0;-1:-1:-1;;;34199:196:0;;-1:-1:-1;;;;;34199:15:0;;::::1;::::0;:66:::1;::::0;:196:::1;::::0;34280:11;;34199:15:::1;::::0;34322:4;;34349::::1;::::0;34369:15:::1;::::0;34199:196:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;26611:6:0;:14;;-1:-1:-1;;;;26611:14:0;;;-1:-1:-1;;;;33871:532:0:o;34411:170::-;34499:10;;34491:82;;34454:12;;-1:-1:-1;;;;;34499:10:0;;34523:21;;34454:12;34491:82;34454:12;34491:82;34523:21;34499:10;34491:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3376:98;3434:7;3461:5;3465:1;3461;:5;:::i;:::-;3454:12;3376:98;-1:-1:-1;;;3376:98:0:o;3775:::-;3833:7;3860:5;3864:1;3860;:5;:::i;33109:107::-;33166:7;33198:1;33194;:5;33193:15;;33207:1;33193:15;;;-1:-1:-1;33203:1:0;33109:107;-1:-1:-1;33109:107:0:o;16604:770::-;-1:-1:-1;;;;;16744:20:0;;16736:70;;;;-1:-1:-1;;;16736:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16825:23:0;;16817:71;;;;-1:-1:-1;;;16817:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16985:17:0;;16961:21;16985:17;;;;;;;;;;;17035:23;;;;17013:111;;;;-1:-1:-1;;;17013:111:0;;16761:2:1;17013:111:0;;;16743:21:1;16800:2;16780:18;;;16773:30;16839:34;16819:18;;;16812:62;-1:-1:-1;;;16890:18:1;;;16883:36;16936:19;;17013:111:0;16559:402:1;17013:111:0;-1:-1:-1;;;;;17160:17:0;;;:9;:17;;;;;;;;;;;17180:22;;;17160:42;;17224:20;;;;;;;;:30;;17196:6;;17160:9;17224:30;;17196:6;;17224:30;:::i;:::-;;;;;;;;17289:9;-1:-1:-1;;;;;17272:35:0;17281:6;-1:-1:-1;;;;;17272:35:0;;17300:6;17272:35;;;;1799:25:1;;1787:2;1772:18;;1653:177;17272:35:0;;;;;;;;17320:46;20402:125;3019:98;3077:7;3104:5;3108:1;3104;:5;:::i;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:180::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;-1:-1:-1;1366:23:1;;1215:180;-1:-1:-1;1215:180:1:o;1400:248::-;1468:6;1476;1529:2;1517:9;1508:7;1504:23;1500:32;1497:52;;;1545:1;1542;1535:12;1497:52;-1:-1:-1;;1568:23:1;;;1638:2;1623:18;;;1610:32;;-1:-1:-1;1400:248:1:o;1835:255::-;1902:6;1955:2;1943:9;1934:7;1930:23;1926:32;1923:52;;;1971:1;1968;1961:12;1923:52;2010:9;1997:23;2029:31;2054:5;2029:31;:::i;2095:456::-;2172:6;2180;2188;2241:2;2229:9;2220:7;2216:23;2212:32;2209:52;;;2257:1;2254;2247:12;2209:52;2296:9;2283:23;2315:31;2340:5;2315:31;:::i;:::-;2365:5;-1:-1:-1;2422:2:1;2407:18;;2394:32;2435:33;2394:32;2435:33;:::i;:::-;2095:456;;2487:7;;-1:-1:-1;;;2541:2:1;2526:18;;;;2513:32;;2095:456::o;3745:118::-;3831:5;3824:13;3817:21;3810:5;3807:32;3797:60;;3853:1;3850;3843:12;3868:382;3933:6;3941;3994:2;3982:9;3973:7;3969:23;3965:32;3962:52;;;4010:1;4007;4000:12;3962:52;4049:9;4036:23;4068:31;4093:5;4068:31;:::i;:::-;4118:5;-1:-1:-1;4175:2:1;4160:18;;4147:32;4188:30;4147:32;4188:30;:::i;:::-;4237:7;4227:17;;;3868:382;;;;;:::o;4255:388::-;4323:6;4331;4384:2;4372:9;4363:7;4359:23;4355:32;4352:52;;;4400:1;4397;4390:12;4352:52;4439:9;4426:23;4458:31;4483:5;4458:31;:::i;:::-;4508:5;-1:-1:-1;4565:2:1;4550:18;;4537:32;4578:33;4537:32;4578:33;:::i;4648:380::-;4727:1;4723:12;;;;4770;;;4791:61;;4845:4;4837:6;4833:17;4823:27;;4791:61;4898:2;4890:6;4887:14;4867:18;4864:38;4861:161;;4944:10;4939:3;4935:20;4932:1;4925:31;4979:4;4976:1;4969:15;5007:4;5004:1;4997:15;5033:356;5235:2;5217:21;;;5254:18;;;5247:30;5313:34;5308:2;5293:18;;5286:62;5380:2;5365:18;;5033:356::o;5797:127::-;5858:10;5853:3;5849:20;5846:1;5839:31;5889:4;5886:1;5879:15;5913:4;5910:1;5903:15;5929:168;6002:9;;;6033;;6050:15;;;6044:22;;6030:37;6020:71;;6071:18;;:::i;6102:217::-;6142:1;6168;6158:132;;6212:10;6207:3;6203:20;6200:1;6193:31;6247:4;6244:1;6237:15;6275:4;6272:1;6265:15;6158:132;-1:-1:-1;6304:9:1;;6102:217::o;7903:125::-;7968:9;;;7989:10;;;7986:36;;;8002:18;;:::i;10204:251::-;10274:6;10327:2;10315:9;10306:7;10302:23;10298:32;10295:52;;;10343:1;10340;10333:12;10295:52;10375:9;10369:16;10394:31;10419:5;10394:31;:::i;11381:306::-;11469:6;11477;11485;11538:2;11526:9;11517:7;11513:23;11509:32;11506:52;;;11554:1;11551;11544:12;11506:52;11583:9;11577:16;11567:26;;11633:2;11622:9;11618:18;11612:25;11602:35;;11677:2;11666:9;11662:18;11656:25;11646:35;;11381:306;;;;;:::o;11971:245::-;12038:6;12091:2;12079:9;12070:7;12066:23;12062:32;12059:52;;;12107:1;12104;12097:12;12059:52;12139:9;12133:16;12158:28;12180:5;12158:28;:::i;13029:401::-;13231:2;13213:21;;;13270:2;13250:18;;;13243:30;13309:34;13304:2;13289:18;;13282:62;-1:-1:-1;;;13375:2:1;13360:18;;13353:35;13420:3;13405:19;;13029:401::o;13435:399::-;13637:2;13619:21;;;13676:2;13656:18;;;13649:30;13715:34;13710:2;13695:18;;13688:62;-1:-1:-1;;;13781:2:1;13766:18;;13759:33;13824:3;13809:19;;13435:399::o;14960:135::-;14999:3;15020:17;;;15017:43;;15040:18;;:::i;:::-;-1:-1:-1;15087:1:1;15076:13;;14960:135::o;15232:127::-;15293:10;15288:3;15284:20;15281:1;15274:31;15324:4;15321:1;15314:15;15348:4;15345:1;15338:15;15364:980;15626:4;15674:3;15663:9;15659:19;15705:6;15694:9;15687:25;15731:2;15769:6;15764:2;15753:9;15749:18;15742:34;15812:3;15807:2;15796:9;15792:18;15785:31;15836:6;15871;15865:13;15902:6;15894;15887:22;15940:3;15929:9;15925:19;15918:26;;15979:2;15971:6;15967:15;15953:29;;16000:1;16010:195;16024:6;16021:1;16018:13;16010:195;;;16089:13;;-1:-1:-1;;;;;16085:39:1;16073:52;;16180:15;;;;16145:12;;;;16121:1;16039:9;16010:195;;;-1:-1:-1;;;;;;;16261:32:1;;;;16256:2;16241:18;;16234:60;-1:-1:-1;;;16325:3:1;16310:19;16303:35;16222:3;15364:980;-1:-1:-1;;;15364:980:1:o;16966:128::-;17033:9;;;17054:11;;;17051:37;;;17068:18;;:::i
Swarm Source
ipfs://bfb204eae5fbff438ae1fde733592150fd08847c831c7c6a586909d495471b7b
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.