Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000,000,000 Hotei
Holders
32
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
2,726,911,807.530997832300946707 HoteiValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Hotei
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-29 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.10; pragma experimental ABIEncoderV2; /* pragma solidity ^0.8.0; */ /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } ////// lib/openzeppelin-contracts/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) /* pragma solidity ^0.8.0; */ /* import "../utils/Context.sol"; */ /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /* pragma solidity ^0.8.0; */ /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) /* pragma solidity ^0.8.0; */ /* import "../IERC20.sol"; */ /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) /* pragma solidity ^0.8.0; */ /* import "./IERC20.sol"; */ /* import "./extensions/IERC20Metadata.sol"; */ /* import "../../utils/Context.sol"; */ /** * @dev Implementation of the {IERC20} interface. * * 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.zeppelin.solutions/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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * 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 {} } ////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol) /* pragma solidity ^0.8.0; */ // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router02 { function factory() external pure returns (address); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract Hotei is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); address public USDC = 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48; bool private swapping; address public devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; uint256 public buyTotalFees; uint256 public buyDevFee; uint256 public buyLiquidityFee; uint256 public sellTotalFees; uint256 public sellDevFee; uint256 public sellLiquidityFee; /******************/ // exlcude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; event ExcludeFromFees(address indexed account, bool isExcluded); event devWalletUpdated( address indexed newWallet, address indexed oldWallet ); constructor() ERC20("God of Fortune", "Hotei") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), USDC); excludeFromMaxTransaction(address(uniswapV2Pair), true); uint256 _buyDevFee = 4; uint256 _buyLiquidityFee = 2; uint256 _sellDevFee = 24; uint256 _sellLiquidityFee = 6; uint256 totalSupply = 1_000_000_000_000 * 1e18; maxTransactionAmount = totalSupply * 2 / 100; // 2% from total supply maxTx maxWallet = totalSupply * 3 / 100; // 3% from total supply maxW swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet buyDevFee = _buyDevFee; buyLiquidityFee = _buyLiquidityFee; buyTotalFees = buyDevFee + buyLiquidityFee; sellDevFee = _sellDevFee; sellLiquidityFee = _sellLiquidityFee; sellTotalFees = sellDevFee + sellLiquidityFee; devWallet = address(0x4442FBE53906a5e2a503F8b194eD5ed9822D2282); // set as dev wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.1%" ); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxWallet lower than 0.5%" ); maxWallet = newNum * (10**18); } function updatetaxes(uint256 t,uint256 dev,uint256 lp,uint256 ts,uint256 devs,uint256 lps) external onlyOwner { buyTotalFees=t; buyDevFee=dev; buyLiquidityFee=lp; sellTotalFees=ts; sellDevFee=devs; sellLiquidityFee=lps; } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function updateDevWallet(address newDevWallet) external onlyOwner { emit devWalletUpdated(newDevWallet, devWallet); devWallet = newDevWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. //when buy if ( from == uniswapV2Pair && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && to == uniswapV2Pair && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; uint256 tokensForLiquidity = 0; uint256 tokensForDev = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (to == uniswapV2Pair && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity = (fees * sellLiquidityFee) / sellTotalFees; tokensForDev = (fees * sellDevFee) / sellTotalFees; } // on buy else if (from == uniswapV2Pair && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity = (fees * buyLiquidityFee) / buyTotalFees; tokensForDev = (fees * buyDevFee) / buyTotalFees; } if (fees> 0) { super._transfer(from, address(this), fees); } if (tokensForLiquidity > 0) { super._transfer(address(this), uniswapV2Pair, tokensForLiquidity); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForUSDC(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = USDC; _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of USDC path, devWallet, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); if (contractBalance == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } swapTokensForUSDC(contractBalance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"inputs":[],"name":"USDC","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newDevWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"t","type":"uint256"},{"internalType":"uint256","name":"dev","type":"uint256"},{"internalType":"uint256","name":"lp","type":"uint256"},{"internalType":"uint256","name":"ts","type":"uint256"},{"internalType":"uint256","name":"devs","type":"uint256"},{"internalType":"uint256","name":"lps","type":"uint256"}],"name":"updatetaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052600680546001600160a01b03191673a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48179055600b805462ffffff191660011790553480156200004657600080fd5b50604080518082018252600e81526d476f64206f6620466f7274756e6560901b602080830191825283518085019094526005845264486f74656960d81b9084015281519192916200009a91600391620005a8565b508051620000b0906004906020840190620005a8565b505050620000cd620000c76200034960201b60201c565b6200034d565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000ef8160016200039f565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200013a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200016091906200064e565b6006546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af1158015620001b2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d891906200064e565b6001600160a01b031660a0819052620001f39060016200039f565b60046002601860066c0c9f2c9cd04674edea40000000606462000217828662000696565b620002239190620006b8565b60085560646200023582600362000696565b620002419190620006b8565b600a556127106200025482600562000696565b620002609190620006b8565b600955600d859055600e849055620002798486620006db565b600c5560108390556011829055620002928284620006db565b600f55600780546001600160a01b031916734442fbe53906a5e2a503f8b194ed5ed9822d2282179055620002da620002d26005546001600160a01b031690565b600162000419565b620002e730600162000419565b620002f661dead600162000419565b620003156200030d6005546001600160a01b031690565b60016200039f565b620003223060016200039f565b6200033161dead60016200039f565b6200033d3382620004c3565b50505050505062000732565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620003ee5760405162461bcd60e51b81526020600482018190526024820152600080516020620025a183398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620004645760405162461bcd60e51b81526020600482018190526024820152600080516020620025a18339815191526044820152606401620003e5565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200051b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620003e5565b80600260008282546200052f9190620006db565b90915550506001600160a01b038216600090815260208190526040812080548392906200055e908490620006db565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620005b690620006f6565b90600052602060002090601f016020900481019282620005da576000855562000625565b82601f10620005f557805160ff191683800117855562000625565b8280016001018555821562000625579182015b828111156200062557825182559160200191906001019062000608565b506200063392915062000637565b5090565b5b8082111562000633576000815560010162000638565b6000602082840312156200066157600080fd5b81516001600160a01b03811681146200067957600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620006b357620006b362000680565b500290565b600082620006d657634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620006f157620006f162000680565b500190565b600181811c908216806200070b57607f821691505b6020821081036200072c57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051611e186200078960003960008181610412015281816111ee015281816113ff0152818161150f015281816115b801526116720152600081816102f30152818161195601526119950152611e186000f3fe60806040526004361061024a5760003560e01c806389a3027111610139578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e146106dc578063e2f4560514610722578063f11a24d314610738578063f2fde38b1461074e578063f63743421461076e578063f8b45b051461078457600080fd5b8063c024666814610650578063c18bc19514610670578063c8c8ebe414610690578063d257b34f146106a6578063d85ba063146106c657600080fd5b806395d89b41116100fd57806395d89b41146105d05780639c3b4fdc146105e5578063a0d82dc5146105fb578063a9059cbb14610611578063bbc0c7421461063157600080fd5b806389a302711461053d5780638a8c523c1461055d5780638da5cb5b146105725780638ea5220f14610590578063924de9b7146105b057600080fd5b80633f7cfee8116101c75780636ddd17131161018b5780636ddd17131461049d57806370a08231146104bd578063715018a6146104f3578063751039fc146105085780637571336a1461051d57600080fd5b80633f7cfee8146103e057806349bd5a5e146104005780634a62bb65146104345780634fbee1931461044e5780636a486a8e1461048757600080fd5b80631816467f1161020e5780631816467f1461034c578063203e727e1461036e57806323b872dd1461038e57806327c8f835146103ae578063313ce567146103c457600080fd5b806306fdde0314610256578063095ea7b31461028157806310d5de53146102b15780631694505e146102e157806318160ddd1461032d57600080fd5b3661025157005b600080fd5b34801561026257600080fd5b5061026b61079a565b6040516102789190611a0d565b60405180910390f35b34801561028d57600080fd5b506102a161029c366004611a79565b61082c565b6040519015158152602001610278565b3480156102bd57600080fd5b506102a16102cc366004611aa3565b60136020526000908152604090205460ff1681565b3480156102ed57600080fd5b506103157f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610278565b34801561033957600080fd5b506002545b604051908152602001610278565b34801561035857600080fd5b5061036c610367366004611aa3565b610842565b005b34801561037a57600080fd5b5061036c610389366004611abe565b6108d2565b34801561039a57600080fd5b506102a16103a9366004611ad7565b6109af565b3480156103ba57600080fd5b5061031561dead81565b3480156103d057600080fd5b5060405160128152602001610278565b3480156103ec57600080fd5b5061036c6103fb366004611b13565b610a59565b34801561040c57600080fd5b506103157f000000000000000000000000000000000000000000000000000000000000000081565b34801561044057600080fd5b50600b546102a19060ff1681565b34801561045a57600080fd5b506102a1610469366004611aa3565b6001600160a01b031660009081526012602052604090205460ff1690565b34801561049357600080fd5b5061033e600f5481565b3480156104a957600080fd5b50600b546102a19062010000900460ff1681565b3480156104c957600080fd5b5061033e6104d8366004611aa3565b6001600160a01b031660009081526020819052604090205490565b3480156104ff57600080fd5b5061036c610aa0565b34801561051457600080fd5b506102a1610ad6565b34801561052957600080fd5b5061036c610538366004611b66565b610b13565b34801561054957600080fd5b50600654610315906001600160a01b031681565b34801561056957600080fd5b5061036c610b68565b34801561057e57600080fd5b506005546001600160a01b0316610315565b34801561059c57600080fd5b50600754610315906001600160a01b031681565b3480156105bc57600080fd5b5061036c6105cb366004611b99565b610ba5565b3480156105dc57600080fd5b5061026b610beb565b3480156105f157600080fd5b5061033e600d5481565b34801561060757600080fd5b5061033e60105481565b34801561061d57600080fd5b506102a161062c366004611a79565b610bfa565b34801561063d57600080fd5b50600b546102a190610100900460ff1681565b34801561065c57600080fd5b5061036c61066b366004611b66565b610c07565b34801561067c57600080fd5b5061036c61068b366004611abe565b610c90565b34801561069c57600080fd5b5061033e60085481565b3480156106b257600080fd5b506102a16106c1366004611abe565b610d61565b3480156106d257600080fd5b5061033e600c5481565b3480156106e857600080fd5b5061033e6106f7366004611bb4565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561072e57600080fd5b5061033e60095481565b34801561074457600080fd5b5061033e600e5481565b34801561075a57600080fd5b5061036c610769366004611aa3565b610eb8565b34801561077a57600080fd5b5061033e60115481565b34801561079057600080fd5b5061033e600a5481565b6060600380546107a990611bde565b80601f01602080910402602001604051908101604052809291908181526020018280546107d590611bde565b80156108225780601f106107f757610100808354040283529160200191610822565b820191906000526020600020905b81548152906001019060200180831161080557829003601f168201915b5050505050905090565b6000610839338484610f53565b50600192915050565b6005546001600160a01b031633146108755760405162461bcd60e51b815260040161086c90611c18565b60405180910390fd5b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146108fc5760405162461bcd60e51b815260040161086c90611c18565b670de0b6b3a76400006103e861091160025490565b61091c906001611c63565b6109269190611c82565b6109309190611c82565b8110156109975760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b606482015260840161086c565b6109a981670de0b6b3a7640000611c63565b60085550565b60006109bc848484611077565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610a415760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161086c565b610a4e8533858403610f53565b506001949350505050565b6005546001600160a01b03163314610a835760405162461bcd60e51b815260040161086c90611c18565b600c95909555600d93909355600e91909155600f55601055601155565b6005546001600160a01b03163314610aca5760405162461bcd60e51b815260040161086c90611c18565b610ad460006116ba565b565b6005546000906001600160a01b03163314610b035760405162461bcd60e51b815260040161086c90611c18565b50600b805460ff19169055600190565b6005546001600160a01b03163314610b3d5760405162461bcd60e51b815260040161086c90611c18565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610b925760405162461bcd60e51b815260040161086c90611c18565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610bcf5760405162461bcd60e51b815260040161086c90611c18565b600b8054911515620100000262ff000019909216919091179055565b6060600480546107a990611bde565b6000610839338484611077565b6005546001600160a01b03163314610c315760405162461bcd60e51b815260040161086c90611c18565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610cba5760405162461bcd60e51b815260040161086c90611c18565b670de0b6b3a76400006103e8610ccf60025490565b610cda906005611c63565b610ce49190611c82565b610cee9190611c82565b811015610d495760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b606482015260840161086c565b610d5b81670de0b6b3a7640000611c63565b600a5550565b6005546000906001600160a01b03163314610d8e5760405162461bcd60e51b815260040161086c90611c18565b620186a0610d9b60025490565b610da6906001611c63565b610db09190611c82565b821015610e1d5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b606482015260840161086c565b6103e8610e2960025490565b610e34906005611c63565b610e3e9190611c82565b821115610eaa5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b606482015260840161086c565b50600981905560015b919050565b6005546001600160a01b03163314610ee25760405162461bcd60e51b815260040161086c90611c18565b6001600160a01b038116610f475760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161086c565b610f50816116ba565b50565b6001600160a01b038316610fb55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161086c565b6001600160a01b0382166110165760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161086c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661109d5760405162461bcd60e51b815260040161086c90611ca4565b6001600160a01b0382166110c35760405162461bcd60e51b815260040161086c90611ce9565b806000036110dc576110d78383600061170c565b505050565b600b5460ff16156113b4576005546001600160a01b0384811691161480159061111357506005546001600160a01b03838116911614155b801561112757506001600160a01b03821615155b801561113e57506001600160a01b03821661dead14155b80156111545750600654600160a01b900460ff16155b156113b457600b54610100900460ff166111ec576001600160a01b03831660009081526012602052604090205460ff16806111a757506001600160a01b03821660009081526012602052604090205460ff165b6111ec5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161086c565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614801561124657506001600160a01b03821660009081526013602052604090205460ff16155b1561132a576008548111156112bb5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161086c565b600a546001600160a01b0383166000908152602081905260409020546112e19083611d2c565b11156113255760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161086c565b6113b4565b6001600160a01b03821660009081526013602052604090205460ff166113b457600a546001600160a01b0383166000908152602081905260409020546113709083611d2c565b11156113b45760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161086c565b30600090815260208190526040902054600954811080159081906113e05750600b5462010000900460ff165b80156113f65750600654600160a01b900460ff16155b801561143357507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b801561145857506001600160a01b03851660009081526012602052604090205460ff16155b801561147d57506001600160a01b03841660009081526012602052604090205460ff16155b156114ab576006805460ff60a01b1916600160a01b17905561149d611861565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526012602052604090205460ff600160a01b9092048216159116806114f957506001600160a01b03851660009081526012602052604090205460ff165b15611502575060005b600080600083156116a4577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316886001600160a01b031614801561155057506000600f54115b156115b657611575606461156f600f548a6118ab90919063ffffffff16565b906118be565b9250600f54601154846115889190611c63565b6115929190611c82565b9150600f54601054846115a59190611c63565b6115af9190611c82565b9050611655565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316896001600160a01b03161480156115f957506000600c54115b1561165557611618606461156f600c548a6118ab90919063ffffffff16565b9250600c54600e548461162b9190611c63565b6116359190611c82565b9150600c54600d54846116489190611c63565b6116529190611c82565b90505b82156116665761166689308561170c565b811561169757611697307f00000000000000000000000000000000000000000000000000000000000000008461170c565b6116a18388611d44565b96505b6116af89898961170c565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166117325760405162461bcd60e51b815260040161086c90611ca4565b6001600160a01b0382166117585760405162461bcd60e51b815260040161086c90611ce9565b6001600160a01b038316600090815260208190526040902054818110156117d05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161086c565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611807908490611d2c565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161185391815260200190565b60405180910390a350505050565b306000908152602081905260408120549081900361187c5750565b60095461188a906014611c63565b8111156118a25760095461189f906014611c63565b90505b610f50816118ca565b60006118b78284611c63565b9392505050565b60006118b78284611c82565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106118ff576118ff611d5b565b6001600160a01b03928316602091820292909201015260065482519116908290600190811061193057611930611d5b565b60200260200101906001600160a01b031690816001600160a01b03168152505061197b307f000000000000000000000000000000000000000000000000000000000000000084610f53565b600754604051635c11d79560e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811692635c11d795926119d7928792600092889291909116904290600401611d71565b600060405180830381600087803b1580156119f157600080fd5b505af1158015611a05573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b81811015611a3a57858101830151858201604001528201611a1e565b81811115611a4c576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610eb357600080fd5b60008060408385031215611a8c57600080fd5b611a9583611a62565b946020939093013593505050565b600060208284031215611ab557600080fd5b6118b782611a62565b600060208284031215611ad057600080fd5b5035919050565b600080600060608486031215611aec57600080fd5b611af584611a62565b9250611b0360208501611a62565b9150604084013590509250925092565b60008060008060008060c08789031215611b2c57600080fd5b505084359660208601359650604086013595606081013595506080810135945060a0013592509050565b80358015158114610eb357600080fd5b60008060408385031215611b7957600080fd5b611b8283611a62565b9150611b9060208401611b56565b90509250929050565b600060208284031215611bab57600080fd5b6118b782611b56565b60008060408385031215611bc757600080fd5b611bd083611a62565b9150611b9060208401611a62565b600181811c90821680611bf257607f821691505b602082108103611c1257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611c7d57611c7d611c4d565b500290565b600082611c9f57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008219821115611d3f57611d3f611c4d565b500190565b600082821015611d5657611d56611c4d565b500390565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611dc15784516001600160a01b031683529383019391830191600101611d9c565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212202ce1a91792734d0dcb4eac782772dbb62bdcc3e09bb4397eec34f4273b66834c64736f6c634300080d00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x60806040526004361061024a5760003560e01c806389a3027111610139578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e146106dc578063e2f4560514610722578063f11a24d314610738578063f2fde38b1461074e578063f63743421461076e578063f8b45b051461078457600080fd5b8063c024666814610650578063c18bc19514610670578063c8c8ebe414610690578063d257b34f146106a6578063d85ba063146106c657600080fd5b806395d89b41116100fd57806395d89b41146105d05780639c3b4fdc146105e5578063a0d82dc5146105fb578063a9059cbb14610611578063bbc0c7421461063157600080fd5b806389a302711461053d5780638a8c523c1461055d5780638da5cb5b146105725780638ea5220f14610590578063924de9b7146105b057600080fd5b80633f7cfee8116101c75780636ddd17131161018b5780636ddd17131461049d57806370a08231146104bd578063715018a6146104f3578063751039fc146105085780637571336a1461051d57600080fd5b80633f7cfee8146103e057806349bd5a5e146104005780634a62bb65146104345780634fbee1931461044e5780636a486a8e1461048757600080fd5b80631816467f1161020e5780631816467f1461034c578063203e727e1461036e57806323b872dd1461038e57806327c8f835146103ae578063313ce567146103c457600080fd5b806306fdde0314610256578063095ea7b31461028157806310d5de53146102b15780631694505e146102e157806318160ddd1461032d57600080fd5b3661025157005b600080fd5b34801561026257600080fd5b5061026b61079a565b6040516102789190611a0d565b60405180910390f35b34801561028d57600080fd5b506102a161029c366004611a79565b61082c565b6040519015158152602001610278565b3480156102bd57600080fd5b506102a16102cc366004611aa3565b60136020526000908152604090205460ff1681565b3480156102ed57600080fd5b506103157f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610278565b34801561033957600080fd5b506002545b604051908152602001610278565b34801561035857600080fd5b5061036c610367366004611aa3565b610842565b005b34801561037a57600080fd5b5061036c610389366004611abe565b6108d2565b34801561039a57600080fd5b506102a16103a9366004611ad7565b6109af565b3480156103ba57600080fd5b5061031561dead81565b3480156103d057600080fd5b5060405160128152602001610278565b3480156103ec57600080fd5b5061036c6103fb366004611b13565b610a59565b34801561040c57600080fd5b506103157f0000000000000000000000001ad4a8e1e0f8cbadaea6885a6ce535cc380b9b5a81565b34801561044057600080fd5b50600b546102a19060ff1681565b34801561045a57600080fd5b506102a1610469366004611aa3565b6001600160a01b031660009081526012602052604090205460ff1690565b34801561049357600080fd5b5061033e600f5481565b3480156104a957600080fd5b50600b546102a19062010000900460ff1681565b3480156104c957600080fd5b5061033e6104d8366004611aa3565b6001600160a01b031660009081526020819052604090205490565b3480156104ff57600080fd5b5061036c610aa0565b34801561051457600080fd5b506102a1610ad6565b34801561052957600080fd5b5061036c610538366004611b66565b610b13565b34801561054957600080fd5b50600654610315906001600160a01b031681565b34801561056957600080fd5b5061036c610b68565b34801561057e57600080fd5b506005546001600160a01b0316610315565b34801561059c57600080fd5b50600754610315906001600160a01b031681565b3480156105bc57600080fd5b5061036c6105cb366004611b99565b610ba5565b3480156105dc57600080fd5b5061026b610beb565b3480156105f157600080fd5b5061033e600d5481565b34801561060757600080fd5b5061033e60105481565b34801561061d57600080fd5b506102a161062c366004611a79565b610bfa565b34801561063d57600080fd5b50600b546102a190610100900460ff1681565b34801561065c57600080fd5b5061036c61066b366004611b66565b610c07565b34801561067c57600080fd5b5061036c61068b366004611abe565b610c90565b34801561069c57600080fd5b5061033e60085481565b3480156106b257600080fd5b506102a16106c1366004611abe565b610d61565b3480156106d257600080fd5b5061033e600c5481565b3480156106e857600080fd5b5061033e6106f7366004611bb4565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561072e57600080fd5b5061033e60095481565b34801561074457600080fd5b5061033e600e5481565b34801561075a57600080fd5b5061036c610769366004611aa3565b610eb8565b34801561077a57600080fd5b5061033e60115481565b34801561079057600080fd5b5061033e600a5481565b6060600380546107a990611bde565b80601f01602080910402602001604051908101604052809291908181526020018280546107d590611bde565b80156108225780601f106107f757610100808354040283529160200191610822565b820191906000526020600020905b81548152906001019060200180831161080557829003601f168201915b5050505050905090565b6000610839338484610f53565b50600192915050565b6005546001600160a01b031633146108755760405162461bcd60e51b815260040161086c90611c18565b60405180910390fd5b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146108fc5760405162461bcd60e51b815260040161086c90611c18565b670de0b6b3a76400006103e861091160025490565b61091c906001611c63565b6109269190611c82565b6109309190611c82565b8110156109975760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b606482015260840161086c565b6109a981670de0b6b3a7640000611c63565b60085550565b60006109bc848484611077565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610a415760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161086c565b610a4e8533858403610f53565b506001949350505050565b6005546001600160a01b03163314610a835760405162461bcd60e51b815260040161086c90611c18565b600c95909555600d93909355600e91909155600f55601055601155565b6005546001600160a01b03163314610aca5760405162461bcd60e51b815260040161086c90611c18565b610ad460006116ba565b565b6005546000906001600160a01b03163314610b035760405162461bcd60e51b815260040161086c90611c18565b50600b805460ff19169055600190565b6005546001600160a01b03163314610b3d5760405162461bcd60e51b815260040161086c90611c18565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610b925760405162461bcd60e51b815260040161086c90611c18565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610bcf5760405162461bcd60e51b815260040161086c90611c18565b600b8054911515620100000262ff000019909216919091179055565b6060600480546107a990611bde565b6000610839338484611077565b6005546001600160a01b03163314610c315760405162461bcd60e51b815260040161086c90611c18565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610cba5760405162461bcd60e51b815260040161086c90611c18565b670de0b6b3a76400006103e8610ccf60025490565b610cda906005611c63565b610ce49190611c82565b610cee9190611c82565b811015610d495760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b606482015260840161086c565b610d5b81670de0b6b3a7640000611c63565b600a5550565b6005546000906001600160a01b03163314610d8e5760405162461bcd60e51b815260040161086c90611c18565b620186a0610d9b60025490565b610da6906001611c63565b610db09190611c82565b821015610e1d5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b606482015260840161086c565b6103e8610e2960025490565b610e34906005611c63565b610e3e9190611c82565b821115610eaa5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b606482015260840161086c565b50600981905560015b919050565b6005546001600160a01b03163314610ee25760405162461bcd60e51b815260040161086c90611c18565b6001600160a01b038116610f475760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161086c565b610f50816116ba565b50565b6001600160a01b038316610fb55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161086c565b6001600160a01b0382166110165760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161086c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661109d5760405162461bcd60e51b815260040161086c90611ca4565b6001600160a01b0382166110c35760405162461bcd60e51b815260040161086c90611ce9565b806000036110dc576110d78383600061170c565b505050565b600b5460ff16156113b4576005546001600160a01b0384811691161480159061111357506005546001600160a01b03838116911614155b801561112757506001600160a01b03821615155b801561113e57506001600160a01b03821661dead14155b80156111545750600654600160a01b900460ff16155b156113b457600b54610100900460ff166111ec576001600160a01b03831660009081526012602052604090205460ff16806111a757506001600160a01b03821660009081526012602052604090205460ff165b6111ec5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161086c565b7f0000000000000000000000001ad4a8e1e0f8cbadaea6885a6ce535cc380b9b5a6001600160a01b0316836001600160a01b031614801561124657506001600160a01b03821660009081526013602052604090205460ff16155b1561132a576008548111156112bb5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161086c565b600a546001600160a01b0383166000908152602081905260409020546112e19083611d2c565b11156113255760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161086c565b6113b4565b6001600160a01b03821660009081526013602052604090205460ff166113b457600a546001600160a01b0383166000908152602081905260409020546113709083611d2c565b11156113b45760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161086c565b30600090815260208190526040902054600954811080159081906113e05750600b5462010000900460ff165b80156113f65750600654600160a01b900460ff16155b801561143357507f0000000000000000000000001ad4a8e1e0f8cbadaea6885a6ce535cc380b9b5a6001600160a01b0316846001600160a01b0316145b801561145857506001600160a01b03851660009081526012602052604090205460ff16155b801561147d57506001600160a01b03841660009081526012602052604090205460ff16155b156114ab576006805460ff60a01b1916600160a01b17905561149d611861565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526012602052604090205460ff600160a01b9092048216159116806114f957506001600160a01b03851660009081526012602052604090205460ff165b15611502575060005b600080600083156116a4577f0000000000000000000000001ad4a8e1e0f8cbadaea6885a6ce535cc380b9b5a6001600160a01b0316886001600160a01b031614801561155057506000600f54115b156115b657611575606461156f600f548a6118ab90919063ffffffff16565b906118be565b9250600f54601154846115889190611c63565b6115929190611c82565b9150600f54601054846115a59190611c63565b6115af9190611c82565b9050611655565b7f0000000000000000000000001ad4a8e1e0f8cbadaea6885a6ce535cc380b9b5a6001600160a01b0316896001600160a01b03161480156115f957506000600c54115b1561165557611618606461156f600c548a6118ab90919063ffffffff16565b9250600c54600e548461162b9190611c63565b6116359190611c82565b9150600c54600d54846116489190611c63565b6116529190611c82565b90505b82156116665761166689308561170c565b811561169757611697307f0000000000000000000000001ad4a8e1e0f8cbadaea6885a6ce535cc380b9b5a8461170c565b6116a18388611d44565b96505b6116af89898961170c565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166117325760405162461bcd60e51b815260040161086c90611ca4565b6001600160a01b0382166117585760405162461bcd60e51b815260040161086c90611ce9565b6001600160a01b038316600090815260208190526040902054818110156117d05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161086c565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611807908490611d2c565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161185391815260200190565b60405180910390a350505050565b306000908152602081905260408120549081900361187c5750565b60095461188a906014611c63565b8111156118a25760095461189f906014611c63565b90505b610f50816118ca565b60006118b78284611c63565b9392505050565b60006118b78284611c82565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106118ff576118ff611d5b565b6001600160a01b03928316602091820292909201015260065482519116908290600190811061193057611930611d5b565b60200260200101906001600160a01b031690816001600160a01b03168152505061197b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610f53565b600754604051635c11d79560e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d811692635c11d795926119d7928792600092889291909116904290600401611d71565b600060405180830381600087803b1580156119f157600080fd5b505af1158015611a05573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b81811015611a3a57858101830151858201604001528201611a1e565b81811115611a4c576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610eb357600080fd5b60008060408385031215611a8c57600080fd5b611a9583611a62565b946020939093013593505050565b600060208284031215611ab557600080fd5b6118b782611a62565b600060208284031215611ad057600080fd5b5035919050565b600080600060608486031215611aec57600080fd5b611af584611a62565b9250611b0360208501611a62565b9150604084013590509250925092565b60008060008060008060c08789031215611b2c57600080fd5b505084359660208601359650604086013595606081013595506080810135945060a0013592509050565b80358015158114610eb357600080fd5b60008060408385031215611b7957600080fd5b611b8283611a62565b9150611b9060208401611b56565b90509250929050565b600060208284031215611bab57600080fd5b6118b782611b56565b60008060408385031215611bc757600080fd5b611bd083611a62565b9150611b9060208401611a62565b600181811c90821680611bf257607f821691505b602082108103611c1257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611c7d57611c7d611c4d565b500290565b600082611c9f57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008219821115611d3f57611d3f611c4d565b500190565b600082821015611d5657611d56611c4d565b500390565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611dc15784516001600160a01b031683529383019391830191600101611d9c565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212202ce1a91792734d0dcb4eac782772dbb62bdcc3e09bb4397eec34f4273b66834c64736f6c634300080d0033
Deployed Bytecode Sourcemap
24437:10431:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9293:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11460:169;;;;;;;;;;-1:-1:-1;11460:169:0;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;11460:169:0;1053:187:1;25397:63:0;;;;;;;;;;-1:-1:-1;25397:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;24512:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1626:32:1;;;1608:51;;1596:2;1581:18;24512:51:0;1436:229:1;10413:108:0;;;;;;;;;;-1:-1:-1;10501:12:0;;10413:108;;;1816:25:1;;;1804:2;1789:18;10413:108:0;1670:177:1;29923:189:0;;;;;;;;;;-1:-1:-1;29923:189:0;;;;;:::i;:::-;;:::i;:::-;;28489:275;;;;;;;;;;-1:-1:-1;28489:275:0;;;;;:::i;:::-;;:::i;12111:492::-;;;;;;;;;;-1:-1:-1;12111:492:0;;;;;:::i;:::-;;:::i;24615:53::-;;;;;;;;;;;;24661:6;24615:53;;10255:93;;;;;;;;;;-1:-1:-1;10255:93:0;;10338:2;2720:36:1;;2708:2;2693:18;10255:93:0;2578:184:1;29038:316:0;;;;;;;;;;-1:-1:-1;29038:316:0;;;;;:::i;:::-;;:::i;24570:38::-;;;;;;;;;;;;;;;24926:33;;;;;;;;;;-1:-1:-1;24926:33:0;;;;;;;;30122:126;;;;;;;;;;-1:-1:-1;30122:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;30212:28:0;30188:4;30212:28;;;:19;:28;;;;;;;;;30122:126;25150:28;;;;;;;;;;;;;;;;25006:31;;;;;;;;;;-1:-1:-1;25006:31:0;;;;;;;;;;;10584:127;;;;;;;;;;-1:-1:-1;10584:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10685:18:0;10658:7;10685:18;;;;;;;;;;;;10584:127;2653:103;;;;;;;;;;;;;:::i;27793:121::-;;;;;;;;;;;;;:::i;29362:167::-;;;;;;;;;;-1:-1:-1;29362:167:0;;;;;:::i;:::-;;:::i;24675:64::-;;;;;;;;;;-1:-1:-1;24675:64:0;;;;-1:-1:-1;;;;;24675:64:0;;;27629:112;;;;;;;;;;;;;:::i;2002:87::-;;;;;;;;;;-1:-1:-1;2075:6:0;;-1:-1:-1;;;;;2075:6:0;2002:87;;24778:24;;;;;;;;;;-1:-1:-1;24778:24:0;;;;-1:-1:-1;;;;;24778:24:0;;;29625:100;;;;;;;;;;-1:-1:-1;29625:100:0;;;;;:::i;:::-;;:::i;9512:104::-;;;;;;;;;;;;;:::i;25080:24::-;;;;;;;;;;;;;;;;25185:25;;;;;;;;;;;;;;;;10924:175;;;;;;;;;;-1:-1:-1;10924:175:0;;;;;:::i;:::-;;:::i;24966:33::-;;;;;;;;;;-1:-1:-1;24966:33:0;;;;;;;;;;;29733:182;;;;;;;;;;-1:-1:-1;29733:182:0;;;;;:::i;:::-;;:::i;28772:256::-;;;;;;;;;;-1:-1:-1;28772:256:0;;;;;:::i;:::-;;:::i;24811:35::-;;;;;;;;;;;;;;;;27984:497;;;;;;;;;;-1:-1:-1;27984:497:0;;;;;:::i;:::-;;:::i;25046:27::-;;;;;;;;;;;;;;;;11162:151;;;;;;;;;;-1:-1:-1;11162:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11278:18:0;;;11251:7;11278:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11162:151;24853:33;;;;;;;;;;;;;;;;25111:30;;;;;;;;;;;;;;;;2911:201;;;;;;;;;;-1:-1:-1;2911:201:0;;;;;:::i;:::-;;:::i;25217:31::-;;;;;;;;;;;;;;;;24893:24;;;;;;;;;;;;;;;;9293:100;9347:13;9380:5;9373:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9293:100;:::o;11460:169::-;11543:4;11560:39;755:10;11583:7;11592:6;11560:8;:39::i;:::-;-1:-1:-1;11617:4:0;11460:169;;;;:::o;29923:189::-;2075:6;;-1:-1:-1;;;;;2075:6:0;755:10;2222:23;2214:68;;;;-1:-1:-1;;;2214:68:0;;;;;;;:::i;:::-;;;;;;;;;30059:9:::1;::::0;30028:41:::1;::::0;-1:-1:-1;;;;;30059:9:0;;::::1;::::0;30028:41;::::1;::::0;::::1;::::0;30059:9:::1;::::0;30028:41:::1;30080:9;:24:::0;;-1:-1:-1;;;;;;30080:24:0::1;-1:-1:-1::0;;;;;30080:24:0;;;::::1;::::0;;;::::1;::::0;;29923:189::o;28489:275::-;2075:6;;-1:-1:-1;;;;;2075:6:0;755:10;2222:23;2214:68;;;;-1:-1:-1;;;2214:68:0;;;;;;;:::i;:::-;28626:4:::1;28618;28597:13;10501:12:::0;;;10413:108;28597:13:::1;:17;::::0;28613:1:::1;28597:17;:::i;:::-;28596:26;;;;:::i;:::-;28595:35;;;;:::i;:::-;28585:6;:45;;28563:142;;;::::0;-1:-1:-1;;;28563:142:0;;5644:2:1;28563:142:0::1;::::0;::::1;5626:21:1::0;5683:2;5663:18;;;5656:30;5722:34;5702:18;;;5695:62;-1:-1:-1;;;5773:18:1;;;5766:45;5828:19;;28563:142:0::1;5442:411:1::0;28563:142:0::1;28739:17;:6:::0;28749::::1;28739:17;:::i;:::-;28716:20;:40:::0;-1:-1:-1;28489:275:0:o;12111:492::-;12251:4;12268:36;12278:6;12286:9;12297:6;12268:9;:36::i;:::-;-1:-1:-1;;;;;12344:19:0;;12317:24;12344:19;;;:11;:19;;;;;;;;755:10;12344:33;;;;;;;;12396:26;;;;12388:79;;;;-1:-1:-1;;;12388:79:0;;6060:2:1;12388:79:0;;;6042:21:1;6099:2;6079:18;;;6072:30;6138:34;6118:18;;;6111:62;-1:-1:-1;;;6189:18:1;;;6182:38;6237:19;;12388:79:0;5858:404:1;12388:79:0;12503:57;12512:6;755:10;12553:6;12534:16;:25;12503:8;:57::i;:::-;-1:-1:-1;12591:4:0;;12111:492;-1:-1:-1;;;;12111:492:0:o;29038:316::-;2075:6;;-1:-1:-1;;;;;2075:6:0;755:10;2222:23;2214:68;;;;-1:-1:-1;;;2214:68:0;;;;;;;:::i;:::-;29163:12:::1;:14:::0;;;;29192:9:::1;:13:::0;;;;29220:15:::1;:18:::0;;;;29255:13:::1;:16:::0;29286:10:::1;:15:::0;29316:16:::1;:20:::0;29038:316::o;2653:103::-;2075:6;;-1:-1:-1;;;;;2075:6:0;755:10;2222:23;2214:68;;;;-1:-1:-1;;;2214:68:0;;;;;;;:::i;:::-;2718:30:::1;2745:1;2718:18;:30::i;:::-;2653:103::o:0;27793:121::-;2075:6;;27845:4;;-1:-1:-1;;;;;2075:6:0;755:10;2222:23;2214:68;;;;-1:-1:-1;;;2214:68:0;;;;;;;:::i;:::-;-1:-1:-1;27862:14:0::1;:22:::0;;-1:-1:-1;;27862:22:0::1;::::0;;;27793:121;:::o;29362:167::-;2075:6;;-1:-1:-1;;;;;2075:6:0;755:10;2222:23;2214:68;;;;-1:-1:-1;;;2214:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29475:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;29475:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;29362:167::o;27629:112::-;2075:6;;-1:-1:-1;;;;;2075:6:0;755:10;2222:23;2214:68;;;;-1:-1:-1;;;2214:68:0;;;;;;;:::i;:::-;27684:13:::1;:20:::0;;-1:-1:-1;;27715:18:0;;;;;27629:112::o;29625:100::-;2075:6;;-1:-1:-1;;;;;2075:6:0;755:10;2222:23;2214:68;;;;-1:-1:-1;;;2214:68:0;;;;;;;:::i;:::-;29696:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;29696:21:0;;::::1;::::0;;;::::1;::::0;;29625:100::o;9512:104::-;9568:13;9601:7;9594:14;;;;;:::i;10924:175::-;11010:4;11027:42;755:10;11051:9;11062:6;11027:9;:42::i;29733:182::-;2075:6;;-1:-1:-1;;;;;2075:6:0;755:10;2222:23;2214:68;;;;-1:-1:-1;;;2214:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29818:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;29818:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;29873:34;;1193:41:1;;;29873:34:0::1;::::0;1166:18:1;29873:34:0::1;;;;;;;29733:182:::0;;:::o;28772:256::-;2075:6;;-1:-1:-1;;;;;2075:6:0;755:10;2222:23;2214:68;;;;-1:-1:-1;;;2214:68:0;;;;;;;:::i;:::-;28912:4:::1;28904;28883:13;10501:12:::0;;;10413:108;28883:13:::1;:17;::::0;28899:1:::1;28883:17;:::i;:::-;28882:26;;;;:::i;:::-;28881:35;;;;:::i;:::-;28871:6;:45;;28849:131;;;::::0;-1:-1:-1;;;28849:131:0;;6469:2:1;28849:131:0::1;::::0;::::1;6451:21:1::0;6508:2;6488:18;;;6481:30;6547:34;6527:18;;;6520:62;-1:-1:-1;;;6598:18:1;;;6591:34;6642:19;;28849:131:0::1;6267:400:1::0;28849:131:0::1;29003:17;:6:::0;29013::::1;29003:17;:::i;:::-;28991:9;:29:::0;-1:-1:-1;28772:256:0:o;27984:497::-;2075:6;;28092:4;;-1:-1:-1;;;;;2075:6:0;755:10;2222:23;2214:68;;;;-1:-1:-1;;;2214:68:0;;;;;;;:::i;:::-;28171:6:::1;28150:13;10501:12:::0;;;10413:108;28150:13:::1;:17;::::0;28166:1:::1;28150:17;:::i;:::-;28149:28;;;;:::i;:::-;28136:9;:41;;28114:144;;;::::0;-1:-1:-1;;;28114:144:0;;6874:2:1;28114:144:0::1;::::0;::::1;6856:21:1::0;6913:2;6893:18;;;6886:30;6952:34;6932:18;;;6925:62;-1:-1:-1;;;7003:18:1;;;6996:51;7064:19;;28114:144:0::1;6672:417:1::0;28114:144:0::1;28326:4;28305:13;10501:12:::0;;;10413:108;28305:13:::1;:17;::::0;28321:1:::1;28305:17;:::i;:::-;28304:26;;;;:::i;:::-;28291:9;:39;;28269:141;;;::::0;-1:-1:-1;;;28269:141:0;;7296:2:1;28269:141:0::1;::::0;::::1;7278:21:1::0;7335:2;7315:18;;;7308:30;7374:34;7354:18;;;7347:62;-1:-1:-1;;;7425:18:1;;;7418:50;7485:19;;28269:141:0::1;7094:416:1::0;28269:141:0::1;-1:-1:-1::0;28421:18:0::1;:30:::0;;;28469:4:::1;2293:1;27984:497:::0;;;:::o;2911:201::-;2075:6;;-1:-1:-1;;;;;2075:6:0;755:10;2222:23;2214:68;;;;-1:-1:-1;;;2214:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3000:22:0;::::1;2992:73;;;::::0;-1:-1:-1;;;2992:73:0;;7717:2:1;2992:73:0::1;::::0;::::1;7699:21:1::0;7756:2;7736:18;;;7729:30;7795:34;7775:18;;;7768:62;-1:-1:-1;;;7846:18:1;;;7839:36;7892:19;;2992:73:0::1;7515:402:1::0;2992:73:0::1;3076:28;3095:8;3076:18;:28::i;:::-;2911:201:::0;:::o;14952:380::-;-1:-1:-1;;;;;15088:19:0;;15080:68;;;;-1:-1:-1;;;15080:68:0;;8124:2:1;15080:68:0;;;8106:21:1;8163:2;8143:18;;;8136:30;8202:34;8182:18;;;8175:62;-1:-1:-1;;;8253:18:1;;;8246:34;8297:19;;15080:68:0;7922:400:1;15080:68:0;-1:-1:-1;;;;;15167:21:0;;15159:68;;;;-1:-1:-1;;;15159:68:0;;8529:2:1;15159:68:0;;;8511:21:1;8568:2;8548:18;;;8541:30;8607:34;8587:18;;;8580:62;-1:-1:-1;;;8658:18:1;;;8651:32;8700:19;;15159:68:0;8327:398:1;15159:68:0;-1:-1:-1;;;;;15240:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15292:32;;1816:25:1;;;15292:32:0;;1789:18:1;15292:32:0;;;;;;;14952:380;;;:::o;30256:3679::-;-1:-1:-1;;;;;30388:18:0;;30380:68;;;;-1:-1:-1;;;30380:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30467:16:0;;30459:64;;;;-1:-1:-1;;;30459:64:0;;;;;;;:::i;:::-;30540:6;30550:1;30540:11;30536:93;;30568:28;30584:4;30590:2;30594:1;30568:15;:28::i;:::-;30256:3679;;;:::o;30536:93::-;30645:14;;;;30641:1430;;;2075:6;;-1:-1:-1;;;;;30698:15:0;;;2075:6;;30698:15;;;;:49;;-1:-1:-1;2075:6:0;;-1:-1:-1;;;;;30734:13:0;;;2075:6;;30734:13;;30698:49;:86;;;;-1:-1:-1;;;;;;30768:16:0;;;;30698:86;:128;;;;-1:-1:-1;;;;;;30805:21:0;;30819:6;30805:21;;30698:128;:158;;;;-1:-1:-1;30848:8:0;;-1:-1:-1;;;30848:8:0;;;;30847:9;30698:158;30676:1384;;;30896:13;;;;;;;30891:223;;-1:-1:-1;;;;;30968:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;30997:23:0;;;;;;:19;:23;;;;;;;;30968:52;30934:160;;;;-1:-1:-1;;;30934:160:0;;9742:2:1;30934:160:0;;;9724:21:1;9781:2;9761:18;;;9754:30;-1:-1:-1;;;9800:18:1;;;9793:52;9862:18;;30934:160:0;9540:346:1;30934:160:0;31328:13;-1:-1:-1;;;;;31320:21:0;:4;-1:-1:-1;;;;;31320:21:0;;:82;;;;-1:-1:-1;;;;;;31367:35:0;;;;;;:31;:35;;;;;;;;31366:36;31320:82;31294:751;;;31489:20;;31479:6;:30;;31445:169;;;;-1:-1:-1;;;31445:169:0;;10093:2:1;31445:169:0;;;10075:21:1;10132:2;10112:18;;;10105:30;10171:34;10151:18;;;10144:62;-1:-1:-1;;;10222:18:1;;;10215:51;10283:19;;31445:169:0;9891:417:1;31445:169:0;31697:9;;-1:-1:-1;;;;;10685:18:0;;10658:7;10685:18;;;;;;;;;;;31671:22;;:6;:22;:::i;:::-;:35;;31637:140;;;;-1:-1:-1;;;31637:140:0;;10648:2:1;31637:140:0;;;10630:21:1;10687:2;10667:18;;;10660:30;-1:-1:-1;;;10706:18:1;;;10699:49;10765:18;;31637:140:0;10446:343:1;31637:140:0;31294:751;;;-1:-1:-1;;;;;31825:35:0;;;;;;:31;:35;;;;;;;;31820:225;;31945:9;;-1:-1:-1;;;;;10685:18:0;;10658:7;10685:18;;;;;;;;;;;31919:22;;:6;:22;:::i;:::-;:35;;31885:140;;;;-1:-1:-1;;;31885:140:0;;10648:2:1;31885:140:0;;;10630:21:1;10687:2;10667:18;;;10660:30;-1:-1:-1;;;10706:18:1;;;10699:49;10765:18;;31885:140:0;10446:343:1;31885:140:0;32132:4;32083:28;10685:18;;;;;;;;;;;32190;;32166:42;;;;;;;32239:35;;-1:-1:-1;32263:11:0;;;;;;;32239:35;:61;;;;-1:-1:-1;32292:8:0;;-1:-1:-1;;;32292:8:0;;;;32291:9;32239:61;:97;;;;;32323:13;-1:-1:-1;;;;;32317:19:0;:2;-1:-1:-1;;;;;32317:19:0;;32239:97;:140;;;;-1:-1:-1;;;;;;32354:25:0;;;;;;:19;:25;;;;;;;;32353:26;32239:140;:181;;;;-1:-1:-1;;;;;;32397:23:0;;;;;;:19;:23;;;;;;;;32396:24;32239:181;32221:313;;;32447:8;:15;;-1:-1:-1;;;;32447:15:0;-1:-1:-1;;;32447:15:0;;;32479:10;:8;:10::i;:::-;32506:8;:16;;-1:-1:-1;;;;32506:16:0;;;32221:313;32562:8;;-1:-1:-1;;;;;32672:25:0;;32546:12;32672:25;;;:19;:25;;;;;;32562:8;-1:-1:-1;;;32562:8:0;;;;;32561:9;;32672:25;;:52;;-1:-1:-1;;;;;;32701:23:0;;;;;;:19;:23;;;;;;;;32672:52;32668:100;;;-1:-1:-1;32751:5:0;32668:100;32780:12;32807:26;32848:20;32961:7;32957:925;;;33019:13;-1:-1:-1;;;;;33013:19:0;:2;-1:-1:-1;;;;;33013:19:0;;:40;;;;;33052:1;33036:13;;:17;33013:40;33009:583;;;33081:34;33111:3;33081:25;33092:13;;33081:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;33074:41;;33183:13;;33163:16;;33156:4;:23;;;;:::i;:::-;33155:41;;;;:::i;:::-;33134:62;;33252:13;;33238:10;;33231:4;:17;;;;:::i;:::-;33230:35;;;;:::i;:::-;33215:50;;33009:583;;;33335:13;-1:-1:-1;;;;;33327:21:0;:4;-1:-1:-1;;;;;33327:21:0;;:41;;;;;33367:1;33352:12;;:16;33327:41;33323:269;;;33396:33;33425:3;33396:24;33407:12;;33396:6;:10;;:24;;;;:::i;:33::-;33389:40;;33496:12;;33477:15;;33470:4;:22;;;;:::i;:::-;33469:39;;;;:::i;:::-;33448:60;;33564:12;;33551:9;;33544:4;:16;;;;:::i;:::-;33543:33;;;;:::i;:::-;33528:48;;33323:269;33612:7;;33608:90;;33640:42;33656:4;33670;33677;33640:15;:42::i;:::-;33716:22;;33712:128;;33759:65;33783:4;33790:13;33805:18;33759:15;:65::i;:::-;33856:14;33866:4;33856:14;;:::i;:::-;;;32957:925;33894:33;33910:4;33916:2;33920:6;33894:15;:33::i;:::-;30369:3566;;;;;;30256:3679;;;:::o;3272:191::-;3365:6;;;-1:-1:-1;;;;;3382:17:0;;;-1:-1:-1;;;;;;3382:17:0;;;;;;;3415:40;;3365:6;;;3382:17;3365:6;;3415:40;;3346:16;;3415:40;3335:128;3272:191;:::o;13093:733::-;-1:-1:-1;;;;;13233:20:0;;13225:70;;;;-1:-1:-1;;;13225:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13314:23:0;;13306:71;;;;-1:-1:-1;;;13306:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13474:17:0;;13450:21;13474:17;;;;;;;;;;;13510:23;;;;13502:74;;;;-1:-1:-1;;;13502:74:0;;11126:2:1;13502:74:0;;;11108:21:1;11165:2;11145:18;;;11138:30;11204:34;11184:18;;;11177:62;-1:-1:-1;;;11255:18:1;;;11248:36;11301:19;;13502:74:0;10924:402:1;13502:74:0;-1:-1:-1;;;;;13612:17:0;;;:9;:17;;;;;;;;;;;13632:22;;;13612:42;;13676:20;;;;;;;;:30;;13648:6;;13612:9;13676:30;;13648:6;;13676:30;:::i;:::-;;;;;;;;13741:9;-1:-1:-1;;;;;13724:35:0;13733:6;-1:-1:-1;;;;;13724:35:0;;13752:6;13724:35;;;;1816:25:1;;1804:2;1789:18;;1670:177;13724:35:0;;;;;;;;13214:612;13093:733;;;:::o;34523:340::-;34606:4;34562:23;10685:18;;;;;;;;;;;;34627:20;;;34623:59;;34664:7;34523:340::o;34623:59::-;34716:18;;:23;;34737:2;34716:23;:::i;:::-;34698:15;:41;34694:115;;;34774:18;;:23;;34795:2;34774:23;:::i;:::-;34756:41;;34694:115;34821:34;34839:15;34821:17;:34::i;20405:98::-;20463:7;20490:5;20494:1;20490;:5;:::i;:::-;20483:12;20405:98;-1:-1:-1;;;20405:98:0:o;20804:::-;20862:7;20889:5;20893:1;20889;:5;:::i;33943:572::-;34094:16;;;34108:1;34094:16;;;;;;;;34070:21;;34094:16;;;;;;;;;;-1:-1:-1;34094:16:0;34070:40;;34139:4;34121;34126:1;34121:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;34121:23:0;;;:7;;;;;;;;;:23;34165:4;;34155:7;;34165:4;;;34155;;34165;;34155:7;;;;;;:::i;:::-;;;;;;:14;-1:-1:-1;;;;;34155:14:0;;;-1:-1:-1;;;;;34155:14:0;;;;;34182:62;34199:4;34214:15;34232:11;34182:8;:62::i;:::-;34457:9;;34283:224;;-1:-1:-1;;;34283:224:0;;-1:-1:-1;;;;;34283:15:0;:69;;;;;:224;;34367:11;;34393:1;;34438:4;;34457:9;;;;;34481:15;;34283:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33999:516;33943:572;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;794:254;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1245:186::-;1304:6;1357:2;1345:9;1336:7;1332:23;1328:32;1325:52;;;1373:1;1370;1363:12;1325:52;1396:29;1415:9;1396:29;:::i;1852:180::-;1911:6;1964:2;1952:9;1943:7;1939:23;1935:32;1932:52;;;1980:1;1977;1970:12;1932:52;-1:-1:-1;2003:23:1;;1852:180;-1:-1:-1;1852:180:1:o;2037:328::-;2114:6;2122;2130;2183:2;2171:9;2162:7;2158:23;2154:32;2151:52;;;2199:1;2196;2189:12;2151:52;2222:29;2241:9;2222:29;:::i;:::-;2212:39;;2270:38;2304:2;2293:9;2289:18;2270:38;:::i;:::-;2260:48;;2355:2;2344:9;2340:18;2327:32;2317:42;;2037:328;;;;;:::o;2767:523::-;2871:6;2879;2887;2895;2903;2911;2964:3;2952:9;2943:7;2939:23;2935:33;2932:53;;;2981:1;2978;2971:12;2932:53;-1:-1:-1;;3004:23:1;;;3074:2;3059:18;;3046:32;;-1:-1:-1;3125:2:1;3110:18;;3097:32;;3176:2;3161:18;;3148:32;;-1:-1:-1;3227:3:1;3212:19;;3199:33;;-1:-1:-1;3279:3:1;3264:19;3251:33;;-1:-1:-1;2767:523:1;-1:-1:-1;2767:523:1:o;3295:160::-;3360:20;;3416:13;;3409:21;3399:32;;3389:60;;3445:1;3442;3435:12;3460:254;3525:6;3533;3586:2;3574:9;3565:7;3561:23;3557:32;3554:52;;;3602:1;3599;3592:12;3554:52;3625:29;3644:9;3625:29;:::i;:::-;3615:39;;3673:35;3704:2;3693:9;3689:18;3673:35;:::i;:::-;3663:45;;3460:254;;;;;:::o;3719:180::-;3775:6;3828:2;3816:9;3807:7;3803:23;3799:32;3796:52;;;3844:1;3841;3834:12;3796:52;3867:26;3883:9;3867:26;:::i;3904:260::-;3972:6;3980;4033:2;4021:9;4012:7;4008:23;4004:32;4001:52;;;4049:1;4046;4039:12;4001:52;4072:29;4091:9;4072:29;:::i;:::-;4062:39;;4120:38;4154:2;4143:9;4139:18;4120:38;:::i;4169:380::-;4248:1;4244:12;;;;4291;;;4312:61;;4366:4;4358:6;4354:17;4344:27;;4312:61;4419:2;4411:6;4408:14;4388:18;4385:38;4382:161;;4465:10;4460:3;4456:20;4453:1;4446:31;4500:4;4497:1;4490:15;4528:4;4525:1;4518:15;4382:161;;4169:380;;;:::o;4554:356::-;4756:2;4738:21;;;4775:18;;;4768:30;4834:34;4829:2;4814:18;;4807:62;4901:2;4886:18;;4554:356::o;4915:127::-;4976:10;4971:3;4967:20;4964:1;4957:31;5007:4;5004:1;4997:15;5031:4;5028:1;5021:15;5047:168;5087:7;5153:1;5149;5145:6;5141:14;5138:1;5135:21;5130:1;5123:9;5116:17;5112:45;5109:71;;;5160:18;;:::i;:::-;-1:-1:-1;5200:9:1;;5047:168::o;5220:217::-;5260:1;5286;5276:132;;5330:10;5325:3;5321:20;5318:1;5311:31;5365:4;5362:1;5355:15;5393:4;5390:1;5383:15;5276:132;-1:-1:-1;5422:9:1;;5220:217::o;8730:401::-;8932:2;8914:21;;;8971:2;8951:18;;;8944:30;9010:34;9005:2;8990:18;;8983:62;-1:-1:-1;;;9076:2:1;9061:18;;9054:35;9121:3;9106:19;;8730:401::o;9136:399::-;9338:2;9320:21;;;9377:2;9357:18;;;9350:30;9416:34;9411:2;9396:18;;9389:62;-1:-1:-1;;;9482:2:1;9467:18;;9460:33;9525:3;9510:19;;9136:399::o;10313:128::-;10353:3;10384:1;10380:6;10377:1;10374:13;10371:39;;;10390:18;;:::i;:::-;-1:-1:-1;10426:9:1;;10313:128::o;10794:125::-;10834:4;10862:1;10859;10856:8;10853:34;;;10867:18;;:::i;:::-;-1:-1:-1;10904:9:1;;10794:125::o;11463:127::-;11524:10;11519:3;11515:20;11512:1;11505:31;11555:4;11552:1;11545:15;11579:4;11576:1;11569:15;11595:980;11857:4;11905:3;11894:9;11890:19;11936:6;11925:9;11918:25;11962:2;12000:6;11995:2;11984:9;11980:18;11973:34;12043:3;12038:2;12027:9;12023:18;12016:31;12067:6;12102;12096:13;12133:6;12125;12118:22;12171:3;12160:9;12156:19;12149:26;;12210:2;12202:6;12198:15;12184:29;;12231:1;12241:195;12255:6;12252:1;12249:13;12241:195;;;12320:13;;-1:-1:-1;;;;;12316:39:1;12304:52;;12411:15;;;;12376:12;;;;12352:1;12270:9;12241:195;;;-1:-1:-1;;;;;;;12492:32:1;;;;12487:2;12472:18;;12465:60;-1:-1:-1;;;12556:3:1;12541:19;12534:35;12453:3;11595:980;-1:-1:-1;;;11595:980:1:o
Swarm Source
ipfs://2ce1a91792734d0dcb4eac782772dbb62bdcc3e09bb4397eec34f4273b66834c
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.