Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
100,000,000,000 CUBE
Holders
161
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CubeToken
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-06-17 */ // File: @openzeppelin/contracts/token/ERC20/IERC20.sol /* ___ ___ ___ /___/___/___/| /___/___/___/|| /___/___/__ /|/| | | | | /|| |___|___|___|/|/| | | | | /|| |___|___|___|/|/ | | | | / |___|___|___|/ */ // https://www.cubecoinerc.xyz/ // https://twitter.com/CubeCoinERC // https://t.me/CubeCoinERC // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * 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: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions 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); } } // File: coinyeyov3rules.sol pragma solidity ^0.8.0; contract CubeToken is Ownable, ERC20 { IUniswapV2Router02 public uniswapV2Router; bool public limited; bool public taxesEnabled = true; uint256 public maxHoldingAmount; uint256 public minHoldingAmount; uint256 public buyTaxPercent = 5; // Never change to ZERO, disable taxes instead uint256 public sellTaxPercent = 5; // Never change to ZERO, disable taxes instead uint256 minAmountToSwapTaxes = (totalSupply() * 1) / 1000; bool inSwapAndLiq; bool public paused = true; address public marketingWallet; address public uniswapV2Pair; mapping(address => bool) public blacklists; mapping(address => bool) public _isExcludedFromFees; modifier lockTheSwap() { inSwapAndLiq = true; _; inSwapAndLiq = false; } constructor() ERC20("CubeToken", "CUBE") { _mint(msg.sender, 100000000000000000000000000000); IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = _uniswapV2Pair; _isExcludedFromFees[msg.sender] = true; _isExcludedFromFees[marketingWallet] = true; _isExcludedFromFees[uniswapV2Pair] = true; marketingWallet = 0xEcF1E36fF0532B5Cc6cA742e4A6D849976673F89; } 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, "ERC20: transfer must be greater than 0"); if (paused) { require(from == owner() || to == owner(), "Trading not active yet"); } require(!blacklists[to] && !blacklists[from], "Blacklisted"); if (limited && from == uniswapV2Pair) { require( balanceOf(to) + amount <= maxHoldingAmount && balanceOf(to) + amount >= minHoldingAmount, "Forbid" ); } uint256 taxAmount; if (taxesEnabled) { if (from == uniswapV2Pair) { //Buy if (!_isExcludedFromFees[to]) taxAmount = (amount * buyTaxPercent) / 100; } // Sell if (to == uniswapV2Pair) { if (!_isExcludedFromFees[from]) taxAmount = (amount * sellTaxPercent) / 100; } } uint256 contractTokenBalance = balanceOf(address(this)); bool overMinTokenBalance = contractTokenBalance >= minAmountToSwapTaxes; if (overMinTokenBalance && !inSwapAndLiq && from != uniswapV2Pair) { handleTax(); } // Fees if (taxAmount > 0) { uint256 userAmount = amount - taxAmount; super._transfer(from, address(this), taxAmount); super._transfer(from, to, userAmount); } else { super._transfer(from, to, amount); } } function handleTax() internal lockTheSwap { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve( address(this), address(uniswapV2Router), balanceOf(address(this)) ); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( balanceOf(address(this)), 0, // accept any amount of ETH path, marketingWallet, block.timestamp ); } function changeMarketingWallet( address _newMarketingWallet ) external onlyOwner { marketingWallet = _newMarketingWallet; } function changeTaxPercent( uint256 _newBuyTaxPercent, uint256 _newSellTaxPercent ) external onlyOwner { buyTaxPercent = _newBuyTaxPercent; sellTaxPercent = _newSellTaxPercent; } function excludeFromFees( address _address, bool _isExcluded ) external onlyOwner { _isExcludedFromFees[_address] = _isExcluded; } function changeMinAmountToSwapTaxes( uint256 newMinAmount ) external onlyOwner { require(newMinAmount > 0, "Cannot set to zero"); minAmountToSwapTaxes = newMinAmount; } function burn(uint256 value) external { _burn(msg.sender, value); } function enableTaxes(bool _enable) external onlyOwner { taxesEnabled = _enable; } function togglePause() external onlyOwner { paused = !paused; } function toggleLimited() external onlyOwner { limited = !limited; } function blacklist( address _address, bool _isBlacklisting ) external onlyOwner { blacklists[_address] = _isBlacklisting; } function setRule( bool _limited, uint256 _maxHoldingAmount, uint256 _minHoldingAmount ) external onlyOwner { limited = _limited; maxHoldingAmount = _maxHoldingAmount; minHoldingAmount = _minHoldingAmount; } } // Interfaces interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair( address tokenA, address tokenB ) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair( address tokenA, address tokenB ) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance( address owner, address spender ) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom( address from, address to, uint value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit( address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn( address indexed sender, uint amount0, uint amount1, address indexed to ); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap( uint amount0Out, uint amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable returns (uint[] memory amounts); function swapTokensForExactETH( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactTokensForETH( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapETHForExactTokens( uint amountOut, address[] calldata path, address to, uint deadline ) external payable returns (uint[] memory amounts); function quote( uint amountA, uint reserveA, uint reserveB ) external pure returns (uint amountB); function getAmountOut( uint amountIn, uint reserveIn, uint reserveOut ) external pure returns (uint amountOut); function getAmountIn( uint amountOut, uint reserveIn, uint reserveOut ) external pure returns (uint amountIn); function getAmountsOut( uint amountIn, address[] calldata path ) external view returns (uint[] memory amounts); function getAmountsIn( uint amountOut, address[] calldata path ) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyTaxPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newMarketingWallet","type":"address"}],"name":"changeMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMinAmount","type":"uint256"}],"name":"changeMinAmountToSwapTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newBuyTaxPercent","type":"uint256"},{"internalType":"uint256","name":"_newSellTaxPercent","type":"uint256"}],"name":"changeTaxPercent","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":"bool","name":"_enable","type":"bool"}],"name":"enableTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isExcluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxesEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleLimited","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526001600660156101000a81548160ff02191690831515021790555060056009556005600a556103e860016200003e6200053e60201b60201c565b6200004a9190620009f6565b620000569190620009be565b600b556001600c60016101000a81548160ff0219169083151502179055503480156200008157600080fd5b506040518060400160405280600981526020017f43756265546f6b656e00000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f43554245000000000000000000000000000000000000000000000000000000008152506200010e620001026200054860201b60201c565b6200055060201b60201c565b8160049080519060200190620001269291906200078d565b5080600590805190602001906200013f9291906200078d565b50505062000161336c01431e0fae6d7217caa00000006200061460201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001c357600080fd5b505afa158015620001d8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001fe919062000854565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200026157600080fd5b505afa15801562000276573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200029c919062000854565b6040518363ffffffff1660e01b8152600401620002bb929190620008e4565b602060405180830381600087803b158015620002d657600080fd5b505af1158015620002eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000311919062000854565b905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f6000600c60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555073ecf1e36ff0532b5cc6ca742e4a6d849976673f89600c60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505062000b72565b6000600354905090565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000687576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200067e9062000911565b60405180910390fd5b6200069b600083836200078360201b60201c565b8060036000828254620006af919062000961565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000763919062000933565b60405180910390a36200077f600083836200078860201b60201c565b5050565b505050565b505050565b8280546200079b9062000a95565b90600052602060002090601f016020900481019282620007bf57600085556200080b565b82601f10620007da57805160ff19168380011785556200080b565b828001600101855582156200080b579182015b828111156200080a578251825591602001919060010190620007ed565b5b5090506200081a91906200081e565b5090565b5b80821115620008395760008160009055506001016200081f565b5090565b6000815190506200084e8162000b58565b92915050565b6000602082840312156200086757600080fd5b600062000877848285016200083d565b91505092915050565b6200088b8162000a57565b82525050565b6000620008a0601f8362000950565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b620008de8162000a8b565b82525050565b6000604082019050620008fb600083018562000880565b6200090a602083018462000880565b9392505050565b600060208201905081810360008301526200092c8162000891565b9050919050565b60006020820190506200094a6000830184620008d3565b92915050565b600082825260208201905092915050565b60006200096e8262000a8b565b91506200097b8362000a8b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620009b357620009b262000acb565b5b828201905092915050565b6000620009cb8262000a8b565b9150620009d88362000a8b565b925082620009eb57620009ea62000afa565b5b828204905092915050565b600062000a038262000a8b565b915062000a108362000a8b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000a4c5762000a4b62000acb565b5b828202905092915050565b600062000a648262000a6b565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000600282049050600182168062000aae57607f821691505b6020821081141562000ac55762000ac462000b29565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b62000b638162000a57565b811462000b6f57600080fd5b50565b612ed68062000b826000396000f3fe608060405234801561001057600080fd5b506004361061021c5760003560e01c8063715018a611610125578063a9059cbb116100ad578063c4ae31681161007c578063c4ae31681461060b578063d07ea4e214610615578063dd62ed3e14610631578063e0bf7fd114610661578063f2fde38b146106915761021c565b8063a9059cbb14610585578063bb85c6d1146105b5578063bff51ef8146105d1578063c0246668146105ef5761021c565b806389f9a1d3116100f457806389f9a1d3146104df5780638da5cb5b146104fd57806395d89b411461051b57806397f92e9514610539578063a457c2d7146105555761021c565b8063715018a61461047b57806375f0a874146104855780637df405a4146104a3578063860a32ec146104c15761021c565b8063313ce567116101a857806342966c681161017757806342966c68146103d557806349bd5a5e146103f15780635c975abb1461040f5780636fb1896c1461042d57806370a082311461044b5761021c565b8063313ce5671461034f578063395093511461036d5780633d5369f61461039d578063404e5129146103b95761021c565b806316c02129116101ef57806316c021291461029757806318160ddd146102c75780631ab99e12146102e557806323b872dd1461030357806330275744146103335761021c565b806303417ed51461022157806306fdde031461022b578063095ea7b3146102495780631694505e14610279575b600080fd5b6102296106ad565b005b6102336106e1565b60405161024091906128b1565b60405180910390f35b610263600480360381019061025e91906120b3565b610773565b604051610270919061287b565b60405180910390f35b610281610796565b60405161028e9190612896565b60405180910390f35b6102b160048036038101906102ac9190611f9a565b6107bc565b6040516102be919061287b565b60405180910390f35b6102cf6107dc565b6040516102dc9190612ad3565b60405180910390f35b6102ed6107e6565b6040516102fa9190612ad3565b60405180910390f35b61031d60048036038101906103189190612028565b6107ec565b60405161032a919061287b565b60405180910390f35b61034d600480360381019061034891906120ef565b61081b565b005b610357610840565b6040516103649190612b48565b60405180910390f35b610387600480360381019061038291906120b3565b610849565b604051610394919061287b565b60405180910390f35b6103b760048036038101906103b29190612167565b610880565b005b6103d360048036038101906103ce9190612077565b6108d5565b005b6103ef60048036038101906103ea9190612167565b610938565b005b6103f9610945565b6040516104069190612860565b60405180910390f35b61041761096b565b604051610424919061287b565b60405180910390f35b61043561097e565b6040516104429190612ad3565b60405180910390f35b61046560048036038101906104609190611f9a565b610984565b6040516104729190612ad3565b60405180910390f35b6104836109cd565b005b61048d6109e1565b60405161049a9190612860565b60405180910390f35b6104ab610a07565b6040516104b89190612ad3565b60405180910390f35b6104c9610a0d565b6040516104d6919061287b565b60405180910390f35b6104e7610a20565b6040516104f49190612ad3565b60405180910390f35b610505610a26565b6040516105129190612860565b60405180910390f35b610523610a4f565b60405161053091906128b1565b60405180910390f35b610553600480360381019061054e9190612190565b610ae1565b005b61056f600480360381019061056a91906120b3565b610afb565b60405161057c919061287b565b60405180910390f35b61059f600480360381019061059a91906120b3565b610b72565b6040516105ac919061287b565b60405180910390f35b6105cf60048036038101906105ca9190611f9a565b610b95565b005b6105d9610be1565b6040516105e6919061287b565b60405180910390f35b61060960048036038101906106049190612077565b610bf4565b005b610613610c57565b005b61062f600480360381019061062a9190612118565b610c8b565b005b61064b60048036038101906106469190611fec565b610cc0565b6040516106589190612ad3565b60405180910390f35b61067b60048036038101906106769190611f9a565b610d47565b604051610688919061287b565b60405180910390f35b6106ab60048036038101906106a69190611f9a565b610d67565b005b6106b5610deb565b600660149054906101000a900460ff1615600660146101000a81548160ff021916908315150217905550565b6060600480546106f090612d8b565b80601f016020809104026020016040519081016040528092919081815260200182805461071c90612d8b565b80156107695780601f1061073e57610100808354040283529160200191610769565b820191906000526020600020905b81548152906001019060200180831161074c57829003601f168201915b5050505050905090565b60008061077e610e69565b905061078b818585610e71565b600191505092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e6020528060005260406000206000915054906101000a900460ff1681565b6000600354905090565b60085481565b6000806107f7610e69565b905061080485828561103c565b61080f8585856110c8565b60019150509392505050565b610823610deb565b80600660156101000a81548160ff02191690831515021790555050565b60006012905090565b600080610854610e69565b90506108758185856108668589610cc0565b6108709190612bb8565b610e71565b600191505092915050565b610888610deb565b600081116108cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c2906128f3565b60405180910390fd5b80600b8190555050565b6108dd610deb565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6109423382611702565b50565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c60019054906101000a900460ff1681565b600a5481565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109d5610deb565b6109df60006118d2565b565b600c60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60095481565b600660149054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610a5e90612d8b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8a90612d8b565b8015610ad75780601f10610aac57610100808354040283529160200191610ad7565b820191906000526020600020905b815481529060010190602001808311610aba57829003601f168201915b5050505050905090565b610ae9610deb565b8160098190555080600a819055505050565b600080610b06610e69565b90506000610b148286610cc0565b905083811015610b59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5090612a93565b60405180910390fd5b610b668286868403610e71565b60019250505092915050565b600080610b7d610e69565b9050610b8a8185856110c8565b600191505092915050565b610b9d610deb565b80600c60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600660159054906101000a900460ff1681565b610bfc610deb565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610c5f610deb565b600c60019054906101000a900460ff1615600c60016101000a81548160ff021916908315150217905550565b610c93610deb565b82600660146101000a81548160ff0219169083151502179055508160078190555080600881905550505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600f6020528060005260406000206000915054906101000a900460ff1681565b610d6f610deb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ddf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd690612953565b60405180910390fd5b610de8816118d2565b50565b610df3610e69565b73ffffffffffffffffffffffffffffffffffffffff16610e11610a26565b73ffffffffffffffffffffffffffffffffffffffff1614610e67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5e90612a13565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed890612a73565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4890612973565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161102f9190612ad3565b60405180910390a3505050565b60006110488484610cc0565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110c257818110156110b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ab906129b3565b60405180910390fd5b6110c18484848403610e71565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112f90612a53565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119f906128d3565b60405180910390fd5b600081116111eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e290612993565b60405180910390fd5b600c60019054906101000a900460ff16156112b357611208610a26565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806112735750611244610a26565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6112b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a990612933565b60405180910390fd5b5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156113575750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611396576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138d90612ab3565b60405180910390fd5b600660149054906101000a900460ff1680156113ff5750600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561147e576007548161141184610984565b61141b9190612bb8565b1115801561143e57506008548161143184610984565b61143b9190612bb8565b10155b61147d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611474906129f3565b60405180910390fd5b5b6000600660159054906101000a900460ff161561162057600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561155a57600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166115595760646009548361154c9190612c3f565b6115569190612c0e565b90505b5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561161f57600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661161e576064600a54836116119190612c3f565b61161b9190612c0e565b90505b5b5b600061162b30610984565b90506000600b5482101590508080156116515750600c60009054906101000a900460ff16155b80156116ab5750600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b156116b9576116b8611996565b5b60008311156116ee57600083856116d09190612c99565b90506116dd873086611cc1565b6116e8878783611cc1565b506116fa565b6116f9868686611cc1565b5b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176990612a33565b60405180910390fd5b61177e82600083611f3c565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fc90612913565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118b99190612ad3565b60405180910390a36118cd83600084611f41565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001600c60006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff8111156119f4577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611a225781602001602082028036833780820191505090505b5090503081600081518110611a60577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611b0257600080fd5b505afa158015611b16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b3a9190611fc3565b81600181518110611b74577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611be330600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611bde30610984565b610e71565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947611c2a30610984565b600084600c60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401611c71959493929190612aee565b600060405180830381600087803b158015611c8b57600080fd5b505af1158015611c9f573d6000803e3d6000fd5b50505050506000600c60006101000a81548160ff021916908315150217905550565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2890612a53565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d98906128d3565b60405180910390fd5b611dac838383611f3c565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2a906129d3565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611f239190612ad3565b60405180910390a3611f36848484611f41565b50505050565b505050565b505050565b600081359050611f5581612e5b565b92915050565b600081519050611f6a81612e5b565b92915050565b600081359050611f7f81612e72565b92915050565b600081359050611f9481612e89565b92915050565b600060208284031215611fac57600080fd5b6000611fba84828501611f46565b91505092915050565b600060208284031215611fd557600080fd5b6000611fe384828501611f5b565b91505092915050565b60008060408385031215611fff57600080fd5b600061200d85828601611f46565b925050602061201e85828601611f46565b9150509250929050565b60008060006060848603121561203d57600080fd5b600061204b86828701611f46565b935050602061205c86828701611f46565b925050604061206d86828701611f85565b9150509250925092565b6000806040838503121561208a57600080fd5b600061209885828601611f46565b92505060206120a985828601611f70565b9150509250929050565b600080604083850312156120c657600080fd5b60006120d485828601611f46565b92505060206120e585828601611f85565b9150509250929050565b60006020828403121561210157600080fd5b600061210f84828501611f70565b91505092915050565b60008060006060848603121561212d57600080fd5b600061213b86828701611f70565b935050602061214c86828701611f85565b925050604061215d86828701611f85565b9150509250925092565b60006020828403121561217957600080fd5b600061218784828501611f85565b91505092915050565b600080604083850312156121a357600080fd5b60006121b185828601611f85565b92505060206121c285828601611f85565b9150509250929050565b60006121d883836121e4565b60208301905092915050565b6121ed81612ccd565b82525050565b6121fc81612ccd565b82525050565b600061220d82612b73565b6122178185612b96565b935061222283612b63565b8060005b8381101561225357815161223a88826121cc565b975061224583612b89565b925050600181019050612226565b5085935050505092915050565b61226981612cdf565b82525050565b61227881612d22565b82525050565b61228781612d46565b82525050565b600061229882612b7e565b6122a28185612ba7565b93506122b2818560208601612d58565b6122bb81612e4a565b840191505092915050565b60006122d3602383612ba7565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612339601283612ba7565b91507f43616e6e6f742073657420746f207a65726f00000000000000000000000000006000830152602082019050919050565b6000612379602283612ba7565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006123df601683612ba7565b91507f54726164696e67206e6f742061637469766520796574000000000000000000006000830152602082019050919050565b600061241f602683612ba7565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612485602283612ba7565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006124eb602683612ba7565b91507f45524332303a207472616e73666572206d75737420626520677265617465722060008301527f7468616e203000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612551601d83612ba7565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b6000612591602683612ba7565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006125f7600683612ba7565b91507f466f7262696400000000000000000000000000000000000000000000000000006000830152602082019050919050565b6000612637602083612ba7565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000612677602183612ba7565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006126dd602583612ba7565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612743602483612ba7565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006127a9602583612ba7565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061280f600b83612ba7565b91507f426c61636b6c69737465640000000000000000000000000000000000000000006000830152602082019050919050565b61284b81612d0b565b82525050565b61285a81612d15565b82525050565b600060208201905061287560008301846121f3565b92915050565b60006020820190506128906000830184612260565b92915050565b60006020820190506128ab600083018461226f565b92915050565b600060208201905081810360008301526128cb818461228d565b905092915050565b600060208201905081810360008301526128ec816122c6565b9050919050565b6000602082019050818103600083015261290c8161232c565b9050919050565b6000602082019050818103600083015261292c8161236c565b9050919050565b6000602082019050818103600083015261294c816123d2565b9050919050565b6000602082019050818103600083015261296c81612412565b9050919050565b6000602082019050818103600083015261298c81612478565b9050919050565b600060208201905081810360008301526129ac816124de565b9050919050565b600060208201905081810360008301526129cc81612544565b9050919050565b600060208201905081810360008301526129ec81612584565b9050919050565b60006020820190508181036000830152612a0c816125ea565b9050919050565b60006020820190508181036000830152612a2c8161262a565b9050919050565b60006020820190508181036000830152612a4c8161266a565b9050919050565b60006020820190508181036000830152612a6c816126d0565b9050919050565b60006020820190508181036000830152612a8c81612736565b9050919050565b60006020820190508181036000830152612aac8161279c565b9050919050565b60006020820190508181036000830152612acc81612802565b9050919050565b6000602082019050612ae86000830184612842565b92915050565b600060a082019050612b036000830188612842565b612b10602083018761227e565b8181036040830152612b228186612202565b9050612b3160608301856121f3565b612b3e6080830184612842565b9695505050505050565b6000602082019050612b5d6000830184612851565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000612bc382612d0b565b9150612bce83612d0b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c0357612c02612dbd565b5b828201905092915050565b6000612c1982612d0b565b9150612c2483612d0b565b925082612c3457612c33612dec565b5b828204905092915050565b6000612c4a82612d0b565b9150612c5583612d0b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612c8e57612c8d612dbd565b5b828202905092915050565b6000612ca482612d0b565b9150612caf83612d0b565b925082821015612cc257612cc1612dbd565b5b828203905092915050565b6000612cd882612ceb565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000612d2d82612d34565b9050919050565b6000612d3f82612ceb565b9050919050565b6000612d5182612d0b565b9050919050565b60005b83811015612d76578082015181840152602081019050612d5b565b83811115612d85576000848401525b50505050565b60006002820490506001821680612da357607f821691505b60208210811415612db757612db6612e1b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b612e6481612ccd565b8114612e6f57600080fd5b50565b612e7b81612cdf565b8114612e8657600080fd5b50565b612e9281612d0b565b8114612e9d57600080fd5b5056fea26469706673582212208d23ad704ea14c922edf8f1e12bbc7752388427edc789fcaeb03700af26b9b9464736f6c63430008000033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061021c5760003560e01c8063715018a611610125578063a9059cbb116100ad578063c4ae31681161007c578063c4ae31681461060b578063d07ea4e214610615578063dd62ed3e14610631578063e0bf7fd114610661578063f2fde38b146106915761021c565b8063a9059cbb14610585578063bb85c6d1146105b5578063bff51ef8146105d1578063c0246668146105ef5761021c565b806389f9a1d3116100f457806389f9a1d3146104df5780638da5cb5b146104fd57806395d89b411461051b57806397f92e9514610539578063a457c2d7146105555761021c565b8063715018a61461047b57806375f0a874146104855780637df405a4146104a3578063860a32ec146104c15761021c565b8063313ce567116101a857806342966c681161017757806342966c68146103d557806349bd5a5e146103f15780635c975abb1461040f5780636fb1896c1461042d57806370a082311461044b5761021c565b8063313ce5671461034f578063395093511461036d5780633d5369f61461039d578063404e5129146103b95761021c565b806316c02129116101ef57806316c021291461029757806318160ddd146102c75780631ab99e12146102e557806323b872dd1461030357806330275744146103335761021c565b806303417ed51461022157806306fdde031461022b578063095ea7b3146102495780631694505e14610279575b600080fd5b6102296106ad565b005b6102336106e1565b60405161024091906128b1565b60405180910390f35b610263600480360381019061025e91906120b3565b610773565b604051610270919061287b565b60405180910390f35b610281610796565b60405161028e9190612896565b60405180910390f35b6102b160048036038101906102ac9190611f9a565b6107bc565b6040516102be919061287b565b60405180910390f35b6102cf6107dc565b6040516102dc9190612ad3565b60405180910390f35b6102ed6107e6565b6040516102fa9190612ad3565b60405180910390f35b61031d60048036038101906103189190612028565b6107ec565b60405161032a919061287b565b60405180910390f35b61034d600480360381019061034891906120ef565b61081b565b005b610357610840565b6040516103649190612b48565b60405180910390f35b610387600480360381019061038291906120b3565b610849565b604051610394919061287b565b60405180910390f35b6103b760048036038101906103b29190612167565b610880565b005b6103d360048036038101906103ce9190612077565b6108d5565b005b6103ef60048036038101906103ea9190612167565b610938565b005b6103f9610945565b6040516104069190612860565b60405180910390f35b61041761096b565b604051610424919061287b565b60405180910390f35b61043561097e565b6040516104429190612ad3565b60405180910390f35b61046560048036038101906104609190611f9a565b610984565b6040516104729190612ad3565b60405180910390f35b6104836109cd565b005b61048d6109e1565b60405161049a9190612860565b60405180910390f35b6104ab610a07565b6040516104b89190612ad3565b60405180910390f35b6104c9610a0d565b6040516104d6919061287b565b60405180910390f35b6104e7610a20565b6040516104f49190612ad3565b60405180910390f35b610505610a26565b6040516105129190612860565b60405180910390f35b610523610a4f565b60405161053091906128b1565b60405180910390f35b610553600480360381019061054e9190612190565b610ae1565b005b61056f600480360381019061056a91906120b3565b610afb565b60405161057c919061287b565b60405180910390f35b61059f600480360381019061059a91906120b3565b610b72565b6040516105ac919061287b565b60405180910390f35b6105cf60048036038101906105ca9190611f9a565b610b95565b005b6105d9610be1565b6040516105e6919061287b565b60405180910390f35b61060960048036038101906106049190612077565b610bf4565b005b610613610c57565b005b61062f600480360381019061062a9190612118565b610c8b565b005b61064b60048036038101906106469190611fec565b610cc0565b6040516106589190612ad3565b60405180910390f35b61067b60048036038101906106769190611f9a565b610d47565b604051610688919061287b565b60405180910390f35b6106ab60048036038101906106a69190611f9a565b610d67565b005b6106b5610deb565b600660149054906101000a900460ff1615600660146101000a81548160ff021916908315150217905550565b6060600480546106f090612d8b565b80601f016020809104026020016040519081016040528092919081815260200182805461071c90612d8b565b80156107695780601f1061073e57610100808354040283529160200191610769565b820191906000526020600020905b81548152906001019060200180831161074c57829003601f168201915b5050505050905090565b60008061077e610e69565b905061078b818585610e71565b600191505092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e6020528060005260406000206000915054906101000a900460ff1681565b6000600354905090565b60085481565b6000806107f7610e69565b905061080485828561103c565b61080f8585856110c8565b60019150509392505050565b610823610deb565b80600660156101000a81548160ff02191690831515021790555050565b60006012905090565b600080610854610e69565b90506108758185856108668589610cc0565b6108709190612bb8565b610e71565b600191505092915050565b610888610deb565b600081116108cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c2906128f3565b60405180910390fd5b80600b8190555050565b6108dd610deb565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6109423382611702565b50565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c60019054906101000a900460ff1681565b600a5481565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109d5610deb565b6109df60006118d2565b565b600c60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60095481565b600660149054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610a5e90612d8b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8a90612d8b565b8015610ad75780601f10610aac57610100808354040283529160200191610ad7565b820191906000526020600020905b815481529060010190602001808311610aba57829003601f168201915b5050505050905090565b610ae9610deb565b8160098190555080600a819055505050565b600080610b06610e69565b90506000610b148286610cc0565b905083811015610b59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5090612a93565b60405180910390fd5b610b668286868403610e71565b60019250505092915050565b600080610b7d610e69565b9050610b8a8185856110c8565b600191505092915050565b610b9d610deb565b80600c60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600660159054906101000a900460ff1681565b610bfc610deb565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610c5f610deb565b600c60019054906101000a900460ff1615600c60016101000a81548160ff021916908315150217905550565b610c93610deb565b82600660146101000a81548160ff0219169083151502179055508160078190555080600881905550505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600f6020528060005260406000206000915054906101000a900460ff1681565b610d6f610deb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ddf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd690612953565b60405180910390fd5b610de8816118d2565b50565b610df3610e69565b73ffffffffffffffffffffffffffffffffffffffff16610e11610a26565b73ffffffffffffffffffffffffffffffffffffffff1614610e67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5e90612a13565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed890612a73565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4890612973565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161102f9190612ad3565b60405180910390a3505050565b60006110488484610cc0565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110c257818110156110b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ab906129b3565b60405180910390fd5b6110c18484848403610e71565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112f90612a53565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119f906128d3565b60405180910390fd5b600081116111eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e290612993565b60405180910390fd5b600c60019054906101000a900460ff16156112b357611208610a26565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806112735750611244610a26565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6112b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a990612933565b60405180910390fd5b5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156113575750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611396576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138d90612ab3565b60405180910390fd5b600660149054906101000a900460ff1680156113ff5750600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561147e576007548161141184610984565b61141b9190612bb8565b1115801561143e57506008548161143184610984565b61143b9190612bb8565b10155b61147d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611474906129f3565b60405180910390fd5b5b6000600660159054906101000a900460ff161561162057600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561155a57600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166115595760646009548361154c9190612c3f565b6115569190612c0e565b90505b5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561161f57600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661161e576064600a54836116119190612c3f565b61161b9190612c0e565b90505b5b5b600061162b30610984565b90506000600b5482101590508080156116515750600c60009054906101000a900460ff16155b80156116ab5750600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b156116b9576116b8611996565b5b60008311156116ee57600083856116d09190612c99565b90506116dd873086611cc1565b6116e8878783611cc1565b506116fa565b6116f9868686611cc1565b5b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176990612a33565b60405180910390fd5b61177e82600083611f3c565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fc90612913565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118b99190612ad3565b60405180910390a36118cd83600084611f41565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001600c60006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff8111156119f4577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611a225781602001602082028036833780820191505090505b5090503081600081518110611a60577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611b0257600080fd5b505afa158015611b16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b3a9190611fc3565b81600181518110611b74577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611be330600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611bde30610984565b610e71565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947611c2a30610984565b600084600c60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401611c71959493929190612aee565b600060405180830381600087803b158015611c8b57600080fd5b505af1158015611c9f573d6000803e3d6000fd5b50505050506000600c60006101000a81548160ff021916908315150217905550565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2890612a53565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d98906128d3565b60405180910390fd5b611dac838383611f3c565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2a906129d3565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611f239190612ad3565b60405180910390a3611f36848484611f41565b50505050565b505050565b505050565b600081359050611f5581612e5b565b92915050565b600081519050611f6a81612e5b565b92915050565b600081359050611f7f81612e72565b92915050565b600081359050611f9481612e89565b92915050565b600060208284031215611fac57600080fd5b6000611fba84828501611f46565b91505092915050565b600060208284031215611fd557600080fd5b6000611fe384828501611f5b565b91505092915050565b60008060408385031215611fff57600080fd5b600061200d85828601611f46565b925050602061201e85828601611f46565b9150509250929050565b60008060006060848603121561203d57600080fd5b600061204b86828701611f46565b935050602061205c86828701611f46565b925050604061206d86828701611f85565b9150509250925092565b6000806040838503121561208a57600080fd5b600061209885828601611f46565b92505060206120a985828601611f70565b9150509250929050565b600080604083850312156120c657600080fd5b60006120d485828601611f46565b92505060206120e585828601611f85565b9150509250929050565b60006020828403121561210157600080fd5b600061210f84828501611f70565b91505092915050565b60008060006060848603121561212d57600080fd5b600061213b86828701611f70565b935050602061214c86828701611f85565b925050604061215d86828701611f85565b9150509250925092565b60006020828403121561217957600080fd5b600061218784828501611f85565b91505092915050565b600080604083850312156121a357600080fd5b60006121b185828601611f85565b92505060206121c285828601611f85565b9150509250929050565b60006121d883836121e4565b60208301905092915050565b6121ed81612ccd565b82525050565b6121fc81612ccd565b82525050565b600061220d82612b73565b6122178185612b96565b935061222283612b63565b8060005b8381101561225357815161223a88826121cc565b975061224583612b89565b925050600181019050612226565b5085935050505092915050565b61226981612cdf565b82525050565b61227881612d22565b82525050565b61228781612d46565b82525050565b600061229882612b7e565b6122a28185612ba7565b93506122b2818560208601612d58565b6122bb81612e4a565b840191505092915050565b60006122d3602383612ba7565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612339601283612ba7565b91507f43616e6e6f742073657420746f207a65726f00000000000000000000000000006000830152602082019050919050565b6000612379602283612ba7565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006123df601683612ba7565b91507f54726164696e67206e6f742061637469766520796574000000000000000000006000830152602082019050919050565b600061241f602683612ba7565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612485602283612ba7565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006124eb602683612ba7565b91507f45524332303a207472616e73666572206d75737420626520677265617465722060008301527f7468616e203000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612551601d83612ba7565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b6000612591602683612ba7565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006125f7600683612ba7565b91507f466f7262696400000000000000000000000000000000000000000000000000006000830152602082019050919050565b6000612637602083612ba7565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000612677602183612ba7565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006126dd602583612ba7565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612743602483612ba7565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006127a9602583612ba7565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061280f600b83612ba7565b91507f426c61636b6c69737465640000000000000000000000000000000000000000006000830152602082019050919050565b61284b81612d0b565b82525050565b61285a81612d15565b82525050565b600060208201905061287560008301846121f3565b92915050565b60006020820190506128906000830184612260565b92915050565b60006020820190506128ab600083018461226f565b92915050565b600060208201905081810360008301526128cb818461228d565b905092915050565b600060208201905081810360008301526128ec816122c6565b9050919050565b6000602082019050818103600083015261290c8161232c565b9050919050565b6000602082019050818103600083015261292c8161236c565b9050919050565b6000602082019050818103600083015261294c816123d2565b9050919050565b6000602082019050818103600083015261296c81612412565b9050919050565b6000602082019050818103600083015261298c81612478565b9050919050565b600060208201905081810360008301526129ac816124de565b9050919050565b600060208201905081810360008301526129cc81612544565b9050919050565b600060208201905081810360008301526129ec81612584565b9050919050565b60006020820190508181036000830152612a0c816125ea565b9050919050565b60006020820190508181036000830152612a2c8161262a565b9050919050565b60006020820190508181036000830152612a4c8161266a565b9050919050565b60006020820190508181036000830152612a6c816126d0565b9050919050565b60006020820190508181036000830152612a8c81612736565b9050919050565b60006020820190508181036000830152612aac8161279c565b9050919050565b60006020820190508181036000830152612acc81612802565b9050919050565b6000602082019050612ae86000830184612842565b92915050565b600060a082019050612b036000830188612842565b612b10602083018761227e565b8181036040830152612b228186612202565b9050612b3160608301856121f3565b612b3e6080830184612842565b9695505050505050565b6000602082019050612b5d6000830184612851565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000612bc382612d0b565b9150612bce83612d0b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c0357612c02612dbd565b5b828201905092915050565b6000612c1982612d0b565b9150612c2483612d0b565b925082612c3457612c33612dec565b5b828204905092915050565b6000612c4a82612d0b565b9150612c5583612d0b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612c8e57612c8d612dbd565b5b828202905092915050565b6000612ca482612d0b565b9150612caf83612d0b565b925082821015612cc257612cc1612dbd565b5b828203905092915050565b6000612cd882612ceb565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000612d2d82612d34565b9050919050565b6000612d3f82612ceb565b9050919050565b6000612d5182612d0b565b9050919050565b60005b83811015612d76578082015181840152602081019050612d5b565b83811115612d85576000848401525b50505050565b60006002820490506001821680612da357607f821691505b60208210811415612db757612db6612e1b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b612e6481612ccd565b8114612e6f57600080fd5b50565b612e7b81612cdf565b8114612e8657600080fd5b50565b612e9281612d0b565b8114612e9d57600080fd5b5056fea26469706673582212208d23ad704ea14c922edf8f1e12bbc7752388427edc789fcaeb03700af26b9b9464736f6c63430008000033
Deployed Bytecode Sourcemap
22064:5630:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27162:81;;;:::i;:::-;;6941:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9292:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22108:41;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22666:42;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8061:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22258:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10073:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26972:95;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7903:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10777:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26668:205;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27252:160;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26882:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22631:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22559:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22382:33;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8232:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21176:103;;;:::i;:::-;;22594:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22296:32;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22156:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22220:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20528:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7160:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26260:223;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11518:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8565:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26100:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22182:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26492:167;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27076:77;;;:::i;:::-;;27421:270;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8821:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22715:51;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21434:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27162:81;20414:13;:11;:13::i;:::-;27228:7:::1;;;;;;;;;;;27227:8;27217:7;;:18;;;;;;;;;;;;;;;;;;27162:81::o:0;6941:100::-;6995:13;7028:5;7021:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6941:100;:::o;9292:201::-;9375:4;9392:13;9408:12;:10;:12::i;:::-;9392:28;;9431:32;9440:5;9447:7;9456:6;9431:8;:32::i;:::-;9481:4;9474:11;;;9292:201;;;;:::o;22108:41::-;;;;;;;;;;;;;:::o;22666:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;8061:108::-;8122:7;8149:12;;8142:19;;8061:108;:::o;22258:31::-;;;;:::o;10073:295::-;10204:4;10221:15;10239:12;:10;:12::i;:::-;10221:30;;10262:38;10278:4;10284:7;10293:6;10262:15;:38::i;:::-;10311:27;10321:4;10327:2;10331:6;10311:9;:27::i;:::-;10356:4;10349:11;;;10073:295;;;;;:::o;26972:95::-;20414:13;:11;:13::i;:::-;27052:7:::1;27037:12;;:22;;;;;;;;;;;;;;;;;;26972:95:::0;:::o;7903:93::-;7961:5;7986:2;7979:9;;7903:93;:::o;10777:238::-;10865:4;10882:13;10898:12;:10;:12::i;:::-;10882:28;;10921:64;10930:5;10937:7;10974:10;10946:25;10956:5;10963:7;10946:9;:25::i;:::-;:38;;;;:::i;:::-;10921:8;:64::i;:::-;11003:4;10996:11;;;10777:238;;;;:::o;26668:205::-;20414:13;:11;:13::i;:::-;26795:1:::1;26780:12;:16;26772:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;26853:12;26830:20;:35;;;;26668:205:::0;:::o;27252:160::-;20414:13;:11;:13::i;:::-;27389:15:::1;27366:10;:20;27377:8;27366:20;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;27252:160:::0;;:::o;26882:81::-;26931:24;26937:10;26949:5;26931;:24::i;:::-;26882:81;:::o;22631:28::-;;;;;;;;;;;;;:::o;22559:25::-;;;;;;;;;;;;;:::o;22382:33::-;;;;:::o;8232:127::-;8306:7;8333:9;:18;8343:7;8333:18;;;;;;;;;;;;;;;;8326:25;;8232:127;;;:::o;21176:103::-;20414:13;:11;:13::i;:::-;21241:30:::1;21268:1;21241:18;:30::i;:::-;21176:103::o:0;22594:30::-;;;;;;;;;;;;;:::o;22296:32::-;;;;:::o;22156:19::-;;;;;;;;;;;;;:::o;22220:31::-;;;;:::o;20528:87::-;20574:7;20601:6;;;;;;;;;;;20594:13;;20528:87;:::o;7160:104::-;7216:13;7249:7;7242:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7160:104;:::o;26260:223::-;20414:13;:11;:13::i;:::-;26412:17:::1;26396:13;:33;;;;26457:18;26440:14;:35;;;;26260:223:::0;;:::o;11518:436::-;11611:4;11628:13;11644:12;:10;:12::i;:::-;11628:28;;11667:24;11694:25;11704:5;11711:7;11694:9;:25::i;:::-;11667:52;;11758:15;11738:16;:35;;11730:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11851:60;11860:5;11867:7;11895:15;11876:16;:34;11851:8;:60::i;:::-;11942:4;11935:11;;;;11518:436;;;;:::o;8565:193::-;8644:4;8661:13;8677:12;:10;:12::i;:::-;8661:28;;8700;8710:5;8717:2;8721:6;8700:9;:28::i;:::-;8746:4;8739:11;;;8565:193;;;;:::o;26100:151::-;20414:13;:11;:13::i;:::-;26224:19:::1;26206:15;;:37;;;;;;;;;;;;;;;;;;26100:151:::0;:::o;22182:31::-;;;;;;;;;;;;;:::o;26492:167::-;20414:13;:11;:13::i;:::-;26640:11:::1;26608:19;:29;26628:8;26608:29;;;;;;;;;;;;;;;;:43;;;;;;;;;;;;;;;;;;26492:167:::0;;:::o;27076:77::-;20414:13;:11;:13::i;:::-;27139:6:::1;;;;;;;;;;;27138:7;27129:6;;:16;;;;;;;;;;;;;;;;;;27076:77::o:0;27421:270::-;20414:13;:11;:13::i;:::-;27581:8:::1;27571:7;;:18;;;;;;;;;;;;;;;;;;27619:17;27600:16;:36;;;;27666:17;27647:16;:36;;;;27421:270:::0;;;:::o;8821:151::-;8910:7;8937:11;:18;8949:5;8937:18;;;;;;;;;;;;;;;:27;8956:7;8937:27;;;;;;;;;;;;;;;;8930:34;;8821:151;;;;:::o;22715:51::-;;;;;;;;;;;;;;;;;;;;;;:::o;21434:201::-;20414:13;:11;:13::i;:::-;21543:1:::1;21523:22;;:8;:22;;;;21515:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21599:28;21618:8;21599:18;:28::i;:::-;21434:201:::0;:::o;20693:132::-;20768:12;:10;:12::i;:::-;20757:23;;:7;:5;:7::i;:::-;:23;;;20749:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20693:132::o;4583:98::-;4636:7;4663:10;4656:17;;4583:98;:::o;15545:380::-;15698:1;15681:19;;:5;:19;;;;15673:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15779:1;15760:21;;:7;:21;;;;15752:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15863:6;15833:11;:18;15845:5;15833:18;;;;;;;;;;;;;;;:27;15852:7;15833:27;;;;;;;;;;;;;;;:36;;;;15901:7;15885:32;;15894:5;15885:32;;;15910:6;15885:32;;;;;;:::i;:::-;;;;;;;;15545:380;;;:::o;16216:453::-;16351:24;16378:25;16388:5;16395:7;16378:9;:25::i;:::-;16351:52;;16438:17;16418:16;:37;16414:248;;16500:6;16480:16;:26;;16472:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16584:51;16593:5;16600:7;16628:6;16609:16;:25;16584:8;:51::i;:::-;16414:248;16216:453;;;;:::o;23610:1816::-;23758:1;23742:18;;:4;:18;;;;23734:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23835:1;23821:16;;:2;:16;;;;23813:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;23905:1;23896:6;:10;23888:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;23967:6;;;;;;;;;;;23963:106;;;24006:7;:5;:7::i;:::-;23998:15;;:4;:15;;;:32;;;;24023:7;:5;:7::i;:::-;24017:13;;:2;:13;;;23998:32;23990:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;23963:106;24091:10;:14;24102:2;24091:14;;;;;;;;;;;;;;;;;;;;;;;;;24090:15;:36;;;;;24110:10;:16;24121:4;24110:16;;;;;;;;;;;;;;;;;;;;;;;;;24109:17;24090:36;24082:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;24160:7;;;;;;;;;;;:32;;;;;24179:13;;;;;;;;;;;24171:21;;:4;:21;;;24160:32;24156:242;;;24261:16;;24251:6;24235:13;24245:2;24235:9;:13::i;:::-;:22;;;;:::i;:::-;:42;;:109;;;;;24328:16;;24318:6;24302:13;24312:2;24302:9;:13::i;:::-;:22;;;;:::i;:::-;:42;;24235:109;24209:177;;;;;;;;;;;;:::i;:::-;;;;;;;;;24156:242;24411:17;24443:12;;;;;;;;;;;24439:416;;;24484:13;;;;;;;;;;;24476:21;;:4;:21;;;24472:181;;;24549:19;:23;24569:2;24549:23;;;;;;;;;;;;;;;;;;;;;;;;;24544:93;;24634:3;24617:13;;24608:6;:22;;;;:::i;:::-;24607:30;;;;:::i;:::-;24595:42;;24544:93;24472:181;24698:13;;;;;;;;;;;24692:19;;:2;:19;;;24688:156;;;24737:19;:25;24757:4;24737:25;;;;;;;;;;;;;;;;;;;;;;;;;24732:96;;24825:3;24807:14;;24798:6;:23;;;;:::i;:::-;24797:31;;;;:::i;:::-;24785:43;;24732:96;24688:156;24439:416;24868:28;24899:24;24917:4;24899:9;:24::i;:::-;24868:55;;24934:24;24985:20;;24961;:44;;24934:71;;25023:19;:36;;;;;25047:12;;;;;;;;;;;25046:13;25023:36;:61;;;;;25071:13;;;;;;;;;;;25063:21;;:4;:21;;;;25023:61;25019:105;;;25101:11;:9;:11::i;:::-;25019:105;25170:1;25158:9;:13;25154:265;;;25188:18;25218:9;25209:6;:18;;;;:::i;:::-;25188:39;;25242:47;25258:4;25272;25279:9;25242:15;:47::i;:::-;25304:37;25320:4;25326:2;25330:10;25304:15;:37::i;:::-;25154:265;;;;25374:33;25390:4;25396:2;25400:6;25374:15;:33::i;:::-;25154:265;23610:1816;;;;;;:::o;14432:675::-;14535:1;14516:21;;:7;:21;;;;14508:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14588:49;14609:7;14626:1;14630:6;14588:20;:49::i;:::-;14650:22;14675:9;:18;14685:7;14675:18;;;;;;;;;;;;;;;;14650:43;;14730:6;14712:14;:24;;14704:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14849:6;14832:14;:23;14811:9;:18;14821:7;14811:18;;;;;;;;;;;;;;;:44;;;;14966:6;14950:12;;:22;;;;;;;;;;;15027:1;15001:37;;15010:7;15001:37;;;15031:6;15001:37;;;;;;:::i;:::-;;;;;;;;15051:48;15071:7;15088:1;15092:6;15051:19;:48::i;:::-;14432:675;;;:::o;21795:191::-;21869:16;21888:6;;;;;;;;;;;21869:25;;21914:8;21905:6;;:17;;;;;;;;;;;;;;;;;;21969:8;21938:40;;21959:8;21938:40;;;;;;;;;;;;21795:191;;:::o;25435:656::-;22825:4;22810:12;;:19;;;;;;;;;;;;;;;;;;25548:21:::1;25586:1;25572:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25548:40;;25617:4;25599;25604:1;25599:7;;;;;;;;;;;;;;;;;;;;;:23;;;;;;;;;::::0;::::1;25643:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;25633:4;25638:1;25633:7;;;;;;;;;;;;;;;;;;;;;:32;;;;;;;;;::::0;::::1;25679:125;25710:4;25738:15;;;;;;;;;;;25769:24;25787:4;25769:9;:24::i;:::-;25679:8;:125::i;:::-;25844:15;;;;;;;;;;;:66;;;25925:24;25943:4;25925:9;:24::i;:::-;25964:1;26008:4;26027:15;;;;;;;;;;;26057;25844:239;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;22840:1;22867:5:::0;22852:12;;:20;;;;;;;;;;;;;;;;;;25435:656::o;12424:840::-;12571:1;12555:18;;:4;:18;;;;12547:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12648:1;12634:16;;:2;:16;;;;12626:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12703:38;12724:4;12730:2;12734:6;12703:20;:38::i;:::-;12754:19;12776:9;:15;12786:4;12776:15;;;;;;;;;;;;;;;;12754:37;;12825:6;12810:11;:21;;12802:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12942:6;12928:11;:20;12910:9;:15;12920:4;12910:15;;;;;;;;;;;;;;;:38;;;;13145:6;13128:9;:13;13138:2;13128:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;13195:2;13180:26;;13189:4;13180:26;;;13199:6;13180:26;;;;;;:::i;:::-;;;;;;;;13219:37;13239:4;13245:2;13249:6;13219:19;:37::i;:::-;12424:840;;;;:::o;17269:125::-;;;;:::o;17998:124::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:143::-;;240:6;234:13;225:22;;256:33;283:5;256:33;:::i;:::-;215:80;;;;:::o;301:133::-;;382:6;369:20;360:29;;398:30;422:5;398:30;:::i;:::-;350:84;;;;:::o;440:139::-;;524:6;511:20;502:29;;540:33;567:5;540:33;:::i;:::-;492:87;;;;:::o;585:262::-;;693:2;681:9;672:7;668:23;664:32;661:2;;;709:1;706;699:12;661:2;752:1;777:53;822:7;813:6;802:9;798:22;777:53;:::i;:::-;767:63;;723:117;651:196;;;;:::o;853:284::-;;972:2;960:9;951:7;947:23;943:32;940:2;;;988:1;985;978:12;940:2;1031:1;1056:64;1112:7;1103:6;1092:9;1088:22;1056:64;:::i;:::-;1046:74;;1002:128;930:207;;;;:::o;1143:407::-;;;1268:2;1256:9;1247:7;1243:23;1239:32;1236:2;;;1284:1;1281;1274:12;1236:2;1327:1;1352:53;1397:7;1388:6;1377:9;1373:22;1352:53;:::i;:::-;1342:63;;1298:117;1454:2;1480:53;1525:7;1516:6;1505:9;1501:22;1480:53;:::i;:::-;1470:63;;1425:118;1226:324;;;;;:::o;1556:552::-;;;;1698:2;1686:9;1677:7;1673:23;1669:32;1666:2;;;1714:1;1711;1704:12;1666:2;1757:1;1782:53;1827:7;1818:6;1807:9;1803:22;1782:53;:::i;:::-;1772:63;;1728:117;1884:2;1910:53;1955:7;1946:6;1935:9;1931:22;1910:53;:::i;:::-;1900:63;;1855:118;2012:2;2038:53;2083:7;2074:6;2063:9;2059:22;2038:53;:::i;:::-;2028:63;;1983:118;1656:452;;;;;:::o;2114:401::-;;;2236:2;2224:9;2215:7;2211:23;2207:32;2204:2;;;2252:1;2249;2242:12;2204:2;2295:1;2320:53;2365:7;2356:6;2345:9;2341:22;2320:53;:::i;:::-;2310:63;;2266:117;2422:2;2448:50;2490:7;2481:6;2470:9;2466:22;2448:50;:::i;:::-;2438:60;;2393:115;2194:321;;;;;:::o;2521:407::-;;;2646:2;2634:9;2625:7;2621:23;2617:32;2614:2;;;2662:1;2659;2652:12;2614:2;2705:1;2730:53;2775:7;2766:6;2755:9;2751:22;2730:53;:::i;:::-;2720:63;;2676:117;2832:2;2858:53;2903:7;2894:6;2883:9;2879:22;2858:53;:::i;:::-;2848:63;;2803:118;2604:324;;;;;:::o;2934:256::-;;3039:2;3027:9;3018:7;3014:23;3010:32;3007:2;;;3055:1;3052;3045:12;3007:2;3098:1;3123:50;3165:7;3156:6;3145:9;3141:22;3123:50;:::i;:::-;3113:60;;3069:114;2997:193;;;;:::o;3196:546::-;;;;3335:2;3323:9;3314:7;3310:23;3306:32;3303:2;;;3351:1;3348;3341:12;3303:2;3394:1;3419:50;3461:7;3452:6;3441:9;3437:22;3419:50;:::i;:::-;3409:60;;3365:114;3518:2;3544:53;3589:7;3580:6;3569:9;3565:22;3544:53;:::i;:::-;3534:63;;3489:118;3646:2;3672:53;3717:7;3708:6;3697:9;3693:22;3672:53;:::i;:::-;3662:63;;3617:118;3293:449;;;;;:::o;3748:262::-;;3856:2;3844:9;3835:7;3831:23;3827:32;3824:2;;;3872:1;3869;3862:12;3824:2;3915:1;3940:53;3985:7;3976:6;3965:9;3961:22;3940:53;:::i;:::-;3930:63;;3886:117;3814:196;;;;:::o;4016:407::-;;;4141:2;4129:9;4120:7;4116:23;4112:32;4109:2;;;4157:1;4154;4147:12;4109:2;4200:1;4225:53;4270:7;4261:6;4250:9;4246:22;4225:53;:::i;:::-;4215:63;;4171:117;4327:2;4353:53;4398:7;4389:6;4378:9;4374:22;4353:53;:::i;:::-;4343:63;;4298:118;4099:324;;;;;:::o;4429:179::-;;4519:46;4561:3;4553:6;4519:46;:::i;:::-;4597:4;4592:3;4588:14;4574:28;;4509:99;;;;:::o;4614:108::-;4691:24;4709:5;4691:24;:::i;:::-;4686:3;4679:37;4669:53;;:::o;4728:118::-;4815:24;4833:5;4815:24;:::i;:::-;4810:3;4803:37;4793:53;;:::o;4882:732::-;;5030:54;5078:5;5030:54;:::i;:::-;5100:86;5179:6;5174:3;5100:86;:::i;:::-;5093:93;;5210:56;5260:5;5210:56;:::i;:::-;5289:7;5320:1;5305:284;5330:6;5327:1;5324:13;5305:284;;;5406:6;5400:13;5433:63;5492:3;5477:13;5433:63;:::i;:::-;5426:70;;5519:60;5572:6;5519:60;:::i;:::-;5509:70;;5365:224;5352:1;5349;5345:9;5340:14;;5305:284;;;5309:14;5605:3;5598:10;;5006:608;;;;;;;:::o;5620:109::-;5701:21;5716:5;5701:21;:::i;:::-;5696:3;5689:34;5679:50;;:::o;5735:185::-;5849:64;5907:5;5849:64;:::i;:::-;5844:3;5837:77;5827:93;;:::o;5926:147::-;6021:45;6060:5;6021:45;:::i;:::-;6016:3;6009:58;5999:74;;:::o;6079:364::-;;6195:39;6228:5;6195:39;:::i;:::-;6250:71;6314:6;6309:3;6250:71;:::i;:::-;6243:78;;6330:52;6375:6;6370:3;6363:4;6356:5;6352:16;6330:52;:::i;:::-;6407:29;6429:6;6407:29;:::i;:::-;6402:3;6398:39;6391:46;;6171:272;;;;;:::o;6449:367::-;;6612:67;6676:2;6671:3;6612:67;:::i;:::-;6605:74;;6709:34;6705:1;6700:3;6696:11;6689:55;6775:5;6770:2;6765:3;6761:12;6754:27;6807:2;6802:3;6798:12;6791:19;;6595:221;;;:::o;6822:316::-;;6985:67;7049:2;7044:3;6985:67;:::i;:::-;6978:74;;7082:20;7078:1;7073:3;7069:11;7062:41;7129:2;7124:3;7120:12;7113:19;;6968:170;;;:::o;7144:366::-;;7307:67;7371:2;7366:3;7307:67;:::i;:::-;7300:74;;7404:34;7400:1;7395:3;7391:11;7384:55;7470:4;7465:2;7460:3;7456:12;7449:26;7501:2;7496:3;7492:12;7485:19;;7290:220;;;:::o;7516:320::-;;7679:67;7743:2;7738:3;7679:67;:::i;:::-;7672:74;;7776:24;7772:1;7767:3;7763:11;7756:45;7827:2;7822:3;7818:12;7811:19;;7662:174;;;:::o;7842:370::-;;8005:67;8069:2;8064:3;8005:67;:::i;:::-;7998:74;;8102:34;8098:1;8093:3;8089:11;8082:55;8168:8;8163:2;8158:3;8154:12;8147:30;8203:2;8198:3;8194:12;8187:19;;7988:224;;;:::o;8218:366::-;;8381:67;8445:2;8440:3;8381:67;:::i;:::-;8374:74;;8478:34;8474:1;8469:3;8465:11;8458:55;8544:4;8539:2;8534:3;8530:12;8523:26;8575:2;8570:3;8566:12;8559:19;;8364:220;;;:::o;8590:370::-;;8753:67;8817:2;8812:3;8753:67;:::i;:::-;8746:74;;8850:34;8846:1;8841:3;8837:11;8830:55;8916:8;8911:2;8906:3;8902:12;8895:30;8951:2;8946:3;8942:12;8935:19;;8736:224;;;:::o;8966:327::-;;9129:67;9193:2;9188:3;9129:67;:::i;:::-;9122:74;;9226:31;9222:1;9217:3;9213:11;9206:52;9284:2;9279:3;9275:12;9268:19;;9112:181;;;:::o;9299:370::-;;9462:67;9526:2;9521:3;9462:67;:::i;:::-;9455:74;;9559:34;9555:1;9550:3;9546:11;9539:55;9625:8;9620:2;9615:3;9611:12;9604:30;9660:2;9655:3;9651:12;9644:19;;9445:224;;;:::o;9675:303::-;;9838:66;9902:1;9897:3;9838:66;:::i;:::-;9831:73;;9934:8;9930:1;9925:3;9921:11;9914:29;9969:2;9964:3;9960:12;9953:19;;9821:157;;;:::o;9984:330::-;;10147:67;10211:2;10206:3;10147:67;:::i;:::-;10140:74;;10244:34;10240:1;10235:3;10231:11;10224:55;10305:2;10300:3;10296:12;10289:19;;10130:184;;;:::o;10320:365::-;;10483:67;10547:2;10542:3;10483:67;:::i;:::-;10476:74;;10580:34;10576:1;10571:3;10567:11;10560:55;10646:3;10641:2;10636:3;10632:12;10625:25;10676:2;10671:3;10667:12;10660:19;;10466:219;;;:::o;10691:369::-;;10854:67;10918:2;10913:3;10854:67;:::i;:::-;10847:74;;10951:34;10947:1;10942:3;10938:11;10931:55;11017:7;11012:2;11007:3;11003:12;10996:29;11051:2;11046:3;11042:12;11035:19;;10837:223;;;:::o;11066:368::-;;11229:67;11293:2;11288:3;11229:67;:::i;:::-;11222:74;;11326:34;11322:1;11317:3;11313:11;11306:55;11392:6;11387:2;11382:3;11378:12;11371:28;11425:2;11420:3;11416:12;11409:19;;11212:222;;;:::o;11440:369::-;;11603:67;11667:2;11662:3;11603:67;:::i;:::-;11596:74;;11700:34;11696:1;11691:3;11687:11;11680:55;11766:7;11761:2;11756:3;11752:12;11745:29;11800:2;11795:3;11791:12;11784:19;;11586:223;;;:::o;11815:309::-;;11978:67;12042:2;12037:3;11978:67;:::i;:::-;11971:74;;12075:13;12071:1;12066:3;12062:11;12055:34;12115:2;12110:3;12106:12;12099:19;;11961:163;;;:::o;12130:118::-;12217:24;12235:5;12217:24;:::i;:::-;12212:3;12205:37;12195:53;;:::o;12254:112::-;12337:22;12353:5;12337:22;:::i;:::-;12332:3;12325:35;12315:51;;:::o;12372:222::-;;12503:2;12492:9;12488:18;12480:26;;12516:71;12584:1;12573:9;12569:17;12560:6;12516:71;:::i;:::-;12470:124;;;;:::o;12600:210::-;;12725:2;12714:9;12710:18;12702:26;;12738:65;12800:1;12789:9;12785:17;12776:6;12738:65;:::i;:::-;12692:118;;;;:::o;12816:276::-;;12974:2;12963:9;12959:18;12951:26;;12987:98;13082:1;13071:9;13067:17;13058:6;12987:98;:::i;:::-;12941:151;;;;:::o;13098:313::-;;13249:2;13238:9;13234:18;13226:26;;13298:9;13292:4;13288:20;13284:1;13273:9;13269:17;13262:47;13326:78;13399:4;13390:6;13326:78;:::i;:::-;13318:86;;13216:195;;;;:::o;13417:419::-;;13621:2;13610:9;13606:18;13598:26;;13670:9;13664:4;13660:20;13656:1;13645:9;13641:17;13634:47;13698:131;13824:4;13698:131;:::i;:::-;13690:139;;13588:248;;;:::o;13842:419::-;;14046:2;14035:9;14031:18;14023:26;;14095:9;14089:4;14085:20;14081:1;14070:9;14066:17;14059:47;14123:131;14249:4;14123:131;:::i;:::-;14115:139;;14013:248;;;:::o;14267:419::-;;14471:2;14460:9;14456:18;14448:26;;14520:9;14514:4;14510:20;14506:1;14495:9;14491:17;14484:47;14548:131;14674:4;14548:131;:::i;:::-;14540:139;;14438:248;;;:::o;14692:419::-;;14896:2;14885:9;14881:18;14873:26;;14945:9;14939:4;14935:20;14931:1;14920:9;14916:17;14909:47;14973:131;15099:4;14973:131;:::i;:::-;14965:139;;14863:248;;;:::o;15117:419::-;;15321:2;15310:9;15306:18;15298:26;;15370:9;15364:4;15360:20;15356:1;15345:9;15341:17;15334:47;15398:131;15524:4;15398:131;:::i;:::-;15390:139;;15288:248;;;:::o;15542:419::-;;15746:2;15735:9;15731:18;15723:26;;15795:9;15789:4;15785:20;15781:1;15770:9;15766:17;15759:47;15823:131;15949:4;15823:131;:::i;:::-;15815:139;;15713:248;;;:::o;15967:419::-;;16171:2;16160:9;16156:18;16148:26;;16220:9;16214:4;16210:20;16206:1;16195:9;16191:17;16184:47;16248:131;16374:4;16248:131;:::i;:::-;16240:139;;16138:248;;;:::o;16392:419::-;;16596:2;16585:9;16581:18;16573:26;;16645:9;16639:4;16635:20;16631:1;16620:9;16616:17;16609:47;16673:131;16799:4;16673:131;:::i;:::-;16665:139;;16563:248;;;:::o;16817:419::-;;17021:2;17010:9;17006:18;16998:26;;17070:9;17064:4;17060:20;17056:1;17045:9;17041:17;17034:47;17098:131;17224:4;17098:131;:::i;:::-;17090:139;;16988:248;;;:::o;17242:419::-;;17446:2;17435:9;17431:18;17423:26;;17495:9;17489:4;17485:20;17481:1;17470:9;17466:17;17459:47;17523:131;17649:4;17523:131;:::i;:::-;17515:139;;17413:248;;;:::o;17667:419::-;;17871:2;17860:9;17856:18;17848:26;;17920:9;17914:4;17910:20;17906:1;17895:9;17891:17;17884:47;17948:131;18074:4;17948:131;:::i;:::-;17940:139;;17838:248;;;:::o;18092:419::-;;18296:2;18285:9;18281:18;18273:26;;18345:9;18339:4;18335:20;18331:1;18320:9;18316:17;18309:47;18373:131;18499:4;18373:131;:::i;:::-;18365:139;;18263:248;;;:::o;18517:419::-;;18721:2;18710:9;18706:18;18698:26;;18770:9;18764:4;18760:20;18756:1;18745:9;18741:17;18734:47;18798:131;18924:4;18798:131;:::i;:::-;18790:139;;18688:248;;;:::o;18942:419::-;;19146:2;19135:9;19131:18;19123:26;;19195:9;19189:4;19185:20;19181:1;19170:9;19166:17;19159:47;19223:131;19349:4;19223:131;:::i;:::-;19215:139;;19113:248;;;:::o;19367:419::-;;19571:2;19560:9;19556:18;19548:26;;19620:9;19614:4;19610:20;19606:1;19595:9;19591:17;19584:47;19648:131;19774:4;19648:131;:::i;:::-;19640:139;;19538:248;;;:::o;19792:419::-;;19996:2;19985:9;19981:18;19973:26;;20045:9;20039:4;20035:20;20031:1;20020:9;20016:17;20009:47;20073:131;20199:4;20073:131;:::i;:::-;20065:139;;19963:248;;;:::o;20217:222::-;;20348:2;20337:9;20333:18;20325:26;;20361:71;20429:1;20418:9;20414:17;20405:6;20361:71;:::i;:::-;20315:124;;;;:::o;20445:831::-;;20746:3;20735:9;20731:19;20723:27;;20760:71;20828:1;20817:9;20813:17;20804:6;20760:71;:::i;:::-;20841:80;20917:2;20906:9;20902:18;20893:6;20841:80;:::i;:::-;20968:9;20962:4;20958:20;20953:2;20942:9;20938:18;20931:48;20996:108;21099:4;21090:6;20996:108;:::i;:::-;20988:116;;21114:72;21182:2;21171:9;21167:18;21158:6;21114:72;:::i;:::-;21196:73;21264:3;21253:9;21249:19;21240:6;21196:73;:::i;:::-;20713:563;;;;;;;;:::o;21282:214::-;;21409:2;21398:9;21394:18;21386:26;;21422:67;21486:1;21475:9;21471:17;21462:6;21422:67;:::i;:::-;21376:120;;;;:::o;21502:132::-;;21592:3;21584:11;;21622:4;21617:3;21613:14;21605:22;;21574:60;;;:::o;21640:114::-;;21741:5;21735:12;21725:22;;21714:40;;;:::o;21760:99::-;;21846:5;21840:12;21830:22;;21819:40;;;:::o;21865:113::-;;21967:4;21962:3;21958:14;21950:22;;21940:38;;;:::o;21984:184::-;;22117:6;22112:3;22105:19;22157:4;22152:3;22148:14;22133:29;;22095:73;;;;:::o;22174:169::-;;22292:6;22287:3;22280:19;22332:4;22327:3;22323:14;22308:29;;22270:73;;;;:::o;22349:305::-;;22408:20;22426:1;22408:20;:::i;:::-;22403:25;;22442:20;22460:1;22442:20;:::i;:::-;22437:25;;22596:1;22528:66;22524:74;22521:1;22518:81;22515:2;;;22602:18;;:::i;:::-;22515:2;22646:1;22643;22639:9;22632:16;;22393:261;;;;:::o;22660:185::-;;22717:20;22735:1;22717:20;:::i;:::-;22712:25;;22751:20;22769:1;22751:20;:::i;:::-;22746:25;;22790:1;22780:2;;22795:18;;:::i;:::-;22780:2;22837:1;22834;22830:9;22825:14;;22702:143;;;;:::o;22851:348::-;;22914:20;22932:1;22914:20;:::i;:::-;22909:25;;22948:20;22966:1;22948:20;:::i;:::-;22943:25;;23136:1;23068:66;23064:74;23061:1;23058:81;23053:1;23046:9;23039:17;23035:105;23032:2;;;23143:18;;:::i;:::-;23032:2;23191:1;23188;23184:9;23173:20;;22899:300;;;;:::o;23205:191::-;;23265:20;23283:1;23265:20;:::i;:::-;23260:25;;23299:20;23317:1;23299:20;:::i;:::-;23294:25;;23338:1;23335;23332:8;23329:2;;;23343:18;;:::i;:::-;23329:2;23388:1;23385;23381:9;23373:17;;23250:146;;;;:::o;23402:96::-;;23468:24;23486:5;23468:24;:::i;:::-;23457:35;;23447:51;;;:::o;23504:90::-;;23581:5;23574:13;23567:21;23556:32;;23546:48;;;:::o;23600:126::-;;23677:42;23670:5;23666:54;23655:65;;23645:81;;;:::o;23732:77::-;;23798:5;23787:16;;23777:32;;;:::o;23815:86::-;;23890:4;23883:5;23879:16;23868:27;;23858:43;;;:::o;23907:180::-;;24017:64;24075:5;24017:64;:::i;:::-;24004:77;;23994:93;;;:::o;24093:140::-;;24203:24;24221:5;24203:24;:::i;:::-;24190:37;;24180:53;;;:::o;24239:121::-;;24330:24;24348:5;24330:24;:::i;:::-;24317:37;;24307:53;;;:::o;24366:307::-;24434:1;24444:113;24458:6;24455:1;24452:13;24444:113;;;24543:1;24538:3;24534:11;24528:18;24524:1;24519:3;24515:11;24508:39;24480:2;24477:1;24473:10;24468:15;;24444:113;;;24575:6;24572:1;24569:13;24566:2;;;24655:1;24646:6;24641:3;24637:16;24630:27;24566:2;24415:258;;;;:::o;24679:320::-;;24760:1;24754:4;24750:12;24740:22;;24807:1;24801:4;24797:12;24828:18;24818:2;;24884:4;24876:6;24872:17;24862:27;;24818:2;24946;24938:6;24935:14;24915:18;24912:38;24909:2;;;24965:18;;:::i;:::-;24909:2;24730:269;;;;:::o;25005:180::-;25053:77;25050:1;25043:88;25150:4;25147:1;25140:15;25174:4;25171:1;25164:15;25191:180;25239:77;25236:1;25229:88;25336:4;25333:1;25326:15;25360:4;25357:1;25350:15;25377:180;25425:77;25422:1;25415:88;25522:4;25519:1;25512:15;25546:4;25543:1;25536:15;25563:102;;25655:2;25651:7;25646:2;25639:5;25635:14;25631:28;25621:38;;25611:54;;;:::o;25671:122::-;25744:24;25762:5;25744:24;:::i;:::-;25737:5;25734:35;25724:2;;25783:1;25780;25773:12;25724:2;25714:79;:::o;25799:116::-;25869:21;25884:5;25869:21;:::i;:::-;25862:5;25859:32;25849:2;;25905:1;25902;25895:12;25849:2;25839:76;:::o;25921:122::-;25994:24;26012:5;25994:24;:::i;:::-;25987:5;25984:35;25974:2;;26033:1;26030;26023:12;25974:2;25964:79;:::o
Swarm Source
ipfs://8d23ad704ea14c922edf8f1e12bbc7752388427edc789fcaeb03700af26b9b94
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.